Re: [omapdss] fault in dispc_write_irqenable [was: Re: [omap3isp] xclk deadlock]

2013-07-29 Thread Tomi Valkeinen
On 26/07/13 18:37, Jakub Piotr Cłapa wrote: Using omapfb, or...? I hope not omap_vout, because that's rather unmaintained =). Laurent's live application is using the V4L2 API for video output (to get free YUV conversion and DMA) so I guess this unfortunatelly counts as using omap_vout. Are

Re: [PATCH 1/2] tea575x: Move header from sound to media

2013-07-29 Thread Hans Verkuil
Hi Ondrej! On 07/28/2013 10:01 PM, Ondrej Zary wrote: Move include/sound/tea575x-tuner.h to include/media/tea575x.h and update files that include it. Signed-off-by: Ondrej Zary li...@rainbow-software.org Acked-by: Hans Verkuil hans.verk...@cisco.com If this can be acked by an alsa

Re: [PATCH 2/2] tea575x: Move from sound to media

2013-07-29 Thread Hans Verkuil
Hi Ondrej! On 07/28/2013 10:01 PM, Ondrej Zary wrote: Move tea575x from sound/i2c/other to drivers/media/radio Includes Kconfig changes by Hans Verkuil. Signed-off-by: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Ondrej Zary li...@rainbow-software.org Acked-by: Hans Verkuil

Re: [PATCH v3] ov10635: Add OmniVision ov10635 SoC camera driver

2013-07-29 Thread phil . edworthy
Hi Guennadi, Ok, now I see. My comment about the sensor output size changing is wrong. The sensor doesn't do any scaling, so we are cropping it. Ah, ok, then you shouldn't change video sizes in your .s_fmt(), just return the current cropping rectangle. I'm reworking the code but

Re: [PATCH v3] ov10635: Add OmniVision ov10635 SoC camera driver

2013-07-29 Thread Guennadi Liakhovetski
Hi Phil, On Mon, 29 Jul 2013, phil.edwor...@renesas.com wrote: Hi Guennadi, Ok, now I see. My comment about the sensor output size changing is wrong. The sensor doesn't do any scaling, so we are cropping it. Ah, ok, then you shouldn't change video sizes in your .s_fmt(), just

Re: [PATCH] [media] exynos-gsc: Register v4l2 device

2013-07-29 Thread Sylwester Nawrocki
Hi Arun, On 07/26/2013 01:28 PM, Arun Kumar K wrote: Gscaler video device registration was happening without reference to a parent v4l2_dev causing probe to fail. The patch creates a parent v4l2 device and uses it for gsc m2m video device registration. I've queued this patch for v3.11-rc as

Re: [REVIEW PATCH 4/6] exynos4-is: Add clock provider for the external clocks

2013-07-29 Thread Sylwester Nawrocki
Hi Arun, On 07/29/2013 07:52 AM, Arun Kumar K wrote: Hi Sylwester, On Wed, Jul 24, 2013 at 12:09 AM, Sylwester Nawrocki s.nawro...@samsung.com wrote: This patch adds clock provider to expose the sclk_cam0/1 clocks for image sensor subdevs. Signed-off-by: Sylwester Nawrocki

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

2013-07-29 Thread Yaroslav Zakharuk
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. Commit bisect revealed the regression at: - 1bd7d6adc691993206cf7dd69f1aaf8dccb06677 is the first bad

[PATCH] exynos4-is: Fix entity unregistration on error path

