|
@@ -69,6 +69,7 @@
|
|
|
#include "stb6100_cfg.h"
|
|
|
#include "tda10071.h"
|
|
|
#include "a8293.h"
|
|
|
+#include "mb86a20s.h"
|
|
|
|
|
|
static unsigned int debug;
|
|
|
|
|
@@ -492,6 +493,15 @@ static struct xc5000_config mygica_x8506_xc5000_config = {
|
|
|
.if_khz = 5380,
|
|
|
};
|
|
|
|
|
|
+static struct mb86a20s_config mygica_x8507_mb86a20s_config = {
|
|
|
+ .demod_address = 0x10,
|
|
|
+};
|
|
|
+
|
|
|
+static struct xc5000_config mygica_x8507_xc5000_config = {
|
|
|
+ .i2c_address = 0x61,
|
|
|
+ .if_khz = 4000,
|
|
|
+};
|
|
|
+
|
|
|
static struct stv090x_config prof_8000_stv090x_config = {
|
|
|
.device = STV0903,
|
|
|
.demod_mode = STV090x_SINGLE,
|
|
@@ -548,6 +558,7 @@ static int cx23885_dvb_set_frontend(struct dvb_frontend *fe)
|
|
|
}
|
|
|
break;
|
|
|
case CX23885_BOARD_MYGICA_X8506:
|
|
|
+ case CX23885_BOARD_MYGICA_X8507:
|
|
|
case CX23885_BOARD_MAGICPRO_PROHDTVE2:
|
|
|
/* Select Digital TV */
|
|
|
cx23885_gpio_set(dev, GPIO_0);
|
|
@@ -1114,6 +1125,20 @@ static int dvb_register(struct cx23885_tsport *port)
|
|
|
}
|
|
|
cx23885_set_frontend_hook(port, fe0->dvb.frontend);
|
|
|
break;
|
|
|
+ case CX23885_BOARD_MYGICA_X8507:
|
|
|
+ i2c_bus = &dev->i2c_bus[0];
|
|
|
+ i2c_bus2 = &dev->i2c_bus[1];
|
|
|
+ fe0->dvb.frontend = dvb_attach(mb86a20s_attach,
|
|
|
+ &mygica_x8507_mb86a20s_config,
|
|
|
+ &i2c_bus->i2c_adap);
|
|
|
+ if (fe0->dvb.frontend != NULL) {
|
|
|
+ dvb_attach(xc5000_attach,
|
|
|
+ fe0->dvb.frontend,
|
|
|
+ &i2c_bus2->i2c_adap,
|
|
|
+ &mygica_x8507_xc5000_config);
|
|
|
+ }
|
|
|
+ cx23885_set_frontend_hook(port, fe0->dvb.frontend);
|
|
|
+ break;
|
|
|
case CX23885_BOARD_MAGICPRO_PROHDTVE2:
|
|
|
i2c_bus = &dev->i2c_bus[0];
|
|
|
i2c_bus2 = &dev->i2c_bus[1];
|