Re: [alsa-devel] radio-maestro broken (conflicts with snd-es1968)

2011-03-14 Thread Ondrej Zary
On Monday 14 March 2011, Hans Verkuil wrote: At Sat, 12 Mar 2011 19:52:39 +0100, Hans Verkuil wrote: On Saturday, March 12, 2011 19:19:00 Ondrej Zary wrote: Hello, the radio-maestro driver is badly broken. It's intended to drive the radio on MediaForte ESS Maestro-based

[RFC PATCH 1/3] tea575x-tuner: various improvements

2011-03-19 Thread Ondrej Zary
s_frequency(): tuner index and type checking Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.38-rc4-orig/sound/i2c/other/tea575x-tuner.c 2011-02-08 01:03:55.0 +0100 +++ linux-2.6.38-rc4/sound/i2c/other/tea575x-tuner.c2011-03-19 15:40:14.0 +0100 @@ -37,8

[RFC PATCH 2/3] tea575x-tuner: remove dev_nr

2011-03-19 Thread Ondrej Zary
Remove unused dev_nr from struct tea575x_tuner. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.38-rc4-/include/sound/tea575x-tuner.h 2011-03-19 16:00:53.0 +0100 +++ linux-2.6.38-rc4/include/sound/tea575x-tuner.h 2011-03-19 16:01:12.0 +0100 @@ -37,7

[RFC PATCH 3/3] es1968: add radio (tea575x tuner) support

2011-03-19 Thread Ondrej Zary
Add TEA5757 radio tuner support to es1968 driver. This is found at least on MediaForte SF64-PCE2 sound cards. Signed-off-by: Ondrej Zary li...@rainbow-software.org diff -urp linux-2.6.38-rc4-orig/sound/pci/es1968.c linux-2.6.38-rc4/sound/pci/es1968.c --- linux-2.6.38-rc4-orig/sound/pci/es1968

[RFC PATCH 4/3] remove radio-maestro

2011-03-19 Thread Ondrej Zary
Remove broken radio-maestro driver as the radio functionality is now integrated in the es1968 driver. Signed-off-by: Ondrej Zary li...@rainbow-software.org diff -urNp linux-2.6.38-rc4-orig/drivers/media/radio/Kconfig linux-2.6.38-rc4/drivers/media/radio/Kconfig --- linux-2.6.38-rc4-orig/drivers

Re: [RFC PATCH 1/3] tea575x-tuner: various improvements

2011-03-25 Thread Ondrej Zary
Total: 21 Succeeded: 17 Failed: 4 Warnings: 0 -- Ondrej Zary -- 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: [RFC PATCH 1/3] tea575x-tuner: various improvements

2011-03-29 Thread Ondrej Zary
On Saturday 26 March 2011 11:19:31 Hans Verkuil wrote: On Friday, March 25, 2011 22:40:12 Ondrej Zary wrote: On Tuesday 22 March 2011 20:02:30 Hans Verkuil wrote: BTW, can you run the v4l2-compliance utility for the two boards that use this radio tuner? This utility is part

usbvision with Nogatech MicroCam (NV3001P)

2011-04-18 Thread Ondrej Zary
IN bmAttributes1 Transfer TypeIsochronous Synch Type None Usage Type Data wMaxPacketSize 0x003f 1x 63 bytes bInterval 1 Device Status: 0x (Bus Powered) -- Ondrej Zary

[PATCH] usbvision: add Nogatech USB MicroCam

2011-04-25 Thread Ondrej Zary
Add Nogatech USB MicroCam PAL (NV3001P) and NTSC (NV3000N) support to usbvision driver. PAL version is tested, NTSC untested. Data captured using usbsnoop, init_values are listed in the INF file along with image dimensions, offsets and frame rates. Signed-off-by: Ondrej Zary li...@rainbow

[PATCH] usbvision: remove (broken) image format conversion

2011-04-25 Thread Ondrej Zary
-by: Ondrej Zary li...@rainbow-software.org diff -up linux-2.6.39-rc2-/drivers/media/video/usbvision/usbvision-core.c linux-2.6.39-rc2/drivers/media/video/usbvision/usbvision-core.c --- linux-2.6.39-rc2-/drivers/media/video/usbvision/usbvision-core.c 2011-04-25 22:30:09.0 +0200

Re: [PATCH] usbvision: remove (broken) image format conversion

