cron job: media_tree daily build: ERRORS

2016-12-07 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: Thu Dec 8 05:00:16 CET 2016 media-tree git hash:365fe4e0ce218dc5ad10df17b150a366b6015499 media_build git

Re: [PATCH v5 2/2] Add support for OV5647 sensor

2016-12-07 Thread Sakari Ailus
Hi Ramiro, On Mon, Dec 05, 2016 at 05:36:34PM +, Ramiro Oliveira wrote: > Add support for OV5647 sensor. > > Modes supported: > - 640x480 RAW 8 > > Signed-off-by: Ramiro Oliveira > --- > MAINTAINERS| 7 + > drivers/media/i2c/Kconfig | 12 + > drivers/media/i2c/Makefile

Re: Regression: tvp5150 refactoring breaks all em28xx devices

2016-12-07 Thread Laurent Pinchart
Hi Devin, On Wednesday 07 Dec 2016 12:47:01 Devin Heitmueller wrote: > Hello Javier, Mauro, Laurent, > > I hope all is well with you. Mauro, Laurent: you guys going to > ELC/Portland in February? I haven't decided for sure yet, but I will likely go. > Looks like the refactoring done to tvp515

Re: [PATCH v5 1/2] Add OV5647 device tree documentation

2016-12-07 Thread Sakari Ailus
Hi Ramiro, Thank you for the patch. On Mon, Dec 05, 2016 at 05:36:33PM +, Ramiro Oliveira wrote: > Add device tree documentation. > > Signed-off-by: Ramiro Oliveira > --- > .../devicetree/bindings/media/i2c/ov5647.txt | 19 > +++ > 1 file changed, 19 insertions(+)

Re: [PATCH v6 3/3] sound/usb: Use Media Controller API to share media resources

2016-12-07 Thread Sakari Ailus
Hi Shuah, On Wed, Dec 07, 2016 at 01:03:59PM -0700, Shuah Khan wrote: > Hi Sakari, > > On 12/07/2016 03:52 AM, Sakari Ailus wrote: > > Hi Shuah, > > > > On Mon, Dec 05, 2016 at 05:38:23PM -0700, Shuah Khan wrote: > >> On 12/05/2016 04:21 PM, Laurent Pinchart wrote: > >>> Hi Shuah, > >>> > >>> On

Re: [PATCH v6 3/3] sound/usb: Use Media Controller API to share media resources

2016-12-07 Thread Shuah Khan
Hi Sakari, On 12/07/2016 03:52 AM, Sakari Ailus wrote: > Hi Shuah, > > On Mon, Dec 05, 2016 at 05:38:23PM -0700, Shuah Khan wrote: >> On 12/05/2016 04:21 PM, Laurent Pinchart wrote: >>> Hi Shuah, >>> >>> On Monday 05 Dec 2016 15:44:30 Shuah Khan wrote: On 11/30/2016 03:01 PM, Shuah Khan wrot

Re: [PATCH v6 0/5] davinci: VPIF: add DT support

2016-12-07 Thread Javier Martinez Canillas
Hello Kevin, On Wed, Dec 7, 2016 at 3:30 PM, Kevin Hilman wrote: > Prepare the groundwork for adding DT support for davinci VPIF drivers. > This series does some fixups/cleanups and then adds the DT binding and > DT compatible string matching for DT probing. > > The controversial part from previo

[PATCH v6 2/5] [media] davinci: vpif_capture: remove hard-coded I2C adapter id

2016-12-07 Thread Kevin Hilman
Remove hard-coded I2C adapter in favor of getting the ID from platform_data. Signed-off-by: Kevin Hilman --- drivers/media/platform/davinci/vpif_capture.c | 5 - include/media/davinci/vpif_types.h| 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/media/p

[PATCH v6 3/5] [media] davinci: vpif_capture: fix start/stop streaming locking

2016-12-07 Thread Kevin Hilman
Video capture subdevs may be over I2C and may sleep during xfer, so we cannot do IRQ-disabled locking when calling the subdev. The IRQ-disabled locking is meant to protect the DMA queue list throughout the rest of the driver, so update the locking in [start|stop]_streaming to protect just this lis

[PATCH v6 4/5] [media] dt-bindings: add TI VPIF documentation

2016-12-07 Thread Kevin Hilman
Acked-by: Rob Herring Reviewed-by: Laurent Pinchart Signed-off-by: Kevin Hilman --- .../devicetree/bindings/media/ti,da850-vpif.txt| 83 ++ 1 file changed, 83 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/ti,da850-vpif.txt diff --git a/Docume

