Re: Unsafe to reinsert HVR-1850 kernel modules?

2010-12-01 Thread David Liontooth
On 11/29/2010 04:38 AM, Andy Walls wrote: On Sun, 2010-11-28 at 23:49 -0800, David Liontooth wrote: My HVR-1850 card occasionally jams, meaning it still tunes (according to gnutv), but no mpeg stream comes through. This heals on reboot, but I figured it should also heal on module reinsertion.

Re: gnutv: What causes DVR overflow?

2010-12-01 Thread Devin Heitmueller
On Thu, Dec 2, 2010 at 12:46 AM, David Liontooth wrote: > Thanks, Devin! On my end, it looks like the DVR overflow was caused by the > -out file being on a mirrored OS drive; I've moved output to a separate > drive and don't see the error any more. If I run into this again, are there > ways to mak

Re: gnutv: What causes DVR overflow?

2010-12-01 Thread David Liontooth
On 11/29/2010 05:24 AM, Devin Heitmueller wrote: On Mon, Nov 29, 2010 at 2:54 AM, David Liontooth wrote: I'm seeing great results with gnutv on HVR-1850 cards, but each recording triggers the message DVR overflow What is this, and what are the typical causes? What can I do to prevent it fro

rtl2832u usb dvb id 1b80:d395

2010-12-01 Thread Mike Martin
hi Still have one or two probs I have tried both anttis and jan trees, both of them compile but do not load modules or create dvb device when modprobed Using the realtek driver (1.4.2) I have the following issue one (and now only one) mux fails to pick up any channels, the channels are as clear

rtl2832u usb dvb id 1b80:d395

2010-12-01 Thread Mike Martin
hi Still have one or two probs I have tried both anttis and jan trees, both of them compile but do not load modules or create dvb device when modprobed Using the realtek driver (1.4.2) I have the following issue one (and now only one) mux fails to pick up any channels, the channels are as clear

Re: [PATCH] media: rc: ir-lirc-codec: fix potential integer overflow

2010-12-01 Thread Dan Carpenter
On Fri, Nov 26, 2010 at 08:06:35PM +0300, Vasiliy Kulikov wrote: > count = n / sizeof(int); > - if (count > LIRCBUF_SIZE || count % 2 == 0) > + if (count > LIRCBUF_SIZE || count % 2 == 0 || n % sizeof(int) != 0) ^^^

[GIT PULL for 2.6.37-rc4] V4L/DVB changes

2010-12-01 Thread Mauro Carvalho Chehab
Hi Linus, This patch series basically removes one duplicated parameter from a function inside V4L2 core API. Before this patch, both I2C driver name and module name were needed. A previous patch series applied during the merge window replaced the module name by NULL. Those two patches remove th

[PATCH] [media] Don't export format_by_forcc on two different drivers

2010-12-01 Thread Mauro Carvalho Chehab
Drivers should append their name on exported symbols, to avoid conflicts with allyesconfig: drivers/staging/built-in.o: In function `format_by_fourcc': /home/v4l/work_trees/linus/drivers/staging/cx25821/cx25821-video.c:96: multiple definition of `format_by_fourcc' drivers/media/built-in.o:/home/v

Re: tm6000 and IR

2010-12-01 Thread Mauro Carvalho Chehab
Em 02-12-2010 02:41, Dmitri Belimov escreveu: > Hi Stefan > Am 29.11.2010 09:44, schrieb Dmitri Belimov: > Hi > > I try add IR for our TV cards. > After my some changes IR is working. But when I remove USB stick > from USB port What has you change? >>> 1. Add vendor-s

Re: tm6000 and IR

2010-12-01 Thread Dmitri Belimov
Hi Stefan > >> Am 29.11.2010 09:44, schrieb Dmitri Belimov: > >>> Hi > >>> > >>> I try add IR for our TV cards. > >>> After my some changes IR is working. But when I remove USB stick > >>> from USB port > >> What has you change? > > 1. Add vendor-specific init code for IR. > > 2. Add vendor-specif

