cron job: media_tree daily build: WARNINGS

2017-11-13 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: Tue Nov 14 05:00:21 CET 2017 media-tree git hash:eb0c19942288569e0ae492476534d5a485fb8ab4 media_build

Re: [PATCH 2/3] atomisp: fix vfree of bogus data on unload

2017-11-13 Thread Alan Cox
On Tue, 14 Nov 2017 00:05:48 +0200 Sakari Ailus wrote: > Hi Alan, > > On Mon, Nov 06, 2017 at 11:36:45PM +, Alan wrote: > > We load the firmware once, set pointers to it and then at some point release > > it. We should not be doing a vfree() on the pointers

Re: [PATCH 2/3] atomisp: fix vfree of bogus data on unload

2017-11-13 Thread Sakari Ailus
Hi Alan, On Mon, Nov 06, 2017 at 11:36:45PM +, Alan wrote: > We load the firmware once, set pointers to it and then at some point release > it. We should not be doing a vfree() on the pointers into the firmware. > > Signed-off-by: Alan Cox > --- >

[no subject]

2017-11-13 Thread Friedrich Mayrhofer
This is the second time i am sending you this Email. I, Friedrich Mayrhofer Donate $ 1,000,000.00 to You, Email Me personally for more details. Regards. Friedrich Mayrhofer This message was sent using IMP, the Internet

Re: [PATCH 08/10] video/hdmi: Reject illegal picture aspect ratios

2017-11-13 Thread Jose Abreu
On 13-11-2017 17:04, Ville Syrjala wrote: > From: Ville Syrjälä > > AVI infoframe can only carry none, 4:3, or 16:9 picture aspect > ratios. Return an error if the user asked for something different. > > Cc: Shashank Sharma > Cc: "Lin,

Reply

2017-11-13 Thread JOJO AKPE
Open the attached file and read my message.

Re: et8ek8: Document support for flash and lens devices

2017-11-13 Thread Sakari Ailus
On Sun, Nov 12, 2017 at 03:25:47PM +0100, Sebastian Reichel wrote: > Hi, > > On Sun, Nov 12, 2017 at 12:27:29PM +0100, Pavel Machek wrote: > > > > Document dts support of LED/focus. > > > > Signed-off-by: Pavel Machek > > Reviewed-by: Sebastian Reichel

[PATCH 08/10] video/hdmi: Reject illegal picture aspect ratios

2017-11-13 Thread Ville Syrjala
From: Ville Syrjälä AVI infoframe can only carry none, 4:3, or 16:9 picture aspect ratios. Return an error if the user asked for something different. Cc: Shashank Sharma Cc: "Lin, Jia" Cc: Akashdeep Sharma

[PATCH 10/10] video/hdmi: Pass buffer size to infoframe unpack functions

2017-11-13 Thread Ville Syrjala
From: Ville Syrjälä To make sure the infoframe unpack functions don't end up examining stack garbage or oopsing, let's pass in the size of the buffer. Cc: Thierry Reding Cc: Hans Verkuil Cc:

[PATCH 09/10] video/hdmi: Constify 'buffer' to the unpack functions

2017-11-13 Thread Ville Syrjala
From: Ville Syrjälä The unpack functions just read from the passed in buffer, so make it const. Cc: Thierry Reding Cc: Hans Verkuil Cc: linux-media@vger.kernel.org Signed-off-by: Ville Syrjälä

[PATCH 01/10] video/hdmi: Allow "empty" HDMI infoframes

2017-11-13 Thread Ville Syrjala
From: Ville Syrjälä HDMI 2.0 Appendix F suggest that we should keep sending the infoframe when switching from 3D to 2D mode, even if the infoframe isn't strictly necessary (ie. not needed to transmit the VIC or stereo information). This is a workaround against some

[PATCH 00/10] drm/edid: Infoframe cleanups and fixes

2017-11-13 Thread Ville Syrjala
From: Ville Syrjälä This series tries to fix some issues with HDMI infoframes. In particular we can currently send a bogus picture aspect ratio in the infoframe. I included stuff to to make the infoframe unpakc more robust, evne though we don't (yet) use it in drm.