[PATCH v6 1/5] [media] davinci: VPIF: fix module loading, init errors

2016-12-07 Thread Kevin Hilman
Fix problems with automatic module loading by adding MODULE_ALIAS. Also fix various load-time errors cause by incorrect or not present platform_data. Signed-off-by: Kevin Hilman --- drivers/media/platform/davinci/vpif.c | 5 - drivers/media/platform/davinci/vpif_capture.c | 15

[PATCH v6 0/5] davinci: VPIF: add DT support

2016-12-07 Thread Kevin Hilman
Prepare the groundwork for adding DT support for davinci VPIF drivers. This series does some fixups/cleanups and then adds the DT binding and DT compatible string matching for DT probing. The controversial part from previous versions around async subdev parsing, and specifically hard-coding the in

[PATCH v6 5/5] [media] davinci: VPIF: add basic support for DT init

2016-12-07 Thread Kevin Hilman
Add basic support for initialization via DT Signed-off-by: Kevin Hilman --- drivers/media/platform/davinci/vpif.c | 9 + 1 file changed, 9 insertions(+) diff --git a/drivers/media/platform/davinci/vpif.c b/drivers/media/platform/davinci/vpif.c index f50148dcba64..1b02a6363f77 100644 --

Regression: tvp5150 refactoring breaks all em28xx devices

2016-12-07 Thread Devin Heitmueller
Hello Javier, Mauro, Laurent, I hope all is well with you. Mauro, Laurent: you guys going to ELC/Portland in February? Looks like the refactoring done to tvp5150 in January 2016 for s_stream() to support some embedded platform caused breakage in the 30+ em28xx products that also use the chip.

Re: [PATCH v5 4/5] [media] dt-bindings: add TI VPIF documentation

2016-12-07 Thread Kevin Hilman
Laurent Pinchart writes: > Hi Kevin, > > Thank you for the patch. > > On Tuesday 06 Dec 2016 21:08:25 Kevin Hilman wrote: >> Acked-by: Rob Herring >> Signed-off-by: Kevin Hilman >> --- >> .../devicetree/bindings/media/ti,da850-vpif.txt| 67 +++ >> 1 file changed, 67 insertion

[PATCH] vim2m: Clean up file handle in open() error path.

2016-12-07 Thread Santosh Kumar Singh
Fix to avoid possible memory leak and exit file handle in error paths. Signed-off-by: Santosh Kumar Singh --- drivers/media/platform/vim2m.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/media/platform/vim2m.c b/drivers/media/platform/vim2m.c index a98f679..9fd24b8 100644 --- a/d

Re: [PATCH v5 3/5] [media] davinci: vpif_capture: fix start/stop streaming locking

2016-12-07 Thread Kevin Hilman
Laurent Pinchart writes: > Hi Kevin, > > Thank you for the patch. > > On Tuesday 06 Dec 2016 21:08:24 Kevin Hilman wrote: >> Video capture subdevs may be over I2C and may sleep during xfer, so we >> cannot do IRQ-disabled locking when calling the subdev. >> >> The IRQ-disabled locking is meant t

Re: [PATCH v4 1/4] [media] davinci: vpif_capture: don't lock over s_stream

2016-12-07 Thread Kevin Hilman
Laurent Pinchart writes: > Hi Kevin, > > On Tuesday 06 Dec 2016 08:49:38 Kevin Hilman wrote: >> Laurent Pinchart writes: >> > On Tuesday 29 Nov 2016 15:57:09 Kevin Hilman wrote: >> >> Video capture subdevs may be over I2C and may sleep during xfer, so we >> >> cannot do IRQ-disabled locking when

Re: [PATCH v4 1/4] [media] davinci: vpif_capture: don't lock over s_stream

2016-12-07 Thread Laurent Pinchart
Hi Kevin, On Tuesday 06 Dec 2016 08:49:38 Kevin Hilman wrote: > Laurent Pinchart writes: > > On Tuesday 29 Nov 2016 15:57:09 Kevin Hilman wrote: > >> Video capture subdevs may be over I2C and may sleep during xfer, so we > >> cannot do IRQ-disabled locking when calling the subdev. > >> > >> Signe

Re: em28xx broken 4.9.0-rc6+

