Re: [PATCH] i2c: s3c2410: dont need CPU_FREQ transitions for exynos series

2013-10-12 Thread Naveen Krishna Ch
On 12 October 2013 11:12, Tomasz Figa t.f...@samsung.com wrote: On Saturday 12 of October 2013 04:28:51 Tomasz Figa wrote: [Fixing incorrent mail addresses and dropping the old DT ML.] On Saturday 12 of October 2013 04:22:04 Tomasz Figa wrote: Hi Naveen, On Friday 11 of October 2013

Re: [PATCH v3] iio: exynos_adc: use wait_for_completion_timeout instead of interruptible

2013-10-12 Thread Naveen Krishna Ch
On 11 October 2013 20:00, Lars-Peter Clausen l...@metafoo.de wrote: On 10/11/2013 10:23 AM, Naveen Krishna Chatradhi wrote: This patch does the following 1. use wait_for_completion_timeout instead of wait_for_completion_interruptible_timeout 2. Reset software if a timeout happens. 3. Also

экстракт бобов Зеленого кофе обладает могучим жиросжигающим действием

2013-10-12 Thread konstantin.luka.75
усмиряет ощущение голода http://tnyurl.us/2US

Re: [PATCH] s5p-jpeg: fix uninitialized use in hdr parse

2013-10-12 Thread Sylwester Nawrocki
Hi Seung-Woo, On 10/10/2013 09:06 AM, Seung-Woo Kim wrote: For hdr parse error, it can return false without any assignments which cause build warning. Signed-off-by: Seung-Woo Kimsw0312@samsung.com --- drivers/media/platform/s5p-jpeg/jpeg-core.c |4 ++-- 1 files changed, 2

Re: [PATCH] s5p-jpeg: fix encoder and decoder video dev names

2013-10-12 Thread Sylwester Nawrocki
On 10/10/2013 10:45 AM, Seung-Woo Kim wrote: It is hard to distinguish between decoder and encoder video device because their names are same. So this patch fixes the names. Signed-off-by: Seung-Woo Kimsw0312@samsung.com Patch queued for 3.13. Thanks, Sylwester -- To unsubscribe from this

Re: [PATCH RFC 1/7] V4L: Add mem2mem ioctl and file operation helpers

2013-10-12 Thread Sylwester Nawrocki
On 09/30/2013 11:41 AM, Hans Verkuil wrote: On 09/13/2013 02:56 PM, Sylwester Nawrocki wrote: This patch adds ioctl helpers to the V4L2 mem-to-mem API, so we can avoid several ioctl handlers in the mem-to-mem video node drivers that are simply a pass-through to the v4l2_m2m_* calls. These

Re: [PATCH RFC 5/7] mx2-emmaprp: Use mem-to-mem ioctl helpers