2011-04-26 Thread Ondrej Zary
On Tuesday 26 April 2011, you wrote: On Monday, April 25, 2011 23:23:17 Ondrej Zary wrote: The YVU420 and YUV422P formats are broken and cause kernel panic on use. (YVU420 does not work and sometimes causes unable to handle paging request panic, YUV422P always causes NULL pointer

Re: [PATCH] usbvision: remove (broken) image format conversion

2011-04-26 Thread Ondrej Zary
On Tuesday 26 April 2011 14:33:20 Hans Verkuil wrote: Hi, On 04/26/2011 10:30 AM, Ondrej Zary wrote: On Tuesday 26 April 2011, you wrote: On Monday, April 25, 2011 23:23:17 Ondrej Zary wrote: The YVU420 and YUV422P formats are broken and cause kernel panic on use. (YVU420 does

[PATCH 3/4] usbvision: remove broken testpattern

2011-04-27 Thread Ondrej Zary
Enabling force_testpattern module parameter in usbvision causes kernel panic. Things like that does not belong to the kernel anyway so the fix is easy. Signed-off-by: Ondrej Zary li...@rainbow-software.org diff -up linux-2.6.39-rc2-/drivers/media/video/usbvision/usbvision-core.c linux-2.6.39

[PATCH 1/4] usbvision: add Nogatech USB MicroCam

2011-04-27 Thread Ondrej Zary
Add Nogatech USB MicroCam PAL (NV3001P) and NTSC (NV3000N) support to usbvision driver. PAL version is tested, NTSC untested. Data captured using usbsnoop, init_values are listed in the INF file along with image dimensions, offsets and frame rates. Signed-off-by: Ondrej Zary li...@rainbow

[PATCH 2/4] usbvision: remove broken YUV format conversion

2011-04-27 Thread Ondrej Zary
-by: Ondrej Zary li...@rainbow-software.org diff -up linux-2.6.39-rc2-/drivers/media/video/usbvision/usbvision-core.c linux-2.6.39-rc2/drivers/media/video/usbvision/usbvision-core.c --- linux-2.6.39-rc2-/drivers/media/video/usbvision/usbvision-core.c 2011-04-27 22:05:39.0 +0200 +++ linux

[PATCH 4/4] usbvision: remove RGB format conversion

2011-04-27 Thread Ondrej Zary
As V4L2 spec says that drivers shouldn't do any in-kernel image format conversion, remove it. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- Feel free to drop this patch if the functionality is needed. diff -up linux-2.6.39-rc2-/drivers/media/video/usbvision/usbvision-core.c linux

Re: [PATCH] usbvision: remove (broken) image format conversion

2011-05-03 Thread Ondrej Zary
On Tuesday 03 May 2011 12:29:45 Mauro Carvalho Chehab wrote: Em 26-04-2011 17:40, Ondrej Zary escreveu: On Tuesday 26 April 2011 14:33:20 Hans Verkuil wrote: After digging in the code for hours, I'm giving this up. It's not worth it. The ISOC_MODE_YUV422 mode works

[PATCH 1/3] tea575x: unify read/write functions

2011-05-09 Thread Ondrej Zary
Implement generic read/write functions to access TEA575x tuners. They're now implemented 4 times (once in es1968 and 3 times in fm801). This also allows mute to work on all cards. Also improve tuner detection/initialization. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39

[PATCH 2/3] es1968: convert TEA575x support to new interface

2011-05-09 Thread Ondrej Zary
Use common functions to access TEA575x tuner - remove original read/write functions and provide new pin manipulation functions instead. Tested with SF64-PCE2 card. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/sound/pci/es1968.c2011-05-06 22:46:24.0

[PATCH 3/3] fm801: convert TEA575x support to new interface

2011-05-09 Thread Ondrej Zary
). SF256-PCS untested (pin for MO/ST signal is a guess). Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/sound/pci/fm801.c 2011-05-06 22:44:22.0 +0200 +++ linux-2.6.39-rc2/sound/pci/fm801.c 2011-05-09 22:59:16.0 +0200 @@ -717,308 +717,86 @@ static int

fm801: implement TEA575x tuner autodetection

2011-05-10 Thread Ondrej Zary
Autodetect TEA575x tuner connection type during init. This allows tuner to work out-of-the box. tea575x_tuner module parameter remains functional to force tuner type. Tested with SF256-PCP and SF64-PCR. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/sound/pci/fm801

[PATCH 1/3] tea575x: remove freq_fixup from struct

2011-05-12 Thread Ondrej Zary
freq_fixup is a constant, no need to hold it in struct snd_tea575x and set in each driver. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/include/sound/tea575x-tuner.h 2011-05-10 22:31:40.0 +0200 +++ linux-2.6.39-rc2/include/sound/tea575x-tuner.h

[PATCH 2/3] tea575x: remove unused card from struct

2011-05-12 Thread Ondrej Zary
struct snd_card *card is present in struct snd_tea575x but never used. Remove it. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/include/sound/tea575x-tuner.h 2011-05-12 21:22:35.0 +0200 +++ linux-2.6.39-rc2/include/sound/tea575x-tuner.h 2011-05-12

[PATCH 3/3] tea575x: use better card and bus names

2011-05-12 Thread Ondrej Zary
Provide real card and bus_info instead of hardcoded values. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/include/sound/tea575x-tuner.h 2011-05-12 21:53:43.0 +0200 +++ linux-2.6.39-rc2/include/sound/tea575x-tuner.h 2011-05-12 21:37:40.0

[PATCH] fm801: clean-up radio-related Kconfig

2011-05-13 Thread Ondrej Zary
Change the weird SND_FM801_TEA575X_BOOL define in Kconfig to SND_FM801_RADIO and remove TEA575X_RADIO define from fm801.c. Also update help text to include all supported cards. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/sound/pci/Kconfig 2011-05-13 19:36

[PATCH RFC] radio-sf16fmr2: convert to generic TEA575x interface

2011-05-13 Thread Ondrej Zary
...@angelfire.com +/* SF16-FMR2 radio driver for Linux + * Copyright (c) 2011 Ondrej Zary * - * Notes on the hardware - * - * Frequency control is done digitally -- ie out(port,encodefreq(95.8)); - * No volume control - only mute/unmute - you have to use line volume - * - * For read stereo/mono you must

[PATCH v2] fm801: clean-up radio-related Kconfig

2011-05-14 Thread Ondrej Zary
Remove TEA575X_RADIO define from fm801.c. Also update Kconfig help text to include all supported cards. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/sound/pci/Kconfig 2011-05-14 22:22:11.0 +0200 +++ linux-2.6.39-rc2/sound/pci/Kconfig 2011-05-14 22:24

[PATCH RFC] tea575x: convert to control framework

2011-05-15 Thread Ondrej Zary
Convert tea575x-tuner to use the new V4L2 control framework. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/include/sound/tea575x-tuner.h 2011-05-13 19:39:23.0 +0200 +++ linux-2.6.39-rc2/include/sound/tea575x-tuner.h 2011-05-15 20:34:54.0

[PATCH RFC v2] radio-sf16fmr2: convert to generic TEA575x interface

2011-05-15 Thread Ondrej Zary
(c) 2011 Ondrej Zary * - * Notes on the hardware - * - * Frequency control is done digitally -- ie out(port,encodefreq(95.8)); - * No volume control - only mute/unmute - you have to use line volume - * - * For read stereo/mono you must wait 0.1 sec after set frequency and - * card unmuted so I

Re: [PATCH RFC v2] radio-sf16fmr2: convert to generic TEA575x interface

2011-05-17 Thread Ondrej Zary
On Tuesday 17 May 2011 21:33:14 Hans Verkuil wrote: Hi Ondrej! On Sunday, May 15, 2011 23:26:33 Hans Verkuil wrote: On Sunday, May 15, 2011 22:18:21 Ondrej Zary wrote: Thanks, it's much simpler with the new control framework. Do the negative volume control values make sense? The TC9154A

[PATCH RFC v3] radio-sf16fmr2: convert to generic TEA575x interface

2011-05-17 Thread Ondrej Zary
and tested. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/drivers/media/radio/radio-sf16fmr2.c 2011-04-06 03:30:43.0 +0200 +++ linux-2.6.39-rc2/drivers/media/radio/radio-sf16fmr2.c 2011-05-17 23:24:37.0 +0200 @@ -1,441 +1,184

[PATCH RFC v2] tea575x: convert to control framework

2011-05-17 Thread Ondrej Zary
Convert tea575x-tuner to use the new V4L2 control framework. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/include/sound/tea575x-tuner.h 2011-05-13 19:39:23.0 +0200 +++ linux-2.6.39-rc2/include/sound/tea575x-tuner.h 2011-05-17 22:35:19.0

[PATCH v3] tea575x: convert to control framework

2011-05-18 Thread Ondrej Zary
Convert tea575x-tuner to use the new V4L2 control framework. Also add ext_init() callback that can be used by a card driver for additional initialization right before registering the video device (for SF16-FMR2). Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/include

[PATCH v4] tea575x: convert to control framework

2011-05-18 Thread Ondrej Zary
-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/include/sound/tea575x-tuner.h 2011-05-13 19:39:23.0 +0200 +++ linux-2.6.39-rc2/include/sound/tea575x-tuner.h 2011-05-18 23:14:48.0 +0200 @@ -23,8 +23,8 @@ */ #include linux/videodev2.h +#include

[PATCH v4] radio-sf16fmr2: convert to generic TEA575x interface

2011-05-18 Thread Ondrej Zary
(with balance control added) and tested. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/sound/pci/Kconfig 2011-05-15 18:50:18.0 +0200 +++ linux-2.6.39-rc2/sound/pci/Kconfig 2011-05-17 23:35:30.0 +0200 @@ -565,8 +565,8 @@ config SND_FM801_TEA575X_BOOL

[PATCH v5] tea575x: convert to control framework

2011-05-19 Thread Ondrej Zary
-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/include/sound/tea575x-tuner.h 2011-05-13 19:39:23.0 +0200 +++ linux-2.6.39-rc2/include/sound/tea575x-tuner.h 2011-05-19 17:27:45.0 +0200 @@ -23,8 +23,8 @@ */ #include linux/videodev2.h +#include

[PATCH v5] radio-sf16fmr2: convert to generic TEA575x interface

2011-05-19 Thread Ondrej Zary
(with balance control added) and tested. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/sound/pci/Kconfig 2011-05-15 18:50:18.0 +0200 +++ linux-2.6.39-rc2/sound/pci/Kconfig 2011-05-17 23:35:30.0 +0200 @@ -565,8 +565,8 @@ config SND_FM801_TEA575X_BOOL

[PATCH v5] [resend] tea575x: convert to control framework

2011-05-23 Thread Ondrej Zary
-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/include/sound/tea575x-tuner.h 2011-05-13 19:39:23.0 +0200 +++ linux-2.6.39-rc2/include/sound/tea575x-tuner.h 2011-05-19 17:27:45.0 +0200 @@ -23,8 +23,8 @@ */ #include linux/videodev2.h +#include

[PATCH v5] [resend] radio-sf16fmr2: convert to generic TEA575x interface

2011-05-23 Thread Ondrej Zary
(with balance control added) and tested. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/sound/pci/Kconfig 2011-05-15 18:50:18.0 +0200 +++ linux-2.6.39-rc2/sound/pci/Kconfig 2011-05-17 23:35:30.0 +0200 @@ -565,8 +565,8 @@ config SND_FM801_TEA575X_BOOL

Re: [alsa-devel] [PATCH v5] [resend] radio-sf16fmr2: convert to generic TEA575x interface

2011-06-01 Thread Ondrej Zary
On Wednesday 01 June 2011 17:45:31 Mauro Carvalho Chehab wrote: Em 26-05-2011 04:45, Takashi Iwai escreveu: At Wed, 25 May 2011 21:21:30 -0300, Mauro Carvalho Chehab wrote: Em 23-05-2011 09:17, Ondrej Zary escreveu: Convert radio-sf16fmr2 to use generic TEA575x implementation. Most

[PATCH] tea575x: allow multiple opens

2011-06-11 Thread Ondrej Zary
Change locking to allow tea575x-radio device to be opened multiple times. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/include/sound/tea575x-tuner.h 2011-06-11 15:21:50.0 +0200 +++ linux-2.6.39-rc2/include/sound/tea575x-tuner.h 2011-06-11 14:50

[PATCH] [resend] tea575x: allow multiple opens

2011-06-20 Thread Ondrej Zary
Change locking to allow tea575x-radio device to be opened multiple times. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/include/sound/tea575x-tuner.h 2011-06-11 15:21:50.0 +0200 +++ linux-2.6.39-rc2/include/sound/tea575x-tuner.h 2011-06-11 14:50

[PATCH] [resend] tea575x: remove useless input ioctls

2011-06-20 Thread Ondrej Zary
Remove empty and useless g_input and s_input ioctls. This fixes one fail of v4l2-compliance test. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.39-rc2-/sound/i2c/other/tea575x-tuner.c 2011-06-11 15:29:18.0 +0200 +++ linux-2.6.39-rc2/sound/i2c/other/tea575x

usbvision: disable scaling for Nogatech MicroCam

2011-07-16 Thread Ondrej Zary
-fmt.pix.width = MAX_FRAME_WIDTH; + vf-fmt.pix.height = MAX_FRAME_HEIGHT; + } + /* by now we are committed to the new data... */ usbvision_set_output(usbvision, vf-fmt.pix.width, vf-fmt.pix.height); -- Ondrej Zary -- To unsubscribe from this list: send the line

