4 Copyright (C) Manu Abraham (abraham.manu@gmail.com)
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include <linux/signal.h>
22 #include <linux/sched.h>
23 #include <linux/interrupt.h>
27 #include "dvb_demux.h"
28 #include "dvb_frontend.h"
32 #include "mantis_common.h"
33 #include "mantis_ioc.h"
34 #include "mantis_dvb.h"
35 #include "mantis_vp2040.h"
37 #define MANTIS_MODEL_NAME "VP-2040"
38 #define MANTIS_DEV_TYPE "DVB-C"
40 struct tda1002x_config vp2040_tda1002x_cu1216_config
= {
41 .demod_address
= 0x18 >> 1,
45 struct tda10023_config vp2040_tda10023_cu1216_config
= {
46 .demod_address
= 0x18 >> 1,
50 static int tda1002x_cu1216_tuner_set(struct dvb_frontend
*fe
)
52 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
53 struct mantis_pci
*mantis
= fe
->dvb
->priv
;
54 struct i2c_adapter
*adapter
= &mantis
->adapter
;
57 struct i2c_msg msg
= {.addr
= 0x60, .flags
= 0, .buf
= buf
, .len
= sizeof(buf
)};
60 #define CU1216_IF 36125000
61 #define TUNER_MUL 62500
63 u32 div
= (p
->frequency
+ CU1216_IF
+ TUNER_MUL
/ 2) / TUNER_MUL
;
65 buf
[0] = (div
>> 8) & 0x7f;
68 buf
[3] = (p
->frequency
< 150000000 ? 0x01 :
69 p
->frequency
< 445000000 ? 0x02 : 0x04);
73 if (fe
->ops
.i2c_gate_ctrl
)
74 fe
->ops
.i2c_gate_ctrl(fe
, 1);
76 if (i2c_transfer(adapter
, &msg
, 1) != 1)
79 /* wait for the pll lock */
82 for (i
= 0; i
< 20; i
++) {
83 if (fe
->ops
.i2c_gate_ctrl
)
84 fe
->ops
.i2c_gate_ctrl(fe
, 1);
86 if (i2c_transfer(adapter
, &msg
, 1) == 1 && (buf
[0] & 0x40))
92 /* switch the charge pump to the lower current */
97 if (fe
->ops
.i2c_gate_ctrl
)
98 fe
->ops
.i2c_gate_ctrl(fe
, 1);
100 if (i2c_transfer(adapter
, &msg
, 1) != 1)
106 static u8
read_pwm(struct mantis_pci
*mantis
)
108 struct i2c_adapter
*adapter
= &mantis
->adapter
;
112 struct i2c_msg msg
[] = {
113 {.addr
= 0x50, .flags
= 0, .buf
= &b
, .len
= 1},
114 {.addr
= 0x50, .flags
= I2C_M_RD
, .buf
= &pwm
, .len
= 1}
117 if ((i2c_transfer(adapter
, msg
, 2) != 2)
124 static int vp2040_frontend_init(struct mantis_pci
*mantis
, struct dvb_frontend
*fe
)
126 struct i2c_adapter
*adapter
= &mantis
->adapter
;
130 err
= mantis_frontend_power(mantis
, POWER_ON
);
132 mantis_frontend_soft_reset(mantis
);
135 dprintk(MANTIS_ERROR
, 1, "Probing for CU1216 (DVB-C)");
136 fe
= dvb_attach(tda10021_attach
, &vp2040_tda1002x_cu1216_config
,
141 dprintk(MANTIS_ERROR
, 1,
142 "found Philips CU1216 DVB-C frontend (TDA10021) @ 0x%02x",
143 vp2040_tda1002x_cu1216_config
.demod_address
);
145 fe
= dvb_attach(tda10023_attach
, &vp2040_tda10023_cu1216_config
,
150 dprintk(MANTIS_ERROR
, 1,
151 "found Philips CU1216 DVB-C frontend (TDA10023) @ 0x%02x",
152 vp2040_tda1002x_cu1216_config
.demod_address
);
157 fe
->ops
.tuner_ops
.set_params
= tda1002x_cu1216_tuner_set
;
158 dprintk(MANTIS_ERROR
, 1, "Mantis DVB-C Philips CU1216 frontend attach success");
163 dprintk(MANTIS_ERROR
, 1, "Frontend on <%s> POWER ON failed! <%d>",
170 dprintk(MANTIS_DEBUG
, 1, "Done!");
175 struct mantis_hwconfig vp2040_config
= {
176 .model_name
= MANTIS_MODEL_NAME
,
177 .dev_type
= MANTIS_DEV_TYPE
,
178 .ts_size
= MANTIS_TS_204
,
180 .baud_rate
= MANTIS_BAUD_9600
,
181 .parity
= MANTIS_PARITY_NONE
,
184 .frontend_init
= vp2040_frontend_init
,