cron job: media_tree daily build: OK

2016-05-16 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 May 17 04:00:25 CEST 2016 git branch: test git hash: d1532d5575696965a52b19553dd7dacf75f3fec5 gcc

Re: [PATCH v7 3/3] SMAF: add fake secure module

2016-05-16 Thread Emil Velikov
Hi Benjamin, On 9 May 2016 at 16:07, Benjamin Gaignard wrote: > This module is allow testing secure calls of SMAF. > "Add fake secure module" does sound like something not (m)any people want to hear ;-) Have you considered calling it 'dummy', 'test' or similar ? >

Re: [PATCH v7 2/3] SMAF: add CMA allocator

2016-05-16 Thread Emil Velikov
Hi Benjamin, On 9 May 2016 at 16:07, Benjamin Gaignard wrote: > SMAF CMA allocator implement helpers functions to allow SMAF > to allocate contiguous memory. > > match() each if at least one of the attached devices have coherent_dma_mask > set to DMA_BIT_MASK(32). >

Re: [PATCH v7 1/3] create SMAF module

2016-05-16 Thread Emil Velikov
Hi Benjamin, I'd suspect you're interested in some feedback on these, so here is a few :-) Sadly (ideally?) nothing serious, but a bunch minor suggestions, plus the odd bug. On 9 May 2016 at 16:07, Benjamin Gaignard wrote: > --- /dev/null > +++

[PATCH v2 0/6] ir-rx51 driver fixes

2016-05-16 Thread Ivaylo Dimitrov
ir-rx51 is a driver for Nokia N900 IR transmitter. The current series fixes the remaining problems in the driver: - replace GP timer 9 with PWM framework usage - replace pulse width timer dmtimer usage with hrtimer - add DT support to the driver - add driver to the board DTS Pathe 2 is

[PATCH v2 2/6] pwm: omap-dmtimer: Allow for setting dmtimer clock source

2016-05-16 Thread Ivaylo Dimitrov
OMAP GP timers can have different input clocks that allow different PWM frequencies. However, there is no other way of setting the clock source but through clocks or clock-names properties of the timer itself. This limits PWM functionality to only the frequencies allowed by the particular clock

[PATCH v2 6/6] ARM: dts: n900: enable lirc-rx51 driver

2016-05-16 Thread Ivaylo Dimitrov
Add the needed DT data to enable IR TX driver Signed-off-by: Ivaylo Dimitrov --- arch/arm/boot/dts/omap3-n900.dts | 12 1 file changed, 12 insertions(+) diff --git a/arch/arm/boot/dts/omap3-n900.dts b/arch/arm/boot/dts/omap3-n900.dts index

[PATCH v2 4/6] ir-rx51: add DT support to driver

2016-05-16 Thread Ivaylo Dimitrov
With the upcoming removal of legacy boot, lets add support to one of the last N900 drivers remaining without it. As the driver still uses omap dmtimer, add auxdata as well. Signed-off-by: Ivaylo Dimitrov --- .../devicetree/bindings/media/nokia,n900-ir | 20

[PATCH v2 1/6] ir-rx51: Fix build after multiarch changes broke it

2016-05-16 Thread Ivaylo Dimitrov
From: Tony Lindgren The ir-rx51 driver for n900 has been disabled since the multiarch changes as plat include directory no longer is SoC specific. Let's fix it with minimal changes to pass the dmtimer calls in pdata. Then the following changes can be done while things can be

[PATCH v2 3/6] ir-rx51: use PWM framework instead of OMAP dmtimer

2016-05-16 Thread Ivaylo Dimitrov
Convert driver to use PWM framework instead of calling dmtimer functions directly for PWM timer. Remove paragraph about writing to the Free Software Foundation's mailing address while at it. Signed-off-by: Ivaylo Dimitrov ---

[PATCH v2 5/6] ir-rx51: use hrtimer instead of dmtimer

2016-05-16 Thread Ivaylo Dimitrov
Drop dmtimer usage for pulse timer in favor of hrtimer. That allows removing PWM dmitimer platform data usage. Signed-off-by: Ivaylo Dimitrov --- arch/arm/mach-omap2/board-rx51-peripherals.c | 4 - arch/arm/mach-omap2/pdata-quirks.c | 3 -

[GIT PULL] NetUP Universal DVB (revision 1.4)

2016-05-16 Thread Abylay Ospan
Hi Mauro, Please pull code from my repository (details below). Repository is based on linux-next. If it's better to send patch-by-patch basis please let me know - i will prepare emails. This patches adding support for our NetUP Universal DVB card revision 1.4 (ISDB-T added to this revision).

Re: [PATCH v2 4/9] dt-bindings: Add a binding for Mediatek Video Decoder

