|
@@ -28,6 +28,7 @@
|
|
#include "mantis_vp1033.h"
|
|
#include "mantis_vp1033.h"
|
|
#include "mantis_vp1034.h"
|
|
#include "mantis_vp1034.h"
|
|
#include "mantis_vp2033.h"
|
|
#include "mantis_vp2033.h"
|
|
|
|
+#include "mantis_vp2040.h"
|
|
#include "mantis_vp3030.h"
|
|
#include "mantis_vp3030.h"
|
|
|
|
|
|
/* Tuner power supply control */
|
|
/* Tuner power supply control */
|
|
@@ -243,7 +244,7 @@ int __devinit mantis_frontend_init(struct mantis_pci *mantis)
|
|
if (mantis->fe) {
|
|
if (mantis->fe) {
|
|
mantis->fe->ops.tuner_ops.set_params = philips_cu1216_tuner_set;
|
|
mantis->fe->ops.tuner_ops.set_params = philips_cu1216_tuner_set;
|
|
dprintk(verbose, MANTIS_ERROR, 1,
|
|
dprintk(verbose, MANTIS_ERROR, 1,
|
|
- "found Philips CU1216 DVB-C frontend @ 0x%02x",
|
|
|
|
|
|
+ "found Philips CU1216 DVB-C frontend (TDA10021) @ 0x%02x",
|
|
philips_cu1216_config.demod_address);
|
|
philips_cu1216_config.demod_address);
|
|
|
|
|
|
dprintk(verbose, MANTIS_ERROR, 1,
|
|
dprintk(verbose, MANTIS_ERROR, 1,
|
|
@@ -251,6 +252,19 @@ int __devinit mantis_frontend_init(struct mantis_pci *mantis)
|
|
|
|
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
|
|
+ case TERRATEC_CINERGY_C_PCI:
|
|
|
|
+ dprintk(verbose, MANTIS_ERROR, 1, "Probing for CU1216 (DVB-C)");
|
|
|
|
+ mantis->fe = tda10023_attach(&tda10023_cu1216_config, &mantis->adapter, read_pwm(mantis));
|
|
|
|
+ if (mantis->fe) {
|
|
|
|
+ mantis->fe->ops.tuner_ops.set_params = philips_cu1216_tuner_set;
|
|
|
|
+ dprintk(verbose, MANTIS_ERROR, 1,
|
|
|
|
+ "found Philips CU1216 DVB-C frontend (TDA10023) @ 0x%02x",
|
|
|
|
+ philips_cu1216_config.demod_address);
|
|
|
|
+
|
|
|
|
+ dprintk(verbose, MANTIS_ERROR, 1,
|
|
|
|
+ "Mantis DVB-C Philips CU1216 frontend attach success");
|
|
|
|
+ }
|
|
|
|
+ break;
|
|
default:
|
|
default:
|
|
dprintk(verbose, MANTIS_DEBUG, 1, "Unknown frontend:[0x%02x]",
|
|
dprintk(verbose, MANTIS_DEBUG, 1, "Unknown frontend:[0x%02x]",
|
|
mantis->sub_device_id);
|
|
mantis->sub_device_id);
|