cron job: media_tree daily build: ERRORS

2019-07-26 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: Sat Jul 27 05:00:13 CEST 2019 media-tree git hash:a8f910ec66583bfb61558c3f333195b3960d832d media_build gi

Re: [PATCH 2/2] media: Don't hide any menu if "ancillary drivers autoselect" is enabled

2019-07-26 Thread Mauro Carvalho Chehab
Em Fri, 26 Jul 2019 21:17:00 -0300 Ezequiel Garcia escreveu: > On Thu, 2019-07-25 at 23:09 -0300, Mauro Carvalho Chehab wrote: > > Em Thu, 25 Jul 2019 20:55:13 -0300 > > Ezequiel Garcia escreveu: > > > > > On Thu, 2019-07-25 at 15:41 -0300, Mauro Carvalho Chehab wrote: > > > > Em Fri, 26 Ju

Re: [PATCH 1/2]: media: hdpvr: Add adaptive sleeping in hdpvr_start_streaming

2019-07-26 Thread Keith Pyle
On 07/25/19 02:10, Hans Verkuil wrote: > On 7/7/19 11:15 PM, Keith Pyle wrote: >> The hdpvr firmware reacts poorly to a fast close/open sequence. Delaying >> a few seconds between the close and next open produces generally reliable >> results. Rather than requiring user programs to implement this

Re: [PATCH 2/2] media: Don't hide any menu if "ancillary drivers autoselect" is enabled

2019-07-26 Thread Ezequiel Garcia
On Thu, 2019-07-25 at 23:09 -0300, Mauro Carvalho Chehab wrote: > Em Thu, 25 Jul 2019 20:55:13 -0300 > Ezequiel Garcia escreveu: > > > On Thu, 2019-07-25 at 15:41 -0300, Mauro Carvalho Chehab wrote: > > > Em Fri, 26 Jul 2019 01:29:58 +0800 > > > Chen-Yu Tsai escreveu: > > > > > > > On Fri, Ju

[ragnatech:media-tree] BUILD SUCCESS a8f910ec66583bfb61558c3f333195b3960d832d

2019-07-26 Thread kbuild test robot
tree/branch: git://git.ragnatech.se/linux media-tree branch HEAD: a8f910ec66583bfb61558c3f333195b3960d832d media: v4l2-core: Cleanup Makefile elapsed time: 1787m configs tested: 150 The following configs have been built successfully. More configs may be tested in the coming days. s390

[PATCH] media input infrastructure:tw686x: Added custom function for video device release functionality in tw686x driver

2019-07-26 Thread Mark Balantzyan
Signed-off-by: Mark Balantzyan Reported-by: kbuild test robot --- This patch adds a custom function for releasing the video device for the tw686x video device driver. drivers/media/pci/tw686x/tw686x-video.c | 23 ++- 1 file changed, 18 insertions(+), 5 deletions(-) diff --

[PATCH] Added custom function for video device release functionality in tw686x driver