2016-12-07 Thread Mauro Carvalho Chehab
Em Wed, 7 Dec 2016 17:04:07 +0200 Antti Palosaari escreveu: > On 12/07/2016 04:55 PM, Mauro Carvalho Chehab wrote: > > Em Wed, 7 Dec 2016 12:22:01 -0200 > > Mauro Carvalho Chehab escreveu: > > > >> Em Tue, 6 Dec 2016 13:41:38 -0200 > >> Mauro Carvalho Chehab escreveu: > >> > >>> Em Tue, 6 D

Re: [PATCH v5 4/5] [media] dt-bindings: add TI VPIF documentation

2016-12-07 Thread Laurent Pinchart
Hi Kevin, Thank you for the patch. On Tuesday 06 Dec 2016 21:08:25 Kevin Hilman wrote: > Acked-by: Rob Herring > Signed-off-by: Kevin Hilman > --- > .../devicetree/bindings/media/ti,da850-vpif.txt| 67 +++ > 1 file changed, 67 insertions(+) > create mode 100644 > Documentatio

Re: em28xx broken 4.9.0-rc6+

2016-12-07 Thread Antti Palosaari
On 12/07/2016 04:55 PM, Mauro Carvalho Chehab wrote: Em Wed, 7 Dec 2016 12:22:01 -0200 Mauro Carvalho Chehab escreveu: Em Tue, 6 Dec 2016 13:41:38 -0200 Mauro Carvalho Chehab escreveu: Em Tue, 6 Dec 2016 01:06:17 +0200 Antti Palosaari escreveu: Hello Mauro I just noticed current em28xx

Re: em28xx broken 4.9.0-rc6+

2016-12-07 Thread Mauro Carvalho Chehab
Em Wed, 7 Dec 2016 12:22:01 -0200 Mauro Carvalho Chehab escreveu: > Em Tue, 6 Dec 2016 13:41:38 -0200 > Mauro Carvalho Chehab escreveu: > > > Em Tue, 6 Dec 2016 01:06:17 +0200 > > Antti Palosaari escreveu: > > > > > Hello Mauro > > > I just noticed current em28xx driver seem to be broken. W

Re: [PATCH v5 3/5] [media] davinci: vpif_capture: fix start/stop streaming locking

2016-12-07 Thread Laurent Pinchart
Hi Kevin, Thank you for the patch. On Tuesday 06 Dec 2016 21:08:24 Kevin Hilman wrote: > Video capture subdevs may be over I2C and may sleep during xfer, so we > cannot do IRQ-disabled locking when calling the subdev. > > The IRQ-disabled locking is meant to protect the DMA queue list > througho

Re: em28xx broken 4.9.0-rc6+

2016-12-07 Thread Mauro Carvalho Chehab
Em Tue, 6 Dec 2016 13:41:38 -0200 Mauro Carvalho Chehab escreveu: > Em Tue, 6 Dec 2016 01:06:17 +0200 > Antti Palosaari escreveu: > > > Hello Mauro > > I just noticed current em28xx driver seem to be broken. When I plug > > device first time it loads correctly, but when I re-plug it, it does n

Re: [PATCH v3 3/4] [media] davinci: vpif_capture: get subdevs from DT

2016-12-07 Thread Sakari Ailus
Hi Kevin, On Tue, Dec 06, 2016 at 11:50:58AM -0800, Kevin Hilman wrote: > On Tue, Dec 6, 2016 at 9:40 AM, Kevin Hilman wrote: > > Hans Verkuil writes: > > > >> On 12/01/2016 10:16 AM, Laurent Pinchart wrote: > >>> Hello, > >>> > >>> On Thursday 01 Dec 2016 09:57:31 Sakari Ailus wrote: > On

Re: [PATCH v6 3/3] sound/usb: Use Media Controller API to share media resources

2016-12-07 Thread Sakari Ailus
Hi Shuah, On Mon, Dec 05, 2016 at 05:38:23PM -0700, Shuah Khan wrote: > On 12/05/2016 04:21 PM, Laurent Pinchart wrote: > > Hi Shuah, > > > > On Monday 05 Dec 2016 15:44:30 Shuah Khan wrote: > >> On 11/30/2016 03:01 PM, Shuah Khan wrote: > >>> Change ALSA driver to use Media Controller API to sha

Re: [PATCH v4 00/13] Use sysfs filter for winbond & nuvoton wakeup

2016-12-07 Thread Sean Young
On Tue, Dec 06, 2016 at 10:19:08AM +, Sean Young wrote: > This patch series resurrects an earlier series with a new approach. I've discovered some bugs in this series. Protocol modules are not autoloaded and rc-loopback and is missing the wakeup_protocols sysfs file. Please treat this series