cron job: media_tree daily build: OK

2014-06-15 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: Mon Jun 16 04:00:14 CEST 2014 git branch: test git hash: f7a27ff1fb77e114d1059a5eb2ed1cffdc508ce8 gcc versi

Re: [PATCH 00/43] i.MX6 Video capture

2014-06-15 Thread Steve Longerbeam
On 06/13/2014 08:37 AM, Philipp Zabel wrote: > Am Donnerstag, den 12.06.2014, 14:05 -0700 schrieb Steve Longerbeam: >> Ok. Yes, we definitely need preview and MIPI CSI-2, and adding IC to the >> capture path is nice too, since it allows userland to select arbitrary user >> resolutions, pixel format

Re: Leadtek WinFast DTV Dongle Dual

2014-06-15 Thread Antti Palosaari
On 06/06/2014 02:54 AM, David Shirley wrote: Hi All, Recently purchased one of these (0413:6a05), the instructions @ http://www.linuxtv.org/wiki/index.php/Leadtek_WinFast_DTV_Dual_Dongle appear to be wrong. Running 3.14.5 I didn't need to patch drivers/media/usb/dvb-usb-v2/af9035.c, however the

[PATCH] [media] rc: Add support for decoding XMP protocol

2014-06-15 Thread Marcel J.E. Mol
This protocol is found on Dreambox remotes --- drivers/media/rc/Kconfig | 10 ++ drivers/media/rc/Makefile | 1 + drivers/media/rc/ir-raw.c | 1 + drivers/media/rc/ir-xmp-decoder.c | 226 ++ drivers/media/rc/rc-core-priv.h |

[PATCH 2/2] media: mt9m111: add device-tree documentation

2014-06-15 Thread Robert Jarzmik
Add documentation for the Micron mt9m111 image sensor. Signed-off-by: Robert Jarzmik --- .../devicetree/bindings/media/i2c/mt9m111.txt | 28 ++ 1 file changed, 28 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/mt9m111.txt diff --git a/Docu

[PATCH 1/2] media: mt9m111: add device-tree suppport

2014-06-15 Thread Robert Jarzmik
Add device-tree support for mt9m111 camera sensor. Signed-off-by: Robert Jarzmik --- drivers/media/i2c/soc_camera/mt9m111.c | 21 + 1 file changed, 21 insertions(+) diff --git a/drivers/media/i2c/soc_camera/mt9m111.c b/drivers/media/i2c/soc_camera/mt9m111.c index ccf5940..7

[PATCH 2/2] media: soc_camera: pxa_camera device-tree support

2014-06-15 Thread Robert Jarzmik
Add device-tree support to pxa_camera host driver. Signed-off-by: Robert Jarzmik --- drivers/media/platform/soc_camera/pxa_camera.c | 80 ++ 1 file changed, 80 insertions(+) diff --git a/drivers/media/platform/soc_camera/pxa_camera.c b/drivers/media/platform/soc_camera/

[PATCH 1/2] media: soc_camera: pxa_camera documentation device-tree support

2014-06-15 Thread Robert Jarzmik
Add documentation for pxa_camera host interface. Signed-off-by: Robert Jarzmik --- .../devicetree/bindings/media/pxa-camera.txt | 40 ++ 1 file changed, 40 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/pxa-camera.txt diff --git a/Documentati

Re: [Linux-kernel] RFC: new soc_camera/rcar_vin patch series

2014-06-15 Thread Ben Dooks
On 15/06/14 20:56, Ben Dooks wrote: > This is a new series for the rcar_vin and soc_camera layer > to support using OF. > > It should incorporate most of the feedback from the previous > series, but please let me know if there's anything missed. As > a note, we have skipped over multiple eps for t

Re: soc_camera and device-tree

2014-06-15 Thread Ben Dooks
On 14/06/14 21:58, Guennadi Liakhovetski wrote: > Hi Robert, > > On Sat, 14 Jun 2014, Robert Jarzmik wrote: > >> Hi Guennadi, >> >> I'm slowly converting all of my drivers to device-tree. >> In the process, I met ... soc_camera. >> >> I converted mt9m111.c and pxa_camera.c, but now I need the lin

[PATCH 9/9] ARM: lager: add vin1 node

2014-06-15 Thread Ben Dooks
Add device-tree for vin1 (composite video in) on the lager board. Signed-off-by: Ben Dooks --- arch/arm/boot/dts/r8a7790-lager.dts | 38 + 1 file changed, 38 insertions(+) diff --git a/arch/arm/boot/dts/r8a7790-lager.dts b/arch/arm/boot/dts/r8a7790-lager.dts

[PATCH 7/9] soc_camera: add support for dt binding soc_camera drivers

2014-06-15 Thread Ben Dooks
Add initial support for OF based soc-camera devices that may be used by any of the soc-camera drivers. The driver itself will need converting to use OF. These changes allow the soc-camera driver to do the connecting of any async capable v4l2 device to the soc-camera driver. This has currently been

[PATCH 8/9] r8a7790.dtsi: add vin[0-3] nodes

2014-06-15 Thread Ben Dooks
Add nodes for the four video input channels on the R8A7790. Signed-off-by: Ben Dooks --- arch/arm/boot/dts/r8a7790.dtsi | 36 1 file changed, 36 insertions(+) diff --git a/arch/arm/boot/dts/r8a7790.dtsi b/arch/arm/boot/dts/r8a7790.dtsi index 7ff2960..a6f083d

[PATCH 3/9] adv7180: Remove duplicate unregister call

