Re: [RFC PATCH v3 1/6] media: v4l2: Extend pixel formats to unify single/multi-planar handling (and more)

2019-10-21 Thread Hans Verkuil
On 10/21/19 11:48 AM, Tomasz Figa wrote: > On Mon, Oct 21, 2019 at 6:38 PM Hans Verkuil wrote: >> >> On 10/21/19 11:26 AM, Tomasz Figa wrote: >>> On Mon, Oct 21, 2019 at 5:41 PM Hans Verkuil wrote: On 10/8/19 11:11 AM, Boris Brezillon wrote: > This is part of the multiplanar and sin

Re: [RFC PATCH v3 1/6] media: v4l2: Extend pixel formats to unify single/multi-planar handling (and more)

2019-10-21 Thread Tomasz Figa
On Mon, Oct 21, 2019 at 6:38 PM Hans Verkuil wrote: > > On 10/21/19 11:26 AM, Tomasz Figa wrote: > > On Mon, Oct 21, 2019 at 5:41 PM Hans Verkuil wrote: > >> > >> On 10/8/19 11:11 AM, Boris Brezillon wrote: > >>> This is part of the multiplanar and singleplanar unification process. > >>> v4l2_ext

Re: [RFC PATCH v3 1/6] media: v4l2: Extend pixel formats to unify single/multi-planar handling (and more)

2019-10-21 Thread Hans Verkuil
On 10/21/19 11:26 AM, Tomasz Figa wrote: > On Mon, Oct 21, 2019 at 5:41 PM Hans Verkuil wrote: >> >> On 10/8/19 11:11 AM, Boris Brezillon wrote: >>> This is part of the multiplanar and singleplanar unification process. >>> v4l2_ext_pix_format is supposed to work for both cases. >>> >>> We also add

Re: [RFC PATCH v3 1/6] media: v4l2: Extend pixel formats to unify single/multi-planar handling (and more)

2019-10-21 Thread Tomasz Figa
On Mon, Oct 21, 2019 at 5:41 PM Hans Verkuil wrote: > > On 10/8/19 11:11 AM, Boris Brezillon wrote: > > This is part of the multiplanar and singleplanar unification process. > > v4l2_ext_pix_format is supposed to work for both cases. > > > > We also add the concept of modifiers already employed in

Re: [RFC PATCH v3 1/6] media: v4l2: Extend pixel formats to unify single/multi-planar handling (and more)

