Re: [PATCH v10 0/4] Media Device Allocator API

2019-02-05 Thread Hans Verkuil
On 2/5/19 7:10 PM, shuah wrote: > On 2/1/19 2:21 AM, Hans Verkuil wrote: >> On 2/1/19 1:46 AM, shuah wrote: >>> Hi Hans, >>> >>> On 1/30/19 12:42 AM, Hans Verkuil wrote: On 1/30/19 2:50 AM, shuah wrote: > On 1/29/19 2:43 AM, Hans Verkuil wrote: >> On 1/29/19 12:48 AM, shuah wrote:

Re: [PATCH v2 2/2] media: docs-rst: Document memory-to-memory video encoder interface

2019-02-05 Thread Tomasz Figa
On Thu, Jan 31, 2019 at 12:06 AM Nicolas Dufresne wrote: > > Le vendredi 25 janvier 2019 à 12:59 +0900, Tomasz Figa a écrit : > > On Fri, Jan 25, 2019 at 5:14 AM Nicolas Dufresne > > wrote: > > > Le mercredi 23 janvier 2019 à 14:04 +0100, Hans Verkuil a écrit : > > > > > > Does this return the s

Re: [PATCH v2 1/2] media: docs-rst: Document memory-to-memory video decoder interface

2019-02-05 Thread Tomasz Figa
On Wed, Jan 30, 2019 at 1:02 PM Nicolas Dufresne wrote: > > Le vendredi 25 janvier 2019 à 12:27 +0900, Tomasz Figa a écrit : > > On Fri, Jan 25, 2019 at 4:55 AM Nicolas Dufresne > > wrote: > > > Le jeudi 24 janvier 2019 à 18:06 +0900, Tomasz Figa a écrit : > > > > > Actually I just realized the

help

2019-02-05 Thread John Klug
help

cron job: media_tree daily build: WARNINGS

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

Re: compile error at sun6i_video

2019-02-05 Thread Kuninori Morimoto
Hi Sakari Cc Niklas Thank you for your feedback > > /opt/RB02197/home/morimoto/save/WORK/linux/drivers/media/platform/sunxi/sun6i-csi/sun6i_video.c: > > In function 'sun6i_video_start_streaming': > > /opt/RB02197/home/morimoto/save/WORK/linux/drivers/media/platform/sunxi/sun6i-csi/sun6i_video.

Re: IMX CSI capture issues with tda1997x HDMI receiver

2019-02-05 Thread Steve Longerbeam
On 2/5/19 11:16 AM, Tim Harvey wrote: On Sat, Feb 2, 2019 at 11:10 AM Steve Longerbeam wrote: The *real* way to fix this would be to allow programmable encodings in ipu-ic.c. But unfortunately the encodings are hardcoded (grep for ic_csc_rgb2ycbcr in ipu-ic.c). Ok, I saw that you went ah

[PATCH] media: v4l2-mem2mem: Rename v4l2_m2m_buf_copy_data to v4l2_m2m_buf_copy_metadata

2019-02-05 Thread Ezequiel Garcia
The v4l2_m2m_buf_copy_data helper is used to copy the buffer metadata, such as its timestamp and its flags. Therefore, the v4l2_m2m_buf_copy_metadata name is more clear and avoids confusion with a payload data copy. Signed-off-by: Ezequiel Garcia --- drivers/media/platform/vicodec/vicodec-core.

[PATCH] media: vb2: Fix buf_out_validate documentation

2019-02-05 Thread Ezequiel Garcia
The .buf_out_validate callback is mandatory for OUTPUT queues. Mark it as such in the callback's doc. Fixes: 28d77c21cb ("media: vb2: add buf_out_validate callback") Signed-off-by: Ezequiel Garcia --- include/media/videobuf2-core.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --

[PATCH 10/10] rockchip/vpu: Add support for MPEG-2 decoding

2019-02-05 Thread Ezequiel Garcia
From: Jonas Karlman Add MPEG-2 decoding, only on RK3399. Other SoCs and support for other codecs will be added in the future. Signed-off-by: Jonas Karlman Signed-off-by: Ezequiel Garcia --- drivers/staging/media/rockchip/vpu/Makefile | 4 +- .../media/rockchip/vpu/rk3399_vpu_hw.c|

