Manu Abraham | 41e840b | 2009-12-02 21:57:10 -0300 | [diff] [blame] | 1 | /* |
| 2 | Mantis VP-2033 driver |
| 3 | |
Manu Abraham | 8825a09 | 2009-12-15 09:13:49 -0300 | [diff] [blame] | 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) |
Manu Abraham | 41e840b | 2009-12-02 21:57:10 -0300 | [diff] [blame] | 5 | |
| 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. |
| 10 | |
| 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. |
| 15 | |
| 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. |
| 19 | */ |
| 20 | |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 21 | #include <linux/signal.h> |
| 22 | #include <linux/sched.h> |
| 23 | #include <linux/interrupt.h> |
| 24 | |
| 25 | #include "dmxdev.h" |
| 26 | #include "dvbdev.h" |
| 27 | #include "dvb_demux.h" |
| 28 | #include "dvb_frontend.h" |
| 29 | #include "dvb_net.h" |
| 30 | |
| 31 | #include "tda1002x.h" |
Manu Abraham | 41e840b | 2009-12-02 21:57:10 -0300 | [diff] [blame] | 32 | #include "mantis_common.h" |
Manu Abraham | bc832fa | 2009-12-04 05:57:28 -0300 | [diff] [blame] | 33 | #include "mantis_ioc.h" |
| 34 | #include "mantis_dvb.h" |
Manu Abraham | 41e840b | 2009-12-02 21:57:10 -0300 | [diff] [blame] | 35 | #include "mantis_vp2033.h" |
| 36 | |
Manu Abraham | df0cca1 | 2009-12-02 22:07:24 -0300 | [diff] [blame] | 37 | #define MANTIS_MODEL_NAME "VP-2033" |
| 38 | #define MANTIS_DEV_TYPE "DVB-C" |
| 39 | |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 40 | struct tda1002x_config vp2033_tda1002x_cu1216_config = { |
Manu Abraham | 2687d83 | 2009-12-04 04:39:14 -0300 | [diff] [blame] | 41 | .demod_address = 0x18 >> 1, |
| 42 | .invert = 1, |
Manu Abraham | 41e840b | 2009-12-02 21:57:10 -0300 | [diff] [blame] | 43 | }; |
| 44 | |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 45 | struct tda10023_config vp2033_tda10023_cu1216_config = { |
| 46 | .demod_address = 0x18 >> 1, |
| 47 | .invert = 1, |
| 48 | }; |
| 49 | |
| 50 | static u8 read_pwm(struct mantis_pci *mantis) |
Manu Abraham | 2687d83 | 2009-12-04 04:39:14 -0300 | [diff] [blame] | 51 | { |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 52 | struct i2c_adapter *adapter = &mantis->adapter; |
| 53 | |
Manu Abraham | 2687d83 | 2009-12-04 04:39:14 -0300 | [diff] [blame] | 54 | u8 b = 0xff; |
| 55 | u8 pwm; |
| 56 | struct i2c_msg msg[] = { |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 57 | {.addr = 0x50, .flags = 0, .buf = &b, .len = 1}, |
| 58 | {.addr = 0x50, .flags = I2C_M_RD, .buf = &pwm, .len = 1} |
Manu Abraham | 2687d83 | 2009-12-04 04:39:14 -0300 | [diff] [blame] | 59 | }; |
| 60 | |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 61 | if ((i2c_transfer(adapter, msg, 2) != 2) |
Manu Abraham | 2687d83 | 2009-12-04 04:39:14 -0300 | [diff] [blame] | 62 | || (pwm == 0xff)) |
| 63 | pwm = 0x48; |
| 64 | |
| 65 | return pwm; |
| 66 | } |
| 67 | |
Mauro Carvalho Chehab | 14d24d1 | 2011-12-24 12:24:33 -0300 | [diff] [blame] | 68 | static int tda1002x_cu1216_tuner_set(struct dvb_frontend *fe) |
Manu Abraham | 41e840b | 2009-12-02 21:57:10 -0300 | [diff] [blame] | 69 | { |
Mauro Carvalho Chehab | f0b6c2a | 2011-12-23 07:10:02 -0300 | [diff] [blame] | 70 | struct dtv_frontend_properties *p = &fe->dtv_property_cache; |
Manu Abraham | 41e840b | 2009-12-02 21:57:10 -0300 | [diff] [blame] | 71 | struct mantis_pci *mantis = fe->dvb->priv; |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 72 | struct i2c_adapter *adapter = &mantis->adapter; |
Manu Abraham | 41e840b | 2009-12-02 21:57:10 -0300 | [diff] [blame] | 73 | |
Manu Abraham | 2687d83 | 2009-12-04 04:39:14 -0300 | [diff] [blame] | 74 | u8 buf[6]; |
Manu Abraham | f5ae4f6 | 2009-12-15 08:47:21 -0300 | [diff] [blame] | 75 | struct i2c_msg msg = {.addr = 0x60, .flags = 0, .buf = buf, .len = sizeof(buf)}; |
Manu Abraham | 2687d83 | 2009-12-04 04:39:14 -0300 | [diff] [blame] | 76 | int i; |
Manu Abraham | 41e840b | 2009-12-02 21:57:10 -0300 | [diff] [blame] | 77 | |
Manu Abraham | 2687d83 | 2009-12-04 04:39:14 -0300 | [diff] [blame] | 78 | #define CU1216_IF 36125000 |
Manu Abraham | 41e840b | 2009-12-02 21:57:10 -0300 | [diff] [blame] | 79 | #define TUNER_MUL 62500 |
| 80 | |
Mauro Carvalho Chehab | f0b6c2a | 2011-12-23 07:10:02 -0300 | [diff] [blame] | 81 | u32 div = (p->frequency + CU1216_IF + TUNER_MUL / 2) / TUNER_MUL; |
Manu Abraham | 41e840b | 2009-12-02 21:57:10 -0300 | [diff] [blame] | 82 | |
| 83 | buf[0] = (div >> 8) & 0x7f; |
| 84 | buf[1] = div & 0xff; |
Manu Abraham | 2687d83 | 2009-12-04 04:39:14 -0300 | [diff] [blame] | 85 | buf[2] = 0xce; |
Mauro Carvalho Chehab | f0b6c2a | 2011-12-23 07:10:02 -0300 | [diff] [blame] | 86 | buf[3] = (p->frequency < 150000000 ? 0x01 : |
| 87 | p->frequency < 445000000 ? 0x02 : 0x04); |
Manu Abraham | 2687d83 | 2009-12-04 04:39:14 -0300 | [diff] [blame] | 88 | buf[4] = 0xde; |
| 89 | buf[5] = 0x20; |
Manu Abraham | 41e840b | 2009-12-02 21:57:10 -0300 | [diff] [blame] | 90 | |
Manu Abraham | 2687d83 | 2009-12-04 04:39:14 -0300 | [diff] [blame] | 91 | if (fe->ops.i2c_gate_ctrl) |
| 92 | fe->ops.i2c_gate_ctrl(fe, 1); |
| 93 | |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 94 | if (i2c_transfer(adapter, &msg, 1) != 1) |
Manu Abraham | 41e840b | 2009-12-02 21:57:10 -0300 | [diff] [blame] | 95 | return -EIO; |
Manu Abraham | 2687d83 | 2009-12-04 04:39:14 -0300 | [diff] [blame] | 96 | |
| 97 | /* wait for the pll lock */ |
| 98 | msg.flags = I2C_M_RD; |
| 99 | msg.len = 1; |
| 100 | for (i = 0; i < 20; i++) { |
| 101 | if (fe->ops.i2c_gate_ctrl) |
| 102 | fe->ops.i2c_gate_ctrl(fe, 1); |
| 103 | |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 104 | if (i2c_transfer(adapter, &msg, 1) == 1 && (buf[0] & 0x40)) |
Manu Abraham | 2687d83 | 2009-12-04 04:39:14 -0300 | [diff] [blame] | 105 | break; |
| 106 | |
| 107 | msleep(10); |
Manu Abraham | 41e840b | 2009-12-02 21:57:10 -0300 | [diff] [blame] | 108 | } |
Manu Abraham | 2687d83 | 2009-12-04 04:39:14 -0300 | [diff] [blame] | 109 | |
| 110 | /* switch the charge pump to the lower current */ |
| 111 | msg.flags = 0; |
| 112 | msg.len = 2; |
| 113 | msg.buf = &buf[2]; |
| 114 | buf[2] &= ~0x40; |
| 115 | if (fe->ops.i2c_gate_ctrl) |
| 116 | fe->ops.i2c_gate_ctrl(fe, 1); |
| 117 | |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 118 | if (i2c_transfer(adapter, &msg, 1) != 1) |
Manu Abraham | 2687d83 | 2009-12-04 04:39:14 -0300 | [diff] [blame] | 119 | return -EIO; |
Manu Abraham | da7365f | 2009-12-02 22:11:00 -0300 | [diff] [blame] | 120 | |
Manu Abraham | 41e840b | 2009-12-02 21:57:10 -0300 | [diff] [blame] | 121 | return 0; |
| 122 | } |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 123 | |
| 124 | static int vp2033_frontend_init(struct mantis_pci *mantis, struct dvb_frontend *fe) |
| 125 | { |
| 126 | struct i2c_adapter *adapter = &mantis->adapter; |
| 127 | |
Manu Abraham | bc832fa | 2009-12-04 05:57:28 -0300 | [diff] [blame] | 128 | int err = 0; |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 129 | |
Manu Abraham | bc832fa | 2009-12-04 05:57:28 -0300 | [diff] [blame] | 130 | err = mantis_frontend_power(mantis, POWER_ON); |
| 131 | if (err == 0) { |
| 132 | mantis_frontend_soft_reset(mantis); |
| 133 | msleep(250); |
| 134 | |
| 135 | dprintk(MANTIS_ERROR, 1, "Probing for CU1216 (DVB-C)"); |
Bjørn Mork | a22407f | 2010-11-14 14:24:36 -0300 | [diff] [blame] | 136 | fe = dvb_attach(tda10021_attach, &vp2033_tda1002x_cu1216_config, |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 137 | adapter, |
| 138 | read_pwm(mantis)); |
| 139 | |
| 140 | if (fe) { |
| 141 | dprintk(MANTIS_ERROR, 1, |
Manu Abraham | bc832fa | 2009-12-04 05:57:28 -0300 | [diff] [blame] | 142 | "found Philips CU1216 DVB-C frontend (TDA10021) @ 0x%02x", |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 143 | vp2033_tda1002x_cu1216_config.demod_address); |
Manu Abraham | bc832fa | 2009-12-04 05:57:28 -0300 | [diff] [blame] | 144 | } else { |
Bjørn Mork | a22407f | 2010-11-14 14:24:36 -0300 | [diff] [blame] | 145 | fe = dvb_attach(tda10023_attach, &vp2033_tda10023_cu1216_config, |
Manu Abraham | bc832fa | 2009-12-04 05:57:28 -0300 | [diff] [blame] | 146 | adapter, |
| 147 | read_pwm(mantis)); |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 148 | |
Manu Abraham | bc832fa | 2009-12-04 05:57:28 -0300 | [diff] [blame] | 149 | if (fe) { |
| 150 | dprintk(MANTIS_ERROR, 1, |
| 151 | "found Philips CU1216 DVB-C frontend (TDA10023) @ 0x%02x", |
| 152 | vp2033_tda1002x_cu1216_config.demod_address); |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | if (fe) { |
| 157 | fe->ops.tuner_ops.set_params = tda1002x_cu1216_tuner_set; |
| 158 | dprintk(MANTIS_ERROR, 1, "Mantis DVB-C Philips CU1216 frontend attach success"); |
| 159 | } else { |
| 160 | return -1; |
| 161 | } |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 162 | } else { |
Manu Abraham | bc832fa | 2009-12-04 05:57:28 -0300 | [diff] [blame] | 163 | dprintk(MANTIS_ERROR, 1, "Frontend on <%s> POWER ON failed! <%d>", |
| 164 | adapter->name, |
| 165 | err); |
| 166 | |
| 167 | return -EIO; |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | mantis->fe = fe; |
| 171 | dprintk(MANTIS_DEBUG, 1, "Done!"); |
| 172 | |
| 173 | return 0; |
| 174 | } |
| 175 | |
| 176 | struct mantis_hwconfig vp2033_config = { |
| 177 | .model_name = MANTIS_MODEL_NAME, |
| 178 | .dev_type = MANTIS_DEV_TYPE, |
| 179 | .ts_size = MANTIS_TS_204, |
| 180 | |
| 181 | .baud_rate = MANTIS_BAUD_9600, |
| 182 | .parity = MANTIS_PARITY_NONE, |
| 183 | .bytes = 0, |
| 184 | |
| 185 | .frontend_init = vp2033_frontend_init, |
Manu Abraham | bc832fa | 2009-12-04 05:57:28 -0300 | [diff] [blame] | 186 | .power = GPIF_A12, |
| 187 | .reset = GPIF_A13, |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 188 | }; |