2016-05-16 Thread Rob Herring
On Thu, May 12, 2016 at 07:24:05PM +0800, Tiffany Lin wrote: > Add a DT binding documentation of Video Decoder for the > MT8173 SoC from Mediatek. > > Signed-off-by: Tiffany Lin > --- > .../devicetree/bindings/media/mediatek-vcodec.txt | 50 > ++-- >

Re: [PATCH] media: Add a driver for the ov5645 camera sensor.

2016-05-16 Thread Laurent Pinchart
Hi Hans, On Monday 16 May 2016 10:38:09 Hans Verkuil wrote: > On 05/16/2016 10:23 AM, Todor Tomov wrote: > > On 05/13/2016 10:02 AM, Hans Verkuil wrote: > >> On 05/12/2016 04:59 PM, Todor Tomov wrote: > >>> The ov5645 sensor from Omnivision supports up to 2592x1944 > >>> and CSI2 interface. > >>>

[PATCH 0/4] yavta: Implement compound controls support

2016-05-16 Thread Laurent Pinchart
Hello, This series implements compound controls support for yavta. The support is currently limited to (multidimensional) arrays of integer types, and will be extended later as needed. One point worth noting is patch 4/4 that adds support for setting a control to a value stored in a file. This

[PATCH 3/4] Implement compound control set support

2016-05-16 Thread Laurent Pinchart
Signed-off-by: Laurent Pinchart --- yavta.c | 217 1 file changed, 165 insertions(+), 52 deletions(-) diff --git a/yavta.c b/yavta.c index 360c53fc77c5..4b531a0360fe 100644 --- a/yavta.c +++

[PATCH 4/4] Support setting control from values stored in a file

2016-05-16 Thread Laurent Pinchart
Signed-off-by: Laurent Pinchart --- yavta.c | 24 1 file changed, 24 insertions(+) diff --git a/yavta.c b/yavta.c index 4b531a0360fe..d0bcf7f19c7b 100644 --- a/yavta.c +++ b/yavta.c @@ -1225,6 +1225,30 @@ static int

[PATCH 2/4] Implement compound control get support

2016-05-16 Thread Laurent Pinchart
Signed-off-by: Laurent Pinchart --- yavta.c | 158 +++- 1 file changed, 116 insertions(+), 42 deletions(-) diff --git a/yavta.c b/yavta.c index af565245f87b..360c53fc77c5 100644 --- a/yavta.c +++

[PATCH 1/4] Implement VIDIOC_QUERY_EXT_CTRL support

2016-05-16 Thread Laurent Pinchart
Use the new extended control query ioctl when available with an automatic fall back to VIDIOC_QUERYCTRL. Signed-off-by: Laurent Pinchart --- yavta.c | 47 +++ 1 file changed, 39 insertions(+), 8 deletions(-) diff

Re: [PATCH/RFC v2 0/4] Meta-data video device type

2016-05-16 Thread Laurent Pinchart
Hi Hans, On Friday 13 May 2016 11:26:22 Hans Verkuil wrote: > On 05/12/2016 02:17 AM, Laurent Pinchart wrote: > > Hello, > > > > This RFC patch series is a second attempt at adding support for passing > > statistics data to userspace using a standard API. > > > > The core requirements haven't

Re: [PATCH/RFC v2 0/4] Meta-data video device type

2016-05-16 Thread Laurent Pinchart
Hello, On Friday 13 May 2016 12:52:42 Sakari Ailus wrote: > On Fri, May 13, 2016 at 11:26:22AM +0200, Hans Verkuil wrote: > > On 05/12/2016 02:17 AM, Laurent Pinchart wrote: > > > Hello, > > > > > > This RFC patch series is a second attempt at adding support for passing > > > statistics data to

Re: [PATCH] media: Add a driver for the ov5645 camera sensor.

2016-05-16 Thread Hans Verkuil
On 05/16/2016 10:23 AM, Todor Tomov wrote: > Hello Hans, > > Thank you for your review. Please see my comments below. > > On 05/13/2016 10:02 AM, Hans Verkuil wrote: >> On 05/12/2016 04:59 PM, Todor Tomov wrote: >>> The ov5645 sensor from Omnivision supports up to 2592x1944 >>> and CSI2

Re: [PATCH] media: Add a driver for the ov5645 camera sensor.

2016-05-16 Thread Todor Tomov
Hello Hans, Thank you for your review. Please see my comments below. On 05/13/2016 10:02 AM, Hans Verkuil wrote: > On 05/12/2016 04:59 PM, Todor Tomov wrote: >> The ov5645 sensor from Omnivision supports up to 2592x1944 >> and CSI2 interface. >> >> The driver adds support for the following