[PATCH] [resend] usbvision: disable scaling for Nogatech MicroCam

2011-07-22 Thread Ondrej Zary
-fmt.pix.width = MAX_FRAME_WIDTH; + vf-fmt.pix.height = MAX_FRAME_HEIGHT; + } + /* by now we are committed to the new data... */ usbvision_set_output(usbvision, vf-fmt.pix.width, vf-fmt.pix.height); -- Ondrej Zary -- To unsubscribe from this list: send the line

Re: [PATCH] [resend] usbvision: disable scaling for Nogatech MicroCam

2011-07-22 Thread Ondrej Zary
On Friday 22 July 2011 22:06:59 Devin Heitmueller wrote: On Fri, Jul 22, 2011 at 4:00 PM, Ondrej Zary li...@rainbow-software.org wrote: Scaling causes bad artifacts (horizontal lines) with compression at least with Nogatech MicroCam so disable it (for this HW). This also fixes messed up

Re: [PATCH] [resend] usbvision: disable scaling for Nogatech MicroCam

2011-07-22 Thread Ondrej Zary
On Friday 22 July 2011 23:31:46 Devin Heitmueller wrote: On Fri, Jul 22, 2011 at 5:22 PM, Ondrej Zary li...@rainbow-software.org wrote: Seems that this bug is widespread - the same problem appears also in guvcview and adobe flash. I think that the driver is broken too - it should return

