|
@@ -52,6 +52,7 @@
|
|
|
#include "bsru6.h"
|
|
|
#include "tda1002x.h"
|
|
|
#include "tda827x.h"
|
|
|
+#include "bsbe1-d01a.h"
|
|
|
|
|
|
#define MODULE_NAME "budget_ci"
|
|
|
|
|
@@ -224,6 +225,7 @@ static int msp430_ir_init(struct budget_ci *budget_ci)
|
|
|
case 0x1017:
|
|
|
case 0x1019:
|
|
|
case 0x101a:
|
|
|
+ case 0x101b:
|
|
|
/* for the Technotrend 1500 bundled remote */
|
|
|
dev->map_name = RC_MAP_TT_1500;
|
|
|
break;
|
|
@@ -1388,6 +1390,23 @@ static void frontend_init(struct budget_ci *budget_ci)
|
|
|
}
|
|
|
break;
|
|
|
|
|
|
+ case 0x101b: /* TT S-1500B (BSBE1-D01A - STV0288/STB6000/LNBP21) */
|
|
|
+ budget_ci->budget.dvb_frontend = dvb_attach(stv0288_attach, &stv0288_bsbe1_d01a_config, &budget_ci->budget.i2c_adap);
|
|
|
+ if (budget_ci->budget.dvb_frontend) {
|
|
|
+ if (dvb_attach(stb6000_attach, budget_ci->budget.dvb_frontend, 0x63, &budget_ci->budget.i2c_adap)) {
|
|
|
+ if (!dvb_attach(lnbp21_attach, budget_ci->budget.dvb_frontend, &budget_ci->budget.i2c_adap, 0, 0)) {
|
|
|
+ printk(KERN_ERR "%s: No LNBP21 found!\n", __func__);
|
|
|
+ dvb_frontend_detach(budget_ci->budget.dvb_frontend);
|
|
|
+ budget_ci->budget.dvb_frontend = NULL;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ printk(KERN_ERR "%s: No STB6000 found!\n", __func__);
|
|
|
+ dvb_frontend_detach(budget_ci->budget.dvb_frontend);
|
|
|
+ budget_ci->budget.dvb_frontend = NULL;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+
|
|
|
case 0x1019: // TT S2-3200 PCI
|
|
|
/*
|
|
|
* NOTE! on some STB0899 versions, the internal PLL takes a longer time
|
|
@@ -1518,6 +1537,7 @@ MAKE_BUDGET_INFO(ttbtci, "TT-Budget-T-CI PCI", BUDGET_TT);
|
|
|
MAKE_BUDGET_INFO(ttbcci, "TT-Budget-C-CI PCI", BUDGET_TT);
|
|
|
MAKE_BUDGET_INFO(ttc1501, "TT-Budget C-1501 PCI", BUDGET_TT);
|
|
|
MAKE_BUDGET_INFO(tt3200, "TT-Budget S2-3200 PCI", BUDGET_TT);
|
|
|
+MAKE_BUDGET_INFO(ttbs1500b, "TT-Budget S-1500B PCI", BUDGET_TT);
|
|
|
|
|
|
static struct pci_device_id pci_tbl[] = {
|
|
|
MAKE_EXTENSION_PCI(ttbci, 0x13c2, 0x100c),
|
|
@@ -1528,6 +1548,7 @@ static struct pci_device_id pci_tbl[] = {
|
|
|
MAKE_EXTENSION_PCI(ttbs2, 0x13c2, 0x1017),
|
|
|
MAKE_EXTENSION_PCI(ttc1501, 0x13c2, 0x101a),
|
|
|
MAKE_EXTENSION_PCI(tt3200, 0x13c2, 0x1019),
|
|
|
+ MAKE_EXTENSION_PCI(ttbs1500b, 0x13c2, 0x101b),
|
|
|
{
|
|
|
.vendor = 0,
|
|
|
}
|