cron job: media_tree daily build: ERRORS

2018-07-03 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 4 05:00:11 CEST 2018 media-tree git hash:3c4a737267e89aafa6308c6c456d2ebea3fcd085 media_build

Re: [PATCH 20/22] [media] tvp5150: Add input port connectors DT bindings

2018-07-03 Thread Rob Herring
On Thu, Jun 28, 2018 at 06:20:52PM +0200, Marco Felsch wrote: > The TVP5150/1 decoders support different video input sources to their > AIP1A/B pins. > > Possible configurations are as follows: > - Analog Composite signal connected to AIP1A. > - Analog Composite signal connected to AIP1B. >

Re: [PATCH 18/22] partial revert of "[media] tvp5150: add HW input connectors support"

2018-07-03 Thread Rob Herring
On Thu, Jun 28, 2018 at 06:20:50PM +0200, Marco Felsch wrote: > From: Javier Martinez Canillas > > Commit f7b4b54e6364 ("[media] tvp5150: add HW input connectors support") > added input signals support for the tvp5150, but the approach was found > to be incorrect so the corresponding DT binding

Re: [PATCH v7 1/2] media: ov2680: dt: Add bindings for OV2680

2018-07-03 Thread Rob Herring
On Tue, Jul 03, 2018 at 03:08:02PM +0100, Rui Miguel Silva wrote: > Add device tree binding documentation for the OV2680 camera sensor. > > CC: devicet...@vger.kernel.org > Signed-off-by: Rui Miguel Silva > --- > .../devicetree/bindings/media/i2c/ov2680.txt | 46 +++ > 1 file

Re: [PATCHv15 29/35] Documentation: v4l: document request API

2018-07-03 Thread Hans Verkuil
On 03/07/18 16:08, Mauro Carvalho Chehab wrote: > Em Tue, 3 Jul 2018 15:02:05 +0200 > Hans Verkuil escreveu: > >> On 03/07/18 13:50, Mauro Carvalho Chehab wrote: >>> Em Mon, 4 Jun 2018 13:46:42 +0200 >>> Hans Verkuil escreveu: >>> From: Alexandre Courbot Document the request

Re: [PATCHv15 29/35] Documentation: v4l: document request API

2018-07-03 Thread Mauro Carvalho Chehab
Em Tue, 3 Jul 2018 15:02:05 +0200 Hans Verkuil escreveu: > On 03/07/18 13:50, Mauro Carvalho Chehab wrote: > > Em Mon, 4 Jun 2018 13:46:42 +0200 > > Hans Verkuil escreveu: > > > >> From: Alexandre Courbot > >> > >> Document the request API for V4L2 devices, and amend the documentation > >>

[PATCH v7 2/2] media: ov2680: Add Omnivision OV2680 sensor driver

2018-07-03 Thread Rui Miguel Silva
This patch adds V4L2 sub-device driver for OV2680 image sensor. The OV2680 is a 1/5" CMOS color sensor from Omnivision. Supports output format: 10-bit Raw RGB. The OV2680 has a single lane MIPI interface. The driver exposes following V4L2 controls: - auto/manual exposure, - exposure, -

[PATCH v7 1/2] media: ov2680: dt: Add bindings for OV2680

2018-07-03 Thread Rui Miguel Silva
Add device tree binding documentation for the OV2680 camera sensor. CC: devicet...@vger.kernel.org Signed-off-by: Rui Miguel Silva --- .../devicetree/bindings/media/i2c/ov2680.txt | 46 +++ 1 file changed, 46 insertions(+) create mode 100644

[PATCH v7 0/2] media: Introduce Omnivision OV2680 driver

2018-07-03 Thread Rui Miguel Silva
Add driver and bindings for the OV2680 2 megapixel CMOS 1/5" sensor, which has a single MIPI lane interface and output format of 10-bit Raw RGB. Features supported are described in PATCH 2/2. v7->v6: Fixes for compilation: - compilation fixes when SUBDEV_API is not enabled v5->v6: Fabio

[PATCH 1/1] smiapp: Set correct MODULE_LICENSE

2018-07-03 Thread Sakari Ailus
The smiapp driver is licensed under GNU GPL v2 only, as stated by the header. Reflect this in the MODULE_LICENSE macro. Signed-off-by: Sakari Ailus --- drivers/media/i2c/smiapp/smiapp-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [PATCH 2/4] dma-buf: lock the reservation object during (un)map_dma_buf v2

2018-07-03 Thread Christian König
Am 03.07.2018 um 14:52 schrieb Daniel Vetter: On Tue, Jul 03, 2018 at 01:46:44PM +0200, Christian König wrote: Am 25.06.2018 um 11:12 schrieb Daniel Vetter: On Mon, Jun 25, 2018 at 10:22:31AM +0200, Daniel Vetter wrote: On Fri, Jun 22, 2018 at 04:11:01PM +0200, Christian König wrote: First

