[PATCH 1/1] v4l: omap4iss: Fix dual lane camera mode problem

2014-11-10 Thread Marina Vasilevsky
--- drivers/staging/media/omap4iss/iss_csiphy.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/media/omap4iss/iss_csiphy.c b/drivers/staging/media/omap4iss/iss_csiphy.c index 7c3d55d..b6e0b32 100644 --- a/drivers/staging/media/omap4iss/iss_csiphy.c +++

Re: [PATCH 3/3] adv7604: Correct G/S_EDID behaviour

2014-11-10 Thread Hans Verkuil
On 11/07/2014 09:34 PM, Jean-Michel Hautbois wrote: Hi Hans, 2014-11-07 13:34 GMT+01:00 Hans Verkuil hverk...@xs4all.nl: From: Hans Verkuil hans.verk...@cisco.com In order to have v4l2-compliance tool pass the G/S_EDID some modifications where needed in the driver. In particular, the

[GIT PULL FOR v3.19] Various fixes

2014-11-10 Thread Hans Verkuil
Sparse fixes for saa7164, adv EDID fixes and si4713 improvements in preparation for adding DT support. Tested the si4713 with my USB dev board. Regards, Hans The following changes since commit 4895cc47a072dcb32d3300d0a46a251a8c6db5f1: [media] s5p-mfc: fix sparse error (2014-11-05

Re: [RFCv2 0/8] [media] si4713 DT binding

2014-11-10 Thread Hans Verkuil
Hi Sebastian, I've tested the whole 8-part patch series with my si4713 USB dev board, and it is working fine. I've accepted patches 1-4. The others need to be reposted since patch 5 had a change request. Regards, Hans On 11/07/2014 01:49 PM, Hans Verkuil wrote: On 10/21/14 17:06,

Re: [PATCH v5 10/10] [media] v4l: Forbid usage of V4L2_MBUS_FMT definitions inside the kernel

2014-11-10 Thread Hans Verkuil
On 11/08/2014 04:47 PM, Boris Brezillon wrote: Place v4l2_mbus_pixelcode in a #ifndef __KERNEL__ section so that kernel users don't have access to these definitions. We have to keep this definition for user-space users even though they're encouraged to move to the new media_bus_format enum.

Re: Add controls to query camera read only paramters

2014-11-10 Thread Guennadi Liakhovetski
Hi Bin, On Sat, 8 Nov 2014, Bin Chen wrote: Hi Everyone, I need suggestions with regard to adding controls to query camera read only parameters (e.g maxZoom/maxExposureCompensation) as needed by Android Camera API[1]. I'm not sure all Android HAL metadata tags should be 1-to-1 implemented

[RFCv6 PATCH 11/16] vb2: use dma_map_sg_attrs to prevent unnecessary sync

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com By default dma_map_sg syncs the mapped buffer to the device. But buf_prepare expects a buffer syncs for the cpu and the buffer will be synced to the device in the prepare memop. The reverse is true for dma_unmap_sg, buf_finish and the finish memop. To

[RFCv6 PATCH 02/16] vb2: replace 'write' by 'dma_dir'

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The 'write' argument is very ambiguous. I first assumed that if it is 1, then we're doing video output but instead it meant the reverse. Since it is used to setup the dma_dir value anyway it is now replaced by the correct dma_dir value which is

[RFCv6 PATCH 04/16] vb2-dma-sg: add allocation context to dma-sg

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Require that dma-sg also uses an allocation context. This is in preparation for adding prepare/finish memops to sync the memory between DMA and CPU. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/pci/cx23885/cx23885-417.c |

[RFCv6 PATCH 13/16] videobuf2-dvb.c: convert to vb2_plane_begin_cpu_access()

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/v4l2-core/videobuf2-dvb.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/media/v4l2-core/videobuf2-dvb.c b/drivers/media/v4l2-core/videobuf2-dvb.c

[RFCv6 PATCH 12/16] vb2: add begin/end_cpu_access functions

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The existing vb2_plane_vaddr function is not enough when dealing with dmabuf. For dmabuf you need to be explicit when the cpu needs access to the buffer and when that can be stopped. So add vb2_plane_begin/end_cpu_access as a vaddr replacement. The old

[RFCv6 PATCH 05/16] vb2-dma-sg: move dma_(un)map_sg here

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com This moves dma_(un)map_sg to the get_userptr/put_userptr and alloc/put memops of videobuf2-dma-sg.c and adds dma_sync_sg_for_device/cpu to the prepare/finish memops. Now that vb2-dma-sg will sync the buffers for you in the prepare/finish memops we can

[RFCv6 PATCH 03/16] vb2: add dma_dir to the alloc memop.

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com This is needed for the next patch where the dma-sg alloc memop needs to know the dma_dir. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/v4l2-core/videobuf2-core.c | 4 +++- drivers/media/v4l2-core/videobuf2-dma-contig.c | 4

[RFCv6 PATCH 14/16] v4l: convert vb2_plane_vaddr to vb2_plane_begin_cpu_access

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/dvb-frontends/rtl2832_sdr.c | 16 ++-- drivers/media/parport/bw-qcam.c| 5 ++- drivers/media/pci/solo6x10/solo6x10-v4l2.c | 6 ++-

[RFCv6 PATCH 06/16] vb2-dma-sg: add dmabuf import support

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Add support for importing dmabuf to videobuf2-dma-sg. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/v4l2-core/videobuf2-dma-sg.c | 149 ++--- 1 file changed, 136 insertions(+), 13 deletions(-) diff --git

[RFCv6 PATCH 07/16] vb2-dma-sg: add support for dmabuf exports

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hansv...@cisco.com Add DMABUF export support to vb2-dma-sg. Signed-off-by: Hans Verkuil hansv...@cisco.com --- drivers/media/v4l2-core/videobuf2-dma-sg.c | 170 + 1 file changed, 170 insertions(+) diff --git

[RFCv6 PATCH 08/16] vb2-vmalloc: add support for dmabuf exports

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hansv...@cisco.com Add support for DMABUF exporting to the vb2-vmalloc implementation. All memory models now have support for both importing and exporting of DMABUFs. Signed-off-by: Hans Verkuil hansv...@cisco.com --- drivers/media/v4l2-core/videobuf2-vmalloc.c | 174

[RFCv6 PATCH 09/16] vivid: enable vb2_expbuf support.

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Now that vb2 supports DMABUF export for dma-sg and vmalloc memory modes, we can enable the vb2_expbuf support in vivid. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/platform/vivid/vivid-core.c | 2 +- 1 file changed, 1

[RFCv6 PATCH 00/16] vb2: improve dma-sg, expbuf

2014-11-10 Thread Hans Verkuil
Changes since v5: - Moved 'replace write by dma_dir' to the beginning of the patch series. - Split off the 'add dma_dir to alloc()' as a separate patch. - Address all Pawel's review comments. The patch series adds an allocation context to dma-sg and uses that to move dma_(un)map_sg into the vb2

[RFCv6 PATCH 10/16] vim2m: support expbuf

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/platform/vim2m.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/media/platform/vim2m.c b/drivers/media/platform/vim2m.c index 87af47a..1105c11 100644 ---

[RFCv6 PATCH 01/16] videobuf2-core.h: improve documentation

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Document that drivers can access/modify the buffer contents in buf_prepare and buf_finish. That was not clearly stated before. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- include/media/videobuf2-core.h | 32 +--- 1

[RFCv6 PATCH 15/16] vb2: drop the unused vb2_plane_vaddr function.

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Now that all drivers have been converted, this function can be dropped. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/v4l2-core/videobuf2-core.c | 8 +--- drivers/media/v4l2-core/videobuf2-dma-contig.c | 11 ---

[RFCv6 PATCH 16/16] vb2: update the buf_prepare/finish documentation

2014-11-10 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Document how the new vb2_plane_begin/end_cpu_access() functions should be used in buf_prepare/finish. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- include/media/videobuf2-core.h | 35 ++- 1 file changed, 22

Re: [PATCH 1/1] v4l: omap4iss: Fix dual lane camera mode problem

2014-11-10 Thread Sakari Ailus
Hi Marina, On Mon, Nov 10, 2014 at 10:11:31AM +0200, Marina Vasilevsky wrote: --- drivers/staging/media/omap4iss/iss_csiphy.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/media/omap4iss/iss_csiphy.c b/drivers/staging/media/omap4iss/iss_csiphy.c

Re: [RFCv2] Media Token API Spec.

2014-11-10 Thread Hans Verkuil
Hi Shuah, This looks good. I have a few remarks, see below... On 11/05/2014 12:08 AM, Shuah Khan wrote: Hi Mauro, Here is the RFC as promised. I also included the Media controller as a an alternative and captured the discussion in the thread on that topic. Please review. -- Shuah

Re: [PATCH] v4l: uvcvideo: Fix buffer completion size check

2014-11-10 Thread Guennadi Liakhovetski
Hi Laurent, On Thu, 2 Oct 2014, Laurent Pinchart wrote: Hi Guennadi, Ping ? Sorry again for a delay, and unfortunately my eventual reply won't be very helpful: we've modified our user-space in a way, that that path isn't triggered anymore, so, I cannot easily verify your patch. In any

Re: [PATCH 1/1] v4l: omap4iss: Fix dual lane camera mode problem

2014-11-10 Thread Marina Vasilevsky
Hi Sakari, Now I understand that the rate is not correct. I'll fix it and retest. Thanks, Marina On Mon, Nov 10, 2014 at 3:06 PM, Sakari Ailus sakari.ai...@iki.fi wrote: Hi Marina, On Mon, Nov 10, 2014 at 10:11:31AM +0200, Marina Vasilevsky wrote: ---

Re: [PATCH v5 10/10] [media] v4l: Forbid usage of V4L2_MBUS_FMT definitions inside the kernel

2014-11-10 Thread Boris Brezillon
On Mon, 10 Nov 2014 12:09:19 +0100 Hans Verkuil hverk...@xs4all.nl wrote: On 11/08/2014 04:47 PM, Boris Brezillon wrote: Place v4l2_mbus_pixelcode in a #ifndef __KERNEL__ section so that kernel users don't have access to these definitions. We have to keep this definition for user-space

[PATCH 2/2] media: cx88: use vb2_start_streaming_called() helper

2014-11-10 Thread Lad, Prabhakar
this patch adds support for using vb2_start_streaming_called() for cx88-blackbird driver. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- drivers/media/pci/cx88/cx88-blackbird.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH v6 08/10] staging: media: Make use of MEDIA_BUS_FMT_ definitions