[PATCH 09/10] rockchip/vpu: Add support for non-standard controls

2019-02-05 Thread Ezequiel Garcia
Rework the way controls are registered by the driver, so it can support non-standard controls, such as those used by stateless codecs. Signed-off-by: Ezequiel Garcia --- .../media/rockchip/vpu/rk3288_vpu_hw.c| 2 +- .../media/rockchip/vpu/rk3399_vpu_hw.c| 2 +- .../staging/medi

[PATCH 08/10] rockchip/vpu: Add decoder boilerplate

2019-02-05 Thread Ezequiel Garcia
This commit adds the needed boilerplate code to support the VPU in decoding operation. Two v4l2 interfaces are exposed, one for encoding and one for decoding, but a single m2m device is shared by them, so jobs are properly serialized. Signed-off-by: Ezequiel Garcia --- drivers/staging/media/rock

[PATCH 07/10] rockchip/vpu: Support the Request API

2019-02-05 Thread Ezequiel Garcia
Introduce support for the Request API. Although the JPEG encoder does not mandate using the Request API, it's perfectly possible to use it, if the application wants to. In addition, add helpers that will be used by video decoders. Signed-off-by: Ezequiel Garcia --- .../rockchip/vpu/rk3399_vpu_h

[PATCH 05/10] rockchip/vpu: Cleanup JPEG bounce buffer management

2019-02-05 Thread Ezequiel Garcia
In order to make the code more generic, introduce a pair of start/stop codec operations, and use them to allocate and release the JPEG bounce buffer. Signed-off-by: Ezequiel Garcia --- .../media/rockchip/vpu/rk3288_vpu_hw.c| 2 ++ .../rockchip/vpu/rk3288_vpu_hw_jpeg_enc.c | 4 +--

[PATCH 01/10] media: Introduce helpers to fill pixel format structs

2019-02-05 Thread Ezequiel Garcia
Add two new API helpers, v4l2_fill_pixfmt and v4l2_fill_pixfmt_mp, to be used by drivers to calculate plane sizes and bytes per lines. Note that driver-specific paddig and alignment are not taken into account, and must be done by drivers using this API. Signed-off-by: Ezequiel Garcia --- driver

[PATCH 06/10] rockchip/vpu: Open-code media controller register

2019-02-05 Thread Ezequiel Garcia
In preparation to support decoders, using a single memory-to-memory device, we need to roll our own media controller entities registration. Signed-off-by: Ezequiel Garcia --- .../staging/media/rockchip/vpu/rockchip_vpu.h | 35 .../media/rockchip/vpu/rockchip_vpu_drv.c | 177 +++

[PATCH v1 00/10] Add MPEG-2 decoding to Rockchip VPU

2019-02-05 Thread Ezequiel Garcia
This series introduces the decoding infrastructure that will be used to add support for other codecs such as VP8, VP9 and H.264. There are a number of v4l2-compliance issues, which I will be addressing shortly. For those wanting to take a peep, I've pasted the v4l2-compliance issues here: http://i

[PATCH 03/10] rockchip/vpu: Use v4l2_m2m_buf_copy_data

2019-02-05 Thread Ezequiel Garcia
Use the recently introduced v4l2_m2m_buf_copy_data helper and get rid of some code. Signed-off-by: Ezequiel Garcia --- drivers/staging/media/rockchip/vpu/rockchip_vpu_drv.c | 9 + 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/drivers/staging/media/rockchip/vpu/rockchip_vpu

[PATCH 02/10] rockchip/vpu: Use pixel format helpers

2019-02-05 Thread Ezequiel Garcia
Now that we've introduced the pixel format helpers, use them in vpu driver, and get rid of the internal helpers. Signed-off-by: Ezequiel Garcia --- .../media/rockchip/vpu/rockchip_vpu_enc.c | 91 +-- 1 file changed, 2 insertions(+), 89 deletions(-) diff --git a/drivers/stagi

[PATCH 04/10] rockchip/vpu: Cleanup macroblock alignment

2019-02-05 Thread Ezequiel Garcia
We need to make the macrobock alignment generic, in order to support multiple codecs. Signed-off-by: Ezequiel Garcia --- .../media/rockchip/vpu/rockchip_vpu_enc.c | 20 --- 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/drivers/staging/media/rockchip/vpu/rockc