Re: [PATCHv15 29/35] Documentation: v4l: document request API

2018-07-03 Thread Hans Verkuil
On 03/07/18 13:50, Mauro Carvalho Chehab wrote: > Em Mon, 4 Jun 2018 13:46:42 +0200 > Hans Verkuil escreveu: > >> From: Alexandre Courbot >> >> Document the request API for V4L2 devices, and amend the documentation >> of system calls influenced by it. > > I'm starting reviewing the patch

Re: [PATCHv15 29/35] Documentation: v4l: document request API

2018-07-03 Thread Mauro Carvalho Chehab
Em Mon, 4 Jun 2018 13:46:42 +0200 Hans Verkuil escreveu: > From: Alexandre Courbot > > Document the request API for V4L2 devices, and amend the documentation > of system calls influenced by it. I'm starting reviewing the patch series from this patch, as it defines how the request API is

[RFC PATCH 3/4] vicodec: add the FWHT software codec

2018-07-03 Thread Hans Verkuil
From: Hans Verkuil Add a software codec based on the Fast Walsh Hadamard Transform. Signed-off-by: Tom aan de Wiel Signed-off-by: Hans Verkuil --- .../media/platform/vicodec/vicodec-codec.c| 743 ++ .../media/platform/vicodec/vicodec-codec.h| 71 ++ 2 files changed,

[RFC PATCH 4/4] vicodec: add the virtual codec driver

2018-07-03 Thread Hans Verkuil
From: Hans Verkuil Add the virtual codec driver that uses the Fast Walsh Hadamard Transform. Signed-off-by: Hans Verkuil --- MAINTAINERS |8 + drivers/media/platform/Kconfig|3 + drivers/media/platform/Makefile |1 +

[RFC PATCH 0/4] vicodec driver

2018-07-03 Thread Hans Verkuil
From: Hans Verkuil This is the first RFC version of the new vicodec driver, a driver that emulates a HW codec. This patch series sits on top of this pull request: https://patchwork.linuxtv.org/patch/50728/ since it needs the new m2m helpers to set up the MC topology. The software codec was

[RFC PATCH 2/4] v4l2-mem2mem: add v4l2_m2m_last_buf()

2018-07-03 Thread Hans Verkuil
From: Hans Verkuil This can be used to mark the last queued source buffer as the last buffer. Signed-off-by: Hans Verkuil --- drivers/media/v4l2-core/v4l2-mem2mem.c | 18 include/media/v4l2-mem2mem.h | 29 ++ 2 files changed, 47 insertions(+)

[RFC PATCH 1/4] videodev.h: add PIX_FMT_FWHT for use with vicodec

2018-07-03 Thread Hans Verkuil
From: Hans Verkuil Add a new pixelformat for the vicodec software codec using the Fast Walsh Hadamard Transform. Signed-off-by: Hans Verkuil --- drivers/media/v4l2-core/v4l2-ioctl.c | 1 + include/uapi/linux/videodev2.h | 1 + 2 files changed, 2 insertions(+) diff --git

Re: [PATCHv15 01/35] uapi/linux/media.h: add request API

2018-07-03 Thread Mauro Carvalho Chehab
Em Tue, 3 Jul 2018 11:33:13 +0200 Hans Verkuil escreveu: > On 03/07/18 11:21, Mauro Carvalho Chehab wrote: > > Em Mon, 4 Jun 2018 13:46:14 +0200 > > Hans Verkuil escreveu: > > > >> From: Hans Verkuil > >> > >> Define the public request API. > >> > >> This adds the new

Re: [PATCHv15 01/35] uapi/linux/media.h: add request API

2018-07-03 Thread Hans Verkuil
On 03/07/18 11:21, Mauro Carvalho Chehab wrote: > Em Mon, 4 Jun 2018 13:46:14 +0200 > Hans Verkuil escreveu: > >> From: Hans Verkuil >> >> Define the public request API. >> >> This adds the new MEDIA_IOC_REQUEST_ALLOC ioctl to allocate a request >> and two ioctls that operate on a request in

Re: [PATCHv15 01/35] uapi/linux/media.h: add request API

2018-07-03 Thread Mauro Carvalho Chehab
Em Mon, 4 Jun 2018 13:46:14 +0200 Hans Verkuil escreveu: > From: Hans Verkuil > > Define the public request API. > > This adds the new MEDIA_IOC_REQUEST_ALLOC ioctl to allocate a request > and two ioctls that operate on a request in order to queue the > contents of the request to the driver