cron job: media_tree daily build: OK

2019-02-09 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 Feb 10 05:00:11 CET 2019 media-tree git hash:6fd369dd1cb65a032f1ab9227033ecb7b759656d media_build git

Re: [PATCH 2/4] media: mt9m111: add VIDEO_V4L2_SUBDEV_API dependency

2019-02-09 Thread kbuild test robot
Hi Akinobu, I love your patch! Yet something to improve: [auto build test ERROR on linuxtv-media/master] [also build test ERROR on next-20190208] [cannot apply to v5.0-rc4] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github

[PATCH 1/1] soc_camera: Rename files for mt9t031 and imx074

2019-02-09 Thread Sakari Ailus
Rename files (as well as modules) of the mt9t031 and imx074 SoC camera drivers to align with the rest of them, i.e. adding the "soc_" prefix. Signed-off-by: Sakari Ailus --- This goes on top of my previous SoC camera patches. drivers/staging/media/soc_camera/Makefile | 4 ++-

Re: [RFC PATCH V0 3/7] [media] dt-bindings: mt8183: Added DIP-SMEM dt-bindings

2019-02-09 Thread Laurent Pinchart
Hello Frederic, On Sat, Feb 09, 2019 at 05:59:35PM +0200, Sakari Ailus wrote: > Hi Frederic, > > Thanks for the patchset. > > Could you also cc the devicetree list, please? > > On Fri, Feb 01, 2019 at 07:21:27PM +0800, Frederic Chen wrote: > > This patch adds the DT binding documentation for th

Re: [RFC PATCH V0 1/7] [media] dt-bindings: mt8183: Add binding for DIP shared memory

2019-02-09 Thread Laurent Pinchart
On Sat, Feb 09, 2019 at 05:59:07PM +0200, Sakari Ailus wrote: > Hi Frederic, > > Could you cc the devicetree list, please? > > On Fri, Feb 01, 2019 at 07:21:25PM +0800, Frederic Chen wrote: > > This patch adds the binding for describing the shared memory > > used to exchange configuration and tun

[PATCH 1/1] soc_camera: Rename files for mt9t031 and imx074

2019-02-09 Thread Sakari Ailus
Rename files (as well as modules) of the mt9t031 and imx074 SoC camera drivers to align with the rest of them, i.e. adding the "soc_" prefix. Signed-off-by: Sakari Ailus --- This goes on top of my previous SoC camera patches. drivers/staging/media/soc_camera/Makefile | 4 ++-

Re: [RFC PATCH V0 3/7] [media] dt-bindings: mt8183: Added DIP-SMEM dt-bindings

2019-02-09 Thread Sakari Ailus
Hi Frederic, Thanks for the patchset. Could you also cc the devicetree list, please? On Fri, Feb 01, 2019 at 07:21:27PM +0800, Frederic Chen wrote: > This patch adds the DT binding documentation for the shared memory > between DIP (Digital Image Processing) unit of the camera ISP system > and th

Re: [RFC PATCH V0 1/7] [media] dt-bindings: mt8183: Add binding for DIP shared memory

2019-02-09 Thread Sakari Ailus
Hi Frederic, Could you cc the devicetree list, please? On Fri, Feb 01, 2019 at 07:21:25PM +0800, Frederic Chen wrote: > This patch adds the binding for describing the shared memory > used to exchange configuration and tuning data between the > co-processor and Digital Image Processing (DIP) unit

[PATCH 1/1] soc_camera: Remove Kconfig leftovers from mt9m111 driver

2019-02-09 Thread Sakari Ailus
The mt9m111 SoC camera driver has been removed, remove its Kconfig leftovers as well. Reported-by: Akinobu Mita Signed-off-by: Sakari Ailus --- This goes on top of my set moving the SoC camera to staging. drivers/staging/media/soc_camera/Kconfig | 10 -- 1 file changed, 10 deletions(-)

Re: [PATCH 2/4] media: mt9m111: add VIDEO_V4L2_SUBDEV_API dependency