2014-11-10 Thread Boris Brezillon
In order to have subsytem agnostic media bus format definitions we've moved media bus definition to include/uapi/linux/media-bus-format.h and prefixed values with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT. Reference new definitions in all media drivers residing in staging. Signed-off-by: Boris

[PATCH v6 07/10] [media] usb: Make use of media_bus_format enum

2014-11-10 Thread Boris Brezillon
In order to have subsytem agnostic media bus format definitions we've moved media bus definition to include/uapi/linux/media-bus-format.h and prefixed enum values with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT. Reference new definitions in all usb drivers. Signed-off-by: Boris Brezillon

[PATCH v6 06/10] [media] platform: Make use of media_bus_format enum

2014-11-10 Thread Boris Brezillon
In order to have subsytem agnostic media bus format definitions we've moved media bus definition to include/uapi/linux/media-bus-format.h and prefixed values with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT. Reference new definitions in all platform drivers. Signed-off-by: Boris Brezillon

[PATCH v6 10/10] [media] v4l: Forbid usage of V4L2_MBUS_FMT definitions inside the kernel

2014-11-10 Thread Boris Brezillon
Place v4l2_mbus_pixelcode in a #ifndef __KERNEL__ section so that kernel users don't have access to these definitions. We have to keep this definition for user-space users even though they're encouraged to move to the new media_bus_format enum. Signed-off-by: Boris Brezillon