2014-06-15 Thread Ben Dooks
From: Ian Molton This driver moved over to v4l2_async_unregister_subdev() but still retained a call to v4l2_unregister_subdev(). Remove. Signed-off-by: Ian Molton Signed-off-by: Ben Dooks --- drivers/media/i2c/adv7180.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/media/i2c/adv7

[PATCH 5/9] rcar_vin: copy flags from pdata

2014-06-15 Thread Ben Dooks
The platform data is a single word, so simply copy it into the device's private data structure than keeping a copy of the pointer. This will make changing to device-tree binding easier as it is one allocation instead of two. Signed-off-by: Ben Dooks --- drivers/media/platform/soc_camera/rcar_vi

[PATCH 6/9] rcar_vin: add devicetree support

2014-06-15 Thread Ben Dooks
Add support for devicetree probe for the rcar-vin driver. Signed-off-by: Ben Dooks --- .../devicetree/bindings/media/rcar_vin.txt | 86 ++ drivers/media/platform/soc_camera/rcar_vin.c | 72 -- 2 files changed, 151 insertions(+), 7 deletions(-) c

[PATCH 4/9] adv7180: add of match table

2014-06-15 Thread Ben Dooks
Add a proper of match id for use when the device is being bound via device tree, to avoid having to use the i2c old-style binding of the device. Signed-off-by: Ben Dooks --- Since original submission: - Fixed of_match_table typo --- drivers/media/i2c/adv7180.c | 11 +++ 1 file c

[PATCH 2/9] ARM: lager: add i2c1, i2c2 pins

2014-06-15 Thread Ben Dooks
Add pinctrl definitions for i2c1 and i2c2 busses on the Lager board to ensure these are setup correctly at initialisation time. The i2c0 and i2c3 busses are connected to single function pins. Signed-off-by: Ben Dooks --- arch/arm/boot/dts/r8a7790-lager.dts | 14 ++ 1 file changed, 14

[PATCH 1/9] ARM: lager: enable i2c devices

2014-06-15 Thread Ben Dooks
Add i2c0, i2c1, i2c2 and i2c3 nodes to the Lager reference device tree as these busses all have devices on them that can be probed even if they are no drivers yet. Signed-off-by: Ben Dooks --- arch/arm/boot/dts/r8a7790-lager.dts | 16 1 file changed, 16 insertions(+) diff --git

RFC: new soc_camera/rcar_vin patch series

2014-06-15 Thread Ben Dooks
This is a new series for the rcar_vin and soc_camera layer to support using OF. It should incorporate most of the feedback from the previous series, but please let me know if there's anything missed. As a note, we have skipped over multiple eps for this release as there are few scenarios for the d

Re: soc_camera and device-tree

2014-06-15 Thread Guennadi Liakhovetski
Hi Robert, On Sun, 15 Jun 2014, Robert Jarzmik wrote: > Guennadi Liakhovetski writes: > > > Hi Robert, > > > > On Sat, 14 Jun 2014, Robert Jarzmik wrote: > > > >> Hi Guennadi, > >> > >> I'm slowly converting all of my drivers to device-tree. > >> In the process, I met ... soc_camera. > >> > >

Re: soc_camera and device-tree

2014-06-15 Thread Ben Dooks
On 14/06/14 21:30, Robert Jarzmik wrote: > Hi Guennadi, > > I'm slowly converting all of my drivers to device-tree. > In the process, I met ... soc_camera. > > I converted mt9m111.c and pxa_camera.c, but now I need the linking > soc_camera. And I don't have a clear idea on how it should be done.

Re: soc_camera and device-tree

2014-06-15 Thread Robert Jarzmik
Guennadi Liakhovetski writes: > Hi Robert, > > On Sat, 14 Jun 2014, Robert Jarzmik wrote: > >> Hi Guennadi, >> >> I'm slowly converting all of my drivers to device-tree. >> In the process, I met ... soc_camera. >> >> I converted mt9m111.c and pxa_camera.c, but now I need the linking >> soc_came

Re: [PATCH] msi3103: Use time_before_eq()

2014-06-15 Thread Antti Palosaari
Acked-by: Antti Palosaari Reviewed-by: Antti Palosaari Mauro, pick that from patchwork to 3.16. I am not going to PULL request it. regards Antti On 05/25/2014 03:39 PM, Manuel Schölling wrote: To be future-proof and for better readability the time comparisons are modified to use time_before

Re: [PATCH v2] staging/media/rtl2832u_sdr: fix coding style problems by adding blank lines

2014-06-15 Thread Antti Palosaari
Acked-by: Antti Palosaari Reviewed-by: Antti Palosaari Mauro, pick that from patchwork to 3.16. I am not going to PULL request it. Antti On 06/03/2014 03:38 AM, Ovidiu Toader wrote: This minor patch fixes all WARNING:SPACING style warnings in rtl2832_sdr.c The new version of the file please

[PULL 3.16] si2168 and si2157 fixes

2014-06-15 Thread Antti Palosaari
The following changes since commit a2668e10d7246e782f7708dc47c00f035da23a81: [media] au0828-dvb: restore its permission to 644 (2014-06-04 15:19:36 -0300) are available in the git repository at: git://linuxtv.org/anttip/media_tree.git silabs_fixes for you to fetch changes up to 6b344e9ee

Re: [PATCH] rtl28xxu: add [1b80:d3b0] Sveon STV21

2014-06-15 Thread Antti Palosaari
Acked-by: Antti Palosaari Reviewed-by: Antti Palosaari Mauro, please pick that from patchwork, I am not going to PULL request it. regards Antti On 06/12/2014 09:22 AM, Sebastian Kemper wrote: Added Sveon STV21 device based on Realtek RTL2832U and FC0013 tuner Signed-off-by: Sebastian Kemp