2013-10-12 Thread Sylwester Nawrocki
On 09/30/2013 11:47 AM, Hans Verkuil wrote: On 09/13/2013 02:56 PM, Sylwester Nawrocki wrote: [...] @@ -812,6 +753,7 @@ static int emmaprp_open(struct file *file) kfree(ctx); return ret; } + /* TODO: Assign fh-m2m_ctx, needs conversion to struct

Re: [PATCH RFC 6/7] exynos-gsc: Use mem-to-mem ioctl helpers

2013-10-12 Thread Sylwester Nawrocki
On 09/30/2013 11:50 AM, Hans Verkuil wrote: On 09/13/2013 02:56 PM, Sylwester Nawrocki wrote: Simplify the driver by using the m2m ioctl and vb2 helpers. TODO: Add setting of default initial format. So this patch can't be applied yet. Indeed, it's just an RFC series, I wanted it to

[PATCH RFC v2 01/10] V4L: Add mem2mem ioctl and file operation helpers

2013-10-12 Thread Sylwester Nawrocki
This patch adds ioctl helpers to the V4L2 mem-to-mem API, so we can avoid several ioctl handlers in the mem-to-mem video node drivers that are simply a pass-through to the v4l2_m2m_* calls. These helpers will only be useful for drivers that use same mutex for both OUTPUT and CAPTURE queue, which

[PATCH RFC v2 00/10] V4L2 mem-to-mem ioctl helpers

2013-10-12 Thread Sylwester Nawrocki
Hello, This patch set adds ioctl helpers to the v4l2-mem2mem module so the video mem-to-mem drivers can be simplified by removing functions that are only a pass-through to the v4l2_m2m_* calls. In addition some of the vb2 helper functions can be used as well. These helpers are similar to the

[PATCH RFC v2 09/10] exynos-gsc: Use mem-to-mem ioctl helpers

2013-10-12 Thread Sylwester Nawrocki
Simplify the driver by using the m2m ioctl and vb2 helpers. Signed-off-by: Sylwester Nawrocki s.nawro...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- Changes since v1: - removed unused gsc_m2m_reqbufs() function. --- drivers/media/platform/exynos-gsc/gsc-core.h | 12

[PATCH RFC v2 02/10] mem2mem_testdev: Use mem-to-mem ioctl and vb2 helpers

2013-10-12 Thread Sylwester Nawrocki
Simplify the driver by using the m2m ioctl and vb2 helpers. Signed-off-by: Sylwester Nawrocki s.nawro...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- Changes since v1: - dropped now redundant struct m2mtest_ctx::m2m_ctx field. ---

[PATCH RFC v2 08/10] exynos-gsc: Remove GSC_{SRC, DST}_FMT flags

2013-10-12 Thread Sylwester Nawrocki
The GSC_SRC_FMT, GSC_DST_FMT flags are currently set in VIDIOC_S_FMT ioctl and cleared in VIDIOC_REQBUFS(0). In between the flags are used to figure out if scaling ratio check need to be performed. This an incorrect behaviour as it should be assumed there is always a valid configuration on a video

[PATCH RFC v2 07/10] exynos-gsc: Configure default image format at device open()

2013-10-12 Thread Sylwester Nawrocki
There should be always some valid image format set on a video device. Signed-off-by: Sylwester Nawrocki s.nawro...@samsung.com --- drivers/media/platform/exynos-gsc/gsc-m2m.c | 34 ++- 1 files changed, 33 insertions(+), 1 deletions(-) diff --git

[PATCH RFC v2 05/10] mx2-emmaprp: Use struct v4l2_fh

2013-10-12 Thread Sylwester Nawrocki
Signed-off-by: Sylwester Nawrocki s.nawro...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- drivers/media/platform/mx2_emmaprp.c | 54 ++--- 1 files changed, 36 insertions(+), 18 deletions(-) diff --git a/drivers/media/platform/mx2_emmaprp.c

[PATCH RFC v2 06/10] mx2-emmaprp: Use mem-to-mem ioctl helpers

2013-10-12 Thread Sylwester Nawrocki
Simplify the driver by using the m2m ioctl and vb2 helpers. Signed-off-by: Sylwester Nawrocki s.nawro...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- Changes since v1: - dropped m2m_ctx member of struct emmaprp_ctx; the patch is now complete and there are better

[PATCH RFC v2 04/10] s5p-jpeg: Use mem-to-mem ioctl helpers

2013-10-12 Thread Sylwester Nawrocki
Simplify the driver by using the m2m ioctl and vb2 helpers. Signed-off-by: Sylwester Nawrocki s.nawro...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- Changes since v1: - use m2m context pointer from struct v4l2_fh. --- drivers/media/platform/s5p-jpeg/jpeg-core.c | 134

[PATCH RFC v2 10/10] s5p-g2d: Use mem-to-mem ioctl helpers

2013-10-12 Thread Sylwester Nawrocki
Simplify the driver by using the m2m ioctl and vb2 helpers. Signed-off-by: Sylwester Nawrocki s.nawro...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- Changes since v1: - use m2m context pointer from struct v4l2_fh. --- drivers/media/platform/s5p-g2d/g2d.c | 124

[PATCH RFC v2 03/10] exynos4-is: Use mem-to-mem ioctl helpers

2013-10-12 Thread Sylwester Nawrocki
Simplify the FIMC mem-to-mem driver by using the m2m ioctl and vb2 helpers. Signed-off-by: Sylwester Nawrocki s.nawro...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- Changes since v1: - use m2m context pointer from struct v4l2_fh. ---

Re: [PATCH RESEND 0/3] ARM: S3C24XX: add missing dma-devices and warning fix

2013-10-12 Thread Mark Brown
On Sat, Oct 12, 2013 at 06:36:36AM +0200, Tomasz Figa wrote: Big thanks for this series and the one adding DMA engine support for S3C24xx. It would be great if someone could test this on affected platforms, so we could finally drop the old S3C-DMA nonsense. Did the s3c64xx pl08x stuff get

[PATCH RFC v2.1 01/10] V4L: Add mem2mem ioctl and file operation helpers

2013-10-12 Thread Sylwester Nawrocki
This patch adds ioctl helpers to the V4L2 mem-to-mem API, so we can avoid several ioctl handlers in the mem-to-mem video node drivers that are simply a pass-through to the v4l2_m2m_* calls. These helpers will only be useful for drivers that use same mutex for both OUTPUT and CAPTURE queue, which

Re: [PATCH] ARM: dts: Update arch timer node with clock frequency

2013-10-12 Thread Olof Johansson
On Wed, Oct 09, 2013 at 04:48:32PM -0500, Rob Herring wrote: On Tue, Oct 8, 2013 at 5:15 PM, Olof Johansson o...@lixom.net wrote: [Adding Tony, who reported a mainline booting issue, and Sean who helped me track this down] On Mon, Sep 23, 2013 at 7:15 AM, Mark Rutland mark.rutl...@arm.com

Re: [PATCH] ARM: dts: Update arch timer node with clock frequency

2013-10-12 Thread Olof Johansson
On Wed, Sep 18, 2013 at 03:41:53PM +0530, Yuvaraj Kumar C D wrote: Without the clock-frequency property in arch timer node, could able to see the below crash dump. [c0014e28] (unwind_backtrace+0x0/0xf4) from [c0011808] (show_stack+0x10/0x14) [c0011808] (show_stack+0x10/0x14) from