[PATCH v6 02/10] [media] v4l: Update subdev-formats doc with new MEDIA_BUS_FMT values

2014-11-10 Thread Boris Brezillon
In order to have subsytem agnostic media bus format definitions we've moved media bus definition to include/uapi/linux/media-bus-format.h and prefixed them with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT. Update the v4l documentation accordingly. Signed-off-by: Boris Brezillon

[PATCH 1/2] media: vivid: use vb2_start_streaming_called() helper

2014-11-10 Thread Lad, Prabhakar
this patch adds support for using vb2_start_streaming_called() for vivid driver. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- drivers/media/platform/vivid/vivid-ctrls.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git

[PATCH v6 04/10] [media] i2c: Make use of media_bus_format enum

2014-11-10 Thread Boris Brezillon
In order to have subsytem agnostic media bus format definitions we've moved media bus definitions to include/uapi/linux/media-bus-format.h and prefixed values with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT. Replace all references to the old definitions in i2c drivers. Signed-off-by: Boris Brezillon

[PATCH v6 09/10] gpu: ipu-v3: Make use of media_bus_format enum

2014-11-10 Thread Boris Brezillon
In order to have subsytem agnostic media bus format definitions we've moved media bus definition to include/uapi/linux/media-bus-format.h and prefixed enum values with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT. Reference new definitions in the ipu-v3 driver. Signed-off-by: Boris Brezillon