Re: [PATCH] [resend] usbvision: disable scaling for Nogatech MicroCam

2011-08-01 Thread Ondrej Zary
On Wednesday 27 July 2011 17:03:06 Mauro Carvalho Chehab wrote: Em 22-07-2011 18:44, Ondrej Zary escreveu: On Friday 22 July 2011 23:31:46 Devin Heitmueller wrote: On Fri, Jul 22, 2011 at 5:22 PM, Ondrej Zary li...@rainbow-software.org wrote: Seems that this bug is widespread - the same

uvcvideo: Finally fix Logitech Quickcam for Notebooks Pro

2009-10-06 Thread Ondrej Zary
it looks like snd_usb_audio does some initialization that allows uvcvideo to work. It didn't work at all I didn't have snd_usb_audio module compiled. What was the change that supposedly broke this in 2.6.22? -- Ondrej Zary -- To unsubscribe from this list: send the line unsubscribe linux-media

[PATCH] Re: uvcvideo: Finally fix Logitech Quickcam for Notebooks Pro

2009-10-07 Thread Ondrej Zary
On Tuesday 06 October 2009, Ondrej Zary wrote: Hello, I have a Logitech Quickcam for Notebooks Pro camera (046d:08c3) which just does not work even with kernel 2.6.31 and has never worked well before. On http://linux-uvc.berlios.de/, there are two problems listed. I want to really fix

Re: [Linux-uvc-devel] [PATCH] Re: uvcvideo: Finally fix Logitech Quickcam for Notebooks Pro

