cron job: media_tree daily build: WARNINGS

2016-07-26 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: Wed Jul 27 04:00:25 CEST 2016 git branch: test git hash: 009a620848218d521f008141c62f56bf19294dd9 gcc

Re: [PATCH v2 2/4] dt-bindings: Add a binding for Mediatek MDP

2016-07-26 Thread Minghsiu Tsai
On Tue, 2016-07-26 at 13:54 -0500, Rob Herring wrote: > On Fri, Jul 22, 2016 at 04:33:01PM +0800, Minghsiu Tsai wrote: > > Add a DT binding documentation of MDP for the MT8173 SoC > > from Mediatek > > > > Signed-off-by: Minghsiu Tsai > > --- > >

Avermedia TD310

2016-07-26 Thread Axel Rometsch
Hi, would it be possible to add support for the Avermedia TD310 USB TV Dongle? It is a combined DVB-C, DVB-T and DVB-T2 device that supports HEVC. lsusb ID 07ca:1871 AVerMedia Technologies, Inc. lsusb -v Bus 002 Device 003: ID 07ca:1871 AVerMedia Technologies, Inc. Couldn't open device,

Re: [PATCH v2 2/4] dt-bindings: Add a binding for Mediatek MDP

2016-07-26 Thread Rob Herring
On Fri, Jul 22, 2016 at 04:33:01PM +0800, Minghsiu Tsai wrote: > Add a DT binding documentation of MDP for the MT8173 SoC > from Mediatek > > Signed-off-by: Minghsiu Tsai > --- > .../devicetree/bindings/media/mediatek-mdp.txt | 96 > > 1

dvb-usb/dw2102: frontend initialization missing when dvb_usb disable_rc_polling=1

2016-07-26 Thread Oliver O.
Hi, with kernel 4.4 (Ubuntu 4.4.0-28.47-generic 4.4.13), this option setting in /etc/modprobe.d/*.conf seems to block proper initialization: options dvb_usb disable_rc_polling=1 Without this option, firmware for the frontend 'm88ds3103' is loaded on first access (see second log below). When

IR button repeat not working in kernel 4.6 and 4.7

2016-07-26 Thread Matthias Reichl
In kernel 4.6 and 4.7 holding down a button on an IR remote no longer results in repeated key down events. I've reproduced that issue on a Raspberry Pi B using a GPIO IR receiver. Other systems seem to be affected as well, for example Intel NUC with an ITE CIR receiver. Bisecting points to this

Re: Questions about userspace, request and frame API in your Rockchip VPU driver

2016-07-26 Thread Florent Revest
Hi, On 26/07/2016 11:26, Tomasz Figa wrote: > I think the H264 API is more or less in a good shape. I don't remember > exactly, but VP8 API might need a bit more work. There is also VP9 API > in the works, but it's a quite early stage. Both are more or less > blocked currently on the request API,

Re: [PATCH] [media] lgdt3306a: remove 20*50 msec unnecessary timeout

2016-07-26 Thread Michael Ira Krufky
On Mon, Jul 25, 2016 at 9:36 PM, Mauro Carvalho Chehab wrote: > Em Mon, 25 Jul 2016 15:37:14 -0400 > Michael Ira Krufky escreveu: > >> On Mon, Jul 25, 2016 at 3:28 PM, Mauro Carvalho Chehab >> wrote: >> > Hi Michael, >> > >>

Re: [PATCH] rcar-vin: add R-Car gen2 fallback compatibility string

2016-07-26 Thread Sergei Shtylyov
On 7/26/2016 9:05 AM, Niklas Söderlund wrote: Such fallback string is present in the 'soc_camera' version of the R-Car VIN driver, so need to add it here as well... Signed-off-by: Sergei Shtylyov Acked-by: Niklas Söderlund

Re: Questions about userspace, request and frame API in your Rockchip VPU driver

2016-07-26 Thread Tomasz Figa
Hi Florent, Let's keep more people in the loop. CCing Pawel, Hans, Laurent and linux-media ML, as there might be more people interested in the status and/or helping. On Tue, Jul 26, 2016 at 4:50 PM, Florent Revest wrote: > Hi Tomasz, > > I'm currently an

[PATCH 3/7] cx231xx: Prepare for attaching new style i2c_client DVB demod drivers

2016-07-26 Thread Matthias Schwarzott
cx231xx does not yet support attaching new-style i2c_client DVB demod drivers. Add necessary code base on tuner support for i2c_client. Signed-off-by: Matthias Schwarzott --- drivers/media/usb/cx231xx/cx231xx-dvb.c | 9 - 1 file changed, 8 insertions(+), 1 deletion(-)

[PATCH 7/7] si2165: switch to regmap

2016-07-26 Thread Matthias Schwarzott
This avoids some low-level operations. It has the benefit that now register values van be read from /sys/kernel/debug/regmap The maximum register value is just a guess - all higher addresses read as zero. Signed-off-by: Matthias Schwarzott ---

[PATCH 4/7] cx231xx: attach si2165 driver via i2c_client

2016-07-26 Thread Matthias Schwarzott
Use new style attach. Signed-off-by: Matthias Schwarzott --- drivers/media/usb/cx231xx/cx231xx-dvb.c | 73 ++--- 1 file changed, 48 insertions(+), 25 deletions(-) diff --git a/drivers/media/usb/cx231xx/cx231xx-dvb.c

[PATCH 2/7] cx23885: attach si2165 driver via i2c_client

2016-07-26 Thread Matthias Schwarzott
Use new style attach. Signed-off-by: Matthias Schwarzott --- drivers/media/pci/cx23885/cx23885-dvb.c | 30 +- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/drivers/media/pci/cx23885/cx23885-dvb.c

[PATCH 6/7] si2165: use i2c_client->dev instead of i2c_adapter->dev for logging

2016-07-26 Thread Matthias Schwarzott
Now that there is a i2c_client, use the more specific dev for logging. Signed-off-by: Matthias Schwarzott --- drivers/media/dvb-frontends/si2165.c | 46 ++-- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git

[PATCH 5/7] si2165: Remove legacy attach

2016-07-26 Thread Matthias Schwarzott
Now that all users of legacy attach are converted it can be removed. Signed-off-by: Matthias Schwarzott --- drivers/media/dvb-frontends/si2165.c | 117 -- drivers/media/dvb-frontends/si2165.h | 31

[PATCH 1/7] si2165: support i2c_client attach

2016-07-26 Thread Matthias Schwarzott
Afterwards it is possible to convert attaching in card drivers. Signed-off-by: Matthias Schwarzott --- drivers/media/dvb-frontends/si2165.c | 149 +++ drivers/media/dvb-frontends/si2165.h | 22 ++ 2 files changed, 171 insertions(+) diff

[PATCH] si2165: avoid division by zero

2016-07-26 Thread Matthias Schwarzott
When si2165_init fails, the clk values in state are still at zero. But the dvb-core ignores the return value of init will call tune afterwards. This will trigger a division by zero when tuning. At least check for the variables to be non-zero before dividing. This happened for a system with WinTV

Re: [PATCH] rcar-vin: add R-Car gen2 fallback compatibility string

2016-07-26 Thread Niklas Söderlund
On 2016-07-25 22:19:33 +0300, Sergei Shtylyov wrote: > Such fallback string is present in the 'soc_camera' version of the R-Car VIN > driver, so need to add it here as well... > > Signed-off-by: Sergei Shtylyov Acked-by: Niklas Söderlund