[PATCH v6 00/10] [media] Make mediabus format subsystem neutral

2014-11-10 Thread Boris Brezillon
Hello, This patch series prepares the use of media bus formats outside of the V4L2 subsytem (my final goal is to use it in the Atmel HLCDC DRM driver where I have to configure my DPI/RGB bus according to the connected display). The series first defines MEDIA_BUS_FMT_ macros, and then replace all

[PATCH v6 05/10] [media] pci: Make use of MEDIA_BUS_FMT definitions

2014-11-10 Thread Boris Brezillon
In order to have subsytem agnostic media bus format definitions we've moved media bus definition to include/uapi/linux/media-bus-format.h and prefixed values with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT. Replace all references to the old definitions in pci drivers. Signed-off-by: Boris Brezillon

[PATCH v6 01/10] [media] Move mediabus format definition to a more standard place

2014-11-10 Thread Boris Brezillon
Define MEDIA_BUS_FMT macros (re-using the values defined in the v4l2_mbus_pixelcode enum) into a separate header file so that they can be used from the DRM/KMS subsystem without any reference to the V4L2 subsystem. Then set V4L2_MBUS_FMT definitions to the MEDIA_BUS_FMT values using the

[PATCH v6 RESEND 10/10] [media] v4l: Forbid usage of V4L2_MBUS_FMT definitions inside the kernel

2014-11-10 Thread Boris Brezillon
Place v4l2_mbus_pixelcode in a #ifndef __KERNEL__ section so that kernel users don't have access to these definitions. We have to keep this definition for user-space users even though they're encouraged to move to the new media_bus_format enum. Signed-off-by: Boris Brezillon

[PATCH v6 RESEND 08/10] staging: media: Make use of MEDIA_BUS_FMT_ definitions

2014-11-10 Thread Boris Brezillon
In order to have subsytem agnostic media bus format definitions we've moved media bus definition to include/uapi/linux/media-bus-format.h and prefixed values with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT. Reference new definitions in all media drivers residing in staging. Signed-off-by: Boris

[PATCH v6 RESEND 07/10] [media] usb: Make use of media_bus_format enum