2009-10-07 Thread Ondrej Zary
On Wednesday 07 October 2009, Gianluca Cecchi wrote: On Wed, Oct 7, 2009 at 2:59 PM, Ondrej Zary li...@rainbow-software.orgwrote: [snip] What was the change that supposedly broke this in 2.6.22? I discovered that it's not related to usb audio at all. Doing rmmod uvcvideo

[PATCH] [resend] Finally fix Logitech Quickcam for Notebooks Pro

2009-10-08 Thread Ondrej Zary
: Failed to initialize the device (-5). Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-2.6.31-orig/drivers/media/video/uvc/uvcvideo.h2009-09-10 00:13:59.0 +0200 +++ linux-2.6.31/drivers/media/video/uvc/uvcvideo.h 2009-10-07 13:47:27.0 +0200 @@ -304,7

Re: [Linux-uvc-devel] [PATCH] Re: uvcvideo: Finally fix Logitech Quickcam for Notebooks Pro

2009-10-09 Thread Ondrej Zary
On Friday 09 October 2009, Laurent Pinchart wrote: Hi Ondrej, On Wednesday 07 October 2009 14:59:40 Ondrej Zary wrote: On Tuesday 06 October 2009, Ondrej Zary wrote: Hello, I have a Logitech Quickcam for Notebooks Pro camera (046d:08c3) which just does not work even with kernel

radio-sf16fmi: add autoprobing

2009-11-28 Thread Ondrej Zary
Add automatic probing of ports 0x284 and 0x384 to radio-sf16fmi if no card is found using PnP. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-source-2.6.31/drivers/media/radio/Kconfig.1 2009-11-28 21:40:32.0 +0100 +++ linux-source-2.6.31/drivers/media/radio/Kconfig

[resend] radio-sf16fmi: add autoprobing

2009-11-30 Thread Ondrej Zary
Add automatic probing of ports 0x284 and 0x384 to radio-sf16fmi if no card is found using PnP. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-source-2.6.31/drivers/media/radio/Kconfig.1 2009-11-28 21:40:32.0 +0100 +++ linux-source-2.6.31/drivers/media/radio/Kconfig

[resend] radio-sf16fmi: fix mute, add SF16-FMP to texts

2009-11-30 Thread Ondrej Zary
Fix completely broken mute handling radio-sf16fmi. The sound was muted immediately after tuning in KRadio. Also fix typos and add SF16-FMP to the texts. Signed-off-by: Ondrej Zary li...@rainbow-software.org diff -urp linux-source-2.6.31-orig/drivers/media/radio/Kconfig linux-source-2.6.31

Re: [resend] radio-sf16fmi: fix mute, add SF16-FMP to texts

2009-12-02 Thread Ondrej Zary
On Tuesday 01 December 2009, Petr Vandrovec wrote: Ondrej Zary wrote: Fix completely broken mute handling radio-sf16fmi. The sound was muted immediately after tuning in KRadio. Also fix typos and add SF16-FMP to the texts. I do not have device anymore. Looks OK to me. Signed-off

[PATCH] [resend] radio-sf16fmi: fix mute, add SF16-FMP to texts

2009-12-04 Thread Ondrej Zary
Fix completely broken mute handling radio-sf16fmi. The sound was muted immediately after tuning in KRadio. Also fix typos and add SF16-FMP to the texts. Signed-off-by: Ondrej Zary li...@rainbow-software.org diff -urp linux-source-2.6.31-orig/drivers/media/radio/Kconfig linux-source-2.6.31

[PATCH] [resend] radio-sf16fmi: add autoprobing

2009-12-04 Thread Ondrej Zary
Add automatic probing of ports 0x284 and 0x384 to radio-sf16fmi if no card is found using PnP. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-source-2.6.31/drivers/media/radio/Kconfig.1 2009-11-28 21:40:32.0 +0100 +++ linux-source-2.6.31/drivers/media/radio/Kconfig

[PATCH] [resend] radio-sf16fmi: add autoprobing

2009-12-09 Thread Ondrej Zary
Add automatic probing of ports 0x284 and 0x384 to radio-sf16fmi if no card is found using PnP. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- linux-source-2.6.31/drivers/media/radio/Kconfig.1 2009-11-28 21:40:32.0 +0100 +++ linux-source-2.6.31/drivers/media/radio/Kconfig

[PATCH] [resend] radio-sf16fmi: fix mute, add SF16-FMP to texts

2009-12-09 Thread Ondrej Zary
Fix completely broken mute handling radio-sf16fmi. The sound was muted immediately after tuning in KRadio. Also fix typos and add SF16-FMP to the texts. Signed-off-by: Ondrej Zary li...@rainbow-software.org diff -urp linux-source-2.6.31-orig/drivers/media/radio/Kconfig linux-source-2.6.31

Re: uvcvideo Logitech patch

2009-12-15 Thread Ondrej Zary
5000 would be a good default for UVC_CTRL_STREAMING_TIMEOUT? I have been doing this on 2.6.30 amd64 system. Just to let you know. And thanks for the patch. Mitar [Added UVC mailing lists to CC] -- Ondrej Zary -- To unsubscribe from this list: send the line unsubscribe linux-media

SPCA1527A/SPCA1528 (micro)SD camera in webcam mode

2010-05-29 Thread Ondrej Zary
usbsnoop-still.log - interface 2 plugunplug usbsnoop-video-capture-320x240.log - interface 1 plug, capture of about 1 second video at 320x240, unplug usbsnoop-video-plug.log - interface 1 plugunplug -- Ondrej Zary -- To unsubscribe from this list: send the line unsubscribe linux-media