2019-07-26 Thread Mark Balantzyan
Signed-off-by: Mark Balantzyan Reported-by: kbuild test robot --- This patch adds a custom function in tw686x-video.c to provide a release mechanism for the driver for the tw686x video device. drivers/media/pci/tw686x/tw686x-video.c | 23 ++- 1 file changed, 18 insertions(+

Re: [PATCH] media input infrastructure:tw686x: Added Added custom function to set vdev->release in tw686x driver

2019-07-26 Thread kbuild test robot
Hi Mark, Thank you for the patch! Yet something to improve: [auto build test ERROR on linuxtv-media/master] [also build test ERROR on v5.3-rc1 next-20190726] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci

Re: Issues with ov5640 camera on i.MX6Q

2019-07-26 Thread Laura Nao
Hi Eric and Eugen, On 7/23/19 9:51 AM, eugen.hris...@microchip.com wrote: On 22.07.2019 19:25, Eric Nelson wrote: Hi Laura, On 7/22/19 8:50 AM, Laura Nao wrote: Thanks Fabio! I tried tweaking the PLL configuration in the driver and did some further tests on 5.2 kernel. I was finally able

Re: Issues with ov5640 camera on i.MX6Q

2019-07-26 Thread Laura Nao
Hi Jacopo, On 7/24/19 4:49 PM, Jacopo Mondi wrote: Hi Laura, thanks for addressing this issue. On Mon, Jul 22, 2019 at 05:50:35PM +0200, Laura Nao wrote: Thanks Fabio! I tried tweaking the PLL configuration in the driver and did some further tests on 5.2 kernel. I was finally able to cap

Re: [GIT PULL for 5.4] V4L2 ISP, fwnode, sensor and CSI2 patches

2019-07-26 Thread Fabio Estevam
Hi Sakari, On Thu, Jul 25, 2019 at 8:17 AM Sakari Ailus wrote: > Fabio: could you address the issue? Yes, I have sent a v2 that addresses the issue. Regards, Fabio Estevam

[PATCH for v5.3] vivid: fix missing cec adapter name

2019-07-26 Thread Hans Verkuil
Commit "vivid: reorder CEC allocation and control set-up" missed that the CEC adapter needs a valid vfd->name, and that was now filled in after the CEC adapter was created, leading to an empty adapter name. Fill in the name earlier. Signed-off-by: Hans Verkuil Fixes: 4ee895e71abb ("media: vivid

[PATCH 2/3] v4l2-common: add support for new RGB32 pixelformats

2019-07-26 Thread Hans Verkuil
Four new variants of RGB32 were added. Add support for them to the v4l2_format_info() function. Signed-off-by: Hans Verkuil --- drivers/media/v4l2-core/v4l2-common.c | 4 1 file changed, 4 insertions(+) diff --git a/drivers/media/v4l2-core/v4l2-common.c b/drivers/media/v4l2-core/v4l2-comm

[PATCH 0/3] v4l2-tpg/vivid/v4l2_format_info: support new pixelformats

2019-07-26 Thread Hans Verkuil
New RGB444, RGB555 and RGB32 variants were recently added. Add support for them to the tpg, vivid and v4l2_format_info(). Only the RGB32 variants were added to v4l2_format_info(). Regards, Hans Hans Verkuil (3): v4l2-tpg: add support for new pixelformats v4l2-common: add support for

[PATCH 1/3] v4l2-tpg: add support for new pixelformats

2019-07-26 Thread Hans Verkuil
Several new variations of RGB444, RGB555 and RGB32 were added. Add support for these. This is the list of new pixelformats: V4L2_PIX_FMT_RGBX444 V4L2_PIX_FMT_RGBA444 V4L2_PIX_FMT_XBGR444 V4L2_PIX_FMT_ABGR444 V4L2_PIX_FMT_BGRX444 V4L2_PIX_FMT_BGRA444 V4L2_PIX_FMT_RGBX555 V4L2_PIX_FMT_RGBA555 V4L2_

[PATCH 3/3] vivid: add support for new pixelformats

2019-07-26 Thread Hans Verkuil
New RGB444, RGB555 and RGB32 variants were recently added. Now also support them in vivid. Signed-off-by: Hans Verkuil --- .../media/platform/vivid/vivid-vid-common.c | 132 +- 1 file changed, 129 insertions(+), 3 deletions(-) diff --git a/drivers/media/platform/vivid/vivid-vi

Re: [PATCH 00/14] Stateful/stateless codec core support (resend)

2019-07-26 Thread Hans Verkuil
On 7/26/19 11:56 AM, Chen-Yu Tsai wrote: > On Fri, Jul 26, 2019 at 5:50 PM Maxime Jourdan wrote: >> >> On Wed, Jul 24, 2019 at 1:27 PM Hans Verkuil >> wrote: >>> >>> (There were too many recipients for my provider, so resending >>> again without the zillion CCs, and in batches of 5 patches. Stup

Re: [PATCH 00/14] Stateful/stateless codec core support (resend)

2019-07-26 Thread Chen-Yu Tsai
On Fri, Jul 26, 2019 at 5:50 PM Maxime Jourdan wrote: > > On Wed, Jul 24, 2019 at 1:27 PM Hans Verkuil wrote: > > > > (There were too many recipients for my provider, so resending > > again without the zillion CCs, and in batches of 5 patches. Stupid > > spammer detection...) > > > > This series

Re: [PATCH 00/14] Stateful/stateless codec core support (resend)

2019-07-26 Thread Maxime Jourdan
On Wed, Jul 24, 2019 at 1:27 PM Hans Verkuil wrote: > > (There were too many recipients for my provider, so resending > again without the zillion CCs, and in batches of 5 patches. Stupid > spammer detection...) > > This series consolidates various patches/patch series that add > features or docume

RE: [v4 1/6] dt-bindings: media: Document bindings for DW MIPI CSI-2 Host

2019-07-26 Thread Luis de Oliveira
Hi Sakari, Thank you for the review, my answers inline. > From: Sakari Ailus > Date: Thu, Jul 25, 2019 at 21:02:11 > > Hi Luis, > > On Wed, Jul 10, 2019 at 10:20:55AM +, Luis de Oliveira wrote: > > Hi Sakari, > > > > From: Sakari Ailus > > Date: Tue, Jul 09, 2019 at 19:25:00 > > > > > Hi

Re: [PATCH 00/14] Stateful/stateless codec core support

2019-07-26 Thread Hans Verkuil
Just a reminder: due to problems with my provider (overly strict spammer detection) I had to post this series again, this time without any CCs. So the full series is here: https://patchwork.linuxtv.org/cover/57699/ Please review. I certainly need help with "pixfmt-compressed.rst: improve H264/HE

Re: [PATCH v3 1/3] media: uapi: h264: Clarify our expectations regarding NAL header format

2019-07-26 Thread Hans Verkuil
On 7/26/19 9:30 AM, Boris Brezillon wrote: > On Fri, 26 Jul 2019 08:28:28 +0200 > Boris Brezillon wrote: > >> On Thu, 25 Jul 2019 23:39:11 -0300 >> Ezequiel Garcia wrote: >> >>> On Thu, 2019-07-25 at 21:36 +0200, Paul Kocialkowski wrote: Hi, On Thu 25 Jul 19, 08:42, Boris Brezil

Re: [PATCH v3 1/3] media: uapi: h264: Clarify our expectations regarding NAL header format

2019-07-26 Thread Boris Brezillon
On Fri, 26 Jul 2019 08:28:28 +0200 Boris Brezillon wrote: > On Thu, 25 Jul 2019 23:39:11 -0300 > Ezequiel Garcia wrote: > > > On Thu, 2019-07-25 at 21:36 +0200, Paul Kocialkowski wrote: > > > Hi, > > > > > > On Thu 25 Jul 19, 08:42, Boris Brezillon wrote: > > > > On Fri, 5 Jul 2019 19:16