]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/media/firewire/firedtv-fe.c
Merge remote-tracking branches 'asoc/topic/ab8500', 'asoc/topic/adau17x1', 'asoc...
[mirror_ubuntu-artful-kernel.git] / drivers / media / firewire / firedtv-fe.c
CommitLineData
df4846c3 1/*
612262a5 2 * FireDTV driver (formerly known as FireSAT)
df4846c3 3 *
612262a5
SR
4 * Copyright (C) 2004 Andreas Monitzer <andy@monitzer.com>
5 * Copyright (C) 2008 Henrik Kurelid <henrik@kurelid.se>
df4846c3
HK
6 *
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.
11 */
12
15490795 13#include <linux/device.h>
c81c8b68 14#include <linux/errno.h>
612262a5 15#include <linux/kernel.h>
8ae83cdf 16#include <linux/string.h>
612262a5
SR
17#include <linux/types.h>
18
19#include <dvb_frontend.h>
c81c8b68 20
a70f81c1 21#include "firedtv.h"
c81c8b68 22
a70f81c1 23static int fdtv_dvb_init(struct dvb_frontend *fe)
c81c8b68 24{
a70f81c1 25 struct firedtv *fdtv = fe->sec_priv;
8ae83cdf
SR
26 int err;
27
28 /* FIXME - allocate free channel at IRM */
a70f81c1 29 fdtv->isochannel = fdtv->adapter.num;
8ae83cdf 30
a70f81c1
R
31 err = cmp_establish_pp_connection(fdtv, fdtv->subunit,
32 fdtv->isochannel);
8ae83cdf 33 if (err) {
15490795
SR
34 dev_err(fdtv->device,
35 "could not establish point to point connection\n");
8ae83cdf 36 return err;
df4846c3 37 }
df4846c3 38
92374e88 39 return fdtv_start_iso(fdtv);
c81c8b68
GKH
40}
41
a70f81c1 42static int fdtv_sleep(struct dvb_frontend *fe)
c81c8b68 43{
a70f81c1 44 struct firedtv *fdtv = fe->sec_priv;
c81c8b68 45
92374e88 46 fdtv_stop_iso(fdtv);
a70f81c1
R
47 cmp_break_pp_connection(fdtv, fdtv->subunit, fdtv->isochannel);
48 fdtv->isochannel = -1;
c81c8b68
GKH
49 return 0;
50}
51
15490795
SR
52#define LNBCONTROL_DONTCARE 0xff
53
a70f81c1 54static int fdtv_diseqc_send_master_cmd(struct dvb_frontend *fe,
15490795 55 struct dvb_diseqc_master_cmd *cmd)
c81c8b68 56{
a70f81c1 57 struct firedtv *fdtv = fe->sec_priv;
c81c8b68 58
15490795
SR
59 return avc_lnb_control(fdtv, LNBCONTROL_DONTCARE, LNBCONTROL_DONTCARE,
60 LNBCONTROL_DONTCARE, 1, cmd);
c81c8b68
GKH
61}
62
a70f81c1 63static int fdtv_diseqc_send_burst(struct dvb_frontend *fe,
0df289a2 64 enum fe_sec_mini_cmd minicmd)
c81c8b68
GKH
65{
66 return 0;
67}
68
0df289a2 69static int fdtv_set_tone(struct dvb_frontend *fe, enum fe_sec_tone_mode tone)
c81c8b68 70{
a70f81c1 71 struct firedtv *fdtv = fe->sec_priv;
c81c8b68 72
a70f81c1 73 fdtv->tone = tone;
c81c8b68
GKH
74 return 0;
75}
76
a70f81c1 77static int fdtv_set_voltage(struct dvb_frontend *fe,
0df289a2 78 enum fe_sec_voltage voltage)
c81c8b68 79{
a70f81c1 80 struct firedtv *fdtv = fe->sec_priv;
c81c8b68 81
a70f81c1 82 fdtv->voltage = voltage;
c81c8b68
GKH
83 return 0;
84}
85
0df289a2 86static int fdtv_read_status(struct dvb_frontend *fe, enum fe_status *status)
c81c8b68 87{
a70f81c1 88 struct firedtv *fdtv = fe->sec_priv;
15490795 89 struct firedtv_tuner_status stat;
c81c8b68 90
15490795 91 if (avc_tuner_status(fdtv, &stat))
c81c8b68
GKH
92 return -EINVAL;
93
15490795 94 if (stat.no_rf)
c81c8b68 95 *status = 0;
8ae83cdf
SR
96 else
97 *status = FE_HAS_SIGNAL | FE_HAS_VITERBI | FE_HAS_SYNC |
98 FE_HAS_CARRIER | FE_HAS_LOCK;
c81c8b68
GKH
99 return 0;
100}
101
a70f81c1 102static int fdtv_read_ber(struct dvb_frontend *fe, u32 *ber)
c81c8b68 103{
a70f81c1 104 struct firedtv *fdtv = fe->sec_priv;
15490795 105 struct firedtv_tuner_status stat;
c81c8b68 106
15490795 107 if (avc_tuner_status(fdtv, &stat))
c81c8b68
GKH
108 return -EINVAL;
109
15490795 110 *ber = stat.ber;
c81c8b68
GKH
111 return 0;
112}
113
15490795 114static int fdtv_read_signal_strength(struct dvb_frontend *fe, u16 *strength)
c81c8b68 115{
a70f81c1 116 struct firedtv *fdtv = fe->sec_priv;
15490795 117 struct firedtv_tuner_status stat;
c81c8b68 118
15490795 119 if (avc_tuner_status(fdtv, &stat))
c81c8b68
GKH
120 return -EINVAL;
121
15490795 122 *strength = stat.signal_strength << 8;
c81c8b68
GKH
123 return 0;
124}
125
a70f81c1 126static int fdtv_read_snr(struct dvb_frontend *fe, u16 *snr)
c81c8b68 127{
a70f81c1 128 struct firedtv *fdtv = fe->sec_priv;
15490795 129 struct firedtv_tuner_status stat;
df4846c3 130
15490795 131 if (avc_tuner_status(fdtv, &stat))
df4846c3
HK
132 return -EINVAL;
133
8ae83cdf 134 /* C/N[dB] = -10 * log10(snr / 65535) */
15490795 135 *snr = stat.carrier_noise_ratio * 257;
df4846c3 136 return 0;
c81c8b68
GKH
137}
138
a70f81c1 139static int fdtv_read_uncorrected_blocks(struct dvb_frontend *fe, u32 *ucblocks)
c81c8b68
GKH
140{
141 return -EOPNOTSUPP;
142}
143
e11eb288 144static int fdtv_set_frontend(struct dvb_frontend *fe)
c81c8b68 145{
e11eb288 146 struct dtv_frontend_properties *p = &fe->dtv_property_cache;
a70f81c1 147 struct firedtv *fdtv = fe->sec_priv;
c81c8b68 148
e11eb288 149 return avc_tuner_dsd(fdtv, p);
c81c8b68
GKH
150}
151
92374e88 152void fdtv_frontend_init(struct firedtv *fdtv, const char *name)
8ae83cdf 153{
a70f81c1 154 struct dvb_frontend_ops *ops = &fdtv->fe.ops;
8ae83cdf 155 struct dvb_frontend_info *fi = &ops->info;
c81c8b68 156
a70f81c1
R
157 ops->init = fdtv_dvb_init;
158 ops->sleep = fdtv_sleep;
c81c8b68 159
e11eb288 160 ops->set_frontend = fdtv_set_frontend;
d2fd44a3 161
a70f81c1
R
162 ops->read_status = fdtv_read_status;
163 ops->read_ber = fdtv_read_ber;
164 ops->read_signal_strength = fdtv_read_signal_strength;
165 ops->read_snr = fdtv_read_snr;
166 ops->read_ucblocks = fdtv_read_uncorrected_blocks;
c81c8b68 167
a70f81c1
R
168 ops->diseqc_send_master_cmd = fdtv_diseqc_send_master_cmd;
169 ops->diseqc_send_burst = fdtv_diseqc_send_burst;
170 ops->set_tone = fdtv_set_tone;
171 ops->set_voltage = fdtv_set_voltage;
c81c8b68 172
a70f81c1
R
173 switch (fdtv->type) {
174 case FIREDTV_DVB_S:
e11eb288 175 ops->delsys[0] = SYS_DVBS;
8ae83cdf
SR
176
177 fi->frequency_min = 950000;
178 fi->frequency_max = 2150000;
179 fi->frequency_stepsize = 125;
180 fi->symbol_rate_min = 1000000;
181 fi->symbol_rate_max = 40000000;
182
d2fd44a3 183 fi->caps = FE_CAN_INVERSION_AUTO |
8ae83cdf
SR
184 FE_CAN_FEC_1_2 |
185 FE_CAN_FEC_2_3 |
186 FE_CAN_FEC_3_4 |
187 FE_CAN_FEC_5_6 |
188 FE_CAN_FEC_7_8 |
189 FE_CAN_FEC_AUTO |
190 FE_CAN_QPSK;
c81c8b68 191 break;
8ae83cdf 192
d2fd44a3 193 case FIREDTV_DVB_S2:
e11eb288 194 ops->delsys[0] = SYS_DVBS;
6225f18b 195 ops->delsys[1] = SYS_DVBS2;
d2fd44a3
TJ
196
197 fi->frequency_min = 950000;
198 fi->frequency_max = 2150000;
199 fi->frequency_stepsize = 125;
200 fi->symbol_rate_min = 1000000;
201 fi->symbol_rate_max = 40000000;
202
203 fi->caps = FE_CAN_INVERSION_AUTO |
204 FE_CAN_FEC_1_2 |
205 FE_CAN_FEC_2_3 |
206 FE_CAN_FEC_3_4 |
207 FE_CAN_FEC_5_6 |
208 FE_CAN_FEC_7_8 |
209 FE_CAN_FEC_AUTO |
210 FE_CAN_QPSK |
211 FE_CAN_2G_MODULATION;
212 break;
213
a70f81c1 214 case FIREDTV_DVB_C:
e11eb288 215 ops->delsys[0] = SYS_DVBC_ANNEX_A;
8ae83cdf
SR
216
217 fi->frequency_min = 47000000;
218 fi->frequency_max = 866000000;
219 fi->frequency_stepsize = 62500;
220 fi->symbol_rate_min = 870000;
221 fi->symbol_rate_max = 6900000;
222
223 fi->caps = FE_CAN_INVERSION_AUTO |
224 FE_CAN_QAM_16 |
225 FE_CAN_QAM_32 |
226 FE_CAN_QAM_64 |
227 FE_CAN_QAM_128 |
228 FE_CAN_QAM_256 |
229 FE_CAN_QAM_AUTO;
c81c8b68 230 break;
8ae83cdf 231
a70f81c1 232 case FIREDTV_DVB_T:
e11eb288 233 ops->delsys[0] = SYS_DVBT;
8ae83cdf
SR
234
235 fi->frequency_min = 49000000;
236 fi->frequency_max = 861000000;
237 fi->frequency_stepsize = 62500;
238
239 fi->caps = FE_CAN_INVERSION_AUTO |
240 FE_CAN_FEC_2_3 |
241 FE_CAN_TRANSMISSION_MODE_AUTO |
242 FE_CAN_GUARD_INTERVAL_AUTO |
243 FE_CAN_HIERARCHY_AUTO;
c81c8b68 244 break;
8ae83cdf 245
c81c8b68 246 default:
15490795
SR
247 dev_err(fdtv->device, "no frontend for model type %d\n",
248 fdtv->type);
c81c8b68 249 }
92374e88 250 strcpy(fi->name, name);
c81c8b68 251
a70f81c1
R
252 fdtv->fe.dvb = &fdtv->adapter;
253 fdtv->fe.sec_priv = fdtv;
c81c8b68 254}