[PATCH 3/4] tuner-core: Change config from unsigned int to void *

2013-01-20 Thread Ondrej Zary
ich allows passing tuner-dependent config struct to drivers. Also update saa7134 driver to reflect this change (no other driver uses this). Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-cards.c | 40 ++-- drivers/media/pci/saa7134/saa7134.h

[PATCH 4/4] saa7134: Add AverMedia A706 AverTV Satellite Hybrid+FM

2013-01-20 Thread Ondrej Zary
Add AverMedia AverTV Satellite Hybrid+FM (A706) card to saa7134 driver. Working: analog inputs, TV, FM radio and IR remote control. Untested: DVB-S. Signed-off-by: Ondrej Zary --- drivers/media/i2c/ir-kbd-i2c.c | 13 ++- drivers/media/pci/saa7134/saa7134-cards.c | 53

Re: [PATCH 1/4] tda8290: Allow disabling I2C gate

2013-01-21 Thread Ondrej Zary
On Monday 21 January 2013, Antti Palosaari wrote: > On 01/20/2013 11:22 PM, Ondrej Zary wrote: > > Allow disabling I2C gate handling by external configuration. > > This is required by cards that have all devices on a single I2C bus, > > like AverMedia A706. > > My person

Re: [PATCH 1/4] tda8290: Allow disabling I2C gate

2013-01-21 Thread Ondrej Zary
On Monday 21 January 2013 10:06:01 Antti Palosaari wrote: > On 01/21/2013 10:18 AM, Ondrej Zary wrote: > > On Monday 21 January 2013, Antti Palosaari wrote: > >> On 01/20/2013 11:22 PM, Ondrej Zary wrote: > >>> Allow disabling I2C gate handling by external configurat

[RFC PATCH 0/7] saa7134: improve v4l2-compliance

2013-01-27 Thread Ondrej Zary
FMT: FAIL fail: v4l2-test-formats.cpp(432): vbi.reserved not zeroed fail: v4l2-test-formats.cpp(728): VBI Capture is valid, but no S_FMT was implemented test VIDIOC_S_FMT: FAIL -- Ondrej Zary -- To unsubscribe from this list: send the line "unsubscr

[PATCH 1/7] saa7134: v4l2-compliance: implement V4L2_CAP_DEVICE_CAPS

2013-01-27 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: implement V4L2_CAP_DEVICE_CAPS support and fix all capabilities problems reported by v4l2-compliance. Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-video.c | 55 1 files changed, 31 insertions(+), 24

[PATCH 2/7] saa7134: v4l2-compliance: don't report invalid audio modes for radio

2013-01-27 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: filter audio modes that came from tuner - keep only MONO/STEREO in radio mode Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-video.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/media/pci/saa7134

[PATCH 3/7] saa7134: v4l2-compliance: use v4l2_fh to fix priority handling

2013-01-27 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: remove broken priority handling and use v4l2_fh instead Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-core.c |3 +- drivers/media/pci/saa7134/saa7134-video.c | 61 +++- drivers/media/pci/saa7134/saa7134.h

[PATCH 4/7] saa7134: v4l2-compliance: return real frequency

2013-01-27 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: don't cache frequency in s_frequency/g_frequency but return real one instead Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-video.c |6 -- drivers/media/pci/saa7134/saa7134.h |1 - 2 files changed, 4 insertions(

[PATCH 5/7] saa7134: v4l2-compliance: fix g_tuner/s_tuner

2013-01-27 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: return real frequency range in g_tuner and fail in s_tuner for non-zero tuner Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-video.c |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/drivers/media/pci/saa7134

[PATCH 6/7] saa7134: v4l2-compliance: remove V4L2_IN_ST_NO_SYNC from enum_input

2013-01-27 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: don't set bogus V4L2_IN_ST_NO_SYNC flag in enum_input as it's for digital video only Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-video.c |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/drivers

[PATCH 7/7] saa7134: v4l2-compliance: remove bogus audio input support

2013-01-27 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: remove empty g_audio and s_audio functions and don't set audioset in enum_input Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-video.c | 30 - 1 files changed, 0 insertions(+), 30 deletions(-) diff --

[PATCH 4/4 v2] saa7134: Add AverMedia A706 AverTV Satellite Hybrid+FM

