cron job: media_tree daily build: OK

2018-05-12 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: Sun May 13 05:00:14 CEST 2018 media-tree git hash:2a5f2705c97625aa1a4e1dd4d584eaa05392e060 media_build gi

Re: [PATCH v2] media: i2c: adv748x: Fix pixel rate values

2018-05-12 Thread Niklas Söderlund
Hi Kieran, Thanks for your feedback. On 2018-05-12 09:04:18 +0100, Kieran Bingham wrote: > Hi Niklas, Laurent, > > Thanks for the updated patch and detailed investigation to get this right. > > On 11/05/18 15:04, Niklas Söderlund wrote: > > From: Laurent Pinchart > > > > The pixel rate, as re

Re: [PATCH 5/7] Header location fix for 3.5.0 to 3.11.x

2018-05-12 Thread Brad Love
On 2018-05-12 14:42, Jasmin J. wrote: > Hello Brad! > > This patch added the inclusion of "linux/of_i2c.h". > This gave the warnings in the last nightly build for Kernel > 3.6 - 3.9. > > I just pushed a fix for that, so we should have an OK build this > night. > > BR, >Jasmin Thanks for the f

Re: [PATCH 5/7] Header location fix for 3.5.0 to 3.11.x

2018-05-12 Thread Jasmin J.
Hello Brad! This patch added the inclusion of "linux/of_i2c.h". This gave the warnings in the last nightly build for Kernel 3.6 - 3.9. I just pushed a fix for that, so we should have an OK build this night. BR, Jasmin

Re: [PATCH 2/7] Disable additional drivers requiring gpio/consumer.h

2018-05-12 Thread Jasmin J.
Hello Brad! THX for the quick fix! Hans did already apply it and Kernel 3.16 builds now. I hope we will see a complete build tomorrow. BR, Jasmin

[PATCH v3 1/2] si2168: Set TS clock mode and frequency

2018-05-12 Thread Thomas Hollstegge
Some devices require a higher TS clock frequency to demodulate some muxes. This adds two optional parameters to control the TS clock frequency mode as well as the frequency. Signed-off-by: Thomas Hollstegge --- drivers/media/dvb-frontends/si2168.c | 20 +++- drivers/media/dv

[PATCH v3 2/2] dvbsky: Add support for MyGica T230C v2

2018-05-12 Thread Thomas Hollstegge
Support for newer revisions of the MyGica T230C, shipping with a different USB pid. Although sometimes referred to as T230C2, the device is sold under its original name T230C. Besides a slightly different PCB layout and some different minor components, it utilizes the same bridge, demodulator and

[PATCH v3 0/2] media: dvbsky: Add support for MyGica T230C v2

