2 * FireDTV driver (formerly known as FireSAT)
4 * Copyright (C) 2004 Andreas Monitzer <andy@monitzer.com>
5 * Copyright (C) 2008 Henrik Kurelid <henrik@kurelid.se>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
13 #include <linux/device.h>
14 #include <linux/errno.h>
15 #include <linux/kernel.h>
16 #include <linux/string.h>
17 #include <linux/types.h>
19 #include <dvb_frontend.h>
23 static int fdtv_dvb_init(struct dvb_frontend
*fe
)
25 struct firedtv
*fdtv
= fe
->sec_priv
;
28 /* FIXME - allocate free channel at IRM */
29 fdtv
->isochannel
= fdtv
->adapter
.num
;
31 err
= cmp_establish_pp_connection(fdtv
, fdtv
->subunit
,
35 "could not establish point to point connection\n");
39 return fdtv
->backend
->start_iso(fdtv
);
42 static int fdtv_sleep(struct dvb_frontend
*fe
)
44 struct firedtv
*fdtv
= fe
->sec_priv
;
46 fdtv
->backend
->stop_iso(fdtv
);
47 cmp_break_pp_connection(fdtv
, fdtv
->subunit
, fdtv
->isochannel
);
48 fdtv
->isochannel
= -1;
52 #define LNBCONTROL_DONTCARE 0xff
54 static int fdtv_diseqc_send_master_cmd(struct dvb_frontend
*fe
,
55 struct dvb_diseqc_master_cmd
*cmd
)
57 struct firedtv
*fdtv
= fe
->sec_priv
;
59 return avc_lnb_control(fdtv
, LNBCONTROL_DONTCARE
, LNBCONTROL_DONTCARE
,
60 LNBCONTROL_DONTCARE
, 1, cmd
);
63 static int fdtv_diseqc_send_burst(struct dvb_frontend
*fe
,
64 fe_sec_mini_cmd_t minicmd
)
69 static int fdtv_set_tone(struct dvb_frontend
*fe
, fe_sec_tone_mode_t tone
)
71 struct firedtv
*fdtv
= fe
->sec_priv
;
77 static int fdtv_set_voltage(struct dvb_frontend
*fe
,
78 fe_sec_voltage_t voltage
)
80 struct firedtv
*fdtv
= fe
->sec_priv
;
82 fdtv
->voltage
= voltage
;
86 static int fdtv_read_status(struct dvb_frontend
*fe
, fe_status_t
*status
)
88 struct firedtv
*fdtv
= fe
->sec_priv
;
89 struct firedtv_tuner_status stat
;
91 if (avc_tuner_status(fdtv
, &stat
))
97 *status
= FE_HAS_SIGNAL
| FE_HAS_VITERBI
| FE_HAS_SYNC
|
98 FE_HAS_CARRIER
| FE_HAS_LOCK
;
102 static int fdtv_read_ber(struct dvb_frontend
*fe
, u32
*ber
)
104 struct firedtv
*fdtv
= fe
->sec_priv
;
105 struct firedtv_tuner_status stat
;
107 if (avc_tuner_status(fdtv
, &stat
))
114 static int fdtv_read_signal_strength(struct dvb_frontend
*fe
, u16
*strength
)
116 struct firedtv
*fdtv
= fe
->sec_priv
;
117 struct firedtv_tuner_status stat
;
119 if (avc_tuner_status(fdtv
, &stat
))
122 *strength
= stat
.signal_strength
<< 8;
126 static int fdtv_read_snr(struct dvb_frontend
*fe
, u16
*snr
)
128 struct firedtv
*fdtv
= fe
->sec_priv
;
129 struct firedtv_tuner_status stat
;
131 if (avc_tuner_status(fdtv
, &stat
))
134 /* C/N[dB] = -10 * log10(snr / 65535) */
135 *snr
= stat
.carrier_noise_ratio
* 257;
139 static int fdtv_read_uncorrected_blocks(struct dvb_frontend
*fe
, u32
*ucblocks
)
146 static int fdtv_set_frontend(struct dvb_frontend
*fe
,
147 struct dvb_frontend_parameters
*params
)
149 struct firedtv
*fdtv
= fe
->sec_priv
;
151 /* FIXME: avc_tuner_dsd never returns ACCEPTED. Check status? */
152 if (avc_tuner_dsd(fdtv
, params
) != ACCEPTED
)
155 return 0; /* not sure of this... */
158 static int fdtv_get_frontend(struct dvb_frontend
*fe
,
159 struct dvb_frontend_parameters
*params
)
164 void fdtv_frontend_init(struct firedtv
*fdtv
)
166 struct dvb_frontend_ops
*ops
= &fdtv
->fe
.ops
;
167 struct dvb_frontend_info
*fi
= &ops
->info
;
169 ops
->init
= fdtv_dvb_init
;
170 ops
->sleep
= fdtv_sleep
;
172 ops
->set_frontend
= fdtv_set_frontend
;
173 ops
->get_frontend
= fdtv_get_frontend
;
175 ops
->read_status
= fdtv_read_status
;
176 ops
->read_ber
= fdtv_read_ber
;
177 ops
->read_signal_strength
= fdtv_read_signal_strength
;
178 ops
->read_snr
= fdtv_read_snr
;
179 ops
->read_ucblocks
= fdtv_read_uncorrected_blocks
;
181 ops
->diseqc_send_master_cmd
= fdtv_diseqc_send_master_cmd
;
182 ops
->diseqc_send_burst
= fdtv_diseqc_send_burst
;
183 ops
->set_tone
= fdtv_set_tone
;
184 ops
->set_voltage
= fdtv_set_voltage
;
186 switch (fdtv
->type
) {
191 fi
->frequency_min
= 950000;
192 fi
->frequency_max
= 2150000;
193 fi
->frequency_stepsize
= 125;
194 fi
->symbol_rate_min
= 1000000;
195 fi
->symbol_rate_max
= 40000000;
197 fi
->caps
= FE_CAN_INVERSION_AUTO
|
210 fi
->frequency_min
= 47000000;
211 fi
->frequency_max
= 866000000;
212 fi
->frequency_stepsize
= 62500;
213 fi
->symbol_rate_min
= 870000;
214 fi
->symbol_rate_max
= 6900000;
216 fi
->caps
= FE_CAN_INVERSION_AUTO
|
228 fi
->frequency_min
= 49000000;
229 fi
->frequency_max
= 861000000;
230 fi
->frequency_stepsize
= 62500;
232 fi
->caps
= FE_CAN_INVERSION_AUTO
|
234 FE_CAN_TRANSMISSION_MODE_AUTO
|
235 FE_CAN_GUARD_INTERVAL_AUTO
|
236 FE_CAN_HIERARCHY_AUTO
;
240 dev_err(fdtv
->device
, "no frontend for model type %d\n",
243 strcpy(fi
->name
, fdtv_model_names
[fdtv
->type
]);
245 fdtv
->fe
.dvb
= &fdtv
->adapter
;
246 fdtv
->fe
.sec_priv
= fdtv
;