Re: [PATCH v4 6/7] vsp1: Fix lack of the sink entity registration for enabled links

2013-07-31 Thread Laurent Pinchart
Hi Sakari, On Thursday 01 August 2013 00:29:21 Sakari Ailus wrote: > On Wed, Jul 31, 2013 at 05:52:33PM +0200, Laurent Pinchart wrote: > > From: Katsuya Matsubara > > > > Each source entity maintains a pointer to the counterpart sink > > entity while an enabled link connects them. It should be m

Re: [PATCH v4 5/7] v4l: Renesas R-Car VSP1 driver

2013-07-31 Thread Laurent Pinchart
Hi Sylwester, Thank you for the review. On Wednesday 31 July 2013 23:02:05 Sylwester Nawrocki wrote: > Hi Laurent, > > just a few small remarks... > > On 07/31/2013 05:52 PM, Laurent Pinchart wrote: > > The VSP1 is a video processing engine that includes a blender, scalers, > > filters and stat

Re: [PATCH v4 6/7] vsp1: Fix lack of the sink entity registration for enabled links

2013-07-31 Thread Sakari Ailus
Hi Laurent, On Wed, Jul 31, 2013 at 05:52:33PM +0200, Laurent Pinchart wrote: > From: Katsuya Matsubara > > Each source entity maintains a pointer to the counterpart sink > entity while an enabled link connects them. It should be managed by > the setup_link callback in the media controller frame

Re: [PATCH v4 7/7] vsp1: Use the maximum number of entities defined in platform data

2013-07-31 Thread Sakari Ailus
On Wed, Jul 31, 2013 at 05:52:34PM +0200, Laurent Pinchart wrote: > From: Katsuya Matsubara > > The VSP1 driver allows to define the maximum number of each module > such as RPF, WPF, and UDS in a platform data definition. > This suppresses operations for nonexistent or unused modules. > > Signed

Re: [PATCH v4 5/7] v4l: Renesas R-Car VSP1 driver