Re: [PATCH] keycodes for DSR-0112 remote bundled with Haupauge MiniStick

2010-12-01 Thread Mauro Carvalho Chehab
Em 01-12-2010 21:52, Richard Zidlicky escreveu: > Hi, > > Patch against kernel.org kernel, hope it applies cleanly everywhere. > > > Add kycodes for DSR-0112 remote that comes together with > Haupauge MiniStick > http://lirc.sourceforge.net/remotes/hauppauge/DSR-0112.jpg > > Signed-off-by: Ri

Re: [PATCH] keycodes for DSR-0112 remote bundled with Haupauge MiniStick

2010-12-01 Thread Mauro Carvalho Chehab
Em 02-12-2010 00:44, Jarod Wilson escreveu: > On Dec 1, 2010, at 6:52 PM, Richard Zidlicky wrote: > >> Hi, >> >> Patch against kernel.org kernel, hope it applies cleanly everywhere. > > It doesn't. Though making it apply is (probably) trivial. All the bits > under IR have moved to rc, since the e

Re: [PATCH] rc-core: add loopback driver

2010-12-01 Thread Jarod Wilson
On Nov 25, 2010, at 4:36 PM, David Härdeman wrote: > This patch adds a loopback driver to rc-core which I've found useful for > running scripted tests of different parts of rc-core without having to > fiddle with real hardware. > > Basically it emulates hardware with a learning and a non-learning

Re: [PATCH] media: rc: ir-lirc-codec: fix potential integer overflow

2010-12-01 Thread Jarod Wilson
On Nov 26, 2010, at 12:06 PM, Vasiliy Kulikov wrote: > 'n' may be bigger than MAX_INT*sizeof(int), if so checking of truncated > (int)(n/sizeof(int)) for LIRCBUF_SIZE overflow and then using nontruncated > 'count' > doesn't make sense. Also n may be up to sizeof(int)-1 bytes bigger than > expec

Re: [PATCH] media: rc: lirc_dev: check kobject_set_name() result

2010-12-01 Thread Jarod Wilson
On Nov 26, 2010, at 12:06 PM, Vasiliy Kulikov wrote: > kobject_set_name() may fail with -ENOMEM, check for it. > > Signed-off-by: Vasiliy Kulikov > --- > Compile tested only. Works for me. Acked-by: Jarod Wilson -- Jarod Wilson ja...@wilsonet.com -- To unsubscribe from this list: send th

Re: [PATCH] keycodes for DSR-0112 remote bundled with Haupauge MiniStick

2010-12-01 Thread Jarod Wilson
On Dec 1, 2010, at 6:52 PM, Richard Zidlicky wrote: > Hi, > > Patch against kernel.org kernel, hope it applies cleanly everywhere. It doesn't. Though making it apply is (probably) trivial. All the bits under IR have moved to rc, since the eventual plan is to support more than just IR remote cont

DSR-0112 keymap file for v4l-utils/ir-keytable

2010-12-01 Thread Richard Zidlicky
Hi, attached the file so people can use the remote with other receivers as well. Richard scancode 0x1d00 = KEY_0 (0x0b) scancode 0x1d01 = KEY_1 (0x02) scancode 0x1d02 = KEY_2 (0x03) scancode 0x1d03 = KEY_3 (0x04) scancode 0x1d04 = KEY_4 (0x05) scancode 0x1d05 = KEY_5 (0x06) scancode 0x1d06 = KEY_

[PATCH] keycodes for DSR-0112 remote bundled with Haupauge MiniStick

2010-12-01 Thread Richard Zidlicky
Hi, Patch against kernel.org kernel, hope it applies cleanly everywhere. Add kycodes for DSR-0112 remote that comes together with Haupauge MiniStick http://lirc.sourceforge.net/remotes/hauppauge/DSR-0112.jpg Signed-off-by: Richard Zidlicky --- linux-2.6.36/drivers/media/IR/keymaps/rc-rc5-ha