Re: SPCA1527A/SPCA1528 (micro)SD camera in webcam mode

2010-05-29 Thread Ondrej Zary
On Saturday 29 May 2010 20:24:25 Jean-Francois Moine wrote: On Sat, 29 May 2010 19:09:32 +0200 Ondrej Zary li...@rainbow-software.org wrote: I got a MD80-clone camera based on SPCA1527A chip. It's webcam-like camera with battery and microSD slot and can record video on its own. It has two

Re: SPCA1527A/SPCA1528 (micro)SD camera in webcam mode

2010-05-30 Thread Ondrej Zary
On Sunday 30 May 2010 13:34:55 Jean-Francois Moine wrote: On Sat, 29 May 2010 21:32:07 +0200 Ondrej Zary li...@rainbow-software.org wrote: The Color Space/Compression reported by the driver is only one: RGB 24 The driver also uses these files which may (or may not) be related to used

Re: SPCA1527A/SPCA1528 (micro)SD camera in webcam mode

2010-05-30 Thread Ondrej Zary
On Sunday 30 May 2010 21:26:14 Andy Walls wrote: On Sun, 2010-05-30 at 19:55 +0200, Ondrej Zary wrote: On Sunday 30 May 2010 13:34:55 Jean-Francois Moine wrote: On Sat, 29 May 2010 21:32:07 +0200 Ondrej Zary li...@rainbow-software.org wrote: The Color Space/Compression reported

Re: SPCA1527A/SPCA1528 (micro)SD camera in webcam mode

2010-05-30 Thread Ondrej Zary
On Sunday 30 May 2010 23:58:11 Andy Walls wrote: On Sun, 2010-05-30 at 23:28 +0200, Ondrej Zary wrote: On Sunday 30 May 2010 21:26:14 Andy Walls wrote: On Sun, 2010-05-30 at 19:55 +0200, Ondrej Zary wrote: On Sunday 30 May 2010 13:34:55 Jean-Francois Moine wrote: SP54 is Sunplus

Re: SPCA1527A/SPCA1528 (micro)SD camera in webcam mode

2010-05-31 Thread Ondrej Zary
On Monday 31 May 2010, Jean-Francois Moine wrote: On Mon, 31 May 2010 00:03:10 +0200 Ondrej Zary li...@rainbow-software.org wrote: I would try extracting a JPEG header from one of the files captured by the camera in stand alone mode (either a JPEG still or MJPEG file), and put

Re: [alsa-devel] tea575x-tuner improvements use in maxiradio

2012-02-07 Thread Ondrej Zary
and often stops at wrong place (only noise) or even outside the FM range. So I strongly suggest not to enable this (mis-)feature. The HW seems to be completely broken (unless there's some weird bug in the code). -- Ondrej Zary -- To unsubscribe from this list: send the line unsubscribe linux

Re: [alsa-devel] tea575x-tuner improvements use in maxiradio

2012-02-07 Thread Ondrej Zary
On Wednesday 08 February 2012, you wrote: On Tuesday, February 07, 2012 23:20:19 Ondrej Zary wrote: On Sunday 05 February 2012 14:17:05 Hans Verkuil wrote: These patches improve the tea575x-tuner module to make it up to date with the latest V4L2 frameworks. The maxiradio driver has

Re: [alsa-devel] tea575x-tuner improvements use in maxiradio

2012-02-08 Thread Ondrej Zary
On Wednesday 08 February 2012 08:29:25 Hans Verkuil wrote: On Tuesday, February 07, 2012 23:20:19 Ondrej Zary wrote: On Sunday 05 February 2012 14:17:05 Hans Verkuil wrote: These patches improve the tea575x-tuner module to make it up to date with the latest V4L2 frameworks

Re: [alsa-devel] tea575x-tuner improvements use in maxiradio

2012-02-08 Thread Ondrej Zary
On Wednesday 08 February 2012 21:30:07 Hans Verkuil wrote: On Wednesday, February 08, 2012 20:57:43 Ondrej Zary wrote: On Wednesday 08 February 2012 08:29:25 Hans Verkuil wrote: On Tuesday, February 07, 2012 23:20:19 Ondrej Zary wrote: On Sunday 05 February 2012 14:17:05 Hans Verkuil

Re: [alsa-devel] tea575x-tuner improvements use in maxiradio

2012-02-09 Thread Ondrej Zary
On Wednesday 08 February 2012 08:29:25 Hans Verkuil wrote: On Tuesday, February 07, 2012 23:20:19 Ondrej Zary wrote: On Sunday 05 February 2012 14:17:05 Hans Verkuil wrote: These patches improve the tea575x-tuner module to make it up to date with the latest V4L2 frameworks

Re: [alsa-devel] tea575x-tuner improvements use in maxiradio

2012-02-17 Thread Ondrej Zary
On Wednesday 08 February 2012 08:29:25 Hans Verkuil wrote: On Tuesday, February 07, 2012 23:20:19 Ondrej Zary wrote: On Sunday 05 February 2012 14:17:05 Hans Verkuil wrote: These patches improve the tea575x-tuner module to make it up to date with the latest V4L2 frameworks

PnP support for the new ISA radio framework?

2012-02-18 Thread Ondrej Zary
radio_isa_driver *drv = pdev-platform_data; So adding struct pnp_driver to struct radio_isa_driver does not seem to be possible. -- Ondrej Zary -- 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

[PATCH] tea575x: fix HW seek

2012-02-18 Thread Ondrej Zary
clear the frequency bits when starting the search as it starts at the frequency currently set, not from the value written) - sometimes, seek remains on the current frequency (or moves only a little), so repeat it until it moves by at least 50 kHz Signed-off-by: Ondrej Zary li...@rainbow