2014-11-10 Thread Boris Brezillon
In order to have subsytem agnostic media bus format definitions we've moved media bus definition to include/uapi/linux/media-bus-format.h and prefixed enum values with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT. Reference new definitions in all usb drivers. Signed-off-by: Boris Brezillon

[PATCH v6 RESEND 06/10] [media] platform: Make use of media_bus_format enum

2014-11-10 Thread Boris Brezillon
In order to have subsytem agnostic media bus format definitions we've moved media bus definition to include/uapi/linux/media-bus-format.h and prefixed values with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT. Reference new definitions in all platform drivers. Signed-off-by: Boris Brezillon

[PATCH v6 03/10] [media] Make use of the new media_bus_format definitions

2014-11-10 Thread Boris Brezillon
Replace references to the v4l2_mbus_pixelcode enum with the new media_bus_format enum in all common headers. Signed-off-by: Boris Brezillon boris.brezil...@free-electrons.com Acked-by: Sakari Ailus sakari.ai...@linux.intel.com Acked-by: Hans Verkuil hans.verk...@cisco.com ---

Re: [PATCH v6 00/10] [media] Make mediabus format subsystem neutral

2014-11-10 Thread Boris Brezillon
On Mon, 10 Nov 2014 18:21:44 +0100 Boris Brezillon boris.brezil...@free-electrons.com wrote: Hello, This patch series prepares the use of media bus formats outside of the V4L2 subsytem (my final goal is to use it in the Atmel HLCDC DRM driver where I have to configure my DPI/RGB bus

[PATCH v6 RESEND 02/10] [media] v4l: Update subdev-formats doc with new MEDIA_BUS_FMT values

2014-11-10 Thread Boris Brezillon
In order to have subsytem agnostic media bus format definitions we've moved media bus definition to include/uapi/linux/media-bus-format.h and prefixed them with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT. Update the v4l documentation accordingly. Signed-off-by: Boris Brezillon

[PATCH v6 RESEND 05/10] [media] pci: Make use of MEDIA_BUS_FMT definitions

2014-11-10 Thread Boris Brezillon
In order to have subsytem agnostic media bus format definitions we've moved media bus definition to include/uapi/linux/media-bus-format.h and prefixed values with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT. Replace all references to the old definitions in pci drivers. Signed-off-by: Boris Brezillon

[PATCH v6 RESEND 00/10] [media] Make mediabus format subsystem neutral

2014-11-10 Thread Boris Brezillon
Hello, This patch series prepares the use of media bus formats outside of the V4L2 subsytem (my final goal is to use it in the Atmel HLCDC DRM driver where I have to configure my DPI/RGB bus according to the connected display). The series first defines MEDIA_BUS_FMT_ macros, and then replace all

[PATCH v6 RESEND 03/10] [media] Make use of the new media_bus_format definitions

2014-11-10 Thread Boris Brezillon
Replace references to the v4l2_mbus_pixelcode enum with the new media_bus_format enum in all common headers. Signed-off-by: Boris Brezillon boris.brezil...@free-electrons.com Acked-by: Sakari Ailus sakari.ai...@linux.intel.com Acked-by: Hans Verkuil hans.verk...@cisco.com ---

[PATCH v6 RESEND 01/10] [media] Move mediabus format definition to a more standard place

2014-11-10 Thread Boris Brezillon
Define MEDIA_BUS_FMT macros (re-using the values defined in the v4l2_mbus_pixelcode enum) into a separate header file so that they can be used from the DRM/KMS subsystem without any reference to the V4L2 subsystem. Then set V4L2_MBUS_FMT definitions to the MEDIA_BUS_FMT values using the

[PATCH v6 RESEND 04/10] [media] i2c: Make use of media_bus_format enum

2014-11-10 Thread Boris Brezillon
In order to have subsytem agnostic media bus format definitions we've moved media bus definitions to include/uapi/linux/media-bus-format.h and prefixed values with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT. Replace all references to the old definitions in i2c drivers. Signed-off-by: Boris Brezillon

[PATCH v6 RESEND 09/10] gpu: ipu-v3: Make use of media_bus_format enum

2014-11-10 Thread Boris Brezillon
In order to have subsytem agnostic media bus format definitions we've moved media bus definition to include/uapi/linux/media-bus-format.h and prefixed enum values with MEDIA_BUS_FMT instead of V4L2_MBUS_FMT. Reference new definitions in the ipu-v3 driver. Signed-off-by: Boris Brezillon

[PATCHv3 0/4] [media] si4713 DT binding

2014-11-10 Thread Sebastian Reichel
Hi, This is the third revision of the si4713 radio transmitter DT support patchset needed for the Nokia N900. Changes since PATCHv2: * Dropped patches 1-4, which have been accepted * Patch 1 has been updated according to Sakari's comments * Patch 3-4 are unchanged Apart from that you marked

[PATCHv3 3/4] ARM: OMAP2: RX-51: update si4713 platform data

2014-11-10 Thread Sebastian Reichel
This updates platform data related to Si4713, which has been updated to be compatible with DT interface. Signed-off-by: Sebastian Reichel s...@kernel.org --- arch/arm/mach-omap2/board-rx51-peripherals.c | 69 +--- 1 file changed, 31 insertions(+), 38 deletions(-) diff

[PATCHv3 1/4] [media] si4713: add device tree support

2014-11-10 Thread Sebastian Reichel
Add device tree support by changing the device registration order. In the device tree the si4713 node is a normal I2C device, which will be probed as such. Thus the V4L device must be probed from the I2C device and not the other way around. Signed-off-by: Sebastian Reichel s...@kernel.org ---

[PATCHv3 4/4] [media] si4713: cleanup platform data

2014-11-10 Thread Sebastian Reichel
Remove unreferenced members from the platform data's structure. Signed-off-by: Sebastian Reichel s...@kernel.org --- include/media/si4713.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/media/si4713.h b/include/media/si4713.h index 343b8fb5..be4f58e 100644 ---

[PATCHv3 2/4] [media] si4713: add DT binding documentation

2014-11-10 Thread Sebastian Reichel
This patch adds the DT bindings documentation for Silicon Labs Si4713 FM radio transmitter. Signed-off-by: Sebastian Reichel s...@kernel.org --- Documentation/devicetree/bindings/media/si4713.txt | 30 ++ 1 file changed, 30 insertions(+) create mode 100644

Re: [PATCHv3 0/4] [media] si4713 DT binding

2014-11-10 Thread Tony Lindgren
* Sebastian Reichel s...@kernel.org [141110 12:36]: Hi, This is the third revision of the si4713 radio transmitter DT support patchset needed for the Nokia N900. Changes since PATCHv2: * Dropped patches 1-4, which have been accepted * Patch 1 has been updated according to Sakari's

Re: [PATCHv3 3/4] ARM: OMAP2: RX-51: update si4713 platform data

2014-11-10 Thread Tony Lindgren
* Sebastian Reichel s...@kernel.org [141110 12:37]: This updates platform data related to Si4713, which has been updated to be compatible with DT interface. Signed-off-by: Sebastian Reichel s...@kernel.org Please feel free to merge this one along with the other camera patches, this should

Re: [GIT PULL for v3.18-rc1] media updates

2014-11-10 Thread Paul Bolle
symbol HAS_MMU. There's no such symbol. So that test will always fail. Did you perhaps mean simply MMU? This typo is still present in both next-20141110 and v3.18-rc4. And I've first reported it nearly two months ago. I see two fixes: 1) s/HAS_MMU/MMU/ 2) s/ || (COMPILE_TEST HAS_MMU

Re: [GIT PULL for v3.18-rc1] media updates

2014-11-10 Thread Mauro Carvalho Chehab
/gmane.linux.drivers.video-input-infrastructure/82299 it adds an (optional) test for a Kconfig symbol HAS_MMU. There's no such symbol. So that test will always fail. Did you perhaps mean simply MMU? This typo is still present in both next-20141110 and v3.18-rc4. And I've first reported it nearly two

Re: [GIT PULL for v3.18-rc1] media updates

2014-11-10 Thread Paul Bolle
On Mon, 2014-11-10 at 18:54 -0200, Mauro Carvalho Chehab wrote: Em Mon, 10 Nov 2014 21:45:56 +0100 Paul Bolle pebo...@tiscali.nl escreveu: This typo is still present in both next-20141110 and v3.18-rc4. And I've first reported it nearly two months ago. I see two fixes: 1) s/HAS_MMU

Re: [RFCv2 5/8] [media] si4713: add device tree support

2014-11-10 Thread Sebastian Reichel
Hi Sakari, On Tue, Nov 04, 2014 at 11:47:14PM +0200, Sakari Ailus wrote: Nice set of patches! Thanks! :-) Thanks :) [...] struct si4713_device *sdev; - struct si4713_platform_data *pdata = client-dev.platform_data; struct v4l2_ctrl_handler *hdl; - int rval, i; +