2013-01-27 Thread Ondrej Zary
Add AverMedia AverTV Satellite Hybrid+FM (A706) card to saa7134 driver. Working: analog inputs, TV, FM radio and IR remote control. Untested: DVB-S. Signed-off-by: Ondrej Zary --- v2: added msleep() to dvb init to allow chips to come out of reset drivers/media/i2c/ir-kbd-i2c.c

[PATCH 8/7] saa7134: v4l2-compliance: remove bogus g_parm

2013-01-28 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: remove empty g_parm function Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-video.c |7 --- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/drivers/media/pci/saa7134/saa7134-video.c b/drivers/media/pci/saa7134

[PATCH 9/7] saa7134: v4l2-compliance: initialize VBI structure

2013-01-28 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: clear VBI structure completely before assigning values to make sure any reserved space is cleared Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-video.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers

Re: [RFC PATCH 0/7] saa7134: improve v4l2-compliance

2013-01-28 Thread Ondrej Zary
On Monday 28 January 2013 11:56:59 Hans Verkuil wrote: > On Sun January 27 2013 20:45:05 Ondrej Zary wrote: > > Hello, > > this patch series improves v4l2-compliance of saa7134 driver. There are > > still some problems. Controls require conversion to control framework >

[PATCH v2 0/4] saa7134: Add AverMedia A706 AverTV Satellite Hybrid+FM

2013-02-01 Thread Ondrej Zary
nalog tuners. -- 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/4] tda8290: Allow disabling I2C gate

2013-02-01 Thread Ondrej Zary
Allow disabling I2C gate handling by external configuration. This is required by cards that have all devices on a single I2C bus, like AverMedia A706. Signed-off-by: Ondrej Zary --- drivers/media/tuners/tda8290.c | 49 +++ drivers/media/tuners/tda8290.h

[PATCH 2/4] tda8290: Allow custom std_map for tda18271

2013-02-01 Thread Ondrej Zary
Allow specifying a custom std_map for tda18271 by external configuration. This is required by cards that require custom std_map for analog TV or radio, like AverMedia A706. Signed-off-by: Ondrej Zary --- drivers/media/tuners/tda8290.c |8 ++-- drivers/media/tuners/tda8290.h |2 ++ 2

[PATCH 3/4] tuner-core: Change config from unsigned int to void *

2013-02-01 Thread Ondrej Zary
ich allows passing tuner-dependent config struct to drivers. Also update saa7134 driver to reflect this change (no other driver uses this). Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-cards.c | 40 ++-- drivers/media/pci/saa7134/saa7134.h

[PATCH 4/4] saa7134: Add AverMedia A706 AverTV Satellite Hybrid+FM

2013-02-01 Thread Ondrej Zary
Add AverMedia AverTV Satellite Hybrid+FM (A706) card to saa7134 driver. Working: analog inputs, TV, FM radio and IR remote control. Untested: DVB-S. Signed-off-by: Ondrej Zary --- drivers/media/i2c/ir-kbd-i2c.c | 13 ++- drivers/media/pci/saa7134/saa7134-cards.c | 53

[PATCH 0/8] saa7134: improve v4l2-compliance

2013-02-01 Thread Ondrej Zary
This patch series improves v4l2-compliance of saa7134 driver. This includes only easy-to-fix things. More work is needed to fix the other problems. -- Ondrej Zary -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kerne

[PATCH 1/8] saa7134: v4l2-compliance: implement V4L2_CAP_DEVICE_CAPS

2013-02-01 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: implement V4L2_CAP_DEVICE_CAPS support and fix all capabilities problems reported by v4l2-compliance. Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-video.c | 58 + 1 files changed, 34 insertions(+), 24

[PATCH 2/8] saa7134: v4l2-compliance: don't report invalid audio modes for radio

2013-02-01 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: filter audio modes that came from tuner - keep only MONO/STEREO in radio mode Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-video.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/media/pci/saa7134

[PATCH 3/8] saa7134: v4l2-compliance: use v4l2_fh to fix priority handling

2013-02-01 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: remove broken priority handling and use v4l2_fh instead Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-core.c |3 +- drivers/media/pci/saa7134/saa7134-video.c | 61 +++- drivers/media/pci/saa7134/saa7134.h

[PATCH 4/8] saa7134: v4l2-compliance: return real frequency

2013-02-01 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: don't cache frequency in s_frequency/g_frequency but return real one instead Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-video.c |6 -- drivers/media/pci/saa7134/saa7134.h |1 - 2 files changed, 4 insertions(