2019-02-09 Thread Sakari Ailus
On Sat, Feb 09, 2019 at 08:54:39PM +0900, Akinobu Mita wrote: > 2019年2月9日(土) 1:20 kbuild test robot : > > > > Hi Akinobu, > > > > I love your patch! Yet something to improve: > > > > [auto build test ERROR on linuxtv-media/master] > > [also build test ERROR on next-20190208] > > [cannot apply to v5

[PATCH 6/9] media: vicodec: Register another node for stateless decoder

2019-02-09 Thread Dafna Hirschfeld
Add stateless decoder instance field to the dev struct and register another node for the statelsess decoder. The stateless API for the node will be implemented in further patches. Signed-off-by: Dafna Hirschfeld --- drivers/media/platform/vicodec/vicodec-core.c | 45 +-- 1 file c

[PATCH 4/9] media: vicodec: add struct for encoder/decoder instance

2019-02-09 Thread Dafna Hirschfeld
Add struct 'vicodec_dev_instance' for the fields in vicodec_dev that have have both decoder and encoder versions. Signed-off-by: Dafna Hirschfeld --- drivers/media/platform/vicodec/vicodec-core.c | 194 +- 1 file changed, 92 insertions(+), 102 deletions(-) diff --git a/drivers/m

[PATCH 9/9] media: vicodec: Add support for stateless decoder.

2019-02-09 Thread Dafna Hirschfeld
Implement a stateless decoder for the new node. Signed-off-by: Dafna Hirschfeld --- drivers/media/platform/vicodec/vicodec-core.c | 202 -- 1 file changed, 190 insertions(+), 12 deletions(-) diff --git a/drivers/media/platform/vicodec/vicodec-core.c b/drivers/media/platform/vic

[PATCH 3/9] media: vicodec: keep the ref frame according to the format in decoder

2019-02-09 Thread Dafna Hirschfeld
In the decoder, save the inner reference frame in the same format as the capture buffer. The decoder writes directly to the capture buffer and then the capture buffer is copied to the reference buffer. This will simplify the stateless decoder. Signed-off-by: Dafna Hirschfeld --- drivers/media/pl

[PATCH 1/9] media: vicodec: Move raw frame preparation code to a function

2019-02-09 Thread Dafna Hirschfeld
Introduce 'prepare_raw_frame' function that fills the values of a raw frame struct according to the format. Signed-off-by: Dafna Hirschfeld --- .../media/platform/vicodec/codec-v4l2-fwht.c | 140 ++ 1 file changed, 75 insertions(+), 65 deletions(-) diff --git a/drivers/media/pl

[PATCH 8/9] media: vicodec: call v4l2_m2m_buf_copy_metadata also upon error

2019-02-09 Thread Dafna Hirschfeld
call v4l2_m2m_buf_copy_metadata also if decoding/encoding ends with status VB2_BUF_STATE_ERROR. Signed-off-by: Dafna Hirschfeld --- drivers/media/platform/vicodec/vicodec-core.c | 17 + 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/drivers/media/platform/vicodec/v

[PATCH 5/9] media: vicodec: Introducing stateless fwht defs and structs

2019-02-09 Thread Dafna Hirschfeld
Add structs and definitions needed to implement stateless decoder for fwht. Signed-off-by: Dafna Hirschfeld --- drivers/media/platform/vicodec/vicodec-core.c | 12 drivers/media/v4l2-core/v4l2-ctrls.c | 6 ++ include/uapi/linux/v4l2-controls.h| 12 +

[PATCH 0/9] media: vicodec: add support to stateless decoder

2019-02-09 Thread Dafna Hirschfeld
Changes from previous sets: --- Patch 3 - (keep the ref frame according to the format in decoder): - Move the code that copies the capture buffer to the reference buffer to a separate function 'copy_cap_to_ref'

[PATCH 7/9] media: vb2: Add func that return buffer by timestamp

2019-02-09 Thread Dafna Hirschfeld
Add the function 'vb2_find_timestamp_buf' that returns the vb2 buffer that matches the given timestamp Signed-off-by: Dafna Hirschfeld --- drivers/media/common/videobuf2/videobuf2-v4l2.c | 14 ++ include/media/videobuf2-v4l2.h | 3 +++ 2 files changed, 17 insertions

[PATCH 2/9] media: vicodec: add field 'buf' to fwht_raw_frame

2019-02-09 Thread Dafna Hirschfeld
Add the field 'buf' to fwht_raw_frame to indicate the start of the raw frame buffer. This field will be used to copy the capture buffer to the reference buffer in the next patch. Signed-off-by: Dafna Hirschfeld --- drivers/media/platform/vicodec/codec-fwht.h | 1 + drivers/media/platform/vicod

Re: [PATCH 2/4] media: mt9m111: add VIDEO_V4L2_SUBDEV_API dependency

2019-02-09 Thread Akinobu Mita
2019年2月9日(土) 1:20 kbuild test robot : > > Hi Akinobu, > > I love your patch! Yet something to improve: > > [auto build test ERROR on linuxtv-media/master] > [also build test ERROR on next-20190208] > [cannot apply to v5.0-rc4] > [if your patch is applied to the wrong git tree, please drop us a note