6bdcc6e6db
The code of the dvb-pll driver and the lgh06xf driver is nearly identical. The main difference is that the lgh06xf driver would set the AGC TOP value on every tune call. The dvb-pll driver now has the ability to set the AGC TOP when the front-end device is opened, which is a better way to go about it. By using this ability of dvb-pll, the lgh06xf driver is made unnecessary. There is one other difference. dvb-pll will probe for the presence of an I2C pll chip by doing a one byte read, the lgh06xf driver did not do this. In some devices the PLL is not reachable over I2C at the timer the tuner is attached. Some more initialization, such as firmware loading, must take place first. None of the devices using a LG-H06xF should have this problem. Signed-off-by: Trent Piepho <xyzzy@speakeasy.org> Acked-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
config DVB_B2C2_FLEXCOP
|
|
tristate "Technisat/B2C2 FlexCopII(b) and FlexCopIII adapters"
|
|
depends on DVB_CORE && I2C
|
|
select DVB_PLL
|
|
select DVB_STV0299 if !DVB_FE_CUSTOMISE
|
|
select DVB_MT352 if !DVB_FE_CUSTOMISE
|
|
select DVB_MT312 if !DVB_FE_CUSTOMISE
|
|
select DVB_NXT200X if !DVB_FE_CUSTOMISE
|
|
select DVB_STV0297 if !DVB_FE_CUSTOMISE
|
|
select DVB_BCM3510 if !DVB_FE_CUSTOMISE
|
|
select DVB_LGDT330X if !DVB_FE_CUSTOMISE
|
|
help
|
|
Support for the digital TV receiver chip made by B2C2 Inc. included in
|
|
Technisats PCI cards and USB boxes.
|
|
|
|
Say Y if you own such a device and want to use it.
|
|
|
|
config DVB_B2C2_FLEXCOP_PCI
|
|
tristate "Technisat/B2C2 Air/Sky/Cable2PC PCI"
|
|
depends on DVB_B2C2_FLEXCOP && PCI && I2C
|
|
help
|
|
Support for the Air/Sky/CableStar2 PCI card (DVB/ATSC) by Technisat/B2C2.
|
|
|
|
Say Y if you own such a device and want to use it.
|
|
|
|
config DVB_B2C2_FLEXCOP_USB
|
|
tristate "Technisat/B2C2 Air/Sky/Cable2PC USB"
|
|
depends on DVB_B2C2_FLEXCOP && USB && I2C
|
|
help
|
|
Support for the Air/Sky/Cable2PC USB1.1 box (DVB/ATSC) by Technisat/B2C2,
|
|
|
|
Say Y if you own such a device and want to use it.
|
|
|
|
config DVB_B2C2_FLEXCOP_DEBUG
|
|
bool "Enable debug for the B2C2 FlexCop drivers"
|
|
depends on DVB_B2C2_FLEXCOP
|
|
help
|
|
Say Y if you want to enable the module option to control debug messages
|
|
of all B2C2 FlexCop drivers.
|