Re: [PATCH 3/3] V4L2: Add a v4l2-subdev (soc-camera) driver for OmniVision OV2640 sensor

2010-12-01 Thread Guennadi Liakhovetski
Well, I have no secrets, but I'm not sure everyone on the CC list is really interested in this thread(s)... So, please consider dropping some of them when replying, they might be grateful;) In general looks good, just a couple of easy to fix remarks below, and, please, fix line wrapping with th

Translation Faults on OMAP ISP update

2010-12-01 Thread Lane Brooks
Laurent, Previously I was getting iommu translation faults when switching from the RESIZER output to the CCDC output. I have finally pulled in all the changes on the git://gitorious.org/maemo-multimedia/omap3isp-rx51.git line and I am happy to say that those translation faults have gone away

Re: [PATCH v2] soc_camera: Add the ability to bind regulators to soc_camedra devices

2010-12-01 Thread Guennadi Liakhovetski
On Wed, 1 Dec 2010, Alberto Panizzo wrote: > On mer, 2010-12-01 at 18:26 +0100, Guennadi Liakhovetski wrote: > > On Tue, 30 Nov 2010, Alberto Panizzo wrote: > > > > > In certain machines, camera devices are supplied directly > > > by a number of regulators. This patch add the ability to drive > >

Re: [PATCH v2] soc_camera: Add the ability to bind regulators to soc_camedra devices

2010-12-01 Thread Alberto Panizzo
On mer, 2010-12-01 at 18:26 +0100, Guennadi Liakhovetski wrote: > On Tue, 30 Nov 2010, Alberto Panizzo wrote: > > > In certain machines, camera devices are supplied directly > > by a number of regulators. This patch add the ability to drive > > these regulators directly by the soc_camera driver. >

Re: [PATCHi v2 1/6] davinci vpbe: V4L2 display driver for DM644X SoC

2010-12-01 Thread Hans Verkuil
On Wednesday, December 01, 2010 17:58:35 Hadli, Manjunath wrote: > > > > You may want to consider using the new core-assisted locking support. That > > > will simplify your driver. It seems that this driver just locks at every > > > ioctl, so > > in that case it is easier to let the core do that

Re: [PATCH 2/3] mx3_camera: Support correctly the YUV222 and BAYER configurations of CSI

2010-12-01 Thread Guennadi Liakhovetski
On Sun, 28 Nov 2010, Alberto Panizzo wrote: > This patch is tested and works with the OV2640 camera that output > YUV422 (UYVY) and RGB565 data. > > The YUV422 format is managed to be converted in IPU internal YUV444 format > so this stream could be used in the future to feed directly other IPU >

[cron job] v4l-dvb daily build: WARNINGS

2010-12-01 Thread Hans Verkuil
This message is generated daily by a cron job that builds v4l-dvb for the kernels and architectures in the list below. Results of the daily build of v4l-dvb: date:Wed Dec 1 19:00:16 CET 2010 git master: 59365d136d205cc20fe666ca7f89b1c5001b0d5a git media-master: gcc version: i6

Re: tm6000 and IR

2010-12-01 Thread Stefan Ringel
Am 01.12.2010 17:41, schrieb Stefan Ringel: Am 01.12.2010 06:47, schrieb Dmitri Belimov: Hi Stefan Am 29.11.2010 09:44, schrieb Dmitri Belimov: Hi I try add IR for our TV cards. After my some changes IR is working. But when I remove USB stick from USB port What has you change? 1. Add vendo

Re: [PATCH v2] soc_camera: Add the ability to bind regulators to soc_camedra devices

2010-12-01 Thread Guennadi Liakhovetski
On Tue, 30 Nov 2010, Alberto Panizzo wrote: > In certain machines, camera devices are supplied directly > by a number of regulators. This patch add the ability to drive > these regulators directly by the soc_camera driver. > > Signed-off-by: Alberto Panizzo > --- > > v2 changes: > It is used th