Re: [PATCH] v4l: uvcvideo: Fix buffer completion size check

2014-11-10 Thread Guennadi Liakhovetski
On Mon, 10 Nov 2014, Guennadi Liakhovetski wrote: Hi Laurent, On Thu, 2 Oct 2014, Laurent Pinchart wrote: Hi Guennadi, Ping ? Sorry again for a delay, and unfortunately my eventual reply won't be very helpful: we've modified our user-space in a way, that that path isn't

Re: [GIT PULL for v3.18-rc1] media updates

2014-11-10 Thread Mauro Carvalho Chehab
Em Mon, 10 Nov 2014 22:05:38 +0100 Paul Bolle pebo...@tiscali.nl escreveu: On Mon, 2014-11-10 at 18:54 -0200, Mauro Carvalho Chehab wrote: Em Mon, 10 Nov 2014 21:45:56 +0100 Paul Bolle pebo...@tiscali.nl escreveu: This typo is still present in both next-20141110 and v3.18-rc4. And I've

cron job: media_tree daily build: OK

2014-11-10 Thread Hans Verkuil
This message is generated daily by a cron job that builds media_tree for the kernels and architectures in the list below. Results of the daily build of media_tree: date: Tue Nov 11 04:00:17 CET 2014 git branch: test git hash: 4895cc47a072dcb32d3300d0a46a251a8c6db5f1 gcc