2018-05-12 Thread Thomas Hollstegge
Add support for newer revisions of the USB DVB-C/DVB-T/DVB-T2 stick MyGica T230C, sometimes referred to as MyGica T230C2. The device needs a fixed TS clock frequency of 10MHz to be able to demod some channels. This is done by adding two new optional configuration options for the Si2168 demod (ts_cl

Re: [PATCH 1/4] gspca: convert to vb2

2018-05-12 Thread Hans de Goede
Hi Hans, Overall looks good, 1 comment inline. On 12-05-18 16:44, Hans Verkuil wrote: From: Hans Verkuil Signed-off-by: Hans Verkuil --- drivers/media/usb/gspca/Kconfig| 1 + drivers/media/usb/gspca/gspca.c| 899 - drivers/media/usb/gspca/gsp

Re: [PATCH 2/7] Disable additional drivers requiring gpio/consumer.h

2018-05-12 Thread Brad Love
Hi Jasmin, On 2018-05-12 08:20, Brad Love wrote: > Hi Jasmin, > > > On 2018-05-12 04:31, Jasmin J. wrote: >> Hello Brad! >> >> Tonight build broke due to patch 95ee4c285022! >> You enabled VIDEO_OV2685 for 3.13., which doesn't >> compile for Kernels older than 3.17. When you look >> to the Kernel

[PATCH] kernel version limitation fixup

2018-05-12 Thread Brad Love
Fixes: 95ee4c285022 ("Disable additional drivers requiring gpio/consumer.h") Duplicate entries in 3.13.0 removed, they exist in 3.17.0 and cause build failure any earlier. The four remaining drivers from the commit were moved to 3.17.0 after determining they too require GPIOD_OUT_LOW/HIGH. Repor

[PATCH 3/4] v4l2-ioctl: clear fields in s_parm

2018-05-12 Thread Hans Verkuil
From: Hans Verkuil Zero the reserved capture/output array. Zero the extendedmode (it is never used in drivers). Clear all flags in capture/outputmode except for V4L2_MODE_HIGHQUALITY, as that is the only valid flag. Signed-off-by: Hans Verkuil --- drivers/media/v4l2-core/v4l2-ioctl.c | 17 ++

[PATCH 1/4] gspca: convert to vb2

2018-05-12 Thread Hans Verkuil
From: Hans Verkuil Signed-off-by: Hans Verkuil --- drivers/media/usb/gspca/Kconfig| 1 + drivers/media/usb/gspca/gspca.c| 899 - drivers/media/usb/gspca/gspca.h| 38 +- drivers/media/usb/gspca/m5602/m5602_core.c | 4 +- drivers/media/

[PATCH 0/4] gspca: convert to vb2

2018-05-12 Thread Hans Verkuil
From: Hans Verkuil The first patch converts the gspca driver to the vb2 framework. It was much easier to do than I expected and it saved almost 600 lines of gspca driver code. The second patch fixes v4l2-compliance warnings for g/s_parm. The third patch clears relevant fields in v4l2_streamparm

[PATCH 4/4] v4l2-ioctl: delete unused v4l2_disable_ioctl_locking

2018-05-12 Thread Hans Verkuil
From: Hans Verkuil The last user of this 'feature' was the gspca driver. Now that that driver has been converted to vb2 we can delete this code. Signed-off-by: Hans Verkuil --- drivers/media/v4l2-core/v4l2-ioctl.c | 2 -- include/media/v4l2-dev.h | 15 --- 2 files chan

[PATCH 2/4] gspca: fix g/s_parm handling

2018-05-12 Thread Hans Verkuil
From: Hans Verkuil Fix v4l2-compliance error: s_parm never set V4L2_CAP_TIMEPERFRAME. Also various cleanups. Signed-off-by: Hans Verkuil --- drivers/media/usb/gspca/gspca.c | 29 - drivers/media/usb/gspca/ov534.c | 1 - drivers/media/usb/gspca/topro.c | 1 - 3 fil

Re: [PATCH v11] media: imx258: Add imx258 camera sensor driver

2018-05-12 Thread Tomasz Figa
On Sat, May 12, 2018 at 9:52 PM Sakari Ailus wrote: > On Thu, May 10, 2018 at 09:15:31AM +, Tomasz Figa wrote: > > On Thu, May 10, 2018 at 6:11 PM Zheng, Jian Xu > > wrote: > > > > > Hi Tomasz, > > > > > > -Original Message- > > > > From: linux-media-ow...@vger.kernel.org [mailto:lin

Re: [PATCH 2/7] Disable additional drivers requiring gpio/consumer.h

2018-05-12 Thread Brad Love
Hi Jasmin, On 2018-05-12 04:31, Jasmin J. wrote: > Hello Brad! > > Tonight build broke due to patch 95ee4c285022! > You enabled VIDEO_OV2685 for 3.13., which doesn't > compile for Kernels older than 3.17. When you look > to the Kernel 3.17 section a lot of the drivers you > enabled for 3.13 with

Re: [PATCH v11] media: imx258: Add imx258 camera sensor driver

2018-05-12 Thread Sakari Ailus
On Thu, May 10, 2018 at 09:15:31AM +, Tomasz Figa wrote: > On Thu, May 10, 2018 at 6:11 PM Zheng, Jian Xu > wrote: > > > Hi Tomasz, > > > > -Original Message- > > > From: linux-media-ow...@vger.kernel.org [mailto:linux-media- > > > ow...@vger.kernel.org] On Behalf Of Tomasz Figa > >

Re: [PATCH v11] media: imx258: Add imx258 camera sensor driver

2018-05-12 Thread Sakari Ailus
On Thu, May 10, 2018 at 11:08:43AM +, Zheng, Jian Xu wrote: > Hi Sakari & Jason, > > > -Original Message- > > From: linux-media-ow...@vger.kernel.org [mailto:linux-media- > > ow...@vger.kernel.org] On Behalf Of Sakari Ailus > > Sent: Wednesday, May 9, 2018 5:43 PM > > To: Chen, JasonX

[GIT PULL v2 for 4.18] Cadence CSI-2 TX and RX drivers

2018-05-12 Thread Sakari Ailus
Hi Mauro, Here are the drivers for Cadence CSI-2 TX and RX hardware blocks. since v1: - Add a patch to fix a compiler warning (which is effectively two bugs). Please pull. The following changes since commit 2a5f2705c97625aa1a4e1dd4d584eaa05392e060: media: lgdt330x.h: fix compiler warning (

[GIT PULL for 4.18] Remove the atomisp staging driver

2018-05-12 Thread Sakari Ailus
Hi folks, Here's a pull request to remove the atomisp driver. I've put patches sent for the driver into the set, just in case someone wishes to continue the work laster on. Please pull. The following changes since commit f10379aad39e9da8bc7d1822e251b5f0673067ef: media: include/video/omapfb_

[PATCH v3 3/3] [media] ddbridge: implement IOCTL handling

2018-05-12 Thread Daniel Scheller
From: Daniel Scheller This patch adds back the IOCTL API/functionality which is present in the upstream dddvb driver package. In comparison, the IOCTL handler has been factored to a separate object (and with that, some functionality from -core, such as reg_wait() and ddb_flashio() has been moved

[PATCH v3 1/3] Documentation: ioctl-number: add ddbridge IOCTLs

2018-05-12 Thread Daniel Scheller
From: Daniel Scheller drivers/media/pci/ddbridge exposes a few IOCTLs which are used by userspace utilities to ie. update PCIe card's FPGA firmware. The IOCTLs chosen are in the range 0xDD/0xE0 up to 0xDD/0xFF, with 0xDD as sort of gimmick for "Digital Devices". To not conflict with the zfpc dri

[PATCH v3 2/3] [media] ddbridge: uAPI header for IOCTL definitions and related data structs

2018-05-12 Thread Daniel Scheller
From: Daniel Scheller Add a uAPI header to define the IOCTLs and the related data structs used by ddbridge, which currently are IOCTL_DDB_FLASHIO and IOCTL_DDB_IO. The header can be included by userspace applications directly to make use of the IOCTLs, and they even should use this header to keep

[PATCH v3 0/3] IOCTLs in ddbridge

2018-05-12 Thread Daniel Scheller
From: Daniel Scheller Third iteration of the IOCTL patches for ddbridge, split into multiple patches: Patch 1 just adds the reservation/information of the used IOCTLs into ioctl-numbers.txt in the Docs dir. Doc, s390 and LKML are Cc'ed on this patch. Patch 2 adds the header which defines the IO

[PATCH 3/3] media: rc: winbond: do not send reset and timeout raw events on startup

2018-05-12 Thread Sean Young
ir_raw_event_set_idle() sends a timeout event which is not needed, and on startup no reset event is needed either. Signed-off-by: Sean Young --- drivers/media/rc/winbond-cir.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/rc/winbond-cir.c b/drivers/media/r

[PATCH 1/3] media: rc: drivers should produce alternate pulse and space timing events

2018-05-12 Thread Sean Young
Report an error if this is not the case or any problem with the generated raw events. Signed-off-by: Sean Young --- drivers/media/rc/rc-ir-raw.c | 19 +++ 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/drivers/media/rc/rc-ir-raw.c b/drivers/media/rc/rc-ir-raw.c in

[PATCH 2/3] media: rc: decoders do not need to check for transitions

2018-05-12 Thread Sean Young
Drivers should never produce consecutive pulse or space raw events. Should that occur, we would have bigger problems than this code is trying to guard against. Note that we already log an error should a driver misbehave. Signed-off-by: Sean Young --- drivers/media/rc/ir-mce_kbd-decoder.c | 6 -

Re: [PATCH 5/5] media: rcar-vin: Use FTEV for digital input

2018-05-12 Thread Sergei Shtylyov
Hello! On 5/11/2018 12:59 PM, Jacopo Mondi wrote: Since commit (015060cb Need 12 digits here, and SHA1 ID should be cited outside the parens. "media: rcar-vin: enable field toggle after a set number of lines for Gen3) The commit summary must be enclosed in (""). And I think Nikla

Re: [PATCH 2/7] Disable additional drivers requiring gpio/consumer.h

2018-05-12 Thread Jasmin J.
Hello Brad! Tonight build broke due to patch 95ee4c285022! You enabled VIDEO_OV2685 for 3.13., which doesn't compile for Kernels older than 3.17. When you look to the Kernel 3.17 section a lot of the drivers you enabled for 3.13 with your patch should be enabled for 3.17 only. So please test this

Re: [PATCH v2] media: i2c: adv748x: Fix pixel rate values

2018-05-12 Thread Kieran Bingham
Hi Niklas, Laurent, Thanks for the updated patch and detailed investigation to get this right. On 11/05/18 15:04, Niklas Söderlund wrote: > From: Laurent Pinchart > > The pixel rate, as reported by the V4L2_CID_PIXEL_RATE control, must > include both horizontal and vertical blanking. Both the A