2013-07-31 Thread Sakari Ailus
Hi Laurent, On Wed, Jul 31, 2013 at 05:52:32PM +0200, Laurent Pinchart wrote: ... > +static int vsp1_device_init(struct vsp1_device *vsp1) > +{ > + unsigned int i; > + u32 status; > + > + /* Reset any channel that might be running. */ > + status = vsp1_read(vsp1, VI6_STATUS); > + >

Re: [PATCH v4 5/7] v4l: Renesas R-Car VSP1 driver

2013-07-31 Thread Sylwester Nawrocki
Hi Laurent, just a few small remarks... On 07/31/2013 05:52 PM, Laurent Pinchart wrote: The VSP1 is a video processing engine that includes a blender, scalers, filters and statistics computation. Configurable data path routing logic allows ordering the internal blocks in a flexible way. Due to

Re: [PATCH v4 1/7] media: Add support for circular graph traversal

2013-07-31 Thread Sakari Ailus
On Wed, Jul 31, 2013 at 05:52:28PM +0200, Laurent Pinchart wrote: > The graph traversal API (media_entity_graph_walk_*) doesn't support > cyclic graphs and will fail to correctly walk a graph when circular > links exist. Support circular graph traversal by checking whether an > entity has already b

Fwd: dib8000 scanning not working on 3.10.3

2013-07-31 Thread Luis Polasek
Hi, I just upgraded my kernel to 3.10.3, and dib8000 scanning does not work anymore. I tested using dvbscan (from dvb-apps/util/) and w_scan on a Prolink Pixelview SBTVD (dib8000 module*).This tools worked very well on version 3.9.9 , but now it does not produces any result, and also there are no

cron job: media_tree daily build: ERRORS

2013-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: Wed Jul 31 19:00:22 CEST 2013 git branch: test git hash: b43ea8068d2090cb1e44632c8a938ab40d2c7419 gcc versi

Re: 950Q CC Extraction (V4L2/VBI)

2013-07-31 Thread Trevor Anonymous
Great, thanks for your help Devin. -Trevor On Wed, Jul 31, 2013 at 12:00 PM, Devin Heitmueller wrote: > On Wed, Jul 31, 2013 at 11:55 AM, Trevor Anonymous > wrote: >> Hi all, new to the list, hope this is an appropriate place to ask this. >> >> Quick question: >> I can extract NTSC analog clos

[PATCH] v4l2-async: Use proper list head for iteration over registered subdevs

2013-07-31 Thread Sylwester Nawrocki
This fixes regression introduced in commit b426b3a660c85faf6e1ca1c92c6d [media] V4L: Merge struct v4l2_async_subdev_list with struct v4l2_subdev Signed-off-by: Sylwester Nawrocki --- drivers/media/v4l2-core/v4l2-async.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drive

Re: 950Q CC Extraction (V4L2/VBI)

2013-07-31 Thread Devin Heitmueller
On Wed, Jul 31, 2013 at 11:55 AM, Trevor Anonymous wrote: > Hi all, new to the list, hope this is an appropriate place to ask this. > > Quick question: > I can extract NTSC analog closed captions with the Hauppauge 950Q as follows: > 1. Run v4l2-ctl -i 1 ## Set input to composite > 2. In a test ap

950Q CC Extraction (V4L2/VBI)

2013-07-31 Thread Trevor Anonymous
Hi all, new to the list, hope this is an appropriate place to ask this. Quick question: I can extract NTSC analog closed captions with the Hauppauge 950Q as follows: 1. Run v4l2-ctl -i 1 ## Set input to composite 2. In a test application, open file /dev/video0 3. Read 1 byte from the file ** Note:

[PATCH v4 4/7] v4l: Add V4L2_PIX_FMT_NV16M and V4L2_PIX_FMT_NV61M formats

2013-07-31 Thread Laurent Pinchart
NV16M and NV61M are planar YCbCr 4:2:2 and YCrCb 4:2:2 formats with a luma plane followed by an interleaved chroma plane. The planes are not required to be contiguous in memory, and the formats can only be used with the multi-planar formats API. Signed-off-by: Laurent Pinchart Reviewed-by: Sylwes

[PATCH v4 7/7] vsp1: Use the maximum number of entities defined in platform data

2013-07-31 Thread Laurent Pinchart
From: Katsuya Matsubara The VSP1 driver allows to define the maximum number of each module such as RPF, WPF, and UDS in a platform data definition. This suppresses operations for nonexistent or unused modules. Signed-off-by: Katsuya Matsubara Signed-off-by: Laurent Pinchart --- drivers/media/

[PATCH v4 2/7] v4l: Fix V4L2_MBUS_FMT_YUV10_1X30 media bus pixel code value

2013-07-31 Thread Laurent Pinchart
The V4L2_MBUS_FMT_YUV10_1X30 code is documented as being equal to 0x2014, while the v4l2-mediabus.h header defines it as 0x2016. Fix the documentation. Signed-off-by: Laurent Pinchart Acked-by: Sakari Ailus --- Documentation/DocBook/media/v4l/subdev-formats.xml | 2 +- 1 file changed, 1 inserti

[PATCH v4 3/7] v4l: Add media format codes for ARGB8888 and AYUV8888 on 32-bit busses

2013-07-31 Thread Laurent Pinchart
Signed-off-by: Laurent Pinchart Reviewed-by: Sylwester Nawrocki --- Documentation/DocBook/media/v4l/subdev-formats.xml | 609 + Documentation/DocBook/media_api.tmpl | 6 + include/uapi/linux/v4l2-mediabus.h | 6 +- 3 files changed, 254 insert

[PATCH v4 6/7] vsp1: Fix lack of the sink entity registration for enabled links

2013-07-31 Thread Laurent Pinchart
From: Katsuya Matsubara Each source entity maintains a pointer to the counterpart sink entity while an enabled link connects them. It should be managed by the setup_link callback in the media controller framework at runtime. However, enabled links which connect RPFs and WPFs that have an equivale

[PATCH v4 0/7] Renesas VSP1 driver

2013-07-31 Thread Laurent Pinchart
Hello, Here's the fourth version of the VSP1 engine (a Video Signal Processor found in several Renesas R-Car SoCs) driver. There has been very few comments on v3, this one might be final. The VSP1 is a video processing engine that includes a blender, scalers, filters and statistics computation. C

[PATCH v4 1/7] media: Add support for circular graph traversal

2013-07-31 Thread Laurent Pinchart
The graph traversal API (media_entity_graph_walk_*) doesn't support cyclic graphs and will fail to correctly walk a graph when circular links exist. Support circular graph traversal by checking whether an entity has already been visited before pushing it to the stack. Signed-off-by: Laurent Pincha

Re: [PATCH v2 5/5] v4l: Renesas R-Car VSP1 driver

2013-07-31 Thread Laurent Pinchart
Hi Sakari, On Thursday 25 July 2013 16:43:28 Sakari Ailus wrote: > On Thu, Jul 25, 2013 at 01:46:54PM +0200, Laurent Pinchart wrote: > > > On Wed, Jul 17, 2013 at 04:54:42PM +0200, Laurent Pinchart wrote: > > > ... > > > > > > > +static void vsp1_device_init(struct vsp1_device *vsp1) > > > > +{ >

Re: [PATCH v3 1/5] media: Add support for circular graph traversal

2013-07-31 Thread Laurent Pinchart
Hi Sakari, Thank you for the review. On Thursday 25 July 2013 16:54:46 Sakari Ailus wrote: > On Thu, Jul 25, 2013 at 03:00:09PM +0200, Laurent Pinchart wrote: > > From: Laurent Pinchart > > > > The graph traversal API (media_entity_graph_walk_*) doesn't support > > cyclic graphs and will fail t

Submitting Topics for Graphics and Display uConf at LPC 2013

2013-07-31 Thread Jesse Barker
Hi all, First off, thanks to those who have already submitted topics to the Graphics and Display microconference! For those who have not yet proposed, but plan to, please submit your topics as described here: http://www.linuxplumbersconf.org/2013/submitting-microconference-discussion-topics/ A

camera always setting error bits at same resolutions

2013-07-31 Thread Oliver Neukum
Hi, I've got a new camera which perfectly works at some resolutions (640x480, 640x360, 160x120). At all other resolutions I get a black screen because all frames are dropped due to a set error bit "Payload dropped (error bit set)" Any idea how to debug it? Regards Oliver

Re: implement ov3640 driver using subdev-api with omap3-isp

2013-07-31 Thread Tom
Laurent Pinchart ideasonboard.com> writes: > > Hi Tom, > > On Tuesday 16 July 2013 14:24:59 Tom wrote: > > Laurent Pinchart ideasonboard.com> writes: > > > On Monday 15 July 2013 09:23:19 Tom wrote: > > > > Hello, > > > > > > > > I am working with a gumstix overo board connected with a e-con-

Re: [Regression 3.5->3.6, bisected] gspca_ov534: kernel oops when connecting Hercules Blog Webcam

2013-07-31 Thread Antonio Ospite
On Mon, 29 Jul 2013 12:16:53 +0300 Yaroslav Zakharuk wrote: > Hi! > > After update from 3.5 kernel to newer version I got kernel oops when I > connect my Hercules Blog Webcam. The full error stacktrace is at the end > of this e-mail. Hi Yaroslav, I'll try to take a look this week-end. [...]

Re: [PATCHv2 FINAL 0/6] qv4l2: add OpenGL rendering and window fixes

2013-07-31 Thread Mauro Carvalho Chehab
On Wed, 31 Jul 2013, Bård Eirik Winther wrote: On Tuesday, July 30, 2013 10:12:33 AM you wrote: Em Tue, 30 Jul 2013 10:15:18 +0200 Bård Eirik Winther escreveu: ... Performance: All tests are done on an Intel i7-2600S (with Turbo Boost disabled) using the integrated Intel HD 2000 graphics pr

RE: Prof DVB-S2 USB device

2013-07-31 Thread Krishna Kishore
Hi Oliver, I migrated to Ubuntu 13.04 on desktop and tried. It worked ! It uses linux kernel 3.8.0. If I use this version of linux kernel or greater on Pandaboard, it may work on Pandaboard also. Regards, Kishore. -Original Message- From: Oliver Schinagl [mailto:oliver+l...@sc

Re: [RFC PATCH 6/8] v4l2: use new V4L2_DV_BT_BLANKING/FRAME defines

2013-07-31 Thread Scott Jiang
2013/7/29 Hans Verkuil : > From: Hans Verkuil > > Use the new defines to calculate the full blanking and frame sizes. > > Signed-off-by: Hans Verkuil > Cc: Lad, Prabhakar > Cc: Scott Jiang > --- > drivers/media/platform/blackfin/bfin_capture.c | 9 ++--- > diff --git a/drivers/media/plat

Re: Question about v4l2-compliance: cap->readbuffers

2013-07-31 Thread Hans Verkuil
On Wed 31 July 2013 09:09:05 Ricardo Ribalda Delgado wrote: > Hello Hans > > Thanks for the explanation. I have tried changing the controls to > inactive and the are shown disabled on the gui, just as you say, but > they are there :S. I personally liked better the previous behaviour, > when the co

Re: Question about v4l2-compliance: cap->readbuffers

2013-07-31 Thread Ricardo Ribalda Delgado
Hello Hans Thanks for the explanation. I have tried changing the controls to inactive and the are shown disabled on the gui, just as you say, but they are there :S. I personally liked better the previous behaviour, when the controls where not shown at all. But it is just that, a taste, if it is mo