Re: Add controls to query camera read only paramters

2014-11-10 Thread Bin Chen
Hi Guennadi, On 10 November 2014 19:46, Guennadi Liakhovetski g.liakhovet...@gmx.de wrote: Hi Bin, On Sat, 8 Nov 2014, Bin Chen wrote: Hi Everyone, I need suggestions with regard to adding controls to query camera read only parameters (e.g maxZoom/maxExposureCompensation) as needed by

Re: [PATCH v3 06/10] [media] platform: Make use of media_bus_format enum

2014-11-10 Thread Sekhar Nori
On Saturday 08 November 2014 02:48 PM, Prabhakar Lad wrote: Hi, Thanks for the patch, On Fri, Nov 7, 2014 at 2:07 PM, Boris Brezillon boris.brezil...@free-electrons.com wrote: In order to have subsytem agnostic media bus format definitions we've moved media bus definition to

Re: [PATCH v3 06/10] [media] platform: Make use of media_bus_format enum

2014-11-10 Thread Sekhar Nori
On Tuesday 11 November 2014 10:12 AM, Sekhar Nori wrote: On Saturday 08 November 2014 02:48 PM, Prabhakar Lad wrote: Hi, Thanks for the patch, On Fri, Nov 7, 2014 at 2:07 PM, Boris Brezillon boris.brezil...@free-electrons.com wrote: In order to have subsytem agnostic media bus format