Re: [PATCH v9 00/12] Driver for Si476x series of chips

2013-04-20 Thread Andrey Smirnov
> I applied all the MFD patches from this patchset (All 4 first ones), plus a > follow up one for fixing the i2c related warning. > I also squashed the REGMAP_I2C dependency into patch #4. > It's all in mfd-next now, I'd appreciate if you could double check it's all > fine. I checked out latest gi

[PATCH] [media] rtl2832u: restore ir remote control support.

2013-04-20 Thread Rodrigo Tartajo
Hi, This patch uses the driver from openpli[1] as a template to restore the remote control support. I had to divert from the original to use the in kernel rc protocol decoder. The key repetition does, not seem to work but I cant find the problem in the driver. As a raw rc provider, no key table

User space Video4Linux drivers

2013-04-20 Thread Luca Risolia
Hello, for those who might be interested in user space Video4Linux drivers, here is UV4L: http://linux-projects.org UV4L stands for "Userspace Video4Linux framework". It consists of a core module which loads a specified Video4Linux driver as plug-in. Each instance of a driver is exactly one pro

Re: [PATCH 1/5] V4L2: I2C: ML86V7667 video decoder driver

2013-04-20 Thread Sergei Shtylyov
Hello. On 04/21/2013 12:16 AM, Sergei Shtylyov wrote: From: Vladimir Barinov Add OKI Semiconductor ML86V7667 video decoder driver. Signed-off-by: Vladimir Barinov [Sergei: added v4l2_device_unregister_subdev() call to the error cleanup path of ml86v7667_probe(); some cleanup.] Signed-off-by

Re: [PATCH 1/5] V4L2: I2C: ML86V7667 video decoder driver

2013-04-20 Thread Hans Verkuil
Here's a quick review: On Sat April 20 2013 22:16:33 Sergei Shtylyov wrote: > From: Vladimir Barinov > > Add OKI Semiconductor ML86V7667 video decoder driver. > > Signed-off-by: Vladimir Barinov > [Sergei: added v4l2_device_unregister_subdev() call to the error cleanup path > of > ml86v7667_p

Re: [PATCH RFC v1] Add SDR at V4L2 API

2013-04-20 Thread Oliver Schinagl
-- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH 1/5] V4L2: I2C: ML86V7667 video decoder driver

2013-04-20 Thread Sylwester Nawrocki
Hi, On 04/20/2013 10:16 PM, Sergei Shtylyov wrote: From: Vladimir Barinov Add OKI Semiconductor ML86V7667 video decoder driver. Signed-off-by: Vladimir Barinov [Sergei: added v4l2_device_unregister_subdev() call to the error cleanup path of ml86v7667_probe(); some cleanup.] Signed-off-by: Serg

Re: [PATCH RFCv1] [media] V4L2 sdr API: Add fields for VIDIOC_[G|S]_TUNER

2013-04-20 Thread Mauro Carvalho Chehab
Em Sat, 20 Apr 2013 17:10:49 -0300 Mauro Carvalho Chehab escreveu: > SDR radio requires some other things at VIDIOC_[G|S]_TUNER. > Change the ioctl to support them. > > Signed-off-by: Mauro Carvalho Chehab As a convenience for reviewers, I'm posting the SDR API patches here: http://git

Re: [PATCH 0/5] OKI ML86V7667 driver and R8A7778/BOCK-W VIN support

2013-04-20 Thread Sergei Shtylyov
Hello. On 04/21/2013 12:13 AM, Sergei Shtylyov wrote: Here's the set of 4 patches against the Simon Horman's 'renesas.git' repo, 'renesas-next-20130419' tag and my recent yet unapplied patches. Here we add the OKI ML86V7667 video decoder driver and the VIN platform code working on the R8A77

[PATCH 5/5] ARM: shmobile: BOCK-W: enable VIN and ML86V7667 in defconfig

2013-04-20 Thread Sergei Shtylyov
From: Vladimir Barinov Add the VIN and ML86V7667 drivers to 'bockw_defconfig'. Signed-off-by: Vladimir Barinov Signed-off-by: Sergei Shtylyov --- arch/arm/configs/bockw_defconfig |7 +++ 1 file changed, 7 insertions(+) Index: renesas/arch/arm/configs/bockw_defconfig

[PATCH 4/5] ARM: shmobile: BOCK-W: add VIN and ML86V7667 support

2013-04-20 Thread Sergei Shtylyov
From: Vladimir Barinov Add ML86V7667 platform devices on BOCK-W board, configure VIN0/1 pins, and register VIN0/1 devices with the ML86V7667 specific platform data. Signed-off-by: Vladimir Barinov [Sergei: some macro/comment cleanup; updated the copyrights.] Signed-off-by: Sergei Shtylyov ---

[PATCH 3/5] ARM: shmobile: r8a7778: add VIN support