2019-10-21 Thread Hans Verkuil
On 10/8/19 11:11 AM, Boris Brezillon wrote: > This is part of the multiplanar and singleplanar unification process. > v4l2_ext_pix_format is supposed to work for both cases. > > We also add the concept of modifiers already employed in DRM to expose > HW-specific formats (like tiled or compressed f

Re: [RFC PATCH V3 3/3] platform: mtk-isp: Add Mediatek FD driver

2019-10-14 Thread Jerry-ch Chen
Hi Tomasz, On Fri, 2019-09-06 at 18:11 +0800, Jerry-ch Chen wrote: > From: Jerry-ch Chen > > This patch adds the driver of Face Detection (FD) unit in > Mediatek camera system, providing face detection function. > > The mtk-isp directory will contain drivers for multiple IP > blocks found in Me

[RFC PATCH] media: rockchip: rkvdec_queue_ops can be static

2019-10-13 Thread kbuild test robot
Fixes: 0fb0ad38c9ed ("media: rockchip: Add the rkvdec driver") Signed-off-by: kbuild test robot --- rkvdec-h264.c |6 +++--- rkvdec.c |2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/media/rockchip/vdec/rkvdec-h264.c b/drivers/staging/media/roc

Re: [RFC PATCH v2 0/7] media: v4l2: Add extended fmt and buffer ioctls

2019-10-08 Thread Boris Brezillon
On Tue, 8 Oct 2019 11:11:13 +0200 Boris Brezillon wrote: Oops, forgot to update the subject. Should be: "[RFC PATCH v3 0/6] media: v4l2: Add extended fmt and buffer ioctls" > Hello, > > This RFC follows the discussion started by Hans [1] a few months back. > It does

[RFC PATCH v3 5/6] media: vivid: Convert the capture and output drivers to EXT_FMT/EXT_BUF

2019-10-08 Thread Boris Brezillon
This should simplify things a bit as we now have a single implementation instead of the MPLANE and !MPLANE versions. Signed-off-by: Boris Brezillon --- Changes in v3: - Rebased on top of media/master (post 5.4-rc1) Changes in v2: - New patch --- drivers/media/platform/vivid/vivid-core.c| 3

[RFC PATCH v3 3/6] media: videobuf2: Expose helpers to implement the _ext_fmt and _ext_buf hooks

2019-10-08 Thread Boris Brezillon
The VB2 layer is used by a lot of drivers. Patch it to support the _EXT_FMT and _EXT_BUF ioctls in order to ease conversion of existing drivers to these new APIs. Note that internally, the VB2 core is now only using ext structs and old APIs are supported through conversion wrappers. Signed-off-by

[RFC PATCH v2 0/7] media: v4l2: Add extended fmt and buffer ioctls

2019-10-08 Thread Boris Brezillon
Hello, This RFC follows the discussion started by Hans [1] a few months back. It does not try to address all the problem reported in this thread but instead focuses on the FMT and BUF(S) ioctls. Note that my primary goal is to unify handling for multiplanar and singleplanar formats and extend thi

[RFC PATCH v3 1/6] media: v4l2: Extend pixel formats to unify single/multi-planar handling (and more)

2019-10-08 Thread Boris Brezillon
This is part of the multiplanar and singleplanar unification process. v4l2_ext_pix_format is supposed to work for both cases. We also add the concept of modifiers already employed in DRM to expose HW-specific formats (like tiled or compressed formats) and allow exchanging this information with the

[RFC PATCH v3 2/6] media: v4l2: Add extended buffer operations

2019-10-08 Thread Boris Brezillon
From: Hans Verkuil Those extended buffer ops have several purpose: 1/ Fix y2038 issues by converting the timestamp into an u64 counting the number of ns elapsed since 1970 2/ Unify single/multiplanar handling 3/ Add a new start offset field to each v4l2 plane buffer info struct to support t

[RFC PATCH v3 6/6] media: vimc: Implement the ext_fmt and ext_buf hooks

2019-10-08 Thread Boris Brezillon
Convert the driver to the _ext_fmt and _ext_buf API. Signed-off-by: Boris Brezillon --- Changes in v3: - Rebased on top of media/master (post 5.4-rc1) Changes in v2: - New patch --- drivers/media/platform/vimc/vimc-capture.c | 65 +++--- drivers/media/platform/vimc/vimc-common.c

[RFC PATCH v3 4/6] media: mediabus: Add an helper to convert a ext_pix format to an mbus_fmt

2019-10-08 Thread Boris Brezillon
Just a new version of v4l2_fill_mbus_format() to deal with the new v4l2_ext_pix_format struct. This is needed to convert the VIMC driver to the EXT_FMT/EXT_BUF iocts. Signed-off-by: Boris Brezillon --- Changes in v3: - Rebased on top of media/master (post 5.4-rc1) Changes in v2: - New patch ---

Re: [RFC PATCH V3 1/5] dt-bindings: mt8183: Added DIP dt-bindings

2019-10-02 Thread Sakari Ailus
Hi Frederic, On Tue, Sep 10, 2019 at 03:22:40AM +0800, frederic.c...@mediatek.com wrote: > From: Frederic Chen > > This patch adds DT binding documentation for the Digital Image > Processing (DIP) unit of camera ISP system on Mediatek's SoCs. > > It depends on the SCP and MDP 3 patch as followi

Re: [RFC PATCH V3 5/5] media: platform: mtk-mdp3: Add struct tuning_addr and img_sw_buffer

2019-10-02 Thread Sakari Ailus
On Tue, Sep 10, 2019 at 03:22:44AM +0800, frederic.c...@mediatek.com wrote: > From: Frederic Chen > > We added a struct tuning_addr which contains a field "present" > so that the driver can tell the firmware if we have user tuning > dataor not. > > The strcut img_sw_buffer is also added. This st

Re: [RFC PATCH V3 3/5] media: platform: Add Mediatek DIP driver KConfig

2019-10-02 Thread Sakari Ailus
Hi Frederic, On Tue, Sep 10, 2019 at 03:22:42AM +0800, frederic.c...@mediatek.com wrote: > From: Frederic Chen > > This patch adds KConfig for Mediatek Digital Image Processing > driver(DIP). DIP is embedded in Mediatek SoCs. It provides > image format conversion, resizing, and rotation function

Re: [RFC PATCH] media: rename VFL_TYPE_GRABBER to _VIDEO

2019-09-27 Thread Sakari Ailus
Hi Hans, On Thu, Sep 26, 2019 at 08:58:27AM +0200, Hans Verkuil wrote: > We currently have the following devnode types: > > enum vfl_devnode_type { > VFL_TYPE_GRABBER= 0, > VFL_TYPE_VBI, > VFL_TYPE_RADIO, > VFL_TYPE_SUBDEV, > VFL_TYPE_SDR, >

[RFC PATCH] media: rename VFL_TYPE_GRABBER to _VIDEO

2019-09-25 Thread Hans Verkuil
We currently have the following devnode types: enum vfl_devnode_type { VFL_TYPE_GRABBER= 0, VFL_TYPE_VBI, VFL_TYPE_RADIO, VFL_TYPE_SUBDEV, VFL_TYPE_SDR, VFL_TYPE_TOUCH, VFL_TYPE_MAX /* Shall be the last one */ }; They all make sense,

Re: [RFC PATCH v2 0/7] media: v4l2: Add extended fmt and buffer ioctls

2019-09-23 Thread Hans Verkuil
On 9/23/19 4:40 PM, Boris Brezillon wrote: > On Mon, 23 Sep 2019 13:41:07 +0200 > Hans Verkuil wrote: > >> Hi Boris, >> >> On 4/4/19 10:16 AM, Boris Brezillon wrote: >>> Hello, >>> >>> This RFC follows the discussion started by Hans [1] a few months back. >>> It does not try to address all the pr

Re: [RFC PATCH v2 0/7] media: v4l2: Add extended fmt and buffer ioctls

2019-09-23 Thread Boris Brezillon
On Mon, 23 Sep 2019 13:41:07 +0200 Hans Verkuil wrote: > Hi Boris, > > On 4/4/19 10:16 AM, Boris Brezillon wrote: > > Hello, > > > > This RFC follows the discussion started by Hans [1] a few months back. > > It does not try to address all the problem reported in this thread but > > instead focu

Re: [RFC PATCH V3 4/5] platform: mtk-isp: Add Mediatek DIP driver

2019-09-23 Thread Sakari Ailus
Hi Frederic, On Tue, Sep 10, 2019 at 03:22:43AM +0800, frederic.c...@mediatek.com wrote: > From: Frederic Chen > > This patch adds the driver of Digital Image Processing (DIP) > unit in Mediatek ISP system, providing image format > conversion, resizing, and rotation features. > > The mtk-isp di

Re: [RFC PATCH V3 0/5] media: platform: Add support for Digital Image Processing (DIP) on mt8183 SoC

2019-09-23 Thread Sakari Ailus
Hi Frederic, On Tue, Sep 10, 2019 at 03:22:39AM +0800, frederic.c...@mediatek.com wrote: > Hello, > > This RFC patch series added Digital Image Processing (DIP) driver on Mediatek > mt8183 SoC. It belongs to the Mediatek's ISP driver series based on V4L2 and > media con

Re: [RFC PATCH v2 0/7] media: v4l2: Add extended fmt and buffer ioctls

2019-09-23 Thread Hans Verkuil
Hi Boris, On 4/4/19 10:16 AM, Boris Brezillon wrote: > Hello, > > This RFC follows the discussion started by Hans [1] a few months back. > It does not try to address all the problem reported in this thread but > instead focuses on the FMT and BUF(S) ioctls. > > Note that my primary goal is to un

Re: [RFC PATCH V4 3/4] dt-bindings: mt8183: Add sensor interface dt-bindings

2019-09-18 Thread Sakari Ailus
Hi Louis, On Sun, Sep 15, 2019 at 02:50:03PM +0800, Louis Kuo wrote: > This patch adds the DT binding documentation for the sensor interface > module in Mediatek SoCs. > > Signed-off-by: Louis Kuo > --- > .../bindings/media/mediatek-seninf.txt| 30 +++ > 1 file changed,

Re: [RFC PATCH V4 2/4] media: platform: Add Mediatek sensor interface driver KConfig

2019-09-18 Thread Sakari Ailus
On Sun, Sep 15, 2019 at 02:50:02PM +0800, Louis Kuo wrote: > This patch adds KConfig for sensor interface driver. Sensor interface > driver > is a MIPI-CSI2 host driver, namely, a HW camera interface controller. > It support a widely adopted, simple, high-speed protocol primarily > intended > for p

Re: [RFC PATCH V4 1/4] media: platform: mtk-isp: Add Mediatek sensor interface driver

2019-09-18 Thread Sakari Ailus
Hi Luis, On Sun, Sep 15, 2019 at 02:50:01PM +0800, Louis Kuo wrote: > This patch adds Mediat:ek's sensor interface driver. Sensor interface > driver > is a MIPI-CSI2 host driver, namely, a HW camera interface controller. > It support a widely adopted, simple, high-speed protocol primarily > intend

Re: [RFC PATCH V3 1/3] dt-bindings: mt8183: Added FD dt-bindings

2019-09-17 Thread Rob Herring
On Fri, 6 Sep 2019 18:11:23 +0800, Jerry-ch Chen wrote: > From: Jerry-ch Chen > > This patch adds DT binding documentation for the Face Detection (FD) > unit of the Mediatek's mt8183 SoC. > > Signed-off-by: Jerry-ch Chen > --- > .../bindings/media/mediatek,mt8183-fd.txt | 34 ++

Re: [RFC PATCH V4 4/4] dts: arm64: mt8183: Add sensor interface nodes

2019-09-15 Thread Yingjoe Chen
On Sun, 2019-09-15 at 14:50 +0800, Louis Kuo wrote: > Add nodes for Mediatek's sensor interface device. Sensor interface module > embedded in Mediatek SOCs, works as a HW camera interface controller > intended for image and data transmission between cameras and host devices. > > Signed-off-by: Lou

Re: [RFC PATCH V4 3/4] dt-bindings: mt8183: Add sensor interface dt-bindings

2019-09-15 Thread Yingjoe Chen
On Sun, 2019-09-15 at 14:50 +0800, Louis Kuo wrote: > This patch adds the DT binding documentation for the sensor interface > module in Mediatek SoCs. > > Signed-off-by: Louis Kuo > --- > .../bindings/media/mediatek-seninf.txt| 30 +++ > 1 file changed, 30 insertions(+) >

Re: [RFC PATCH V4 1/4] media: platform: mtk-isp: Add Mediatek sensor interface driver

2019-09-15 Thread Yingjoe Chen
On Sun, 2019-09-15 at 14:50 +0800, Louis Kuo wrote: > This patch adds Mediat:ek's sensor interface driver. Sensor interface > driver > is a MIPI-CSI2 host driver, namely, a HW camera interface controller. > It support a widely adopted, simple, high-speed protocol primarily > intended > for point-to

Re: [RFC PATCH V4 2/4] media: platform: Add Mediatek sensor interface driver KConfig

2019-09-15 Thread Yingjoe Chen
On Sun, 2019-09-15 at 14:50 +0800, Louis Kuo wrote: > This patch adds KConfig for sensor interface driver. Sensor interface > driver > is a MIPI-CSI2 host driver, namely, a HW camera interface controller. > It support a widely adopted, simple, high-speed protocol primarily > intended > for point-to

[RFC PATCH V4 1/4] media: platform: mtk-isp: Add Mediatek sensor interface driver

2019-09-14 Thread Louis Kuo
This patch adds Mediat:ek's sensor interface driver. Sensor interface driver is a MIPI-CSI2 host driver, namely, a HW camera interface controller. It support a widely adopted, simple, high-speed protocol primarily intended for point-to-point image and video transmission between cameras and host dev

[RFC PATCH V4 2/4] media: platform: Add Mediatek sensor interface driver KConfig

2019-09-14 Thread Louis Kuo
This patch adds KConfig for sensor interface driver. Sensor interface driver is a MIPI-CSI2 host driver, namely, a HW camera interface controller. It support a widely adopted, simple, high-speed protocol primarily intended for point-to-point image and video transmission between cameras and host dev

[RFC PATCH V4 3/4] dt-bindings: mt8183: Add sensor interface dt-bindings

2019-09-14 Thread Louis Kuo
This patch adds the DT binding documentation for the sensor interface module in Mediatek SoCs. Signed-off-by: Louis Kuo --- .../bindings/media/mediatek-seninf.txt| 30 +++ 1 file changed, 30 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/mediate

[RFC PATCH V4 0/4] media: support Mediatek sensor interface driver

2019-09-14 Thread Louis Kuo
Hello, This is the RFC patch adding Sensor Inferface(seninf) driver on Mediatek mt8183 SoC, which will be used in camera features on CrOS application. It belongs to the first Mediatek's camera driver series based on V4L2 and media controller framework. I posted the main part of the seninf d

[RFC PATCH V4 4/4] dts: arm64: mt8183: Add sensor interface nodes

2019-09-14 Thread Louis Kuo
Add nodes for Mediatek's sensor interface device. Sensor interface module embedded in Mediatek SOCs, works as a HW camera interface controller intended for image and data transmission between cameras and host devices. Signed-off-by: Louis Kuo --- arch/arm64/boot/dts/mediatek/mt8183.dtsi | 14 +++

Re: [RFC PATCH V3 1/5] dt-bindings: mt8183: Added DIP dt-bindings

2019-09-13 Thread Rob Herring
On Tue, 10 Sep 2019 03:22:40 +0800, wrote: > From: Frederic Chen > > This patch adds DT binding documentation for the Digital Image > Processing (DIP) unit of camera ISP system on Mediatek's SoCs. > > It depends on the SCP and MDP 3 patch as following: > > 1. dt-bindings: Add a binding for Med

[RFC PATCH V3 5/5] media: platform: mtk-mdp3: Add struct tuning_addr and img_sw_buffer

2019-09-09 Thread frederic.chen
From: Frederic Chen We added a struct tuning_addr which contains a field "present" so that the driver can tell the firmware if we have user tuning dataor not. The strcut img_sw_buffer is also added. This struct has no cpu address field and uses a handle instead so that we don't pass a cpu addres

[RFC PATCH V3 3/5] media: platform: Add Mediatek DIP driver KConfig

2019-09-09 Thread frederic.chen
From: Frederic Chen This patch adds KConfig for Mediatek Digital Image Processing driver(DIP). DIP is embedded in Mediatek SoCs. It provides image format conversion, resizing, and rotation function. Signed-off-by: Frederic Chen --- drivers/media/platform/Kconfig | 2 ++ drivers/media/

[RFC PATCH V3 1/5] dt-bindings: mt8183: Added DIP dt-bindings

2019-09-09 Thread frederic.chen
From: Frederic Chen This patch adds DT binding documentation for the Digital Image Processing (DIP) unit of camera ISP system on Mediatek's SoCs. It depends on the SCP and MDP 3 patch as following: 1. dt-bindings: Add a binding for Mediatek SCP https://patchwork.kernel.org/patch/11027247/ 2.

[RFC PATCH V3 4/5] platform: mtk-isp: Add Mediatek DIP driver

2019-09-09 Thread frederic.chen
From: Frederic Chen This patch adds the driver of Digital Image Processing (DIP) unit in Mediatek ISP system, providing image format conversion, resizing, and rotation features. The mtk-isp directory will contain drivers for multiple IP blocks found in Mediatek ISP system. It will include ISP Pa

[RFC PATCH V3 2/5] dts: arm64: mt8183: Add DIP nodes

2019-09-09 Thread frederic.chen
From: Frederic Chen This patch adds nodes for Digital Image Processing (DIP). DIP is embedded in Mediatek SoCs and works with the co-processor to adjust image content according to tuning input data. It also provides image format conversion, resizing, and rotation features. Signed-off-by: Frederi

[RFC PATCH V3 3/3] platform: mtk-isp: Add Mediatek FD driver

2019-09-06 Thread Jerry-ch Chen
From: Jerry-ch Chen This patch adds the driver of Face Detection (FD) unit in Mediatek camera system, providing face detection function. The mtk-isp directory will contain drivers for multiple IP blocks found in Mediatek ISP system. It will include ISP Pass 1 driver (CAM), sensor interface drive

[RFC PATCH V3 1/3] dt-bindings: mt8183: Added FD dt-bindings

2019-09-06 Thread Jerry-ch Chen
From: Jerry-ch Chen This patch adds DT binding documentation for the Face Detection (FD) unit of the Mediatek's mt8183 SoC. Signed-off-by: Jerry-ch Chen --- .../bindings/media/mediatek,mt8183-fd.txt | 34 +++ 1 file changed, 34 insertions(+) create mode 100644 Documentati

[RFC PATCH V3 2/3] dts: arm64: mt8183: Add FD nodes

2019-09-06 Thread Jerry-ch Chen
From: Jerry-ch Chen This patch adds nodes for Face Detection (FD) unit. FD is embedded in Mediatek SoCs and works with the co-processor to perform face detection on the input data and image and output detected face result. Signed-off-by: Jerry-ch Chen --- arch/arm64/boot/dts/mediatek/mt8183.dt

[RFC PATCH V3 0/3] media: platform: Add support for Face Detection (FD) on mt8183 SoC

2019-09-06 Thread Jerry-ch Chen
Hello, This RFC patch series is adding Face Detection (FD) driver on Mediatek mt8183 SoC. It belongs to the first Mediatek's camera driver series based on V4L2 and media controller framework. I posted the main part of the FD driver as RFC to discuss first and would like some review com

Re: [RFC PATCH V2 3/4] media: platform: Add Mediatek FD driver KConfig

2019-09-05 Thread Jerry-ch Chen
Hi Laurent, On Thu, 2019-09-05 at 20:30 +0800, Laurent Pinchart wrote: > Hi Jerry, > > Thank you for the patch. > > On Tue, Jul 09, 2019 at 04:41:11PM +0800, Jerry-ch Chen wrote: > > From: Jerry-ch Chen > > > > This patch adds KConfig for Mediatek Face Detection driver (FD). > > FD is embedded

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-05 Thread Jerry-ch Chen
On Thu, 2019-09-05 at 16:52 +0800, Tomasz Figa wrote: > On Thu, Sep 5, 2019 at 5:17 PM Jerry-ch Chen > wrote: > > > > Hi Tomasz, > > > > On Thu, 2019-09-05 at 15:13 +0800, Tomasz Figa wrote: > > > On Thu, Sep 5, 2019 at 4:02 PM Jerry-ch Chen > > > wrote: > > > > > > > > Hi Tomasz, > > > > > > >

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-05 Thread Laurent Pinchart
Hello, On Fri, Aug 09, 2019 at 05:07:21PM +0900, Tomasz Figa wrote: > On Mon, Jul 29, 2019 at 8:58 PM Jerry-ch Chen wrote: > > On Mon, 2019-07-29 at 17:57 +0800, Tomasz Figa wrote: > >> On Mon, Jul 29, 2019 at 3:01 PM Jerry-ch Chen wrote: > >>> On Tue, 2019-07-09 at 18:56 +0800, Enrico Weigelt, me

Re: [RFC PATCH V2 3/4] media: platform: Add Mediatek FD driver KConfig

2019-09-05 Thread Laurent Pinchart
Hi Jerry, Thank you for the patch. On Tue, Jul 09, 2019 at 04:41:11PM +0800, Jerry-ch Chen wrote: > From: Jerry-ch Chen > > This patch adds KConfig for Mediatek Face Detection driver (FD). > FD is embedded in Mediatek SoCs. It can provide hardware > accelerated face detection function. > > Sig

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-05 Thread Tomasz Figa
On Thu, Sep 5, 2019 at 5:17 PM Jerry-ch Chen wrote: > > Hi Tomasz, > > On Thu, 2019-09-05 at 15:13 +0800, Tomasz Figa wrote: > > On Thu, Sep 5, 2019 at 4:02 PM Jerry-ch Chen > > wrote: > > > > > > Hi Tomasz, > > > > > > On Wed, 2019-09-04 at 21:19 +0800, Jerry-ch Chen wrote: > > > > On Wed, 2019

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-05 Thread Jerry-ch Chen
Hi Tomasz, On Thu, 2019-09-05 at 15:13 +0800, Tomasz Figa wrote: > On Thu, Sep 5, 2019 at 4:02 PM Jerry-ch Chen > wrote: > > > > Hi Tomasz, > > > > On Wed, 2019-09-04 at 21:19 +0800, Jerry-ch Chen wrote: > > > On Wed, 2019-09-04 at 21:12 +0800, Tomasz Figa wrote: > > > > On Wed, Sep 4, 2019 at 6

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-05 Thread Tomasz Figa
On Thu, Sep 5, 2019 at 4:02 PM Jerry-ch Chen wrote: > > Hi Tomasz, > > On Wed, 2019-09-04 at 21:19 +0800, Jerry-ch Chen wrote: > > On Wed, 2019-09-04 at 21:12 +0800, Tomasz Figa wrote: > > > On Wed, Sep 4, 2019 at 6:26 PM Jerry-ch Chen > > > wrote: > > > > > > > > Hi Tomasz, > > > > > > > > On W

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-05 Thread Jerry-ch Chen
Hi Tomasz, On Wed, 2019-09-04 at 21:19 +0800, Jerry-ch Chen wrote: > On Wed, 2019-09-04 at 21:12 +0800, Tomasz Figa wrote: > > On Wed, Sep 4, 2019 at 6:26 PM Jerry-ch Chen > > wrote: > > > > > > Hi Tomasz, > > > > > > On Wed, 2019-09-04 at 17:03 +0800, Tomasz Figa wrote: > > > > On Wed, Sep 4, 2

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-04 Thread Jerry-ch Chen
On Wed, 2019-09-04 at 21:12 +0800, Tomasz Figa wrote: > On Wed, Sep 4, 2019 at 6:26 PM Jerry-ch Chen > wrote: > > > > Hi Tomasz, > > > > On Wed, 2019-09-04 at 17:03 +0800, Tomasz Figa wrote: > > > On Wed, Sep 4, 2019 at 6:02 PM Jerry-ch Chen > > > wrote: > > > > > > > > Hi Tomasz, > > > > > > >

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-04 Thread Tomasz Figa
On Wed, Sep 4, 2019 at 6:26 PM Jerry-ch Chen wrote: > > Hi Tomasz, > > On Wed, 2019-09-04 at 17:03 +0800, Tomasz Figa wrote: > > On Wed, Sep 4, 2019 at 6:02 PM Jerry-ch Chen > > wrote: > > > > > > Hi Tomasz, > > > > > > On Wed, 2019-09-04 at 16:25 +0800, Tomasz Figa wrote: > > > > On Wed, Sep 4,

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-04 Thread Jerry-ch Chen
Hi Tomasz, On Wed, 2019-09-04 at 17:03 +0800, Tomasz Figa wrote: > On Wed, Sep 4, 2019 at 6:02 PM Jerry-ch Chen > wrote: > > > > Hi Tomasz, > > > > On Wed, 2019-09-04 at 16:25 +0800, Tomasz Figa wrote: > > > On Wed, Sep 4, 2019 at 5:09 PM Jerry-ch Chen > > > wrote: > > > > > > > > Hi Tomasz, >

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-04 Thread Tomasz Figa
On Wed, Sep 4, 2019 at 6:02 PM Jerry-ch Chen wrote: > > Hi Tomasz, > > On Wed, 2019-09-04 at 16:25 +0800, Tomasz Figa wrote: > > On Wed, Sep 4, 2019 at 5:09 PM Jerry-ch Chen > > wrote: > > > > > > Hi Tomasz, > > > > > > On Wed, 2019-09-04 at 14:34 +0800, Tomasz Figa wrote: > > > > On Wed, Sep 4,

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-04 Thread Jerry-ch Chen
Hi Tomasz, On Wed, 2019-09-04 at 16:25 +0800, Tomasz Figa wrote: > On Wed, Sep 4, 2019 at 5:09 PM Jerry-ch Chen > wrote: > > > > Hi Tomasz, > > > > On Wed, 2019-09-04 at 14:34 +0800, Tomasz Figa wrote: > > > On Wed, Sep 4, 2019 at 3:09 PM Jerry-ch Chen > > > wrote: > > > > > > > > Hi Tomasz, >

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-04 Thread Tomasz Figa
On Wed, Sep 4, 2019 at 5:09 PM Jerry-ch Chen wrote: > > Hi Tomasz, > > On Wed, 2019-09-04 at 14:34 +0800, Tomasz Figa wrote: > > On Wed, Sep 4, 2019 at 3:09 PM Jerry-ch Chen > > wrote: > > > > > > Hi Tomasz, > > > > > > On Wed, 2019-09-04 at 12:15 +0800, Tomasz Figa wrote: > > > > On Wed, Sep 4,

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-04 Thread Jerry-ch Chen
Hi Tomasz, On Wed, 2019-09-04 at 14:34 +0800, Tomasz Figa wrote: > On Wed, Sep 4, 2019 at 3:09 PM Jerry-ch Chen > wrote: > > > > Hi Tomasz, > > > > On Wed, 2019-09-04 at 12:15 +0800, Tomasz Figa wrote: > > > On Wed, Sep 4, 2019 at 12:38 PM Jerry-ch Chen > > > wrote: > > > > > > > > Hi Tomasz, >

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-03 Thread Tomasz Figa
On Wed, Sep 4, 2019 at 3:09 PM Jerry-ch Chen wrote: > > Hi Tomasz, > > On Wed, 2019-09-04 at 12:15 +0800, Tomasz Figa wrote: > > On Wed, Sep 4, 2019 at 12:38 PM Jerry-ch Chen > > wrote: > > > > > > Hi Tomasz, > > > > > > On Tue, 2019-09-03 at 20:05 +0800, Tomasz Figa wrote: > > > > On Tue, Sep 3,

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-03 Thread Jerry-ch Chen
Hi Tomasz, On Wed, 2019-09-04 at 12:15 +0800, Tomasz Figa wrote: > On Wed, Sep 4, 2019 at 12:38 PM Jerry-ch Chen > wrote: > > > > Hi Tomasz, > > > > On Tue, 2019-09-03 at 20:05 +0800, Tomasz Figa wrote: > > > On Tue, Sep 3, 2019 at 8:46 PM Jerry-ch Chen > > > wrote: > > > > > > > > Hi Tomasz, >

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-03 Thread Tomasz Figa
On Wed, Sep 4, 2019 at 12:38 PM Jerry-ch Chen wrote: > > Hi Tomasz, > > On Tue, 2019-09-03 at 20:05 +0800, Tomasz Figa wrote: > > On Tue, Sep 3, 2019 at 8:46 PM Jerry-ch Chen > > wrote: > > > > > > Hi Tomasz, > > > > > > On Tue, 2019-09-03 at 15:04 +0800, Tomasz Figa wrote: > > > > On Tue, Sep 3

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-03 Thread Jerry-ch Chen
Hi Tomasz, On Tue, 2019-09-03 at 20:05 +0800, Tomasz Figa wrote: > On Tue, Sep 3, 2019 at 8:46 PM Jerry-ch Chen > wrote: > > > > Hi Tomasz, > > > > On Tue, 2019-09-03 at 15:04 +0800, Tomasz Figa wrote: > > > On Tue, Sep 3, 2019 at 3:44 PM Jerry-ch Chen > > > wrote: > > > > > > > > On Tue, 2019

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-03 Thread Tomasz Figa
On Tue, Sep 3, 2019 at 8:46 PM Jerry-ch Chen wrote: > > Hi Tomasz, > > On Tue, 2019-09-03 at 15:04 +0800, Tomasz Figa wrote: > > On Tue, Sep 3, 2019 at 3:44 PM Jerry-ch Chen > > wrote: > > > > > > On Tue, 2019-09-03 at 13:19 +0800, Tomasz Figa wrote: > > > > On Mon, Sep 2, 2019 at 8:47 PM Jerry-

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-03 Thread Jerry-ch Chen
Hi Tomasz, On Tue, 2019-09-03 at 15:04 +0800, Tomasz Figa wrote: > On Tue, Sep 3, 2019 at 3:44 PM Jerry-ch Chen > wrote: > > > > On Tue, 2019-09-03 at 13:19 +0800, Tomasz Figa wrote: > > > On Mon, Sep 2, 2019 at 8:47 PM Jerry-ch Chen > > > wrote: > > > > > > > > Hi Tomasz, > > > > > > > > On F

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-03 Thread Tomasz Figa
On Tue, Sep 3, 2019 at 3:44 PM Jerry-ch Chen wrote: > > On Tue, 2019-09-03 at 13:19 +0800, Tomasz Figa wrote: > > On Mon, Sep 2, 2019 at 8:47 PM Jerry-ch Chen > > wrote: > > > > > > Hi Tomasz, > > > > > > On Fri, 2019-08-30 at 16:33 +0800, Tomasz Figa wrote: > > > > On Wed, Aug 28, 2019 at 11:00

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-02 Thread Jerry-ch Chen
On Tue, 2019-09-03 at 13:19 +0800, Tomasz Figa wrote: > On Mon, Sep 2, 2019 at 8:47 PM Jerry-ch Chen > wrote: > > > > Hi Tomasz, > > > > On Fri, 2019-08-30 at 16:33 +0800, Tomasz Figa wrote: > > > On Wed, Aug 28, 2019 at 11:00 AM Jerry-ch Chen > > > wrote: > > > > > > > > Hi Tomasz, > > > > > >

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-02 Thread Tomasz Figa
On Mon, Sep 2, 2019 at 8:47 PM Jerry-ch Chen wrote: > > Hi Tomasz, > > On Fri, 2019-08-30 at 16:33 +0800, Tomasz Figa wrote: > > On Wed, Aug 28, 2019 at 11:00 AM Jerry-ch Chen > > wrote: > > > > > > Hi Tomasz, > > > > > > On Mon, 2019-08-26 at 14:36 +0800, Tomasz Figa wrote: > > > > Hi Jerry, > >

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-09-02 Thread Jerry-ch Chen
Hi Tomasz, On Fri, 2019-08-30 at 16:33 +0800, Tomasz Figa wrote: > On Wed, Aug 28, 2019 at 11:00 AM Jerry-ch Chen > wrote: > > > > Hi Tomasz, > > > > On Mon, 2019-08-26 at 14:36 +0800, Tomasz Figa wrote: > > > Hi Jerry, > > > > > > On Sun, Aug 25, 2019 at 6:18 PM Jerry-ch Chen > > > wrote: > > >

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-08-30 Thread Tomasz Figa
On Wed, Aug 28, 2019 at 11:00 AM Jerry-ch Chen wrote: > > Hi Tomasz, > > On Mon, 2019-08-26 at 14:36 +0800, Tomasz Figa wrote: > > Hi Jerry, > > > > On Sun, Aug 25, 2019 at 6:18 PM Jerry-ch Chen > > wrote: > > > > > > Hi Tomasz, > > > > > > On Fri, 2019-08-02 at 16:28 +0800, Tomasz Figa wrote: >

Re: [RFC PATCH V2 4/6] platform: mtk-isp: Add Mediatek DIP driver

2019-08-30 Thread Tomasz Figa
Hi Frederic, On Tue, Aug 27, 2019 at 12:16 PM Frederic Chen wrote: > > Dear Tomasz, > > I appreciate your comment. I will collaborate more closely with Jungo > to solve the common issues in DIP and Pass 1(CAM) drivers. > Thank you! Also thanks for replying to all the comments, it's very helpful

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-08-27 Thread Jerry-ch Chen
Hi Tomasz, On Mon, 2019-08-26 at 14:36 +0800, Tomasz Figa wrote: > Hi Jerry, > > On Sun, Aug 25, 2019 at 6:18 PM Jerry-ch Chen > wrote: > > > > Hi Tomasz, > > > > On Fri, 2019-08-02 at 16:28 +0800, Tomasz Figa wrote: > > > Hi Jerry, > > > > > > On Tue, Jul 09, 2019 at 04:41:12PM +0800, Jerry-ch

Re: [RFC PATCH V3 1/4] media: platform: mtk-isp: Add Mediatek sensor interface driver

2019-08-26 Thread Sakari Ailus
Hi Luis, On Thu, Jun 06, 2019 at 06:00:30PM +0800, Louis Kuo wrote: > This patch adds Mediat:ek's sensor interface driver. Sensor interface > driver > is a MIPI-CSI2 host driver, namely, a HW camera interface controller. > It support a widely adopted, simple, high-speed protocol primarily > intend

Re: [RFC PATCH V3 2/4] media: platform: Add Mediatek sensor interface driver KConfig

2019-08-26 Thread Sakari Ailus
On Thu, Jun 06, 2019 at 06:00:31PM +0800, Louis Kuo wrote: > This patch adds KConfig for sensor interface driver. Sensor interface > driver > is a MIPI-CSI2 host driver, namely, a HW camera interface controller. > It support a widely adopted, simple, high-speed protocol primarily > intended > for p

Re: [RFC PATCH V3 3/4] dt-bindings: mt8183: Add sensor interface dt-bindings

2019-08-26 Thread Sakari Ailus
Hi Louis, On Thu, Jun 06, 2019 at 06:00:32PM +0800, Louis Kuo wrote: > This patch adds the DT binding documentation for the sensor interface > module in Mediatek SoCs. > > Signed-off-by: Louis Kuo > --- > .../devicetree/bindings/media/mediatek-seninf.txt | 31 > ++ > 1 fil

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-08-25 Thread Tomasz Figa
Hi Jerry, On Sun, Aug 25, 2019 at 6:18 PM Jerry-ch Chen wrote: > > Hi Tomasz, > > On Fri, 2019-08-02 at 16:28 +0800, Tomasz Figa wrote: > > Hi Jerry, > > > > On Tue, Jul 09, 2019 at 04:41:12PM +0800, Jerry-ch Chen wrote: > > > From: Jerry-ch Chen > > > > > > This patch adds the driver of Face De

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-08-25 Thread Jerry-ch Chen
Hi Tomasz, On Fri, 2019-08-02 at 16:28 +0800, Tomasz Figa wrote: > Hi Jerry, > > On Tue, Jul 09, 2019 at 04:41:12PM +0800, Jerry-ch Chen wrote: > > From: Jerry-ch Chen > > > > This patch adds the driver of Face Detection (FD) unit in > > Mediatek camera system, providing face detection functio

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-08-09 Thread Tomasz Figa
On Mon, Jul 29, 2019 at 8:58 PM Jerry-ch Chen wrote: > > Hi Tomasz, > > On Mon, 2019-07-29 at 17:57 +0800, Tomasz Figa wrote: > > On Mon, Jul 29, 2019 at 3:01 PM Jerry-ch Chen > > wrote: > > > > > > Hi Enrico, > > > > > > On Tue, 2019-07-09 at 18:56 +0800, Enrico Weigelt, metux IT consult > > > w

Re: [RFC PATCH 3/5] media: v4l2: Add m2m codec helpers

2019-08-05 Thread Boris Brezillon
On Mon, 5 Aug 2019 13:53:20 -0300 Hans Verkuil wrote: > > +/** > > + * struct v4l2_m2m_codec_ctx - Codec context > > + * @fh: file handle > > + * @coded_fmt: current coded format > > + * @decoded_fmt: current decoded format > > + * @coded_fmt_desc: current coded format desc > > + * @decoded_fmt_d

Re: [RFC PATCH 1/5] media: vb2: Add a helper to get the vb2 buffer attached to a request

2019-08-05 Thread Hans Verkuil
On 8/5/19 11:13 AM, Boris Brezillon wrote: On Mon, 5 Aug 2019 10:12:53 -0300 Hans Verkuil wrote: On 8/5/19 6:48 AM, Boris Brezillon wrote: vb2_request_get_buf() returns the N-th buffer attached to a media request. Signed-off-by: Boris Brezillon --- .../media/common/videobuf2/videobuf2-co

Re: [RFC PATCH 3/5] media: v4l2: Add m2m codec helpers

2019-08-05 Thread Hans Verkuil
On 8/5/19 6:48 AM, Boris Brezillon wrote: Most codec drivers do the same thing, let's extract those generic bits and provide them as m2m_codec helpers. Each compressed-format will have its own set of sub-helpers. Signed-off-by: Boris Brezillon --- drivers/media/v4l2-core/Kconfig

Re: [RFC PATCH 1/5] media: vb2: Add a helper to get the vb2 buffer attached to a request

2019-08-05 Thread Boris Brezillon
On Mon, 5 Aug 2019 10:12:53 -0300 Hans Verkuil wrote: > On 8/5/19 6:48 AM, Boris Brezillon wrote: > > vb2_request_get_buf() returns the N-th buffer attached to a media > > request. > > > > Signed-off-by: Boris Brezillon > > --- > > .../media/common/videobuf2/videobuf2-core.c | 23 ++

Re: [RFC PATCH 1/5] media: vb2: Add a helper to get the vb2 buffer attached to a request

2019-08-05 Thread Hans Verkuil
On 8/5/19 6:48 AM, Boris Brezillon wrote: vb2_request_get_buf() returns the N-th buffer attached to a media request. Signed-off-by: Boris Brezillon --- .../media/common/videobuf2/videobuf2-core.c | 23 +++ include/media/videobuf2-core.h| 11 + 2 fil

[RFC PATCH 4/5] media: v4l2: Provide helpers for H264 codecs

2019-08-05 Thread Boris Brezillon
Signed-off-by: Boris Brezillon --- drivers/media/v4l2-core/Kconfig | 5 + drivers/media/v4l2-core/Makefile | 1 + .../media/v4l2-core/v4l2-mem2mem-h264-codec.c | 47 include/media/v4l2-mem2mem-h264-codec.h | 100 ++ 4 files changed, 1

[RFC PATCH 2/5] media: v4l2: Prepare things for addition of m2m codec helpers

2019-08-05 Thread Boris Brezillon
Right now, all m2m helper are in v4l2-mem2mem.c, but we are about to had new helpers for codec devices and we want to make them optional while still having all m2m helpers embedded in a single module (v4l2-mem2mem.ko). Move the existing code base in v4l2-mem2mem-core.c so we can easily add new .o

[RFC PATCH 3/5] media: v4l2: Add m2m codec helpers

2019-08-05 Thread Boris Brezillon
Most codec drivers do the same thing, let's extract those generic bits and provide them as m2m_codec helpers. Each compressed-format will have its own set of sub-helpers. Signed-off-by: Boris Brezillon --- drivers/media/v4l2-core/Kconfig |4 + drivers/media/v4l2-core/Makefile

[RFC PATCH 1/5] media: vb2: Add a helper to get the vb2 buffer attached to a request

2019-08-05 Thread Boris Brezillon
vb2_request_get_buf() returns the N-th buffer attached to a media request. Signed-off-by: Boris Brezillon --- .../media/common/videobuf2/videobuf2-core.c | 23 +++ include/media/videobuf2-core.h| 11 + 2 files changed, 34 insertions(+) diff --git a/driv

[RFC PATCH 0/5] media: v4l2: Add m2m codec helpers

2019-08-05 Thread Boris Brezillon
Hello, This patch series is an attempt at factorizing some of the boiler plate code that we find in most stateless codec drivers (and potentially stateful codec ones too). It's been designed mostly based on the hantro and cedrus driver and I decided to implement a third one using these helpers to

[RFC PATCH 5/5] media: rockchip: Add the rkvdec driver

2019-08-05 Thread Boris Brezillon
The rockchip vdec block is a stateless decoder that's able to decode H264, HEVC and VP9 content. This patch only adds H264 support and is making use of the m2m codec helpers. Signed-off-by: Boris Brezillon --- drivers/staging/media/Kconfig | 2 + drivers/staging/media/Makefile

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-08-02 Thread Tomasz Figa
Hi Jerry, On Tue, Jul 09, 2019 at 04:41:12PM +0800, Jerry-ch Chen wrote: > From: Jerry-ch Chen > > This patch adds the driver of Face Detection (FD) unit in > Mediatek camera system, providing face detection function. > > The mtk-isp directory will contain drivers for multiple IP > blocks found

Re: [RFC PATCH V2 4/6] platform: mtk-isp: Add Mediatek DIP driver

2019-07-31 Thread Tomasz Figa
Hi Frederic, On Mon, Jul 08, 2019 at 07:04:58PM +0800, frederic.c...@mediatek.com wrote: > From: Frederic Chen > > This patch adds the driver of Digital Image Processing (DIP) > unit in Mediatek ISP system, providing image format > conversion, resizing, and rotation features. > > The mtk-isp di

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-07-29 Thread Jerry-ch Chen
Hi Tomasz, On Mon, 2019-07-29 at 17:57 +0800, Tomasz Figa wrote: > On Mon, Jul 29, 2019 at 3:01 PM Jerry-ch Chen > wrote: > > > > Hi Enrico, > > > > On Tue, 2019-07-09 at 18:56 +0800, Enrico Weigelt, metux IT consult > > wrote: > > > On 09.07.19 10:41, Jerry-ch Chen wrote: > > > > > > Hi, > > > >

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-07-29 Thread Tomasz Figa
On Mon, Jul 29, 2019 at 3:01 PM Jerry-ch Chen wrote: > > Hi Enrico, > > On Tue, 2019-07-09 at 18:56 +0800, Enrico Weigelt, metux IT consult > wrote: > > On 09.07.19 10:41, Jerry-ch Chen wrote: > > > > Hi, > > > > > > > diff --git a/drivers/media/platform/mtk-isp/fd/mtk_fd.h > > > b/drivers/media/

Re: [RFC PATCH V2 4/4] platform: mtk-isp: Add Mediatek FD driver

2019-07-28 Thread Jerry-ch Chen
Hi Enrico, On Tue, 2019-07-09 at 18:56 +0800, Enrico Weigelt, metux IT consult wrote: > On 09.07.19 10:41, Jerry-ch Chen wrote: > > Hi, > > > > diff --git a/drivers/media/platform/mtk-isp/fd/mtk_fd.h > > b/drivers/media/platform/mtk-isp/fd/mtk_fd.h > > new file mode 100644 > > index 000..

Re: [RFC PATCH V2 1/6] dt-bindings: mt8183: Added DIP dt-bindings

2019-07-24 Thread Rob Herring
On Mon, 8 Jul 2019 19:04:55 +0800, wrote: > From: Frederic Chen > > This patch adds DT binding documentation for the Digital Image > Processing (DIP) unit of camera ISP system on Mediatek's SoCs. > > It depends on the SCP and MDP 3 patch as following: > > 1. dt-bindings: Add a binding for Medi

Re: [RFC PATCH 0/5] Add enum_fmt flag for coded formats with dynamic resolution switching

2019-07-24 Thread Hans Verkuil
On 7/24/19 12:32 PM, Maxime Jourdan wrote: > On Thu, Jul 18, 2019 at 11:22 AM Hans Verkuil wrote: >> >> On 7/18/19 10:39 AM, Maxime Jourdan wrote: >>> On Mon, Jul 15, 2019 at 2:37 PM Hans Verkuil wrote: On 6/11/19 10:13 AM, Hans Verkuil wrote: > On 6/9/19 4:38 PM, Maxime Jourdan wro

  1   2   3   4   5   6   7   8   9   10   >