[PATCH 5/8] saa7134: v4l2-compliance: fix g_tuner/s_tuner

2013-02-01 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: return real frequency range in g_tuner and fail in s_tuner for non-zero tuner Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-video.c |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/drivers/media/pci/saa7134

[PATCH 6/8] saa7134: v4l2-compliance: remove bogus audio input support

2013-02-01 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: remove empty g_audio and s_audio functions and don't set audioset in enum_input Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-video.c | 30 - 1 files changed, 0 insertions(+), 30 deletions(-) diff --

[PATCH 7/8] saa7134: v4l2-compliance: remove bogus g_parm

2013-02-01 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: remove empty g_parm function Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-video.c |7 --- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/drivers/media/pci/saa7134/saa7134-video.c b/drivers/media/pci/saa7134

[PATCH 8/8] saa7134: v4l2-compliance: clear reserved part of VBI structure

2013-02-01 Thread Ondrej Zary
Make saa7134 driver more V4L2 compliant: clear reserved space of VBI structure to make sure no garbage is left there Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-video.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/media/pci/saa7134

Re: [PATCH 1/4] tda8290: Allow disabling I2C gate

2013-02-04 Thread Ondrej Zary
On Monday 04 February 2013 03:19:37 Michael Krufky wrote: > On Fri, Feb 1, 2013 at 3:21 PM, Ondrej Zary wrote: > > Allow disabling I2C gate handling by external configuration. > > This is required by cards that have all devices on a single I2C bus, > > like AverMedia A706.

[PATCH] tda8290: change magic LNA config values to enum

2013-02-04 Thread Ondrej Zary
Use enum instead of magic values for LNA config in tda8290. Update tda827x, tda18271 and saa7134 to use the enum too. Signed-off-by: Ondrej Zary --- drivers/media/pci/saa7134/saa7134-cards.c | 41 +++-- drivers/media/tuners/tda18271-fe.c|9 +++--- drivers

Re: [PATCH v2 0/4] saa7134: Add AverMedia A706 AverTV Satellite Hybrid+FM

2013-02-16 Thread Ondrej Zary
On Friday 01 February 2013 21:21:23 Ondrej Zary wrote: > Add AverMedia AverTV Satellite Hybrid+FM (A706) card to saa7134 driver. > > This requires some changes to tda8290 - disabling I2C gate control and > passing custom std_map to tda18271. > Also tuner-core needs to be changed

[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 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 +26,7 @@ #include

[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 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-gemtek.c +++ b/drivers/media

Re: Dazzle DVC80 under FC16

2012-05-09 Thread Ondrej Zary
for this, but it just crashes and ABRT > launches for me to fill a bug. > > Any ideas? Please include the output of "lsusb -v" for this device (run the command as root). -- 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: Dazzle DVC80 under FC16

2012-05-09 Thread Ondrej Zary
how that usbvision module is loaded but fails to set altsetting to 1. Probably because the device has two interfaces (note that the driver is also initialized twice). -- Ondrej Zary -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to ma

Re: Dazzle DVC80 under FC16

2012-05-09 Thread Ondrej Zary
On Wednesday 09 May 2012 18:20:18 Bruno Martins wrote: > On 05/09/2012 04:32 PM, Ondrej Zary wrote: > > On Wednesday 09 May 2012, Bruno Martins wrote: > >> Hello guys, > >> > >> Has anyone ever got this to working under any Linux distro, including > >>

[PATCH] radio-sf16fmr2: add PnP support for SF16-FMD2

2012-05-13 Thread Ondrej Zary
"pnp_reserve_io=0x384,2" so the FMD2 is put at 0x284). Signed-off-by: Ondrej Zary --- a/drivers/media/radio/Kconfig +++ b/drivers/media/radio/Kconfig @@ -329,7 +329,7 @@ config RADIO_SF16FMI module will be called radio-sf16fmi. config RADIO_SF16FMR2 - tristate "

[PATCH] [resend] radio-sf16fmr2: add PnP support for SF16-FMD2

2012-05-17 Thread Ondrej Zary
"pnp_reserve_io=0x384,2" so the FMD2 is put at 0x284). Signed-off-by: Ondrej Zary --- a/drivers/media/radio/Kconfig +++ b/drivers/media/radio/Kconfig @@ -329,7 +329,7 @@ config RADIO_SF16FMI module will be called radio-sf16fmi. config RADIO_SF16FMR2 - tristate "