2013-04-20 Thread Sergei Shtylyov
From: Vladimir Barinov Add VIN clocks and platform devices on R8A7778 SoC; add function to register the VIN platform devices. Signed-off-by: Vladimir Barinov [Sergei: added 'id' parameter check to r8a7779_add_vin_device(), used '*pdata' in *sizeof* operator there, renamed some variables, marked

[PATCH 1/5] V4L2: I2C: ML86V7667 video decoder driver

2013-04-20 Thread Sergei Shtylyov
From: Vladimir Barinov Add OKI Semiconductor ML86V7667 video decoder driver. Signed-off-by: Vladimir Barinov [Sergei: added v4l2_device_unregister_subdev() call to the error cleanup path of ml86v7667_probe(); some cleanup.] Signed-off-by: Sergei Shtylyov --- drivers/media/i2c/Kconfig |

[PATCH RFCv1] [media] V4L2 sdr API: Add fields for VIDIOC_[G|S]_TUNER

2013-04-20 Thread Mauro Carvalho Chehab
SDR radio requires some other things at VIDIOC_[G|S]_TUNER. Change the ioctl to support them. Signed-off-by: Mauro Carvalho Chehab --- Documentation/DocBook/media/v4l/vidioc-g-tuner.xml | 30 +--- drivers/media/tuners/tuner-xc2028.c| 2 ++ include/uapi/linux/videodev

[PATCH 0/5] OKI ML86V7667 driver and R8A7778/BOCK-W VIN support

2013-04-20 Thread Sergei Shtylyov
Hello. Here's the set of 4 patches against the Simon Horman's 'renesas.git' repo, 'renesas-next-20130419' tag and my recent yet unapplied patches. Here we add the OKI ML86V7667 video decoder driver and the VIN platform code working on the R8A7778/BOCK-W with ML86V7667. The driver patch also app

[gspca] Green/garbled/black webcam [0x0ac8 0xc002] output for Sony VGN-FE21M laptop

2013-04-20 Thread Gregor Jasny
Hello, I could need some help with this Ubuntu bug report: https://bugs.launchpad.net/ubuntu/+source/v4l-utils/+bug/1134565 Is there known error in the gspca driver that is causing this kernel log: [ 2830.890605] gspca_main: ISOC data error: [27] len=0, status=-71 v4l-info reports the following:

cron job: media_tree daily build: WARNINGS

2013-04-20 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 Apr 20 19:00:18 CEST 2013 git branch: test git hash: 6695be6863b75620ffa6d422965680ce785cb7c8 gcc versi

[PATCH RFC v2 0/3] Add SDR at V4L2 API

2013-04-20 Thread Mauro Carvalho Chehab
This is a version 2 of the V4L2 API bits to support Software Digital Radio (SDR). The changes from version 1 are: - fix compilation; - add a new capture type for SDR (V4L2_BUF_TYPE_SDR_CAPTURE), with the corresponding documentation; - remove legacy V4L1 buffer ty

[PATCH RFC v2 1/3] [media] Add SDR at V4L2 API

2013-04-20 Thread Mauro Carvalho Chehab
Adds the basic API bits for Software Digital Radio (SDR) at the V4L2 API. Signed-off-by: Mauro Carvalho Chehab --- Documentation/DocBook/media/v4l/common.xml | 35 ++ Documentation/DocBook/media/v4l/pixfmt.xml | 41 ++ Documentation/DocBook/med

[PATCH RFC v2 3/3] [media] V4L2 api: Add a buffer capture type for SDR

2013-04-20 Thread Mauro Carvalho Chehab
As SDR devices are not video, VBI or RDS devices, it needs its own buffer type for capture. Add it at the V4L2 API. Signed-off-by: Mauro Carvalho Chehab --- Documentation/DocBook/media/v4l/dev-capture.xml | 26 Documentation/DocBook/media/v4l/io.xml | 6 + driv

[PATCH RFC v2 2/3] videodev2.h: Remove the unused old V4L1 buffer types

2013-04-20 Thread Mauro Carvalho Chehab
Those aren't used anywhere for a long time. Drop it. Signed-off-by: Mauro Carvalho Chehab --- include/uapi/linux/videodev2.h | 21 - 1 file changed, 21 deletions(-) diff --git a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h index 4aa24c3..5d8ee92 100644 ---

[PATCH RFC v1] Add SDR at V4L2 API

2013-04-20 Thread Mauro Carvalho Chehab
Adds the basic API bits for Software Digital Radio (SDR) at the V4L2 API. Signed-off-by: Mauro Carvalho Chehab --- This is a version 1 of the V4L2 API bits to support Software Digital Radio (SDR). This patch adds the very basic stuff for SDR: - a separate devnode; - an VIDIOC_

[GIT PULL FOR v3.10] Various fixes

2013-04-20 Thread Hans Verkuil
Hi Mauro, Here is my set of patches for 3.10, various fixes for cx88, go7007, em28xx and solo6x10. Regards, Hans The following changes since commit 6695be6863b75620ffa6d422965680ce785cb7c8: [media] DT: export of_get_next_parent() for use by modules: fix modular V4L2 (2013-04-17 12:

[PATCH] r820t: quiet gcc warning on n_ring

2013-04-20 Thread Fengguang Wu
drivers/media/tuners/r820t.c: In function 'r820t_imr': drivers/media/tuners/r820t.c:1871:8: warning: 'n_ring' may be used uninitialized in this function [-Wmaybe-uninitialized] Mauro: This is a FALSE POSITIVE: the loop will always return a value for n_ring, as the last test will fill it with 15