Re: [PATCH 2/2] [media] Add v4l2 subdev driver for NOON010PC30L image sensor

2010-12-01 Thread Hans Verkuil
> Add I2C/V4L2 subdev driver for Siliconfile NOON010PC30 CIF camera. > The driver implements basic functionality, i.e. CIF/QCIF/QQCIF > resolution and color format selection, automatic/manual color > balance control. Other functions like cropping, rotation/flip, > exposure etc. can be easily imple

Re: tm6000 and IR

2010-12-01 Thread Stefan Ringel
Am 01.12.2010 06:47, schrieb Dmitri Belimov: Hi Stefan Am 29.11.2010 09:44, schrieb Dmitri Belimov: Hi I try add IR for our TV cards. After my some changes IR is working. But when I remove USB stick from USB port What has you change? 1. Add vendor-specific init code for IR. 2. Add vendor-sp

[PATCH 2/2] [media] Add v4l2 subdev driver for NOON010PC30L image sensor

2010-12-01 Thread Sylwester Nawrocki
Add I2C/V4L2 subdev driver for Siliconfile NOON010PC30 CIF camera. The driver implements basic functionality, i.e. CIF/QCIF/QQCIF resolution and color format selection, automatic/manual color balance control. Other functions like cropping, rotation/flip, exposure etc. can be easily implemented if n

[PATCH 1/2] [media] Add chip identity for NOON010PC30 camera sensor

2010-12-01 Thread Sylwester Nawrocki
Add ID for NOON010PC30 camera chip and reserve ID range for Siliconfile sensors. Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park --- include/media/v4l2-chip-ident.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/media/v4l2-chip-ident.h b/includ

[GIT PATCHES FOR 2.6.38 0/2] I2C/subdev driver for NOON010PC30 camera chip

2010-12-01 Thread Sylwester Nawrocki
Hello, Following are two patches adding the I2C/subdev driver for Siliconfile NOON010PC30 camera sensor with integrated ISP. The driver implements basic functionality from relatively wide range of properties that can be controlled by user. The patch series contains: [PATCH 1/2] [media] Add chip i

features/fixes request...

2010-12-01 Thread Alberto Segura
Hello, First of all, I want to thank linux-media developers the chance they give us to use our devices. I use a BestBuy EasyTV Hybrid ( ID eb1a:2881 eMPIA Technology, Inc. EM2881 Video Controller) dvb-t tuner to watch tv using xc3028-v27.fw and works pretty well, but I detect three annoyanc

Fix adapter number on DVB-T AF9015

2010-12-01 Thread Josu Lazkano
Hello everybody! I have a KWorld USB Dual DVB-T TV Stick (DVB-T 399U) and it works great. I have more DVB adapter so I fix the adapter number with modprobe option: $ cat /etc/modprobe.d/options.conf #Tevii S470 DVB-S2 options cx23885 adapter_nr=6 #Kworld dual DVB-T options dvb_usb_af9015 adapter_n

Re: [PATCH 09/10] MCDE: Add build files and bus

2010-12-01 Thread Arnd Bergmann
On Wednesday 01 December 2010, Russell King - ARM Linux wrote: > Right, so saying to ARM developers that they can't submit code which > adds new static device structures is rather problematical then, and > effectively brings a section of kernel development to a complete > standstill - it means no s

Re: where can I report dvb module related bug reports?

