Patrick Boettcher | fb41f5a | 2005-07-07 17:58:23 -0700 | [diff] [blame] | 1 | /* Frontend part of the Linux driver for the WideView/ Yakumo/ Hama/ |
| 2 | * Typhoon/ Yuan DVB-T USB2.0 receiver. |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2005 Patrick Boettcher <patrick.boettcher@desy.de> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the Free |
| 8 | * Software Foundation, version 2. |
| 9 | * |
| 10 | * see Documentation/dvb/README.dvb-usb for more information |
| 11 | */ |
| 12 | #include "dtt200u.h" |
| 13 | |
| 14 | struct dtt200u_fe_state { |
| 15 | struct dvb_usb_device *d; |
| 16 | |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 17 | fe_status_t stat; |
| 18 | |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 19 | struct dvb_frontend_parameters fep; |
| 20 | struct dvb_frontend frontend; |
Ye Jianjun (Joey | 43bc3f4 | 2005-09-09 13:02:44 -0700 | [diff] [blame^] | 21 | struct dvb_frontend_ops ops; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 22 | }; |
| 23 | |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 24 | static int dtt200u_fe_read_status(struct dvb_frontend* fe, fe_status_t *stat) |
| 25 | { |
| 26 | struct dtt200u_fe_state *state = fe->demodulator_priv; |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 27 | u8 st = GET_TUNE_STATUS, b[3]; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 28 | |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 29 | dvb_usb_generic_rw(state->d,&st,1,b,3,0); |
| 30 | |
| 31 | switch (b[0]) { |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 32 | case 0x01: |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 33 | *stat = FE_HAS_SIGNAL | FE_HAS_CARRIER | |
| 34 | FE_HAS_VITERBI | FE_HAS_SYNC | FE_HAS_LOCK; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 35 | break; |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 36 | case 0x00: /* pending */ |
| 37 | *stat = FE_TIMEDOUT; /* during set_frontend */ |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 38 | break; |
| 39 | default: |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 40 | case 0x02: /* failed */ |
| 41 | *stat = 0; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 42 | break; |
| 43 | } |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 44 | return 0; |
| 45 | } |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 46 | |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 47 | static int dtt200u_fe_read_ber(struct dvb_frontend* fe, u32 *ber) |
| 48 | { |
| 49 | struct dtt200u_fe_state *state = fe->demodulator_priv; |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 50 | u8 bw = GET_VIT_ERR_CNT,b[3]; |
| 51 | dvb_usb_generic_rw(state->d,&bw,1,b,3,0); |
| 52 | *ber = (b[0] << 16) | (b[1] << 8) | b[2]; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 53 | return 0; |
| 54 | } |
| 55 | |
| 56 | static int dtt200u_fe_read_unc_blocks(struct dvb_frontend* fe, u32 *unc) |
| 57 | { |
| 58 | struct dtt200u_fe_state *state = fe->demodulator_priv; |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 59 | u8 bw = GET_RS_UNCOR_BLK_CNT,b[2]; |
| 60 | |
| 61 | dvb_usb_generic_rw(state->d,&bw,1,b,2,0); |
| 62 | *unc = (b[0] << 8) | b[1]; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 63 | return 0; |
| 64 | } |
| 65 | |
| 66 | static int dtt200u_fe_read_signal_strength(struct dvb_frontend* fe, u16 *strength) |
| 67 | { |
| 68 | struct dtt200u_fe_state *state = fe->demodulator_priv; |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 69 | u8 bw = GET_AGC, b; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 70 | dvb_usb_generic_rw(state->d,&bw,1,&b,1,0); |
| 71 | *strength = (b << 8) | b; |
| 72 | return 0; |
| 73 | } |
| 74 | |
| 75 | static int dtt200u_fe_read_snr(struct dvb_frontend* fe, u16 *snr) |
| 76 | { |
| 77 | struct dtt200u_fe_state *state = fe->demodulator_priv; |
| 78 | u8 bw = GET_SNR,br; |
| 79 | dvb_usb_generic_rw(state->d,&bw,1,&br,1,0); |
| 80 | *snr = ~((br << 8) | br); |
| 81 | return 0; |
| 82 | } |
| 83 | |
| 84 | static int dtt200u_fe_init(struct dvb_frontend* fe) |
| 85 | { |
| 86 | struct dtt200u_fe_state *state = fe->demodulator_priv; |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 87 | u8 b = SET_INIT; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 88 | return dvb_usb_generic_write(state->d,&b,1); |
| 89 | } |
| 90 | |
| 91 | static int dtt200u_fe_sleep(struct dvb_frontend* fe) |
| 92 | { |
| 93 | return dtt200u_fe_init(fe); |
| 94 | } |
| 95 | |
| 96 | static int dtt200u_fe_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings *tune) |
| 97 | { |
| 98 | tune->min_delay_ms = 1500; |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 99 | tune->step_size = 0; |
| 100 | tune->max_drift = 0; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 101 | return 0; |
| 102 | } |
| 103 | |
| 104 | static int dtt200u_fe_set_frontend(struct dvb_frontend* fe, |
| 105 | struct dvb_frontend_parameters *fep) |
| 106 | { |
| 107 | struct dtt200u_fe_state *state = fe->demodulator_priv; |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 108 | int i; |
| 109 | fe_status_t st; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 110 | u16 freq = fep->frequency / 250000; |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 111 | u8 bwbuf[2] = { SET_BANDWIDTH, 0 },freqbuf[3] = { SET_RF_FREQ, 0, 0 }; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 112 | |
| 113 | switch (fep->u.ofdm.bandwidth) { |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 114 | case BANDWIDTH_8_MHZ: bwbuf[1] = 8; break; |
| 115 | case BANDWIDTH_7_MHZ: bwbuf[1] = 7; break; |
| 116 | case BANDWIDTH_6_MHZ: bwbuf[1] = 6; break; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 117 | case BANDWIDTH_AUTO: return -EOPNOTSUPP; |
| 118 | default: |
| 119 | return -EINVAL; |
| 120 | } |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 121 | |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 122 | dvb_usb_generic_write(state->d,bwbuf,2); |
| 123 | |
| 124 | freqbuf[1] = freq & 0xff; |
| 125 | freqbuf[2] = (freq >> 8) & 0xff; |
| 126 | dvb_usb_generic_write(state->d,freqbuf,3); |
| 127 | |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 128 | for (i = 0; i < 30; i++) { |
| 129 | msleep(20); |
| 130 | dtt200u_fe_read_status(fe, &st); |
| 131 | if (st & FE_TIMEDOUT) |
| 132 | continue; |
| 133 | } |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 134 | |
| 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | static int dtt200u_fe_get_frontend(struct dvb_frontend* fe, |
| 139 | struct dvb_frontend_parameters *fep) |
| 140 | { |
| 141 | struct dtt200u_fe_state *state = fe->demodulator_priv; |
| 142 | memcpy(fep,&state->fep,sizeof(struct dvb_frontend_parameters)); |
| 143 | return 0; |
| 144 | } |
| 145 | |
| 146 | static void dtt200u_fe_release(struct dvb_frontend* fe) |
| 147 | { |
| 148 | struct dtt200u_fe_state *state = (struct dtt200u_fe_state*) fe->demodulator_priv; |
| 149 | kfree(state); |
| 150 | } |
| 151 | |
| 152 | static struct dvb_frontend_ops dtt200u_fe_ops; |
| 153 | |
| 154 | struct dvb_frontend* dtt200u_fe_attach(struct dvb_usb_device *d) |
| 155 | { |
| 156 | struct dtt200u_fe_state* state = NULL; |
| 157 | |
| 158 | /* allocate memory for the internal state */ |
| 159 | state = (struct dtt200u_fe_state*) kmalloc(sizeof(struct dtt200u_fe_state), GFP_KERNEL); |
| 160 | if (state == NULL) |
| 161 | goto error; |
| 162 | memset(state,0,sizeof(struct dtt200u_fe_state)); |
| 163 | |
| 164 | deb_info("attaching frontend dtt200u\n"); |
| 165 | |
| 166 | state->d = d; |
Ye Jianjun (Joey | 43bc3f4 | 2005-09-09 13:02:44 -0700 | [diff] [blame^] | 167 | memcpy(&state->ops,&dtt200u_fe_ops,sizeof(struct dvb_frontend_ops)); |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 168 | |
Ye Jianjun (Joey | 43bc3f4 | 2005-09-09 13:02:44 -0700 | [diff] [blame^] | 169 | state->frontend.ops = &state->ops; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 170 | state->frontend.demodulator_priv = state; |
| 171 | |
| 172 | goto success; |
| 173 | error: |
| 174 | return NULL; |
| 175 | success: |
| 176 | return &state->frontend; |
| 177 | } |
| 178 | |
| 179 | static struct dvb_frontend_ops dtt200u_fe_ops = { |
| 180 | .info = { |
Patrick Boettcher | d590f9c | 2005-07-07 17:58:33 -0700 | [diff] [blame] | 181 | .name = "WideView USB DVB-T", |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 182 | .type = FE_OFDM, |
| 183 | .frequency_min = 44250000, |
| 184 | .frequency_max = 867250000, |
| 185 | .frequency_stepsize = 250000, |
| 186 | .caps = FE_CAN_INVERSION_AUTO | |
| 187 | FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 | |
| 188 | FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 | FE_CAN_FEC_AUTO | |
| 189 | FE_CAN_QPSK | FE_CAN_QAM_16 | FE_CAN_QAM_64 | FE_CAN_QAM_AUTO | |
| 190 | FE_CAN_TRANSMISSION_MODE_AUTO | |
| 191 | FE_CAN_GUARD_INTERVAL_AUTO | |
| 192 | FE_CAN_RECOVER | |
| 193 | FE_CAN_HIERARCHY_AUTO, |
| 194 | }, |
| 195 | |
| 196 | .release = dtt200u_fe_release, |
| 197 | |
| 198 | .init = dtt200u_fe_init, |
| 199 | .sleep = dtt200u_fe_sleep, |
| 200 | |
| 201 | .set_frontend = dtt200u_fe_set_frontend, |
| 202 | .get_frontend = dtt200u_fe_get_frontend, |
| 203 | .get_tune_settings = dtt200u_fe_get_tune_settings, |
| 204 | |
| 205 | .read_status = dtt200u_fe_read_status, |
| 206 | .read_ber = dtt200u_fe_read_ber, |
| 207 | .read_signal_strength = dtt200u_fe_read_signal_strength, |
| 208 | .read_snr = dtt200u_fe_read_snr, |
| 209 | .read_ucblocks = dtt200u_fe_read_unc_blocks, |
| 210 | }; |