Re: [PATCH] media: et8ek8: select V4L2_FWNODE

2017-11-13 Thread Sebastian Reichel
Hi, On Mon, Nov 13, 2017 at 02:56:45PM +0100, Arnd Bergmann wrote: > v4l2_async_register_subdev_sensor_common() is only provided when > CONFIG_V4L2_FWNODE is enabled, otherwise we get a link failure: > > drivers/media/i2c/et8ek8/et8ek8_driver.o: In function `et8ek8_probe': >

Re:

2017-11-13 Thread Amos Kalonzo
Attn: I am wondering why You haven't respond to my email for some days now. reference to my client's contract balance payment of (11.7M,USD) Kindly get back to me for more details. Best Regards Amos Kalonzo

[RFCv1 PATCH 2/6] v4l2-ctrls: prepare internal structs for request API

2017-11-13 Thread Hans Verkuil
From: Hans Verkuil Add a refcount and is_request bool to struct v4l2_ctrl_handler: this is used to refcount a handler that represents a request. Add a p_req field to struct v4l2_ctrl_ref that will store the request value. Signed-off-by: Hans Verkuil

[RFCv1 PATCH 5/6] v4l2-ctrls: support g/s_ext_ctrls for requests

2017-11-13 Thread Hans Verkuil
From: Hans Verkuil The v4l2_g/s_ext_ctrls functions now support control handlers that represent requests. Signed-off-by: Hans Verkuil --- drivers/media/v4l2-core/v4l2-ctrls.c | 37 1 file changed, 33

[RFCv1 PATCH 6/6] v4l2-ctrls: add v4l2_ctrl_request_setup

2017-11-13 Thread Hans Verkuil
From: Hans Verkuil Add a helper function that can set controls from a request. Signed-off-by: Hans Verkuil --- drivers/media/v4l2-core/v4l2-ctrls.c | 71 include/media/v4l2-ctrls.h | 2 + 2 files

[RFCv1 PATCH 1/6] v4l2-ctrls: v4l2_ctrl_add_handler: add from_other_dev

2017-11-13 Thread Hans Verkuil
From: Hans Verkuil Add a 'bool from_other_dev' argument: set to true if the two handlers refer to different devices (e.g. it is true when inheriting controls from a subdev into a main v4l2 bridge driver). This will be used later when implementing support for the request

[RFCv1 PATCH 3/6] v4l2-ctrls: add core request API

2017-11-13 Thread Hans Verkuil
From: Hans Verkuil Add the four core request functions: v4l2_ctrl_request_alloc() allocates a new (empty) request. v4l2_ctrl_request_clone() resets a request based on another request (or clears it if that request is NULL). v4l2_ctrl_request_get(): increase refcount

[RFCv1 PATCH 4/6] v4l2-ctrls: use ref in helper instead of ctrl

2017-11-13 Thread Hans Verkuil
From: Hans Verkuil The next patch needs the reference to a control instead of the control itself, so change struct v4l2_ctrl_helper accordingly. Signed-off-by: Hans Verkuil --- drivers/media/v4l2-core/v4l2-ctrls.c | 18 +- 1 file

[RFCv1 PATCH 0/6] v4l2-ctrls: implement requests

2017-11-13 Thread Hans Verkuil
From: Hans Verkuil Hi Alexandre, This is a first implementation of the request API in the control framework. It is fairly simplistic at the moment in that it just clones all the control values (so no refcounting yet for values as Laurent proposed, I will work on that

[PATCH] media: et8ek8: select V4L2_FWNODE

2017-11-13 Thread Arnd Bergmann
v4l2_async_register_subdev_sensor_common() is only provided when CONFIG_V4L2_FWNODE is enabled, otherwise we get a link failure: drivers/media/i2c/et8ek8/et8ek8_driver.o: In function `et8ek8_probe': et8ek8_driver.c:(.text+0x884): undefined reference to `v4l2_async_register_subdev_sensor_common'

Re: [PATCH v4 10/12] intel-ipu3: css pipeline