[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 --- drivers/media/pci/bt8xx/bttv-cards.c | 26

[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 --- include/sound/tea575x-tuner.h |1 + sound/i2c/other/tea575x-tuner.c | 19 +-- 2 files changed, 14

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

2013-05-14 Thread Ondrej Zary
coder) 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&qu

[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 --- drivers/media/pci/bt8xx/bttv-cards.c | 317 - drivers/media/pci/bt8xx/bttv-driver.c |6 +- drivers/media/pci/bt8xx/bttvp.h | 14 +- sound/pci

[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 --- drivers/media/radio/radio-maxiradio.c |2 +- drivers/media/radio/radio-sf16fmr2.c |2 +- drivers/media/radio/radio-shark.c |2 +- include/media

[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 --- drivers/media/radio/Kconfig |5 + drivers/media/radio/Makefile|1 + drivers/media/radio/tea575x.c | 577 +++ sound/i2c/other/Makefile|2

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

2013-06-13 Thread Ondrej Zary
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. I guess the Kconfig dependencies are not correct. -- Ondrej Zary -- To unsubscribe from this list: send the

[PATCH 1/2] radio-sf16fmi: Add module name to bus_info

2013-06-14 Thread Ondrej Zary
Fix v4l2-compliance in VIDIOC_QUERYCAP by changing "ISA" to "ISA:radio-sf16fmi". Signed-off-by: Ondrej Zary --- drivers/media/radio/radio-sf16fmi.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/radio/radio-sf16fmi.c b/drive

[PATCH 0/2] radio-sf16fmi: Fix remaining v4l2-compliance problems

2013-06-14 Thread Ondrej Zary
These patches fix two remaining v4l2-compliance problems of radio-sf16fmi driver after control framework conversion: http://www.mail-archive.com/linux-media%40vger.kernel.org/msg62772.html Tested with SF16-FMI card. -- Ondrej Zary -- To unsubscribe from this list: send the line "unsubs

[PATCH 2/2] radio-sf16fmi: Set frequency during init

2013-06-14 Thread Ondrej Zary
Set freqency during initialization to fix v4l2-compliance error. This also fixes VIDIOC_G_FREQUENCY always returning zero (broken by me during LM7000 conversion). Signed-off-by: Ondrej Zary --- drivers/media/radio/radio-sf16fmi.c | 25 + 1 files changed, 17 insertions

[PATCH 2/2] radio-aztech: Implement signal strength detection and fix stereo detection

2013-07-19 Thread Ondrej Zary
Current stereo detection code is wrong - it reads TUNED bit instead of STEREO bit. Fix that and implement signal strength detection too. Also remove useless s_stereo functionn. Signed-off-by: Ondrej Zary --- drivers/media/radio/radio-aztech.c | 13 - 1 files changed, 4 insertions

[PATCH 1/2] radio-aztech: Convert to generic lm7000 implementation

2013-07-19 Thread Ondrej Zary
.region_size = 2, + .region_size = 8, .card = "Aztech Radio", .ops = &aztech_ops, .has_stereo = true, -- 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: [alsa-devel] tea575x-tuner improvements & use in maxiradio

2012-02-07 Thread Ondrej Zary
27;t found a delay that works). Reading it later (copied back snd_tea575x_get_freq function) works. The chip seeks randomly up or down, ignoring UP/DOWN flag 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

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

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

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

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

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

PnP support for the new ISA radio framework?

2012-02-18 Thread Ondrej Zary
sa.c does: struct 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.

[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 --- a/sound/i2c

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 > &g

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

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

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 Feb

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

2012-02-28 Thread Ondrej Zary
_devices, + .probe = radio_isa_pnp_probe, + .remove = radio_isa_pnp_remove, + }, +#endif .io_params = io, .radio_nr_params = radio_nr, .io_ports = gemtek_ioports, @@ -304,12 +324,14 @@ static struct radio_isa_driver gemtek_driver = { sta

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

2012-03-01 Thread Ondrej Zary
_devices, + .probe = radio_isa_pnp_probe, + .remove = radio_isa_pnp_remove, + }, +#endif .io_params = io, .radio_nr_params = radio_nr, .io_ports = gemtek_ioports, @@ -304,12 +324,14 @@ static struct radio_isa_driver gemtek_driver = { sta

[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 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 +26,7 @@ #include

[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 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-gemtek.c +++ b/drivers/media

[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 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 +26,7 @@ #include

[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 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-gemtek.c +++ b/drivers/media

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)

[PATCH] radio-sf16fmi: add support for SF16-FMD

2012-05-19 Thread Ondrej Zary
Add support for SF16-FMD card to radio-sf16fmi driver. Only new PnP ID is added and texts changed. Signed-off-by: Ondrej Zary --- a/drivers/media/radio/Kconfig +++ b/drivers/media/radio/Kconfig @@ -320,7 +320,7 @@ config RADIO_MIROPCM20 module will be called radio-miropcm20. config

Re: RFC: V4L2 API and radio devices with multiple tuners

2012-05-19 Thread Ondrej Zary
x, > which are the only 2 AM capable radio devices we currently know about. When working on tea575x driver, I thought that it would be nice to implement AM. But found that none of my cards with TEA575x has implemented the AM part. The components required to receive AM radio (according to the chip da

Re: [PATCH 0/6] snd_tea575x: Various patches

2012-05-22 Thread Ondrej Zary
ding > the v4l2 API and radio devices with multiple tuners. I plan to add patches > 1-5 to my next pull request to Mauro, I will leave patch 6 out until the > API discussion is done. I tested the patches with FM-only card (SF16-FMD2) and haven't found any problems. -- Ondrej Zar

[PATCH 1/3] radio: Add Sanyo LM7000 tuner driver

2012-06-12 Thread Ondrej Zary
Add very simple driver for Sanyo LM7000 AM/FM tuner chip. Only FM is supported as there is no known HW with AM implemented. This will be used by radio-aimslab and radio-sf16fmi. Signed-off-by: Ondrej Zary diff --git a/drivers/media/radio/Kconfig b/drivers/media/radio/Kconfig index c257da1

[PATCH 2/3] radio-aimslab: Use LM7000 driver

2012-06-12 Thread Ondrej Zary
Convert radio-aimslab to use generic LM7000 driver. Tested with Reveal RA300. Signed-off-by: Ondrej Zary diff --git a/drivers/media/radio/Kconfig b/drivers/media/radio/Kconfig index 5bcce12..abdf43c 100644 --- a/drivers/media/radio/Kconfig +++ b/drivers/media/radio/Kconfig @@ -193,11 +193,14

[PATCH 3/3] radio-sf16fmi: Use LM7000 driver

2012-06-12 Thread Ondrej Zary
Convert radio-sf16fmi to use generic LM7000 driver. Tested with SF16-FMI, SF16-FMP and SF16-FMD. Signed-off-by: Ondrej Zary diff --git a/drivers/media/radio/Kconfig b/drivers/media/radio/Kconfig index abdf43c..f4c3924 100644 --- a/drivers/media/radio/Kconfig +++ b/drivers/media/radio/Kconfig

Re: [PATCH 1/3] radio: Add Sanyo LM7000 tuner driver

2012-06-12 Thread Ondrej Zary
On Tuesday 12 June 2012 22:17:43 Hans Verkuil wrote: > Hi Ondrej! > > On Tue June 12 2012 20:37:54 Ondrej Zary wrote: > > Add very simple driver for Sanyo LM7000 AM/FM tuner chip. Only FM is > > supported as there is no known HW with AM implemented. > > It feels to me

[PATCH v2 1/3] radio: Add Sanyo LM7000 tuner driver

2012-06-13 Thread Ondrej Zary
Add very simple driver for Sanyo LM7000 AM/FM tuner chip. Only FM is supported as there is no known HW with AM implemented. This will be used by radio-aimslab and radio-sf16fmi. Signed-off-by: Ondrej Zary diff --git a/drivers/media/radio/lm7000.h b/drivers/media/radio/lm7000.h new file mode

[PATCH v2 2/3] radio-aimslab: Use LM7000 driver

2012-06-13 Thread Ondrej Zary
Convert radio-aimslab to use generic LM7000 driver. Tested with Reveal RA300. Signed-off-by: Ondrej Zary --- a/drivers/media/radio/radio-aimslab.c +++ b/drivers/media/radio/radio-aimslab.c @@ -37,6 +37,7 @@ #include #include #include "radio-isa.h" +#include "lm7000.h"

[PATCH v2 3/3] radio-sf16fmi: Use LM7000 driver

2012-06-13 Thread Ondrej Zary
Convert radio-sf16fmi to use generic LM7000 driver. Tested with SF16-FMI, SF16-FMP and SF16-FMD. Signed-off-by: Ondrej Zary --- a/drivers/media/radio/radio-sf16fmi.c +++ b/drivers/media/radio/radio-sf16fmi.c @@ -27,6 +27,7 @@ #include /* outb, outb_p */ #include

Re: [PATCH v2 0/4] saa7134: Add AverMedia A706 AverTV Satellite Hybrid+FM

2013-03-06 Thread Ondrej Zary
On Monday 18 February 2013 03:57:01 Michael Krufky wrote: > On Sat, Feb 16, 2013 at 11:39 AM, Ondrej Zary > > wrote: > > On Friday 01 February 2013 21:21:23 Ondrej Zary wrote: > >> Add AverMedia AverTV Satellite Hybrid+FM (A706) card to saa7134 driver. > >> &

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 majordo

[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 diff --git a/drivers/media/pci/bt8xx/bttv-cards.c b/drivers

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 &quo

[PATCH] bttv: Add CyberVision CV06

2013-04-14 Thread Ondrej Zary
y and CyberVision CV8088-SV16 chip Signed-off-by: Ondrej Zary 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 +2833,16 @@ struct t

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 conne

uvcvideo: Finally fix Logitech Quickcam for Notebooks Pro

2009-10-06 Thread Ondrej Zary
vcvideo", it works. So 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: se

[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

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 wrote: > > [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. Doi

[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 --- 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 +304,7 @@ #define

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

2009-10-08 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) wh

[PATCH] gspca-stk1135: Add delay after configuring clock

2013-11-02 Thread Ondrej Zary
Add a small delay at the end of configure_clock() to allow sensor to initialize. This is needed by Asus VX2S laptop webcam to detect sensor type properly (the already-supported MT9M112). Signed-off-by: Ondrej Zary --- drivers/media/usb/gspca/stk1135.c |3 +++ 1 file changed, 3 insertions

[PATCH] [RESEND] gspca-stk1135: Add delay after configuring clock

2013-11-11 Thread Ondrej Zary
Add a small delay at the end of configure_clock() to allow sensor to initialize. This is needed by Asus VX2S laptop webcam to detect sensor type properly (the already-supported MT9M112). Signed-off-by: Ondrej Zary --- drivers/media/usb/gspca/stk1135.c |3 +++ 1 file changed, 3 insertions

[PATCH] bttv: Convert to generic TEA575x interface

2013-11-22 Thread Ondrej Zary
s. 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. Signed-off-by: Ondrej Zary --- drivers/media/pci/bt8xx/Kconfig |1 + drivers/media/pci/bt8xx/bttv-cards

Re: [PATCH 0/3] Deprecate drivers

2014-12-12 Thread Ondrej Zary
On Wednesday 10 December 2014, Hans Verkuil wrote: > On 12/02/14 23:42, Ondrej Zary wrote: > > On Tuesday 02 December 2014 16:40:30 Hans Verkuil wrote: > >> This patch series deprecates the vino/saa7191 video driver (ancient SGI > >> Indy computer), the parallel port

Re: [PATCH 0/3] Deprecate drivers

2014-12-21 Thread Ondrej Zary
On Friday 12 December 2014 15:32:35 Hans Verkuil wrote: > On 12/12/2014 03:29 PM, Ondrej Zary wrote: > > On Wednesday 10 December 2014, Hans Verkuil wrote: > >> On 12/02/14 23:42, Ondrej Zary wrote: > >>> On Tuesday 02 December 2014 16:40:30 Hans Verkuil wrote: >

CMYG support in V4L2

2014-12-29 Thread Ondrej Zary
t, move the conversion to libv4lconvert and remove all controls not provided by hardware? -- 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: Video resolution limited to 32x32 pixels in Skype with Syntek 1135 webcam

2015-01-02 Thread Ondrej Zary
s max for the camera). > > Is there any way to debug the driver (gspca_stk1135) and v4l to find > out the root cause of the issue? The driver supports variable resolution from 32x32 to 1280x1024 in 2 pixel steps. The problem is that some programs are crap and cannot handle that. -- Ond

[PATCH] bttv: Convert to generic TEA575x interface

2015-01-13 Thread Ondrej Zary
lated 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. Signed-off-by: Ondrej Zary --- drivers/media/pci/bt8xx/Kconfig |3 + drivers/media/pci/bt8xx/bttv-ca

<    1   2   3   >