cron job: media_tree daily build: WARNINGS

2015-06-17 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: Thu Jun 18 04:00:17 CEST 2015 git branch: test git hash: e42c8c6eb456f8978de417ea349eef676ef4385c gcc versi

Re: [PATCH v3 1/7] rc: rc-ir-raw: Add scancode encoder callback

2015-06-17 Thread Antti Seppälä
On 14 June 2015 at 02:44, David Härdeman wrote: > One idea that I've had in the back of my head for a long time is to use the > "flags" member of "struct rc_keymap_entry" in the new EVIOC[GS]KEYCODE_V2 > ioctl variant (see http://www.spinics.net/lists/linux-media/msg88452.html). > > If a RC_POWER

Re: solo6x10: all interrupts for all cards handled by CPU0, no balancing - why?

2015-06-17 Thread Ismael Luceno
On Fri, 30 Jan 2015 00:29:13 +0200 Andrey Utkin wrote: > The host was rebooted and got back online. > Without irqbalance daemon, all solo6x10 interrupts are still on CPU0. > See https://gist.github.com/krieger-od/d1686243c67fbe3e14a5 > Any ideas are strongly appreciated. > My understanding was t

Re: [RFC PATCH 2/3] make struct vb2_queue to common and apply the changes related with that.

2015-06-17 Thread Mauro Carvalho Chehab
Em Mon, 08 Jun 2015 22:35:34 +0900 Junghak Sung escreveu: > Abstract the v4l2-specific members of the struct vb2_queue, > and concrete it in the side of user. > For example, the struct vb2_v4l2_buffer can be abstracted by using > struct vb2_buffer, and concrete it by using container_of() in a dev

[PATCH] staging: media: lirc: fix coding style error

2015-06-17 Thread Sunil Shahu
Fix code indentation error by replacing tab in place of spaces. Signed-off-by: Sunil Shahu --- drivers/staging/media/lirc/lirc_sasem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/media/lirc/lirc_sasem.c b/drivers/staging/media/lirc/lirc_sasem.c index 8ebe

Re: [RFC PATCH 1/3] modify the vb2_buffer structure for common video buffer and make struct vb2_v4l2_buffer

2015-06-17 Thread Mauro Carvalho Chehab
Em Mon, 08 Jun 2015 22:35:33 +0900 Junghak Sung escreveu: > Make the struct vb2_buffer to common buffer by removing v4l2-specific members. > And common video buffer is embedded into v4l2-specific video buffer like: > struct vb2_v4l2_buffer { > struct vb2_buffervb2; > struct v4l2_buffe

[PATCH 1/2] create SMAF module

2015-06-17 Thread Benjamin Gaignard
Secure Memory Allocation Framework goal is to be able to allocate memory that can be securing. There is so much ways to allocate and securing memory that SMAF doesn't do it by itself but need help of additional modules. To be sure to use the correct allocation method SMAF implement deferred allocat

[PATCH 2/2] SMAF: add CMA allocator

2015-06-17 Thread Benjamin Gaignard
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). For allocation it use dma_alloc_attrs() with DMA_ATTR_WRITE_COMBINE and not dma_alloc_writecombine to be

[PATCH 0/2] RFC: Secure Memory Allocation Framework

2015-06-17 Thread Benjamin Gaignard
The outcome of the previous RFC about how do secure data path was the need of a secure memory allocator (https://lkml.org/lkml/2015/5/5/551) SMAF goal is to provide a framework that allow allocating and securing memory by using dma_buf. Each platform have it own way to perform those two features s

Re: [RFC PATCH 1/3] modify the vb2_buffer structure for common video buffer and make struct vb2_v4l2_buffer

2015-06-17 Thread Mauro Carvalho Chehab
Em Fri, 12 Jun 2015 12:09:00 +0200 Hans Verkuil escreveu: > On 06/12/2015 11:58 AM, Hans Verkuil wrote: > > Hi Junghak, > > > > On 06/08/2015 03:35 PM, Junghak Sung wrote: > >> Make the struct vb2_buffer to common buffer by removing v4l2-specific > >> members. > >> And common video buffer is em

Re: em28xx problem with 3.10-4.0

2015-06-17 Thread Mauro Carvalho Chehab
Em Wed, 17 Jun 2015 08:32:26 +0200 "Gabor Z. Papp" escreveu: > * Mauro Carvalho Chehab : > > | Nothing. You just ran out of continuous memory. This driver > | requires long chunks of continuous memory for USB data transfer. > > And there is no way to preset some mem? > Or do something to get th

[PATCH 1/2] media: atmel-isi: setup the ISI_CFG2 register directly

2015-06-17 Thread Josh Wu
In the function configure_geometry(), we will setup the ISI CFG2 according to the sensor output format. It make no sense to just read back the CFG2 register and just set part of it. So just set up this register directly makes things simpler. Currently only support YUV format from camera sensor.

[PATCH 2/2] media: atmel-isi: move configure_geometry() to start_streaming()

2015-06-17 Thread Josh Wu
As in set_fmt() function we only need to know which format is been set, we don't need to access the ISI hardware in this moment. So move the configure_geometry(), which access the ISI hardware, to start_streaming() will make code more consistent and simpler. Signed-off-by: Josh Wu --- drivers/

[PATCH] media: atmel-isi: increase timeout to disable/enable isi

2015-06-17 Thread Josh Wu
If ISI is working on a 1024x768 or higher resolution, it needs longer time to disable ISI. So this patch will increase timeout to 500ms. Signed-off-by: Josh Wu --- drivers/media/platform/soc_camera/atmel-isi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/pla