Re: [PATCH] tea575x: fix HW seek

2012-02-22 Thread Ondrej Zary
On Tuesday 21 February 2012, Hans Verkuil wrote: On Saturday, February 18, 2012 17:45:45 Ondrej Zary wrote: Fix HW seek in TEA575x to work properly: - a delay must be present after search start and before first register read or the seek does weird things - when the search stops, the new

Re: PnP support for the new ISA radio framework?

2012-02-22 Thread Ondrej Zary
On Saturday 18 February 2012 17:33:32 Ondrej Zary wrote: Hello, there are some ISA radio cards with PnP support (e.g. SF16-FMI) but the new ISA radio framework has no PnP support. I got AOpen FX-3D/Pro Radio card which is AD1816 with Gemtek radio - and with PnP. But radio-gemtek fails

Re: [PATCH] tea575x: fix HW seek

2012-02-26 Thread Ondrej Zary
On Friday 24 February 2012 10:00:01 Hans Verkuil wrote: On Wednesday, February 22, 2012 09:35:28 Ondrej Zary wrote: On Tuesday 21 February 2012, Hans Verkuil wrote: On Saturday, February 18, 2012 17:45:45 Ondrej Zary wrote: Fix HW seek in TEA575x to work properly: - a delay must

Re: [PATCH] tea575x: fix HW seek

2012-02-27 Thread Ondrej Zary
On Monday 27 February 2012 09:42:40 Hans Verkuil wrote: On Sunday, February 26, 2012 22:02:51 Ondrej Zary wrote: On Friday 24 February 2012 10:00:01 Hans Verkuil wrote: On Wednesday, February 22, 2012 09:35:28 Ondrej Zary wrote: On Tuesday 21 February 2012, Hans Verkuil wrote

[RFC PATCH] PnP support for the new ISA radio framework

2012-02-28 Thread Ondrej Zary
); isa_unregister_driver(gemtek_driver.driver); } -- Ondrej Zary -- 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

[RFC PATCH] PnP support for the new ISA radio framework

2012-03-01 Thread Ondrej Zary
); isa_unregister_driver(gemtek_driver.driver); } -- Ondrej Zary -- 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

[PATCH 1/2] radio-isa: PnP support for the new ISA radio framework

2012-03-05 Thread Ondrej Zary
Add PnP support to the new ISA radio framework. Signed-off-by: Ondrej Zary li...@rainbow-software.org diff --git a/drivers/media/radio/radio-isa.c b/drivers/media/radio/radio-isa.c index 02bcead..b0c0d7a 100644 --- a/drivers/media/radio/radio-isa.c +++ b/drivers/media/radio/radio-isa.c @@ -26,6

[PATCH 2/2] radio-gemtek: add PnP support for AOpen FX-3D/Pro Radio

2012-03-05 Thread Ondrej Zary
Add PnP support to radio-gemtek for AOpen FX-3D/Pro Radio card (AD1816 + Gemtek radio). Signed-off-by: Ondrej Zary li...@rainbow-software.org diff --git a/drivers/media/radio/radio-gemtek.c b/drivers/media/radio/radio-gemtek.c index 9d7fdae..6ea0e23 100644 --- a/drivers/media/radio/radio

[PATCH v2 1/2] radio-isa: PnP support for the new ISA radio framework

2012-03-05 Thread Ondrej Zary
Add PnP support to the new ISA radio framework. Signed-off-by: Ondrej Zary li...@rainbow-software.org diff --git a/drivers/media/radio/radio-isa.c b/drivers/media/radio/radio-isa.c index 02bcead..ed9039f 100644 --- a/drivers/media/radio/radio-isa.c +++ b/drivers/media/radio/radio-isa.c @@ -26,6

[PATCH v2 2/2] radio-gemtek: add PnP support for AOpen FX-3D/Pro Radio

2012-03-05 Thread Ondrej Zary
Add PnP support to radio-gemtek for AOpen FX-3D/Pro Radio card (AD1816 + Gemtek radio). Signed-off-by: Ondrej Zary li...@rainbow-software.org diff --git a/drivers/media/radio/radio-gemtek.c b/drivers/media/radio/radio-gemtek.c index 9d7fdae..235c0e3 100644 --- a/drivers/media/radio/radio

Re: [PATCH 1/2] radio-isa: PnP support for the new ISA radio framework

2012-03-05 Thread Ondrej Zary
On Monday 05 March 2012 21:30:51 Ondrej Zary wrote: Add PnP support to the new ISA radio framework. [...] +int radio_isa_pnp_remove(struct pnp_dev *dev) Please ignore this patch, it's broken (this function should return void and radio-gemtek fails to compile without CONFIG_PNP). I've sent

[PATCH v2 1/2] [resend] radio-isa: PnP support for the new ISA radio framework