[PATCH] sh: migor: Include missing dma-mapping header

2019-02-05 Thread Jacopo Mondi
Since the removal of the stale soc_camera headers, Migo-R board fails to build due to missing dma-mapping include directive. Include missing dma-mapping.h header in Migo-R board file to fix the build error. Fixes: a50c7738e8ae ("media: sh: migor: Remove stale soc_camera include") Signed-off-by: J

Re: IMX CSI capture issues with tda1997x HDMI receiver

2019-02-05 Thread Tim Harvey
On Sat, Feb 2, 2019 at 11:10 AM Steve Longerbeam wrote: > > > > > > > But when going through the IC we again run into the issue where the > > output of the IC isn't a suitable colorspace: > > # 720p@60Hz YUV BT656 > > # set sensor output pad to sensor source format > > v4l2-ctl -d /dev/v4l-subdev

[linux-next:master 2650/6329] arch/sh/boards/mach-migor/setup.c:605:2: error: implicit declaration of function 'dma_declare_coherent_memory'

2019-02-05 Thread kbuild test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master head: 1ff5403385648b1554fd1aedeec71d9cd41c commit: 386a35eb70569b3158392eb573fe42589a669da4 [2650/6329] media: tw9910.h: remove obsolete soc_camera.h include. config: sh-migor_defconfig (attached as .config)

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

2019-02-05 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

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

2019-02-05 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

Re: [PATCH v10 0/4] Media Device Allocator API

2019-02-05 Thread shuah
On 2/1/19 2:21 AM, Hans Verkuil wrote: On 2/1/19 1:46 AM, shuah wrote: Hi Hans, On 1/30/19 12:42 AM, Hans Verkuil wrote: On 1/30/19 2:50 AM, shuah wrote: On 1/29/19 2:43 AM, Hans Verkuil wrote: On 1/29/19 12:48 AM, shuah wrote: Hi Hans, On 1/28/19 5:03 AM, Hans Verkuil wrote: Hi Shuah, O

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

2019-02-05 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] libv4lconvert: Fix support for compressed bayer formats

2019-02-05 Thread Ricardo Ribalda Delgado
10 bit packet Bayer format broke the support for the other compressed bayer formats. Due to the fallthrough of the compressed formats, 10b code will be executed for every 10b format. Fixes: c44b30096589 ("libv4l: Add support for BAYER10P format conversion") Signed-off-by: Ricardo Ribalda Delgado

[PATCH] media: tda1997: fix get-edid

2019-02-05 Thread Tim Harvey
Signed-off-by: Tim Harvey --- drivers/media/i2c/tda1997x.c | 4 1 file changed, 4 insertions(+) diff --git a/drivers/media/i2c/tda1997x.c b/drivers/media/i2c/tda1997x.c index c4c2a6134e1e..73451e9bbc41 100644 --- a/drivers/media/i2c/tda1997x.c +++ b/drivers/media/i2c/tda1997x.c @@ -1884,6 +

Re: [PATCH 6/6] media: ov5640: Consolidate JPEG compression mode setting

2019-02-05 Thread Sakari Ailus
On Tue, Feb 05, 2019 at 09:50:47PM +0800, Chen-Yu Tsai wrote: > On Tue, Feb 5, 2019 at 4:55 PM Sakari Ailus > wrote: > > > > Hi Chen-Yu, > > > > On Fri, Jan 18, 2019 at 04:52:06PM +0800, Chen-Yu Tsai wrote: > > > The register value lists for all the supported resolution settings all > > > include

Need to retouch your photos?

2019-02-05 Thread Stacy
Need to retouch your photos? Deep etching or masking for your photos? We are the studio who can do those service for your photos. Please send photos to start Thanks, Stacy Offendbach Kdufbeuren

Re: [PATCH] media: v4l2-tpg: Fix the memory layout of AYUV buffers

2019-02-05 Thread Philipp Zabel
Hi Hans, On Thu, 2019-01-31 at 14:36 +0100, Hans Verkuil wrote: [...] > > Our YUV32 fourcc is defined as follows: > > https://hverkuil.home.xs4all.nl/spec/uapi/v4l/pixfmt-packed-yuv.html > > As far as I see the format that the TPG generates is according to the V4L2 > spec. > > Philipp, can you