2017-11-13 Thread Sakari Ailus
Hi Yong, On Fri, Nov 10, 2017 at 10:35:43PM +, Zhi, Yong wrote: > Hi, Sakari, > > Thanks for the review. > > > -Original Message- > > From: linux-media-ow...@vger.kernel.org [mailto:linux-media- > > ow...@vger.kernel.org] On Behalf Of Sakari Ailus > > Sent: Wednesday, November 1,

Hello Dear...

2017-11-13 Thread M,Shakour Rosarita
Hello Dear... I know that this message will come to you as a surprise. I hoped that you will not expose or betray this trust and confident that I am about to repose on you, my name is M, Shakour Rosarita. I am 19 years old Girl, female, from Tartu Syria, (never married) 61 kg, white in

Re: [linux-sunxi] [PATCH v3 1/3] media: V3s: Add support for Allwinner CSI.

2017-11-13 Thread Ondřej Jirman
Hello, Thanks for your patches. I've been working with CSI on A83T, so I have a few notes. My review is below. :) Yong Deng píše v Po 13. 11. 2017 v 15:30 +0800: > Allwinner V3s SoC have two CSI module. CSI0 is used for MIPI interface > and CSI1 is used for parallel interface. This is not

Re: [PATCH 2/2] sdlcam: ignore binary

2017-11-13 Thread Rafaël Carré
Adding linux-media, thanks On 13/11/2017 10:20, Pavel Machek wrote: > On Mon 2017-11-13 10:19:08, Rafaël Carré wrote: >> Signed-off-by: Rafaël Carré > > Acked-by: PavelMachek > >> --- >> contrib/test/.gitignore | 1 + >> 1 file changed, 1

Re: [PATCH 1/2] sdlcam: fix linking

2017-11-13 Thread Pavel Machek
On Mon 2017-11-13 10:19:07, Rafaël Carré wrote: > Signed-off-by: Rafaël Carré Acked-by: Pavel Machek Thanks! Pavel -- (english)

[PATCH 2/2] sdlcam: ignore binary

2017-11-13 Thread Rafaël Carré
Signed-off-by: Rafaël Carré --- contrib/test/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/test/.gitignore b/contrib/test/.gitignore index ad64325b..5bd81d01 100644 --- a/contrib/test/.gitignore +++ b/contrib/test/.gitignore @@ -8,3 +8,4 @@

[PATCH 1/2] sdlcam: fix linking

2017-11-13 Thread Rafaël Carré
Signed-off-by: Rafaël Carré --- contrib/test/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/test/Makefile.am b/contrib/test/Makefile.am index 6a4303d7..0188fe21 100644 --- a/contrib/test/Makefile.am +++ b/contrib/test/Makefile.am @@

Re: [PATCH v7 25/25] rcar-vin: enable support for r8a7796

2017-11-13 Thread Geert Uytterhoeven
CC DT On Sat, Nov 11, 2017 at 1:38 AM, Niklas Söderlund wrote: > Add the SoC specific information for Renesas r8a7796. > > Signed-off-by: Niklas Söderlund > Reviewed-by: Hans Verkuil > --- >

Re: [linux-sunxi] [PATCH v3 3/3] media: MAINTAINERS: add entries for Allwinner V3s CSI

2017-11-13 Thread Yong
On Mon, 13 Nov 2017 15:37:11 +0800 Yong Deng wrote: > Signed-off-by: Yong Deng > --- > MAINTAINERS | 8 > 1 file changed, 8 insertions(+) > > diff --git a/MAINTAINERS b/MAINTAINERS > index adbf693..1ba7782 100644 > --- a/MAINTAINERS >

Re: [PATCH v4 3/5] staging: Introduce NVIDIA Tegra video decoder driver

2017-11-13 Thread Dan Carpenter
On Sat, Nov 11, 2017 at 04:06:52PM +0200, Vladimir Zapolskiy wrote: > > + if (!wait_dma) > > + return 0; > > + > > + err = readl_relaxed_poll_timeout(vde->bsev + INTR_STATUS, value, > > +!(value & BSE_DMA_BUSY), 1, 100); > > + if (err) { > > +