2013-07-29 Thread Sylwester Nawrocki
This patch corrects media entities unregistration order to make sure the fimc.N.capture and fimc-lite video nodes are unregistered with fimc-lock mutex held. This prevents races between video device open() and defered probing and NULL pointer dereference in open() callback as follows: [

Re: [PATCH 1/2] videobuf2-dma-sg: Allocate pages as contiguous as possible

2013-07-29 Thread Marek Szyprowski
Hello, On 7/19/2013 10:16 PM, Jonathan Corbet wrote: On Fri, 19 Jul 2013 19:02:33 +0200 Ricardo Ribalda Delgado ricardo.riba...@gmail.com wrote: Most DMA engines have limitations regarding the number of DMA segments (sg-buffers) that they can handle. Videobuffers can easily spread through

Re: [PATCH 2/3] include: Convert ethernet mac address declarations to use ETH_ALEN

2013-07-29 Thread Rafael J. Wysocki
On Sunday, July 28, 2013 10:29:04 PM Joe Perches wrote: It's convenient to have ethernet mac addresses use ETH_ALEN to be able to grep for them a bit easier and also to ensure that the addresses are __aligned(2). Add #include linux/if_ether.h as necessary. Signed-off-by: Joe Perches

[GIT PULL] v4l2-async API updates

2013-07-29 Thread Sylwester Nawrocki
Hi Mauro, This includes a couple updates to the v4l2-async API: an addition of a method of matching subdevs by device tree node pointer, some cleanups and a typo fix for the JPEG controls documentation. The following changes since commit 51dd4d70fc59564454a4dcb90d6d46d39a4a97ef: [media]

Re: [PATCH v2 6/8] [media] coda: dynamic IRAM setup for decoder

2013-07-29 Thread Philipp Zabel
Hi Mauro, Am Freitag, den 26.07.2013, 12:18 -0300 schrieb Mauro Carvalho Chehab: Em Fri, 21 Jun 2013 09:55:32 +0200 Philipp Zabel p.za...@pengutronix.de escreveu: Signed-off-by: Philipp Zabel p.za...@pengutronix.de Please add a description for the patch. Sorry I missed this, description

[RFC PATCH 0/8] dv-timings improvements, cleanups and fixes

2013-07-29 Thread Hans Verkuil
This patch series collects all dv-timings helper code into a new v4l2-dv-timings module. There aren't that many drivers that use HDTV timings, so it makes no sense to have a lot of HDTV related code in v4l2-common. It also fixes a few bugs (Prabhakar: please check patch 7/8!) and it adds new

[RFC PATCH 5/8] videodev2.h: defines to calculate blanking and frame sizes

2013-07-29 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com It is very common to have to calculate the total width and height of the blanking and the full frame, so add a few defines that deal with that. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- include/uapi/linux/videodev2.h | 10 ++ 1 file

[RFC PATCH 8/8] ths8200/ad9389b: use new dv_timings helpers.

2013-07-29 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com Cc: Lad, Prabhakar prabhakar.cse...@gmail.com --- drivers/media/i2c/ad9389b.c | 108 +++- drivers/media/i2c/ths8200.c | 55 ++ 2 files

[RFC PATCH 3/8] v4l2: move dv-timings related code to v4l2-dv-timings.c

2013-07-29 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com v4l2-common.c contained a bunch of dv-timings related functions. Move that to the new v4l2-dv-timings.c which is a more appropriate place for them. There aren't many drivers that do HDTV, so it is a good idea to separate common code related to that into

[RFC PATCH 4/8] DocBook/media/v4l: il_* fields always 0 for progressive formats

2013-07-29 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Clarify that the il_vfrontporch, il_vsync and il_vbackporch fields must always be 0 for progressive formats. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- Documentation/DocBook/media/v4l/vidioc-g-dv-timings.xml | 6 +++--- 1 file changed, 3

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

2013-07-29 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Use the new blanking and frame size defines. This also fixed a bug in these drivers: they assumed that the height for interlaced formats was the field height, however height is the frame height. So the height for a field is actually bt-height / 2.

[RFC PATCH 1/8] v4l2-dv-timings.h: remove duplicate V4L2_DV_BT_DMT_1366X768P60

2013-07-29 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com This particular DMT timing definition was duplicated in the header. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- include/uapi/linux/v4l2-dv-timings.h | 8 1 file changed, 8 deletions(-) diff --git

[RFC PATCH 2/8] v4l2-dv-timings: add new helper module.

2013-07-29 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com This module makes it easy to filter valid timings from the full list of CEA and DMT timings based on the timings capabilities. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/v4l2-core/Makefile | 1 +

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

2013-07-29 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Use the new defines to calculate the full blanking and frame sizes. Signed-off-by: Hans Verkuil hans.verk...@cisco.com Cc: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: Scott Jiang scott.jiang.li...@gmail.com --- drivers/media/i2c/ad9389b.c

[PATCH 0/1] qv4l2: Fixed a bug in the v4l2-api

2013-07-29 Thread Bård Eirik Winther
Fixed a bug where the get_interval in v4l2-api where it would test for a compatibility flag irrelevant to the feature support and resulting return false. -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo

[PATCH] qv4l2: Fixed a bug in the v4l2-api

2013-07-29 Thread Bård Eirik Winther
The get_interval would return false even if devices had support for this Signed-off-by: Bård Eirik Winther bwint...@cisco.com --- utils/qv4l2/v4l2-api.cpp | 12 +--- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/utils/qv4l2/v4l2-api.cpp b/utils/qv4l2/v4l2-api.cpp index

Re: Green/purple video from 950Q + security cam

2013-07-29 Thread Devin Heitmueller
Hi Michael, On Sun, Jul 28, 2013 at 6:00 PM, Michael Conrad m...@nrdvana.net wrote: When I plug either of these cameras into the video plug on a plain old TV, they work great. When I plug either camera into the 950Q on Windows using the supplied WinTV software, they work great. When I plug

Re: [GIT PULL] v4l2-async API updates

2013-07-29 Thread Sylwester Nawrocki
Mauro, please ignore this pull request, there is an issue in one patch. I'll re-send it fixed in a while. On 07/29/2013 02:02 PM, Sylwester Nawrocki wrote: Hi Mauro, This includes a couple updates to the v4l2-async API: an addition of a method of matching subdevs by device tree node

[RFC PATCH] fence: dma-buf cross-device synchronization (v12)

2013-07-29 Thread Maarten Lankhorst
A fence can be attached to a buffer which is being filled or consumed by hw, to allow userspace to pass the buffer without waiting to another device. For example, userspace can call page_flip ioctl to display the next frame of graphics after kicking the GPU but while the GPU is still rendering.

Re: [alsa-devel] [PATCH 0/2] tea575x: Move from sound to media

2013-07-29 Thread Takashi Iwai
At Sun, 28 Jul 2013 22:01:42 +0200, Ondrej Zary wrote: Hello, TEA575x is neither a sound device nor an i2c device. Let's finally move it from sound/i2c/other to drivers/media/radio. Tested with snd-es1968, snd-fm801 and radio-sf16fmr2. Good to resolve messes there now. For both

Re: [PATCH 1/2] videobuf2-dma-sg: Allocate pages as contiguous as possible

2013-07-29 Thread Jonathan Corbet
On Mon, 29 Jul 2013 13:27:12 +0200 Marek Szyprowski m.szyprow...@samsung.com wrote: You've gone to all this trouble to get a higher-order allocation so you'd have fewer segments, then you undo it all by splitting things apart into individual pages. Why? Clearly I'm missing something, this

RE: [RESEND PATCH v10 1/8] drivers: phy: add generic PHY framework

2013-07-29 Thread Kamil Debski
Hi Kishon, A small fix follows inline. From: linux-media-ow...@vger.kernel.org [mailto:linux-media- ow...@vger.kernel.org] On Behalf Of Kishon Vijay Abraham I Sent: Friday, July 26, 2013 2:49 PM The PHY framework provides a set of APIs for the PHY drivers to create/destroy a PHY and APIs

Re: [RESEND PATCH v10 1/8] drivers: phy: add generic PHY framework

2013-07-29 Thread Kishon Vijay Abraham I
On Monday 29 July 2013 08:58 PM, Kamil Debski wrote: Hi Kishon, A small fix follows inline. From: linux-media-ow...@vger.kernel.org [mailto:linux-media- ow...@vger.kernel.org] On Behalf Of Kishon Vijay Abraham I Sent: Friday, July 26, 2013 2:49 PM The PHY framework provides a set of

Re: [RESEND PATCH v10 1/8] drivers: phy: add generic PHY framework

2013-07-29 Thread Sylwester Nawrocki
On 07/26/2013 02:49 PM, Kishon Vijay Abraham I wrote: The PHY framework provides a set of APIs for the PHY drivers to create/destroy a PHY and APIs for the PHY users to obtain a reference to the PHY with or without using phandle. For dt-boot, the PHY drivers should also register *PHY provider*

[GIT PULL] v4l2-async API updates

2013-07-29 Thread Sylwester Nawrocki
Hi Mauro, This includes a couple updates to the v4l2-async API: an addition of a method of matching subdevs by device tree node pointer, some cleanups and a fix of typo in JPEG controls documentation. The following changes since commit 51dd4d70fc59564454a4dcb90d6d46d39a4a97ef: [media]

cron job: media_tree daily build: WARNINGS

2013-07-29 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: Mon Jul 29 19:00:21 CEST 2013 git branch: test git hash: 408ed9924c0d56d07e0888f6ae560a534ce5c18f gcc

Re: PROBLEM: dvb-usb-rtl28xxu and Terratec Cinergy TStickRC (rev3) - no signal on some frequencies

2013-07-29 Thread Antti Palosaari
Hello I don't want to read any random logs. It is just like looking for a needle in a haystack. Waste of time. I wrote a blog post and published my rtl2832u reverse-engineering/hacking scripts. Try to follow those: http://blog.palosaari.fi/2013/07/generating-rtl2832u-driver-code.html

Re: [PATCH 2/3] include: Convert ethernet mac address declarations to use ETH_ALEN

2013-07-29 Thread Joe Perches
On Mon, 2013-07-29 at 13:59 +0200, Rafael J. Wysocki wrote: On Sunday, July 28, 2013 10:29:04 PM Joe Perches wrote: It's convenient to have ethernet mac addresses use ETH_ALEN to be able to grep for them a bit easier and also to ensure that the addresses are __aligned(2). [] diff --git

Re: [PATCH 2/3] include: Convert ethernet mac address declarations to use ETH_ALEN

2013-07-29 Thread Rafael J. Wysocki
On Monday, July 29, 2013 12:34:24 PM Joe Perches wrote: On Mon, 2013-07-29 at 13:59 +0200, Rafael J. Wysocki wrote: On Sunday, July 28, 2013 10:29:04 PM Joe Perches wrote: It's convenient to have ethernet mac addresses use ETH_ALEN to be able to grep for them a bit easier and also to

Vážení E-mail užívateľa;

2013-07-29 Thread webmail update
-- Vážení E-mail užívateľa; Prekročili ste 23432 boxy nastaviť svoje Webová služba / Administrátor, a budete mať problémy pri odosielaní a prijímať e-maily, kým znova overiť. Musíte aktualizovať kliknutím na odkaz nižšie a vyplňte údaje pre overenie vášho účtu Prosím, kliknite na odkaz nižšie

Re: [RESEND PATCH v10 1/8] drivers: phy: add generic PHY framework

2013-07-29 Thread Kishon Vijay Abraham I
Hi, On Monday 29 July 2013 09:21 PM, Sylwester Nawrocki wrote: On 07/26/2013 02:49 PM, Kishon Vijay Abraham I wrote: The PHY framework provides a set of APIs for the PHY drivers to create/destroy a PHY and APIs for the PHY users to obtain a reference to the PHY with or without using phandle.