2010-12-01 Thread Halim Sahin
hi, It seems the storry never ends :-(. One of my reported problems is really old but not fixed in the knc1 dvb-c driver of the knc1 dvb-c card (same with tt-ct-3650). The cam-status changes frequently and vdr uses that to determine if a cam is ready or not. Please see also: http://www.mail-archiv

[RFC/PATCH 2/4] [media] s5p-fimc: Porting to videobuf 2

2010-12-01 Thread Sylwester Nawrocki
Porting to videobuf 2 and minor cleanup. Separate videobuf_queue_ops are are created for m2m and capture video nodes. Signed-off-by: Sylwester Nawrocki Signed-off-by: Marek Szyprowski Signed-off-by: Kyungmin Park --- drivers/media/video/Kconfig |2 +- drivers/media/video/s5

[RFC/PATCH 4/4] [media] s5p-fimc: Use v4l core mutex in ioctl and file operations

2010-12-01 Thread Sylwester Nawrocki
Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park --- drivers/media/video/s5p-fimc/fimc-capture.c | 210 --- drivers/media/video/s5p-fimc/fimc-core.c| 115 --- 2 files changed, 59 insertions(+), 266 deletions(-) diff --git a/drivers/media/v

[RFC/PATCH 1/4] v4l: mem2mem: port to videobuf2

2010-12-01 Thread Sylwester Nawrocki
From: Marek Szyprowski From: Marek Szyprowski Port memory-to-memory framework to videobuf2 framework. Add support for multi-planar Video for Linux 2 API extensions to the memory-to-memory driver framework. Based on the original patch written by Pawel Osciak. Signed-off-by: Marek Szyprowski

[RFC/PATCH 3/4] [media] s5p-fimc: Conversion to multiplanar formats

2010-12-01 Thread Sylwester Nawrocki
Conversion to multiplanar color formats and minor cleanup. Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park --- drivers/media/video/s5p-fimc/fimc-capture.c | 124 - drivers/media/video/s5p-fimc/fimc-core.c| 373 --- drivers/media/video/s5p-fim

[RFC 0/4] Porting s5p-fimc m2m/capture driver to videobuf2

2010-12-01 Thread Sylwester Nawrocki
Hello, The following patches are example of porting real v4l2 mem2mem and capture driver onto new videobuf 2. The first patch converts v4l2-mem2mem framework. Patch 2/4 converts s5p-fimc, both m2m and camera capture interface drivers. Except that it creates separate videobuf queue operation callba

RE: [PATCH 3/7] v4l: videobuf2: add vmalloc allocator

2010-12-01 Thread Marek Szyprowski
Hello, On Wednesday, December 01, 2010 2:37 PM Andy Walls wrote: > On Tue, 2010-11-30 at 21:57 +0100, Laurent Pinchart wrote: > > Hi Marek, > > > > On Tuesday 30 November 2010 11:39:41 Marek Szyprowski wrote: > > > On Monday, November 29, 2010 10:51 AM Laurent Pinchart wrote: > > > > On Friday 19

Re: [PATCH 3/7] v4l: videobuf2: add vmalloc allocator

2010-12-01 Thread Andy Walls
On Tue, 2010-11-30 at 21:57 +0100, Laurent Pinchart wrote: > Hi Marek, > > On Tuesday 30 November 2010 11:39:41 Marek Szyprowski wrote: > > On Monday, November 29, 2010 10:51 AM Laurent Pinchart wrote: > > > On Friday 19 November 2010 16:55:40 Marek Szyprowski wrote: > > > > From: Pawel Osciak >

Re: [PATCH 09/10] MCDE: Add build files and bus

2010-12-01 Thread Russell King - ARM Linux
On Wed, Dec 01, 2010 at 01:53:39PM +0100, Peter Stuge wrote: > Russell King - ARM Linux wrote: > > I feel it would be better to allow the current situation to continue. > > I think this misses the point, and is somewhat redundant; I think > everyone knows that it is easiest to never change anythin

Re: [PATCH 09/10] MCDE: Add build files and bus

2010-12-01 Thread Peter Stuge
Russell King - ARM Linux wrote: > I feel it would be better to allow the current situation to continue. I think this misses the point, and is somewhat redundant; I think everyone knows that it is easiest to never change anything. But then nothing improves. > If we start telling people that they

[RFC/PATCH v3 4/4] s5pv210: Enable MFC on Goni

2010-12-01 Thread Kamil Debski
Multi Format Codec 5.1 is a module available on S5PC110 and S5PC210 Samsung SoCs. Hardware is capable of handling a range of video codecs. Signed-off-by: Kamil Debski Signed-off-by: Kyungmin Park --- arch/arm/mach-s5pv210/Kconfig |1 + arch/arm/mach-s5pv210/mach-goni.c |1 + 2 files

[RFC/PATCH v3 2/4] MFC: Add MFC 5.1 driver to plat-s5p

2010-12-01 Thread Kamil Debski
Add platform support for Multi Format Codec 5.1 is a module available on S5PC110 and S5PC210 Samsung SoCs. Hardware is capable of handling a range of video codecs and this driver provides V4L2 interface for video decoding. Signed-off-by: Kamil Debski Signed-off-by: Kyungmin Park --- arch/arm/ma

[RFC/PATCH v3 0/4] Multi Format Codec 5.0 driver for S5PC110 SoC

2010-12-01 Thread Kamil Debski
Hi, On the 13th of October I have posted the first version of the MFC 5.1 driver. The second version has been posted on the 2nd of November. Second version has addressed the issued reported in the comments to the initial patch. At that time the videobuf2 API was not final and some changes were mad

[RFC/PATCH v3 1/4] Changes in include/linux/videodev2.h for MFC

2010-12-01 Thread Kamil Debski
Add fourcc values for compressed video stream formats and V4L2_CTRL_CLASS_CODEC. Also adds controls used by MFC driver. Signed-off-by: Kamil Debski Signed-off-by: Kyungmin Park --- include/linux/videodev2.h | 48 + 1 files changed, 48 insertions(+)

Re: omap3-isp: can't register subdev for new sensor driver mt9t001

2010-12-01 Thread Stefan Steuerwald
Hi Bastian, thank you, that'll be great. I have a clock oscillator soldered on my board feeding the CLKIN of the MT9T001, so I have no issue with I2C not working. The sensor responds and does i2c writes and reads just fine. Just the v4l2_subdev isn't created when I load the omap3-isp module, so I

Re: omap3-isp: can't register subdev for new sensor driver mt9t001

2010-12-01 Thread Bastian Hecht
Hello Stefan, I can send you my code tomorrow. Meanwhile a short hint, that may help you: The mt9p031 needs a not only the i2c clock to work but also the cam_clk signals. Right now this is hacked into the isp-driver in my setup but I want to do it like the nokia code (pass a clock-setup function

omap3-isp: can't register subdev for new sensor driver mt9t001

2010-12-01 Thread Stefan Steuerwald
Hi, may I please have your help with the following: I have adapted the MT9T001 driver from Laurent's tree at http://git.linuxtv.org/pinchartl/media.git?a=shortlog;h=refs/heads/media-mt9t001 to the current state of the media-framework in this kernel tree (devel branch): http://meego.gitorious

RE: [PATCH 7/7] v4l: videobuf2: add CMA allocator

2010-12-01 Thread Marek Szyprowski
Hello, On Wednesday, December 01, 2010 9:36 AM Jonghun Han wrote: > Marek Szyprowski wrote: > 2010/11/20 Marek Szyprowski : > > From: Pawel Osciak > > > > Add support for the CMA contiguous memory allocator to videobuf2. > > > > Signed-off-by: Pawel Osciak > > Signed-off-by: Kyungmin Park > >

RE: [PATCH 7/7] v4l: videobuf2: add CMA allocator

2010-12-01 Thread Jonghun Han
Marek Szyprowski wrote: 2010/11/20 Marek Szyprowski : > From: Pawel Osciak > > Add support for the CMA contiguous memory allocator to videobuf2. > > Signed-off-by: Pawel Osciak > Signed-off-by: Kyungmin Park > Signed-off-by: Marek Szyprowski > CC: Pawel Osciak > --- Hi Marek, > +static vo