Re: [PATCH 6/6] media: ov5640: Consolidate JPEG compression mode setting

2019-02-05 Thread Chen-Yu Tsai
On Tue, Feb 5, 2019 at 4:55 PM Sakari Ailus wrote: > > Hi Chen-Yu, > > On Fri, Jan 18, 2019 at 04:52:06PM +0800, Chen-Yu Tsai wrote: > > The register value lists for all the supported resolution settings all > > include a register address/value pair for setting the JPEG compression > > mode. With

[RFCv2 PATCH] videodev2.h: introduce VIDIOC_DQ_EXT_EVENT

2019-02-05 Thread Hans Verkuil
This patch adds an extended version of VIDIOC_DQEVENT that: 1) is Y2038 safe by using a __u64 for the timestamp 2) needs no compat32 conversion code 3) is able to handle control events from 64-bit control types by changing the type of the minimum, maximum, step and default_value field to __u

Re: [PATCH v2 00/13] media: mt9m001: switch soc_mt9m001 to a standard subdev sensor driver

2019-02-05 Thread Akinobu Mita
2019年2月4日(月) 18:06 Sakari Ailus : > > Hi Mita-san, > > On Tue, Jan 08, 2019 at 11:51:37PM +0900, Akinobu Mita wrote: > > This patchset converts soc_camera mt9m001 driver to a standard subdev > > sensor driver. > > > > * v2 > > - Update binding doc suggested by Rob Herring. > > - Fix MODULE_LICENSE(

Re: [Xen-devel][PATCH v4 1/1] cameraif: add ABI for para-virtual camera

2019-02-05 Thread Oleksandr Andrushchenko
On 2/5/19 3:02 PM, Hans Verkuil wrote: On 2/5/19 1:30 PM, Oleksandr Andrushchenko wrote: Sorry for paying so much attention to this, but I think it is important that this is documented precisely. Thank you for helping with this - your comments are really important and make the description preci

Re: [Xen-devel][PATCH v4 1/1] cameraif: add ABI for para-virtual camera

2019-02-05 Thread Hans Verkuil
On 2/5/19 1:30 PM, Oleksandr Andrushchenko wrote: >> Sorry for paying so much attention to this, but I think it is important that >> this is documented precisely. > Thank you for helping with this - your comments are really > important and make the description precise. Ok, so finally: > >  * num_b

Re: [Xen-devel][PATCH v4 1/1] cameraif: add ABI for para-virtual camera

2019-02-05 Thread Oleksandr Andrushchenko
On 2/5/19 2:14 PM, Hans Verkuil wrote: On 2/5/19 12:44 PM, Oleksandr Andrushchenko wrote: On 2/5/19 12:53 PM, Hans Verkuil wrote: On 2/5/19 11:44 AM, Oleksandr Andrushchenko wrote: On 2/5/19 11:34 AM, Hans Verkuil wrote: On 2/5/19 9:48 AM, Oleksandr Andrushchenko wrote: On 1/23/19 10:14 AM,

Re: [PATCH v12 00/13] media: staging/imx7: add i.MX7 media driver

2019-02-05 Thread Hans Verkuil
On 2/4/19 1:00 PM, Rui Miguel Silva wrote: > Hi, > This series introduces the Media driver to work with the i.MX7 SoC. it uses > the > already existing imx media core drivers but since the i.MX7, contrary to > i.MX5/6, do not have an IPU and because of that some changes in the imx media > core are

[GIT PULL FOR v5.1] Various fixes/improvements

2019-02-05 Thread Hans Verkuil
Besides vivid and vimc fixes the main change is to switch to using u64 for the timestamp everywhere. Regards, Hans The following changes since commit f0ef022c85a899bcc7a1b3a0955c78a3d7109106: media: vim2m: allow setting the default transaction time via parameter (2019-01-31 17:17:08

Re: [Xen-devel][PATCH v4 1/1] cameraif: add ABI for para-virtual camera

2019-02-05 Thread Hans Verkuil
On 2/5/19 12:44 PM, Oleksandr Andrushchenko wrote: > On 2/5/19 12:53 PM, Hans Verkuil wrote: >> On 2/5/19 11:44 AM, Oleksandr Andrushchenko wrote: >>> On 2/5/19 11:34 AM, Hans Verkuil wrote: On 2/5/19 9:48 AM, Oleksandr Andrushchenko wrote: > On 1/23/19 10:14 AM, Oleksandr Andrushchenko wr

Re: [PATCH v12 00/13] media: staging/imx7: add i.MX7 media driver

2019-02-05 Thread Rui Miguel Silva
Hi Sakari, On Tue 05 Feb 2019 at 11:14, Sakari Ailus wrote: Hi Rui, On Mon, Feb 04, 2019 at 12:00:26PM +, Rui Miguel Silva wrote: Hi, This series introduces the Media driver to work with the i.MX7 SoC. it uses the already existing imx media core drivers but since the i.MX7, contrary to i

Re: [Xen-devel][PATCH v4 1/1] cameraif: add ABI for para-virtual camera

2019-02-05 Thread Oleksandr Andrushchenko
On 2/5/19 12:53 PM, Hans Verkuil wrote: On 2/5/19 11:44 AM, Oleksandr Andrushchenko wrote: On 2/5/19 11:34 AM, Hans Verkuil wrote: On 2/5/19 9:48 AM, Oleksandr Andrushchenko wrote: On 1/23/19 10:14 AM, Oleksandr Andrushchenko wrote: Any comments from Xen community? Konrad? While I am still l

Re: [PATCH v12 00/13] media: staging/imx7: add i.MX7 media driver

2019-02-05 Thread Sakari Ailus
Hi Rui, On Mon, Feb 04, 2019 at 12:00:26PM +, Rui Miguel Silva wrote: > Hi, > This series introduces the Media driver to work with the i.MX7 SoC. it uses > the > already existing imx media core drivers but since the i.MX7, contrary to > i.MX5/6, do not have an IPU and because of that some cha

Re: [Xen-devel][PATCH v4 1/1] cameraif: add ABI for para-virtual camera

2019-02-05 Thread Hans Verkuil
On 2/5/19 11:44 AM, Oleksandr Andrushchenko wrote: > On 2/5/19 11:34 AM, Hans Verkuil wrote: >> On 2/5/19 9:48 AM, Oleksandr Andrushchenko wrote: >>> On 1/23/19 10:14 AM, Oleksandr Andrushchenko wrote: Any comments from Xen community? Konrad? >>> While I am still looking forward to any co

Re: [Xen-devel][PATCH v4 1/1] cameraif: add ABI for para-virtual camera

2019-02-05 Thread Oleksandr Andrushchenko
On 2/5/19 11:34 AM, Hans Verkuil wrote: On 2/5/19 9:48 AM, Oleksandr Andrushchenko wrote: On 1/23/19 10:14 AM, Oleksandr Andrushchenko wrote: Any comments from Xen community? Konrad? While I am still looking forward to any comments from Xen community... On 1/15/19 4:44 PM, Hans Verkuil wrote:

Re: [PATCH 10/10] venus: dec: make decoder compliant with stateful codec API

2019-02-05 Thread Hans Verkuil
On 2/5/19 10:31 AM, Tomasz Figa wrote: > On Tue, Feb 5, 2019 at 6:00 PM Hans Verkuil wrote: >> >> On 2/5/19 7:26 AM, Tomasz Figa wrote: >>> On Fri, Feb 1, 2019 at 12:18 AM Nicolas Dufresne >>> wrote: Le jeudi 31 janvier 2019 à 22:34 +0900, Tomasz Figa a écrit : > On Thu, Jan 31, 20

Re: compile error at sun6i_video

2019-02-05 Thread Sakari Ailus
Hi Morimoto-san, On Tue, Feb 05, 2019 at 03:38:29PM +0900, Kuninori Morimoto wrote: > > Hi MultiMedia ML > > I got below compile error at SH. > > ... > CC drivers/tty/tty_io.o > /opt/RB02197/home/morimoto/save/WORK/linux/drivers/media/platform/sunxi/sun6i-csi/sun6i_video.c: > In funct

Re: [PATCH] media: vb2: Fix compilation warning

2019-02-05 Thread Sakari Ailus
Hi Laurent, On Fri, Feb 01, 2019 at 04:51:35PM +0200, Laurent Pinchart wrote: > Commit 2cc1802f62e5 removed code without removing a local variable that > ended up being unused. This results in a compilation warning, fix it. > > Fixes: 2cc1802f62e5 ("media: vb2: Keep dma-buf buffers mapped until t

Re: [Xen-devel][PATCH v4 1/1] cameraif: add ABI for para-virtual camera

2019-02-05 Thread Hans Verkuil
On 2/5/19 9:48 AM, Oleksandr Andrushchenko wrote: > On 1/23/19 10:14 AM, Oleksandr Andrushchenko wrote: >> Any comments from Xen community? >> Konrad? > While I am still looking forward to any comments from Xen community... >> >> On 1/15/19 4:44 PM, Hans Verkuil wrote: >>> Hi Oleksandr, >>> >>> Jus

Re: [PATCH 10/10] venus: dec: make decoder compliant with stateful codec API

2019-02-05 Thread Tomasz Figa
On Tue, Feb 5, 2019 at 6:00 PM Hans Verkuil wrote: > > On 2/5/19 7:26 AM, Tomasz Figa wrote: > > On Fri, Feb 1, 2019 at 12:18 AM Nicolas Dufresne > > wrote: > >> > >> Le jeudi 31 janvier 2019 à 22:34 +0900, Tomasz Figa a écrit : > >>> On Thu, Jan 31, 2019 at 9:42 PM Philipp Zabel > >>> wrote:

Re: [PATCH 10/10] venus: dec: make decoder compliant with stateful codec API

2019-02-05 Thread Hans Verkuil
On 2/5/19 7:26 AM, Tomasz Figa wrote: > On Fri, Feb 1, 2019 at 12:18 AM Nicolas Dufresne wrote: >> >> Le jeudi 31 janvier 2019 à 22:34 +0900, Tomasz Figa a écrit : >>> On Thu, Jan 31, 2019 at 9:42 PM Philipp Zabel >>> wrote: Hi Nicolas, On Wed, 2019-01-30 at 10:32 -0500, Nicolas D

Re: [PATCH 6/6] media: ov5640: Consolidate JPEG compression mode setting

2019-02-05 Thread Sakari Ailus
Hi Chen-Yu, On Fri, Jan 18, 2019 at 04:52:06PM +0800, Chen-Yu Tsai wrote: > The register value lists for all the supported resolution settings all > include a register address/value pair for setting the JPEG compression > mode. With the exception of 1080p (which sets mode 2), all resolutions > use

Re: [Xen-devel][PATCH v4 1/1] cameraif: add ABI for para-virtual camera

2019-02-05 Thread Oleksandr Andrushchenko
On 1/23/19 10:14 AM, Oleksandr Andrushchenko wrote: Any comments from Xen community? Konrad? While I am still looking forward to any comments from Xen community... On 1/15/19 4:44 PM, Hans Verkuil wrote: Hi Oleksandr, Just two remaining comments: On 1/15/19 10:38 AM, Oleksandr Andrushchenko

Re: [PATCH] media: v4l2-tpg: Fix the memory layout of AYUV buffers

2019-02-05 Thread Hans Verkuil
On 2/5/19 3:04 AM, Vivek Kasireddy wrote: > On Sat, 2 Feb 2019 09:03:17 +0100 > Hans Verkuil wrote: > Hi Hans, > >> On 02/02/2019 01:48 AM, Vivek Kasireddy wrote: >>> On Fri, 1 Feb 2019 10:08:52 +0100 >>> Hans Verkuil wrote: >>> Hi Hans, >>> On 2/1/19 3:29 AM, Vivek Kasireddy wrote: >>

Re: [PATCH v5 0/9] phy: Add configuration interface for MIPI D-PHY devices

2019-02-05 Thread Daniel Vetter
On Mon, Feb 04, 2019 at 03:33:31PM +0530, Kishon Vijay Abraham I wrote: > > > On 21/01/19 9:15 PM, Maxime Ripard wrote: > > Hi, > > > > Here is a set of patches to allow the phy framework consumers to test and > > apply runtime configurations. > > > > This is needed to support more phy classes