cron job: media_tree daily build: OK

2015-07-31 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 Aug 1 04:00:19 CEST 2015 git branch: test git hash: 4dc102b2f53d63207fa12a6ad49c7b6448bc3301 gcc versi

Re: [PATCH] vb2: revert: vb2: allow requeuing buffers while streaming

2015-07-31 Thread Antti Palosaari
Moikka! On 07/31/2015 05:43 PM, Sakari Ailus wrote: Terve, On Wed, Jul 29, 2015 at 06:29:05PM +0300, Antti Palosaari wrote: commit ce0eff016f7272faa6dc6eec722b1ca1970ff9aa [media] vb2: allow requeuing buffers while streaming That commit causes buf_queue() called on infinity loop when start_st

Re: [PATCH] [media] vmc: Virtual Media Controller core, capture and sensor

2015-07-31 Thread Helen Fornazier
Hi, On Fri, Jul 24, 2015 at 10:35 AM, Hans Verkuil wrote: > Hi Helen, > > Thank you for creating this driver! Much appreciated! Thank you for your review > > I do have some comments, see my notes below... > > On 07/18/2015 04:42 PM, Helen Fornazier wrote: >> First version of the Virtual Media C

Re: dvb_usb_af9015: command failed=1 _ kernel >= 4.1.x

2015-07-31 Thread poma
On 13.07.2015 11:48, poma wrote: > On 07.07.2015 10:48, poma wrote: >> On 06.07.2015 22:17, Jose Alberto Reguero wrote: >>> I made the patch for the af9035. I have not a af9015 whith mxl5007 and dual >>> channel. Revert it, if it cause regresions. >>> >>> Jose Alberto >>> >> >> Thanks. >> >> From

Re: [PATCH] vb2: revert: vb2: allow requeuing buffers while streaming

2015-07-31 Thread Sakari Ailus
Terve, On Wed, Jul 29, 2015 at 06:29:05PM +0300, Antti Palosaari wrote: > commit ce0eff016f7272faa6dc6eec722b1ca1970ff9aa > [media] vb2: allow requeuing buffers while streaming > > That commit causes buf_queue() called on infinity loop when > start_streaming() returns error. On that case resource

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

2015-07-31 Thread Laurent Pinchart
Hi Josh, Thank you for the patch. On Wednesday 17 June 2015 18:39:39 Josh Wu wrote: > 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

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

2015-07-31 Thread Laurent Pinchart
Hi Josh, Thank you for the patch. On Wednesday 17 June 2015 18:39:38 Josh Wu wrote: > 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

[PATCH] media: atmel-isi: parse the DT parameters for vsync/hsync polarity

2015-07-31 Thread Josh Wu
This patch will get the DT parameters of vsync/hsync polarity, and pass to the platform data. Also add a debug information for test purpose. Signed-off-by: Josh Wu --- drivers/media/platform/soc_camera/atmel-isi.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/drivers/media/pl

[RFC PATCH v2 4/5] media: videobuf2: Define vb2_buf_type and vb2_memory

2015-07-31 Thread Junghak Sung
Define enum vb2_buf_type and enum vb2_memory for videobuf2-core. This change requires translation functions that could covert v4l2-core stuffs to videobuf2-core stuffs in videobuf2-v4l2.c file. The v4l2-specific member variables(e.g. type, memory) remains in struct vb2_queue for backward compatibil

[RFC PATCH v2 1/5] media: videobuf2: Rename videobuf2-core to videobuf2-v4l2

2015-07-31 Thread Junghak Sung
Rename file name - from videobuf2-core.[ch] to videobuf2-v4l2.[ch] This renaming patch should be accompanied by the modifications for all device drivers that include this header file. It can be done with just running this shell script. replace() { str1=$1 str2=$2 dir=$3 for file in $(find $dir -na

[RFC PATCH v2 0/5] Refactoring Videobuf2 for common use

2015-07-31 Thread Junghak Sung
Hello everybody, This is the 2nd round for refactoring Videobuf2(a.k.a VB2). The purpose of this patch series is to separate existing VB2 framework into core part and V4L2 specific part. So that not only V4L2 but also other frameworks can use them to manage buffer and utilize queue. Why do we try