2012-03-22 Thread Ondrej Zary
Add PnP support to the new ISA radio framework. Signed-off-by: Ondrej Zary li...@rainbow-software.org diff --git a/drivers/media/radio/radio-isa.c b/drivers/media/radio/radio-isa.c index 02bcead..ed9039f 100644 --- a/drivers/media/radio/radio-isa.c +++ b/drivers/media/radio/radio-isa.c @@ -26,6

[PATCH v2 2/2] [resend] radio-gemtek: add PnP support for AOpen FX-3D/Pro Radio

2012-03-22 Thread Ondrej Zary
Add PnP support to radio-gemtek for AOpen FX-3D/Pro Radio card (AD1816 + Gemtek radio). Signed-off-by: Ondrej Zary li...@rainbow-software.org diff --git a/drivers/media/radio/radio-gemtek.c b/drivers/media/radio/radio-gemtek.c index 9d7fdae..235c0e3 100644 --- a/drivers/media/radio/radio

My patches for AverMedia A706

2013-04-05 Thread Ondrej Zary
config from unsigned int to void * tda8290: change magic LNA config values to enum saa7134: Add AverMedia A706 AverTV Satellite Hybrid+FM -- Ondrej Zary -- 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

[PATCH] bttv: Add noname Bt848 capture card with 14MHz xtal

2013-04-14 Thread Ondrej Zary
Add support for noname Bt848 capture-only card (3x composite, 1x S-VHS) with 14MHz crystal: http://www.rainbow-software.org/images/hardware/bt848_.jpg 14MHz PLL was not supported by bttv driver until now. Signed-off-by: Ondrej Zary li...@rainbow-software.org diff --git a/drivers/media/pci

Re: [PATCH] bttv: Add noname Bt848 capture card with 14MHz xtal

2013-04-14 Thread Ondrej Zary
On Sunday 14 April 2013 18:39:09 Ondrej Zary wrote: Add support for noname Bt848 capture-only card (3x composite, 1x S-VHS) with 14MHz crystal: http://www.rainbow-software.org/images/hardware/bt848_.jpg Noticed that it takes ages to load the bttv module (about 30 seconds). If disable_ir=1

[PATCH] bttv: Add CyberVision CV06

2013-04-14 Thread Ondrej Zary
and CyberVision CV8088-SV16 chip Signed-off-by: Ondrej Zary li...@rainbow-software.org diff --git a/drivers/media/pci/bt8xx/bttv-cards.c b/drivers/media/pci/bt8xx/bttv-cards.c index 8bcf638..7bce09f 100644 --- a/drivers/media/pci/bt8xx/bttv-cards.c +++ b/drivers/media/pci/bt8xx/bttv-cards.c @@ -2833,6

Re: [PATCH] bttv: Add CyberVision CV06

2013-04-15 Thread Ondrej Zary
On Sunday 14 April 2013 23:26:21 Ondrej Zary wrote: Add CyberVision CV06 4-camera card (from CyberVision SV card kit): http://www.cybervision.com.tw/products-swcard_kits-sv.html There are some interesting things on the card but they're not supported: 4 LEDs, a connector with 4 IN and 4 OUT

[PATCH 2/3] bttv: stop abusing mbox_we for sw_status

2013-05-14 Thread Ondrej Zary
Kodicom 4400R and Geovision GV-800 code in bttv driver abuses mbox_we (int) in struct bttv as char *. Remove this hack and add a proper sw_status array to struct bttv instead. This is a a preparation to remove mbox_we. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- drivers/media/pci

[PATCH 1/3] tea575x-tuner: move HW init to a separate function

2013-05-14 Thread Ondrej Zary
Move HW initialization to separate function to allow using the code without the v4l parts. This is needed for use in the bttv driver. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- include/sound/tea575x-tuner.h |1 + sound/i2c/other/tea575x-tuner.c | 19 +-- 2

[RFC PATCH 0/3] bttv: convert to generic TEA575x interface

2013-05-14 Thread Ondrej Zary
) and are emulated here using GPIOs. But the code manipulating these signals in bttv seems to be broken - it never asserts the IOR signal. If anyone has this HW, please test if I got that right. -- Ondrej Zary -- To unsubscribe from this list: send the line unsubscribe linux-media in the body

[PATCH 3/3] bttv: Convert to generic TEA575x interface

2013-05-14 Thread Ondrej Zary
Remove tea575x-specific code from bttv and use the common driver instead. Signed-off-by: Ondrej Zary li...@rainbow-software.org --- drivers/media/pci/bt8xx/bttv-cards.c | 317 - drivers/media/pci/bt8xx/bttv-driver.c |6 +- drivers/media/pci/bt8xx/bttvp.h

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

2013-06-13 Thread Ondrej Zary
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 --- drivers/media/radio/radio-maxiradio.c |2 +- drivers/media/radio/radio-sf16fmr2.c |2 +- drivers/media/radio/radio-shark.c

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

2013-06-13 Thread Ondrej Zary
Move tea575x from sound/i2c/other to drivers/media/radio Signed-off-by: Ondrej Zary li...@rainbow-software.org --- drivers/media/radio/Kconfig |5 + drivers/media/radio/Makefile|1 + drivers/media/radio/tea575x.c | 577 +++ sound/i2c/other

  1   2   >