blob: b64f33776b740259e54ecaea17f47f1331d1e19d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * dvb_frontend.c: DVB frontend tuning interface/thread
3 *
4 *
5 * Copyright (C) 1999-2001 Ralph Metzler
6 * Marcus Metzler
7 * Holger Waechtler
8 * for convergence integrated media GmbH
9 *
10 * Copyright (C) 2004 Andrew de Quincey (tuning thread cleanup)
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
26 */
27
Mauro Carvalho Chehab8de85942011-12-26 20:22:50 -030028/* Enables DVBv3 compatibility bits at the headers */
29#define __DVB_CORE__
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/string.h>
32#include <linux/kernel.h>
33#include <linux/sched.h>
34#include <linux/wait.h>
35#include <linux/slab.h>
36#include <linux/poll.h>
Andrew Morton4c4cb1b2009-12-01 13:17:41 -080037#include <linux/semaphore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/list.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080040#include <linux/freezer.h>
Johannes Stezenbachcc89c222005-06-23 22:02:39 -070041#include <linux/jiffies.h>
Herbert Poetzl8eec1422007-02-08 14:32:43 -030042#include <linux/kthread.h>
Tina Ruchandani9056a232015-05-31 04:17:06 -030043#include <linux/ktime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include "dvb_frontend.h"
47#include "dvbdev.h"
Steven Totheacf8d82008-09-26 00:29:49 -030048#include <linux/dvb/version.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50static int dvb_frontend_debug;
Oliver Endriss849be2c2007-08-25 12:22:16 -030051static int dvb_shutdown_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static int dvb_force_auto_inversion;
53static int dvb_override_tune_delay;
54static int dvb_powerdown_on_sleep = 1;
Darron Broad59b18422008-10-11 11:44:05 -030055static int dvb_mfe_wait_time = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57module_param_named(frontend_debug, dvb_frontend_debug, int, 0644);
Johannes Stezenbachf4f009a2005-05-16 21:54:21 -070058MODULE_PARM_DESC(frontend_debug, "Turn on/off frontend core debugging (default:off).");
Manu Abraham6baad3f2006-02-27 00:09:32 -030059module_param(dvb_shutdown_timeout, int, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060MODULE_PARM_DESC(dvb_shutdown_timeout, "wait <shutdown_timeout> seconds after close() before suspending hardware");
Manu Abraham6baad3f2006-02-27 00:09:32 -030061module_param(dvb_force_auto_inversion, int, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062MODULE_PARM_DESC(dvb_force_auto_inversion, "0: normal (default), 1: INVERSION_AUTO forced always");
Manu Abraham6baad3f2006-02-27 00:09:32 -030063module_param(dvb_override_tune_delay, int, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064MODULE_PARM_DESC(dvb_override_tune_delay, "0: normal (default), >0 => delay in milliseconds to wait for lock after a tune attempt");
Manu Abraham6baad3f2006-02-27 00:09:32 -030065module_param(dvb_powerdown_on_sleep, int, 0644);
Uwe Buglaa85585772006-04-11 10:21:37 -030066MODULE_PARM_DESC(dvb_powerdown_on_sleep, "0: do not power down, 1: turn LNB voltage off on sleep (default)");
Darron Broad59b18422008-10-11 11:44:05 -030067module_param(dvb_mfe_wait_time, int, 0644);
68MODULE_PARM_DESC(dvb_mfe_wait_time, "Wait up to <mfe_wait_time> seconds on open() for multi-frontend to become available (default:5 seconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define FESTATE_IDLE 1
71#define FESTATE_RETUNE 2
72#define FESTATE_TUNING_FAST 4
73#define FESTATE_TUNING_SLOW 8
74#define FESTATE_TUNED 16
75#define FESTATE_ZIGZAG_FAST 32
76#define FESTATE_ZIGZAG_SLOW 64
77#define FESTATE_DISEQC 128
Janne Grunau01886252009-09-01 19:23:09 -030078#define FESTATE_ERROR 256
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#define FESTATE_WAITFORLOCK (FESTATE_TUNING_FAST | FESTATE_TUNING_SLOW | FESTATE_ZIGZAG_FAST | FESTATE_ZIGZAG_SLOW | FESTATE_DISEQC)
80#define FESTATE_SEARCHING_FAST (FESTATE_TUNING_FAST | FESTATE_ZIGZAG_FAST)
81#define FESTATE_SEARCHING_SLOW (FESTATE_TUNING_SLOW | FESTATE_ZIGZAG_SLOW)
82#define FESTATE_LOSTLOCK (FESTATE_ZIGZAG_FAST | FESTATE_ZIGZAG_SLOW)
Manu Abraham0249ef12006-06-21 10:27:31 -030083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/*
85 * FESTATE_IDLE. No tuning parameters have been supplied and the loop is idling.
86 * FESTATE_RETUNE. Parameters have been supplied, but we have not yet performed the first tune.
87 * FESTATE_TUNING_FAST. Tuning parameters have been supplied and fast zigzag scan is in progress.
88 * FESTATE_TUNING_SLOW. Tuning parameters have been supplied. Fast zigzag failed, so we're trying again, but slower.
89 * FESTATE_TUNED. The frontend has successfully locked on.
90 * FESTATE_ZIGZAG_FAST. The lock has been lost, and a fast zigzag has been initiated to try and regain it.
91 * FESTATE_ZIGZAG_SLOW. The lock has been lost. Fast zigzag has been failed, so we're trying again, but slower.
92 * FESTATE_DISEQC. A DISEQC command has just been issued.
93 * FESTATE_WAITFORLOCK. When we're waiting for a lock.
94 * FESTATE_SEARCHING_FAST. When we're searching for a signal using a fast zigzag scan.
95 * FESTATE_SEARCHING_SLOW. When we're searching for a signal using a slow zigzag scan.
96 * FESTATE_LOSTLOCK. When the lock has been lost, and we're searching it again.
97 */
98
Ingo Molnar3593cab2006-02-07 06:49:14 -020099static DEFINE_MUTEX(frontend_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101struct dvb_frontend_private {
102
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200103 /* thread/frontend values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 struct dvb_device *dvbdev;
Andreas Oberrittera5959db2011-05-08 20:03:40 -0300105 struct dvb_frontend_parameters parameters_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 struct dvb_fe_events events;
107 struct semaphore sem;
108 struct list_head list_head;
109 wait_queue_head_t wait_queue;
Herbert Poetzl8eec1422007-02-08 14:32:43 -0300110 struct task_struct *thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 unsigned long release_jiffies;
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200112 unsigned int wakeup;
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -0300113 enum fe_status status;
Peter Beutner400b7082006-01-09 15:32:43 -0200114 unsigned long tune_mode_flags;
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200115 unsigned int delay;
Andrew de Quincey86f40cc2006-03-30 15:53:35 -0300116 unsigned int reinitialise;
Andrew de Quincey64454012006-04-06 14:32:23 -0300117 int tone;
118 int voltage;
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200119
120 /* swzigzag values */
121 unsigned int state;
122 unsigned int bending;
123 int lnb_drift;
124 unsigned int inversion;
125 unsigned int auto_step;
126 unsigned int auto_sub_step;
127 unsigned int started_auto_step;
128 unsigned int min_delay;
129 unsigned int max_drift;
130 unsigned int step_size;
131 int quality;
132 unsigned int check_wrapped;
Manu Abrahamc59e7872008-10-14 16:34:07 -0300133 enum dvbfe_search algo_status;
Mauro Carvalho Chehab135f9be2015-01-06 17:53:15 -0300134
135#if defined(CONFIG_MEDIA_CONTROLLER_DVB)
136 struct media_pipeline pipe;
137 struct media_entity *pipe_start_entity;
138#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139};
140
Andrew de Quincey86f40cc2006-03-30 15:53:35 -0300141static void dvb_frontend_wakeup(struct dvb_frontend *fe);
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -0300142static int dtv_get_frontend(struct dvb_frontend *fe,
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -0300143 struct dvb_frontend_parameters *p_out);
Chris Rankin556a0442012-04-06 18:38:18 -0300144static int dtv_property_legacy_params_sync(struct dvb_frontend *fe,
145 struct dvb_frontend_parameters *p);
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -0300146
147static bool has_get_frontend(struct dvb_frontend *fe)
148{
Hans Petter Selaskyc065f5b2012-03-27 12:53:19 -0300149 return fe->ops.get_frontend != NULL;
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -0300150}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -0300152/*
153 * Due to DVBv3 API calls, a delivery system should be mapped into one of
154 * the 4 DVBv3 delivery systems (FE_QPSK, FE_QAM, FE_OFDM or FE_ATSC),
155 * otherwise, a DVBv3 call will fail.
156 */
157enum dvbv3_emulation_type {
158 DVBV3_UNKNOWN,
159 DVBV3_QPSK,
160 DVBV3_QAM,
161 DVBV3_OFDM,
162 DVBV3_ATSC,
163};
164
165static enum dvbv3_emulation_type dvbv3_type(u32 delivery_system)
166{
167 switch (delivery_system) {
168 case SYS_DVBC_ANNEX_A:
169 case SYS_DVBC_ANNEX_C:
170 return DVBV3_QAM;
171 case SYS_DVBS:
172 case SYS_DVBS2:
173 case SYS_TURBO:
174 case SYS_ISDBS:
175 case SYS_DSS:
176 return DVBV3_QPSK;
177 case SYS_DVBT:
178 case SYS_DVBT2:
179 case SYS_ISDBT:
Antti Palosaari224b6642012-08-12 22:33:21 -0300180 case SYS_DTMB:
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -0300181 return DVBV3_OFDM;
182 case SYS_ATSC:
Michael Krufkyca689482012-01-29 15:44:58 -0300183 case SYS_ATSCMH:
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -0300184 case SYS_DVBC_ANNEX_B:
185 return DVBV3_ATSC;
186 case SYS_UNDEFINED:
187 case SYS_ISDBC:
188 case SYS_DVBH:
189 case SYS_DAB:
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -0300190 default:
191 /*
192 * Doesn't know how to emulate those types and/or
193 * there's no frontend driver from this type yet
194 * with some emulation code, so, we're not sure yet how
195 * to handle them, or they're not compatible with a DVBv3 call.
196 */
197 return DVBV3_UNKNOWN;
198 }
199}
200
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -0300201static void dvb_frontend_add_event(struct dvb_frontend *fe,
202 enum fe_status status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -0700204 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 struct dvb_fe_events *events = &fepriv->events;
206 struct dvb_frontend_event *e;
207 int wp;
208
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300209 dev_dbg(fe->dvb->device, "%s:\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -0300211 if ((status & FE_HAS_LOCK) && has_get_frontend(fe))
Mauro Carvalho Chehab7c61d802011-12-30 11:30:21 -0300212 dtv_get_frontend(fe, &fepriv->parameters_out);
Andreas Oberritter77b1e2f2011-08-04 12:33:15 -0300213
214 mutex_lock(&events->mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 wp = (events->eventw + 1) % MAX_EVENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (wp == events->eventr) {
218 events->overflow = 1;
219 events->eventr = (events->eventr + 1) % MAX_EVENT;
220 }
221
222 e = &events->events[events->eventw];
Andreas Oberritter77b1e2f2011-08-04 12:33:15 -0300223 e->status = status;
Andreas Oberrittera5959db2011-05-08 20:03:40 -0300224 e->parameters = fepriv->parameters_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 events->eventw = wp;
227
Matthias Kaehlcke03b76122007-07-30 14:58:10 -0300228 mutex_unlock(&events->mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 wake_up_interruptible (&events->wait_queue);
231}
232
233static int dvb_frontend_get_event(struct dvb_frontend *fe,
234 struct dvb_frontend_event *event, int flags)
235{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -0700236 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 struct dvb_fe_events *events = &fepriv->events;
238
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300239 dev_dbg(fe->dvb->device, "%s:\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 if (events->overflow) {
242 events->overflow = 0;
243 return -EOVERFLOW;
244 }
245
246 if (events->eventw == events->eventr) {
247 int ret;
248
249 if (flags & O_NONBLOCK)
250 return -EWOULDBLOCK;
251
252 up(&fepriv->sem);
253
254 ret = wait_event_interruptible (events->wait_queue,
255 events->eventw != events->eventr);
256
257 if (down_interruptible (&fepriv->sem))
258 return -ERESTARTSYS;
259
260 if (ret < 0)
261 return ret;
262 }
263
Andreas Oberritter77b1e2f2011-08-04 12:33:15 -0300264 mutex_lock(&events->mtx);
265 *event = events->events[events->eventr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 events->eventr = (events->eventr + 1) % MAX_EVENT;
Matthias Kaehlcke03b76122007-07-30 14:58:10 -0300267 mutex_unlock(&events->mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 return 0;
270}
271
Andreas Oberritter20640be2011-08-04 12:33:14 -0300272static void dvb_frontend_clear_events(struct dvb_frontend *fe)
273{
274 struct dvb_frontend_private *fepriv = fe->frontend_priv;
275 struct dvb_fe_events *events = &fepriv->events;
276
277 mutex_lock(&events->mtx);
278 events->eventr = events->eventw;
279 mutex_unlock(&events->mtx);
280}
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282static void dvb_frontend_init(struct dvb_frontend *fe)
283{
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300284 dev_dbg(fe->dvb->device,
285 "%s: initialising adapter %i frontend %i (%s)...\n",
286 __func__, fe->dvb->num, fe->id, fe->ops.info.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Patrick Boettcherdea74862006-05-14 05:01:31 -0300288 if (fe->ops.init)
289 fe->ops.init(fe);
290 if (fe->ops.tuner_ops.init) {
Manu Abraham3b37a152008-10-20 18:14:14 -0300291 if (fe->ops.i2c_gate_ctrl)
292 fe->ops.i2c_gate_ctrl(fe, 1);
Patrick Boettcherdea74862006-05-14 05:01:31 -0300293 fe->ops.tuner_ops.init(fe);
294 if (fe->ops.i2c_gate_ctrl)
295 fe->ops.i2c_gate_ctrl(fe, 0);
Andrew de Quincey7eef5dd2006-04-18 17:47:09 -0300296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
Andrew de Quincey86f40cc2006-03-30 15:53:35 -0300299void dvb_frontend_reinitialise(struct dvb_frontend *fe)
300{
301 struct dvb_frontend_private *fepriv = fe->frontend_priv;
302
303 fepriv->reinitialise = 1;
304 dvb_frontend_wakeup(fe);
305}
306EXPORT_SYMBOL(dvb_frontend_reinitialise);
307
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200308static void dvb_frontend_swzigzag_update_delay(struct dvb_frontend_private *fepriv, int locked)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200310 int q2;
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300311 struct dvb_frontend *fe = fepriv->dvbdev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300313 dev_dbg(fe->dvb->device, "%s:\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200315 if (locked)
316 (fepriv->quality) = (fepriv->quality * 220 + 36*256) / 256;
317 else
318 (fepriv->quality) = (fepriv->quality * 220 + 0) / 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200320 q2 = fepriv->quality - 128;
321 q2 *= q2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200323 fepriv->delay = fepriv->min_delay + q2 * HZ / (128*128);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
326/**
327 * Performs automatic twiddling of frontend parameters.
328 *
329 * @param fe The frontend concerned.
330 * @param check_wrapped Checks if an iteration has completed. DO NOT SET ON THE FIRST ATTEMPT
331 * @returns Number of complete iterations that have been performed.
332 */
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200333static int dvb_frontend_swzigzag_autotune(struct dvb_frontend *fe, int check_wrapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 int autoinversion;
336 int ready = 0;
Janne Grunau01886252009-09-01 19:23:09 -0300337 int fe_set_err = 0;
Johannes Stezenbach0c53c702005-05-16 21:54:24 -0700338 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Mauro Carvalho Chehabac3852c2011-12-30 09:30:25 -0300339 struct dtv_frontend_properties *c = &fe->dtv_property_cache, tmp;
340 int original_inversion = c->inversion;
341 u32 original_frequency = c->frequency;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 /* are we using autoinversion? */
Patrick Boettcherdea74862006-05-14 05:01:31 -0300344 autoinversion = ((!(fe->ops.info.caps & FE_CAN_INVERSION_AUTO)) &&
Mauro Carvalho Chehabac3852c2011-12-30 09:30:25 -0300345 (c->inversion == INVERSION_AUTO));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 /* setup parameters correctly */
348 while(!ready) {
349 /* calculate the lnb_drift */
350 fepriv->lnb_drift = fepriv->auto_step * fepriv->step_size;
351
352 /* wrap the auto_step if we've exceeded the maximum drift */
353 if (fepriv->lnb_drift > fepriv->max_drift) {
354 fepriv->auto_step = 0;
355 fepriv->auto_sub_step = 0;
356 fepriv->lnb_drift = 0;
357 }
358
359 /* perform inversion and +/- zigzag */
360 switch(fepriv->auto_sub_step) {
361 case 0:
362 /* try with the current inversion and current drift setting */
363 ready = 1;
364 break;
365
366 case 1:
367 if (!autoinversion) break;
368
369 fepriv->inversion = (fepriv->inversion == INVERSION_OFF) ? INVERSION_ON : INVERSION_OFF;
370 ready = 1;
371 break;
372
373 case 2:
374 if (fepriv->lnb_drift == 0) break;
375
376 fepriv->lnb_drift = -fepriv->lnb_drift;
377 ready = 1;
378 break;
379
380 case 3:
381 if (fepriv->lnb_drift == 0) break;
382 if (!autoinversion) break;
383
384 fepriv->inversion = (fepriv->inversion == INVERSION_OFF) ? INVERSION_ON : INVERSION_OFF;
385 fepriv->lnb_drift = -fepriv->lnb_drift;
386 ready = 1;
387 break;
388
389 default:
390 fepriv->auto_step++;
391 fepriv->auto_sub_step = -1; /* it'll be incremented to 0 in a moment */
392 break;
393 }
394
395 if (!ready) fepriv->auto_sub_step++;
396 }
397
398 /* if this attempt would hit where we started, indicate a complete
399 * iteration has occurred */
400 if ((fepriv->auto_step == fepriv->started_auto_step) &&
401 (fepriv->auto_sub_step == 0) && check_wrapped) {
402 return 1;
403 }
404
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300405 dev_dbg(fe->dvb->device, "%s: drift:%i inversion:%i auto_step:%i " \
406 "auto_sub_step:%i started_auto_step:%i\n",
407 __func__, fepriv->lnb_drift, fepriv->inversion,
408 fepriv->auto_step, fepriv->auto_sub_step,
409 fepriv->started_auto_step);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 /* set the frontend itself */
Mauro Carvalho Chehabac3852c2011-12-30 09:30:25 -0300412 c->frequency += fepriv->lnb_drift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (autoinversion)
Mauro Carvalho Chehabac3852c2011-12-30 09:30:25 -0300414 c->inversion = fepriv->inversion;
415 tmp = *c;
Patrick Boettcherdea74862006-05-14 05:01:31 -0300416 if (fe->ops.set_frontend)
Mauro Carvalho Chehabbc9cd272011-12-20 15:31:54 -0300417 fe_set_err = fe->ops.set_frontend(fe);
Mauro Carvalho Chehabac3852c2011-12-30 09:30:25 -0300418 *c = tmp;
Janne Grunau01886252009-09-01 19:23:09 -0300419 if (fe_set_err < 0) {
420 fepriv->state = FESTATE_ERROR;
421 return fe_set_err;
422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Mauro Carvalho Chehabac3852c2011-12-30 09:30:25 -0300424 c->frequency = original_frequency;
425 c->inversion = original_inversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 fepriv->auto_sub_step++;
428 return 0;
429}
430
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200431static void dvb_frontend_swzigzag(struct dvb_frontend *fe)
432{
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -0300433 enum fe_status s = 0;
Janne Grunau01886252009-09-01 19:23:09 -0300434 int retval = 0;
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200435 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Mauro Carvalho Chehabac3852c2011-12-30 09:30:25 -0300436 struct dtv_frontend_properties *c = &fe->dtv_property_cache, tmp;
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200437
438 /* if we've got no parameters, just keep idling */
439 if (fepriv->state & FESTATE_IDLE) {
440 fepriv->delay = 3*HZ;
441 fepriv->quality = 0;
442 return;
443 }
444
445 /* in SCAN mode, we just set the frontend when asked and leave it alone */
446 if (fepriv->tune_mode_flags & FE_TUNE_MODE_ONESHOT) {
447 if (fepriv->state & FESTATE_RETUNE) {
Mauro Carvalho Chehabac3852c2011-12-30 09:30:25 -0300448 tmp = *c;
Patrick Boettcherdea74862006-05-14 05:01:31 -0300449 if (fe->ops.set_frontend)
Mauro Carvalho Chehabbc9cd272011-12-20 15:31:54 -0300450 retval = fe->ops.set_frontend(fe);
Mauro Carvalho Chehabac3852c2011-12-30 09:30:25 -0300451 *c = tmp;
Janne Grunau01886252009-09-01 19:23:09 -0300452 if (retval < 0)
453 fepriv->state = FESTATE_ERROR;
454 else
455 fepriv->state = FESTATE_TUNED;
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200456 }
457 fepriv->delay = 3*HZ;
458 fepriv->quality = 0;
459 return;
460 }
461
462 /* get the frontend status */
463 if (fepriv->state & FESTATE_RETUNE) {
464 s = 0;
465 } else {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300466 if (fe->ops.read_status)
467 fe->ops.read_status(fe, &s);
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200468 if (s != fepriv->status) {
469 dvb_frontend_add_event(fe, s);
470 fepriv->status = s;
471 }
472 }
473
474 /* if we're not tuned, and we have a lock, move to the TUNED state */
475 if ((fepriv->state & FESTATE_WAITFORLOCK) && (s & FE_HAS_LOCK)) {
476 dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
477 fepriv->state = FESTATE_TUNED;
478
479 /* if we're tuned, then we have determined the correct inversion */
Patrick Boettcherdea74862006-05-14 05:01:31 -0300480 if ((!(fe->ops.info.caps & FE_CAN_INVERSION_AUTO)) &&
Mauro Carvalho Chehabac3852c2011-12-30 09:30:25 -0300481 (c->inversion == INVERSION_AUTO)) {
482 c->inversion = fepriv->inversion;
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200483 }
484 return;
485 }
486
487 /* if we are tuned already, check we're still locked */
488 if (fepriv->state & FESTATE_TUNED) {
489 dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
490
491 /* we're tuned, and the lock is still good... */
492 if (s & FE_HAS_LOCK) {
493 return;
494 } else { /* if we _WERE_ tuned, but now don't have a lock */
495 fepriv->state = FESTATE_ZIGZAG_FAST;
496 fepriv->started_auto_step = fepriv->auto_step;
497 fepriv->check_wrapped = 0;
498 }
499 }
500
501 /* don't actually do anything if we're in the LOSTLOCK state,
502 * the frontend is set to FE_CAN_RECOVER, and the max_drift is 0 */
503 if ((fepriv->state & FESTATE_LOSTLOCK) &&
Patrick Boettcherdea74862006-05-14 05:01:31 -0300504 (fe->ops.info.caps & FE_CAN_RECOVER) && (fepriv->max_drift == 0)) {
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200505 dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
506 return;
507 }
508
509 /* don't do anything if we're in the DISEQC state, since this
510 * might be someone with a motorized dish controlled by DISEQC.
511 * If its actually a re-tune, there will be a SET_FRONTEND soon enough. */
512 if (fepriv->state & FESTATE_DISEQC) {
513 dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
514 return;
515 }
516
517 /* if we're in the RETUNE state, set everything up for a brand
518 * new scan, keeping the current inversion setting, as the next
519 * tune is _very_ likely to require the same */
520 if (fepriv->state & FESTATE_RETUNE) {
521 fepriv->lnb_drift = 0;
522 fepriv->auto_step = 0;
523 fepriv->auto_sub_step = 0;
524 fepriv->started_auto_step = 0;
525 fepriv->check_wrapped = 0;
526 }
527
528 /* fast zigzag. */
529 if ((fepriv->state & FESTATE_SEARCHING_FAST) || (fepriv->state & FESTATE_RETUNE)) {
530 fepriv->delay = fepriv->min_delay;
531
Guillaume Audirac2030c032010-05-06 09:30:25 -0300532 /* perform a tune */
Janne Grunau01886252009-09-01 19:23:09 -0300533 retval = dvb_frontend_swzigzag_autotune(fe,
534 fepriv->check_wrapped);
535 if (retval < 0) {
536 return;
537 } else if (retval) {
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200538 /* OK, if we've run out of trials at the fast speed.
539 * Drop back to slow for the _next_ attempt */
540 fepriv->state = FESTATE_SEARCHING_SLOW;
541 fepriv->started_auto_step = fepriv->auto_step;
542 return;
543 }
544 fepriv->check_wrapped = 1;
545
546 /* if we've just retuned, enter the ZIGZAG_FAST state.
547 * This ensures we cannot return from an
548 * FE_SET_FRONTEND ioctl before the first frontend tune
549 * occurs */
550 if (fepriv->state & FESTATE_RETUNE) {
551 fepriv->state = FESTATE_TUNING_FAST;
552 }
553 }
554
555 /* slow zigzag */
556 if (fepriv->state & FESTATE_SEARCHING_SLOW) {
557 dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
558
559 /* Note: don't bother checking for wrapping; we stay in this
560 * state until we get a lock */
561 dvb_frontend_swzigzag_autotune(fe, 0);
562 }
563}
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565static int dvb_frontend_is_exiting(struct dvb_frontend *fe)
566{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -0700567 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Shuah Khan18ed2862014-07-12 13:44:12 -0300569 if (fe->exit != DVB_FE_NO_EXIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return 1;
571
572 if (fepriv->dvbdev->writers == 1)
Andreas Oberritterb9d5efc2011-12-09 21:37:00 -0300573 if (time_after_eq(jiffies, fepriv->release_jiffies +
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200574 dvb_shutdown_timeout * HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return 1;
576
577 return 0;
578}
579
580static int dvb_frontend_should_wakeup(struct dvb_frontend *fe)
581{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -0700582 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 if (fepriv->wakeup) {
585 fepriv->wakeup = 0;
586 return 1;
587 }
588 return dvb_frontend_is_exiting(fe);
589}
590
591static void dvb_frontend_wakeup(struct dvb_frontend *fe)
592{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -0700593 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 fepriv->wakeup = 1;
596 wake_up_interruptible(&fepriv->wait_queue);
597}
598
Mauro Carvalho Chehab9239effd2015-01-06 13:57:55 -0300599/**
600 * dvb_enable_media_tuner() - tries to enable the DVB tuner
601 *
602 * @fe: struct dvb_frontend pointer
603 *
604 * This function ensures that just one media tuner is enabled for a given
605 * frontend. It has two different behaviors:
606 * - For trivial devices with just one tuner:
607 * it just enables the existing tuner->fe link
608 * - For devices with more than one tuner:
609 * It is up to the driver to implement the logic that will enable one tuner
610 * and disable the other ones. However, if more than one tuner is enabled for
611 * the same frontend, it will print an error message and return -EINVAL.
612 *
613 * At return, it will return the error code returned by media_entity_setup_link,
614 * or 0 if everything is OK, if no tuner is linked to the frontend or if the
615 * mdev is NULL.
616 */
Mauro Carvalho Chehab135f9be2015-01-06 17:53:15 -0300617#ifdef CONFIG_MEDIA_CONTROLLER_DVB
Mauro Carvalho Chehab9239effd2015-01-06 13:57:55 -0300618static int dvb_enable_media_tuner(struct dvb_frontend *fe)
619{
Mauro Carvalho Chehab9239effd2015-01-06 13:57:55 -0300620 struct dvb_frontend_private *fepriv = fe->frontend_priv;
621 struct dvb_adapter *adapter = fe->dvb;
622 struct media_device *mdev = adapter->mdev;
623 struct media_entity *entity, *source;
624 struct media_link *link, *found_link = NULL;
625 int i, ret, n_links = 0, active_links = 0;
626
Mauro Carvalho Chehab135f9be2015-01-06 17:53:15 -0300627 fepriv->pipe_start_entity = NULL;
628
Mauro Carvalho Chehab9239effd2015-01-06 13:57:55 -0300629 if (!mdev)
630 return 0;
631
632 entity = fepriv->dvbdev->entity;
Mauro Carvalho Chehab135f9be2015-01-06 17:53:15 -0300633 fepriv->pipe_start_entity = entity;
634
Mauro Carvalho Chehab9239effd2015-01-06 13:57:55 -0300635 for (i = 0; i < entity->num_links; i++) {
636 link = &entity->links[i];
637 if (link->sink->entity == entity) {
638 found_link = link;
639 n_links++;
640 if (link->flags & MEDIA_LNK_FL_ENABLED)
641 active_links++;
642 }
643 }
644
645 if (!n_links || active_links == 1 || !found_link)
646 return 0;
647
648 /*
649 * If a frontend has more than one tuner linked, it is up to the driver
650 * to select with one will be the active one, as the frontend core can't
651 * guess. If the driver doesn't do that, it is a bug.
652 */
653 if (n_links > 1 && active_links != 1) {
654 dev_err(fe->dvb->device,
655 "WARNING: there are %d active links among %d tuners. This is a driver's bug!\n",
656 active_links, n_links);
657 return -EINVAL;
658 }
659
660 source = found_link->source->entity;
Mauro Carvalho Chehab135f9be2015-01-06 17:53:15 -0300661 fepriv->pipe_start_entity = source;
Mauro Carvalho Chehab9239effd2015-01-06 13:57:55 -0300662 for (i = 0; i < source->num_links; i++) {
663 struct media_entity *sink;
664 int flags = 0;
665
666 link = &source->links[i];
667 sink = link->sink->entity;
668
669 if (sink == entity)
670 flags = MEDIA_LNK_FL_ENABLED;
671
672 ret = media_entity_setup_link(link, flags);
673 if (ret) {
674 dev_err(fe->dvb->device,
675 "Couldn't change link %s->%s to %s. Error %d\n",
676 source->name, sink->name,
677 flags ? "enabled" : "disabled",
678 ret);
679 return ret;
680 } else
681 dev_dbg(fe->dvb->device,
682 "link %s->%s was %s\n",
683 source->name, sink->name,
684 flags ? "ENABLED" : "disabled");
685 }
Mauro Carvalho Chehab9239effd2015-01-06 13:57:55 -0300686 return 0;
687}
Mauro Carvalho Chehab135f9be2015-01-06 17:53:15 -0300688#endif
Mauro Carvalho Chehab9239effd2015-01-06 13:57:55 -0300689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690static int dvb_frontend_thread(void *data)
691{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -0700692 struct dvb_frontend *fe = data;
693 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -0300694 enum fe_status s;
Manu Abrahamc59e7872008-10-14 16:34:07 -0300695 enum dvbfe_algo algo;
Mauro Carvalho Chehabc1bd57d2015-02-18 11:43:44 -0300696#ifdef CONFIG_MEDIA_CONTROLLER_DVB
Mauro Carvalho Chehab9239effd2015-01-06 13:57:55 -0300697 int ret;
Mauro Carvalho Chehabc1bd57d2015-02-18 11:43:44 -0300698#endif
Manu Abrahamc59e7872008-10-14 16:34:07 -0300699
Mauro Carvalho Chehab7e072222011-12-26 17:48:33 -0300700 bool re_tune = false;
Juergen Lock6ae23222012-12-23 17:23:06 -0300701 bool semheld = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300703 dev_dbg(fe->dvb->device, "%s:\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200705 fepriv->check_wrapped = 0;
706 fepriv->quality = 0;
707 fepriv->delay = 3*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 fepriv->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 fepriv->wakeup = 0;
Andrew de Quincey04c56d02006-07-10 03:34:14 -0300710 fepriv->reinitialise = 0;
711
Mauro Carvalho Chehab135f9be2015-01-06 17:53:15 -0300712#ifdef CONFIG_MEDIA_CONTROLLER_DVB
Mauro Carvalho Chehab9239effd2015-01-06 13:57:55 -0300713 ret = dvb_enable_media_tuner(fe);
714 if (ret) {
715 /* FIXME: return an error if it fails */
716 dev_info(fe->dvb->device,
717 "proceeding with FE task\n");
Mauro Carvalho Chehab8a26a252015-02-23 09:41:17 -0300718 } else if (fepriv->pipe_start_entity) {
Mauro Carvalho Chehab135f9be2015-01-06 17:53:15 -0300719 ret = media_entity_pipeline_start(fepriv->pipe_start_entity,
720 &fepriv->pipe);
721 if (ret)
722 return ret;
Mauro Carvalho Chehab9239effd2015-01-06 13:57:55 -0300723 }
Mauro Carvalho Chehab135f9be2015-01-06 17:53:15 -0300724#endif
Mauro Carvalho Chehab9239effd2015-01-06 13:57:55 -0300725
Andrew de Quincey04c56d02006-07-10 03:34:14 -0300726 dvb_frontend_init(fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700728 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 while (1) {
730 up(&fepriv->sem); /* is locked when we enter the thread... */
akpm@linux-foundation.org65916912007-02-08 14:36:57 -0300731restart:
Hans Verkuil94238e92011-08-27 11:30:25 -0300732 wait_event_interruptible_timeout(fepriv->wait_queue,
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700733 dvb_frontend_should_wakeup(fe) || kthread_should_stop()
734 || freezing(current),
Herbert Poetzl8eec1422007-02-08 14:32:43 -0300735 fepriv->delay);
736
737 if (kthread_should_stop() || dvb_frontend_is_exiting(fe)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 /* got signal or quitting */
Juergen Lock6ae23222012-12-23 17:23:06 -0300739 if (!down_interruptible(&fepriv->sem))
740 semheld = true;
Shuah Khan18ed2862014-07-12 13:44:12 -0300741 fe->exit = DVB_FE_NORMAL_EXIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 break;
743 }
744
Herbert Poetzl8eec1422007-02-08 14:32:43 -0300745 if (try_to_freeze())
akpm@linux-foundation.org65916912007-02-08 14:36:57 -0300746 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 if (down_interruptible(&fepriv->sem))
749 break;
750
Andrew de Quincey86f40cc2006-03-30 15:53:35 -0300751 if (fepriv->reinitialise) {
752 dvb_frontend_init(fe);
Andreas Oberritter42f4e772011-08-24 14:33:52 -0300753 if (fe->ops.set_tone && fepriv->tone != -1)
Patrick Boettcherdea74862006-05-14 05:01:31 -0300754 fe->ops.set_tone(fe, fepriv->tone);
Andreas Oberritter42f4e772011-08-24 14:33:52 -0300755 if (fe->ops.set_voltage && fepriv->voltage != -1)
Patrick Boettcherdea74862006-05-14 05:01:31 -0300756 fe->ops.set_voltage(fe, fepriv->voltage);
Andrew de Quincey86f40cc2006-03-30 15:53:35 -0300757 fepriv->reinitialise = 0;
758 }
759
Andrew de Quincey36cb5572006-01-09 15:25:07 -0200760 /* do an iteration of the tuning loop */
Manu Abrahamd772bd02006-06-24 11:18:58 -0300761 if (fe->ops.get_frontend_algo) {
Manu Abrahamc59e7872008-10-14 16:34:07 -0300762 algo = fe->ops.get_frontend_algo(fe);
763 switch (algo) {
764 case DVBFE_ALGO_HW:
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300765 dev_dbg(fe->dvb->device, "%s: Frontend ALGO = DVBFE_ALGO_HW\n", __func__);
Manu Abrahamc59e7872008-10-14 16:34:07 -0300766
Manu Abrahamd772bd02006-06-24 11:18:58 -0300767 if (fepriv->state & FESTATE_RETUNE) {
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300768 dev_dbg(fe->dvb->device, "%s: Retune requested, FESTATE_RETUNE\n", __func__);
Mauro Carvalho Chehab7e072222011-12-26 17:48:33 -0300769 re_tune = true;
Manu Abrahamd772bd02006-06-24 11:18:58 -0300770 fepriv->state = FESTATE_TUNED;
Simon Arlott45145b62012-02-06 17:57:01 -0300771 } else {
772 re_tune = false;
Manu Abrahamd772bd02006-06-24 11:18:58 -0300773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Manu Abrahamc59e7872008-10-14 16:34:07 -0300775 if (fe->ops.tune)
Mauro Carvalho Chehab7e072222011-12-26 17:48:33 -0300776 fe->ops.tune(fe, re_tune, fepriv->tune_mode_flags, &fepriv->delay, &s);
Manu Abrahamc59e7872008-10-14 16:34:07 -0300777
Darron Broad2fac9a02008-12-18 06:27:50 -0300778 if (s != fepriv->status && !(fepriv->tune_mode_flags & FE_TUNE_MODE_ONESHOT)) {
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300779 dev_dbg(fe->dvb->device, "%s: state changed, adding current state\n", __func__);
Manu Abrahamd772bd02006-06-24 11:18:58 -0300780 dvb_frontend_add_event(fe, s);
781 fepriv->status = s;
782 }
Manu Abrahamc59e7872008-10-14 16:34:07 -0300783 break;
784 case DVBFE_ALGO_SW:
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300785 dev_dbg(fe->dvb->device, "%s: Frontend ALGO = DVBFE_ALGO_SW\n", __func__);
Manu Abraham70d90632006-06-29 22:05:23 -0300786 dvb_frontend_swzigzag(fe);
Manu Abrahamc59e7872008-10-14 16:34:07 -0300787 break;
788 case DVBFE_ALGO_CUSTOM:
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300789 dev_dbg(fe->dvb->device, "%s: Frontend ALGO = DVBFE_ALGO_CUSTOM, state=%d\n", __func__, fepriv->state);
Manu Abrahamc59e7872008-10-14 16:34:07 -0300790 if (fepriv->state & FESTATE_RETUNE) {
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300791 dev_dbg(fe->dvb->device, "%s: Retune requested, FESTAT_RETUNE\n", __func__);
Manu Abrahamc59e7872008-10-14 16:34:07 -0300792 fepriv->state = FESTATE_TUNED;
793 }
794 /* Case where we are going to search for a carrier
795 * User asked us to retune again for some reason, possibly
796 * requesting a search with a new set of parameters
797 */
798 if (fepriv->algo_status & DVBFE_ALGO_SEARCH_AGAIN) {
Arvo Jarve7bcbdf32008-10-20 06:05:21 -0300799 if (fe->ops.search) {
Mauro Carvalho Chehab41da5322011-12-26 18:03:12 -0300800 fepriv->algo_status = fe->ops.search(fe);
Manu Abrahamc59e7872008-10-14 16:34:07 -0300801 /* We did do a search as was requested, the flags are
802 * now unset as well and has the flags wrt to search.
803 */
Arvo Jarve7bcbdf32008-10-20 06:05:21 -0300804 } else {
805 fepriv->algo_status &= ~DVBFE_ALGO_SEARCH_AGAIN;
806 }
Manu Abrahamc59e7872008-10-14 16:34:07 -0300807 }
808 /* Track the carrier if the search was successful */
Mauro Carvalho Chehab1b5d8712011-12-26 18:11:25 -0300809 if (fepriv->algo_status != DVBFE_ALGO_SEARCH_SUCCESS) {
Arvo Jarve7bcbdf32008-10-20 06:05:21 -0300810 fepriv->algo_status |= DVBFE_ALGO_SEARCH_AGAIN;
811 fepriv->delay = HZ / 2;
812 }
Chris Rankin556a0442012-04-06 18:38:18 -0300813 dtv_property_legacy_params_sync(fe, &fepriv->parameters_out);
Arvo Jarve7bcbdf32008-10-20 06:05:21 -0300814 fe->ops.read_status(fe, &s);
815 if (s != fepriv->status) {
816 dvb_frontend_add_event(fe, s); /* update event list */
817 fepriv->status = s;
818 if (!(s & FE_HAS_LOCK)) {
819 fepriv->delay = HZ / 10;
820 fepriv->algo_status |= DVBFE_ALGO_SEARCH_AGAIN;
821 } else {
822 fepriv->delay = 60 * HZ;
823 }
Manu Abrahamc59e7872008-10-14 16:34:07 -0300824 }
825 break;
826 default:
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300827 dev_dbg(fe->dvb->device, "%s: UNDEFINED ALGO !\n", __func__);
Manu Abrahamc59e7872008-10-14 16:34:07 -0300828 break;
829 }
830 } else {
Manu Abraham4a4edcc2006-06-25 05:46:26 -0300831 dvb_frontend_swzigzag(fe);
Manu Abrahamc59e7872008-10-14 16:34:07 -0300832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
834
Mauro Carvalho Chehab135f9be2015-01-06 17:53:15 -0300835#ifdef CONFIG_MEDIA_CONTROLLER_DVB
Mauro Carvalho Chehab8a26a252015-02-23 09:41:17 -0300836 if (fepriv->pipe_start_entity)
837 media_entity_pipeline_stop(fepriv->pipe_start_entity);
Mauro Carvalho Chehab135f9be2015-01-06 17:53:15 -0300838 fepriv->pipe_start_entity = NULL;
839#endif
840
Oliver Endriss608f62d2007-08-25 13:17:53 -0300841 if (dvb_powerdown_on_sleep) {
842 if (fe->ops.set_voltage)
843 fe->ops.set_voltage(fe, SEC_VOLTAGE_OFF);
Patrick Boettcherdea74862006-05-14 05:01:31 -0300844 if (fe->ops.tuner_ops.sleep) {
Devin Heitmueller41286d92008-11-16 00:44:52 -0300845 if (fe->ops.i2c_gate_ctrl)
846 fe->ops.i2c_gate_ctrl(fe, 1);
Patrick Boettcherdea74862006-05-14 05:01:31 -0300847 fe->ops.tuner_ops.sleep(fe);
848 if (fe->ops.i2c_gate_ctrl)
849 fe->ops.i2c_gate_ctrl(fe, 0);
Andrew de Quincey7eef5dd2006-04-18 17:47:09 -0300850 }
Patrick Boettcherdea74862006-05-14 05:01:31 -0300851 if (fe->ops.sleep)
852 fe->ops.sleep(fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854
Herbert Poetzl8eec1422007-02-08 14:32:43 -0300855 fepriv->thread = NULL;
matthieu castete36309f2010-05-05 15:59:20 -0300856 if (kthread_should_stop())
Shuah Khan18ed2862014-07-12 13:44:12 -0300857 fe->exit = DVB_FE_DEVICE_REMOVED;
matthieu castete36309f2010-05-05 15:59:20 -0300858 else
Shuah Khan18ed2862014-07-12 13:44:12 -0300859 fe->exit = DVB_FE_NO_EXIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 mb();
861
Juergen Lock6ae23222012-12-23 17:23:06 -0300862 if (semheld)
863 up(&fepriv->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 dvb_frontend_wakeup(fe);
865 return 0;
866}
867
868static void dvb_frontend_stop(struct dvb_frontend *fe)
869{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -0700870 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300872 dev_dbg(fe->dvb->device, "%s:\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Shuah Khan18ed2862014-07-12 13:44:12 -0300874 if (fe->exit != DVB_FE_DEVICE_REMOVED)
875 fe->exit = DVB_FE_NORMAL_EXIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 mb();
877
Herbert Poetzl8eec1422007-02-08 14:32:43 -0300878 if (!fepriv->thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return;
880
Herbert Poetzl8eec1422007-02-08 14:32:43 -0300881 kthread_stop(fepriv->thread);
Markus Rechbergerca5be9c2007-04-14 10:18:58 -0300882
Thomas Gleixnera0a47142010-09-07 11:33:27 -0300883 sema_init(&fepriv->sem, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 fepriv->state = FESTATE_IDLE;
885
886 /* paranoia check in case a signal arrived */
Herbert Poetzl8eec1422007-02-08 14:32:43 -0300887 if (fepriv->thread)
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300888 dev_warn(fe->dvb->device,
889 "dvb_frontend_stop: warning: thread %p won't exit\n",
Herbert Poetzl8eec1422007-02-08 14:32:43 -0300890 fepriv->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
892
NooneImportant83b75b02005-11-08 21:35:27 -0800893/*
Mauro Carvalho Chehab4deea4c2015-11-09 23:24:10 -0200894 * Sleep for the amount of time given by add_usec parameter
895 *
896 * This needs to be as precise as possible, as it affects the detection of
897 * the dish tone command at the satellite subsystem. The precision is improved
898 * by using a scheduled msleep followed by udelay for the remainder.
NooneImportant83b75b02005-11-08 21:35:27 -0800899 */
Tina Ruchandani9056a232015-05-31 04:17:06 -0300900void dvb_frontend_sleep_until(ktime_t *waketime, u32 add_usec)
NooneImportant83b75b02005-11-08 21:35:27 -0800901{
Mauro Carvalho Chehaba733a412015-11-18 12:55:47 -0200902 s32 delta;
NooneImportant83b75b02005-11-08 21:35:27 -0800903
Mauro Carvalho Chehaba733a412015-11-18 12:55:47 -0200904 *waketime = ktime_add_us(*waketime, add_usec);
Tina Ruchandani9056a232015-05-31 04:17:06 -0300905 delta = ktime_us_delta(ktime_get_real(), *waketime);
NooneImportant83b75b02005-11-08 21:35:27 -0800906 if (delta > 2500) {
907 msleep((delta - 1500) / 1000);
Mauro Carvalho Chehaba733a412015-11-18 12:55:47 -0200908 delta = ktime_us_delta(ktime_get_real(), *waketime);
NooneImportant83b75b02005-11-08 21:35:27 -0800909 }
910 if (delta > 0)
911 udelay(delta);
912}
913EXPORT_SYMBOL(dvb_frontend_sleep_until);
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915static int dvb_frontend_start(struct dvb_frontend *fe)
916{
917 int ret;
Johannes Stezenbach0c53c702005-05-16 21:54:24 -0700918 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Herbert Poetzl8eec1422007-02-08 14:32:43 -0300919 struct task_struct *fe_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300921 dev_dbg(fe->dvb->device, "%s:\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Herbert Poetzl8eec1422007-02-08 14:32:43 -0300923 if (fepriv->thread) {
Shuah Khan18ed2862014-07-12 13:44:12 -0300924 if (fe->exit == DVB_FE_NO_EXIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 return 0;
926 else
927 dvb_frontend_stop (fe);
928 }
929
930 if (signal_pending(current))
931 return -EINTR;
932 if (down_interruptible (&fepriv->sem))
933 return -EINTR;
934
935 fepriv->state = FESTATE_IDLE;
Shuah Khan18ed2862014-07-12 13:44:12 -0300936 fe->exit = DVB_FE_NO_EXIT;
Herbert Poetzl8eec1422007-02-08 14:32:43 -0300937 fepriv->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 mb();
939
Herbert Poetzl8eec1422007-02-08 14:32:43 -0300940 fe_thread = kthread_run(dvb_frontend_thread, fe,
Steven Toth363c35f2008-10-11 11:05:50 -0300941 "kdvb-ad-%i-fe-%i", fe->dvb->num,fe->id);
Herbert Poetzl8eec1422007-02-08 14:32:43 -0300942 if (IS_ERR(fe_thread)) {
943 ret = PTR_ERR(fe_thread);
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300944 dev_warn(fe->dvb->device,
945 "dvb_frontend_start: failed to start kthread (%d)\n",
946 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 up(&fepriv->sem);
948 return ret;
949 }
Herbert Poetzl8eec1422007-02-08 14:32:43 -0300950 fepriv->thread = fe_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 return 0;
952}
953
Guillaume Audirac2030c032010-05-06 09:30:25 -0300954static void dvb_frontend_get_frequency_limits(struct dvb_frontend *fe,
Oliver Endrissc471b332007-08-09 01:03:42 -0300955 u32 *freq_min, u32 *freq_max)
956{
957 *freq_min = max(fe->ops.info.frequency_min, fe->ops.tuner_ops.info.frequency_min);
958
959 if (fe->ops.info.frequency_max == 0)
960 *freq_max = fe->ops.tuner_ops.info.frequency_max;
961 else if (fe->ops.tuner_ops.info.frequency_max == 0)
962 *freq_max = fe->ops.info.frequency_max;
963 else
964 *freq_max = min(fe->ops.info.frequency_max, fe->ops.tuner_ops.info.frequency_max);
965
966 if (*freq_min == 0 || *freq_max == 0)
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300967 dev_warn(fe->dvb->device, "DVB: adapter %i frontend %u frequency limits undefined - fix the driver\n",
968 fe->dvb->num, fe->id);
Oliver Endrissc471b332007-08-09 01:03:42 -0300969}
970
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -0300971static int dvb_frontend_check_parameters(struct dvb_frontend *fe)
Oliver Endriss1fab46f2007-07-23 21:00:36 -0300972{
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -0300973 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Oliver Endrissc471b332007-08-09 01:03:42 -0300974 u32 freq_min;
975 u32 freq_max;
976
Oliver Endriss1fab46f2007-07-23 21:00:36 -0300977 /* range check: frequency */
Guillaume Audirac2030c032010-05-06 09:30:25 -0300978 dvb_frontend_get_frequency_limits(fe, &freq_min, &freq_max);
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -0300979 if ((freq_min && c->frequency < freq_min) ||
980 (freq_max && c->frequency > freq_max)) {
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300981 dev_warn(fe->dvb->device, "DVB: adapter %i frontend %i frequency %u out of range (%u..%u)\n",
982 fe->dvb->num, fe->id, c->frequency,
983 freq_min, freq_max);
Oliver Endriss1fab46f2007-07-23 21:00:36 -0300984 return -EINVAL;
985 }
986
987 /* range check: symbol rate */
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -0300988 switch (c->delivery_system) {
989 case SYS_DVBS:
990 case SYS_DVBS2:
991 case SYS_TURBO:
992 case SYS_DVBC_ANNEX_A:
993 case SYS_DVBC_ANNEX_C:
Oliver Endriss1fab46f2007-07-23 21:00:36 -0300994 if ((fe->ops.info.symbol_rate_min &&
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -0300995 c->symbol_rate < fe->ops.info.symbol_rate_min) ||
Oliver Endriss1fab46f2007-07-23 21:00:36 -0300996 (fe->ops.info.symbol_rate_max &&
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -0300997 c->symbol_rate > fe->ops.info.symbol_rate_max)) {
Antti Palosaari36bdbc32012-08-15 20:28:37 -0300998 dev_warn(fe->dvb->device, "DVB: adapter %i frontend %i symbol rate %u out of range (%u..%u)\n",
999 fe->dvb->num, fe->id, c->symbol_rate,
1000 fe->ops.info.symbol_rate_min,
1001 fe->ops.info.symbol_rate_max);
Oliver Endriss1fab46f2007-07-23 21:00:36 -03001002 return -EINVAL;
1003 }
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001004 default:
1005 break;
Oliver Endriss1fab46f2007-07-23 21:00:36 -03001006 }
1007
1008 return 0;
1009}
1010
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001011static int dvb_frontend_clear_cache(struct dvb_frontend *fe)
1012{
Andreas Oberritter50727712011-05-08 20:03:39 -03001013 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001014 int i;
Mauro Carvalho Chehab149709f2012-01-13 11:46:36 -02001015 u32 delsys;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001016
Mauro Carvalho Chehab149709f2012-01-13 11:46:36 -02001017 delsys = c->delivery_system;
Mauro Carvalho Chehab808d24d2013-03-20 10:39:31 -03001018 memset(c, 0, offsetof(struct dtv_frontend_properties, strength));
Mauro Carvalho Chehab149709f2012-01-13 11:46:36 -02001019 c->delivery_system = delsys;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001020
Andreas Oberritter50727712011-05-08 20:03:39 -03001021 c->state = DTV_CLEAR;
Mauro Carvalho Chehab26c924f2012-01-01 16:11:10 -03001022
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001023 dev_dbg(fe->dvb->device, "%s: Clearing cache for delivery system %d\n",
1024 __func__, c->delivery_system);
Mauro Carvalho Chehab26c924f2012-01-01 16:11:10 -03001025
Andreas Oberritter50727712011-05-08 20:03:39 -03001026 c->transmission_mode = TRANSMISSION_MODE_AUTO;
Mauro Carvalho Chehab26c924f2012-01-01 16:11:10 -03001027 c->bandwidth_hz = 0; /* AUTO */
Andreas Oberritter50727712011-05-08 20:03:39 -03001028 c->guard_interval = GUARD_INTERVAL_AUTO;
1029 c->hierarchy = HIERARCHY_AUTO;
Mauro Carvalho Chehab26c924f2012-01-01 16:11:10 -03001030 c->symbol_rate = 0;
Andreas Oberritter50727712011-05-08 20:03:39 -03001031 c->code_rate_HP = FEC_AUTO;
1032 c->code_rate_LP = FEC_AUTO;
Mauro Carvalho Chehab26c924f2012-01-01 16:11:10 -03001033 c->fec_inner = FEC_AUTO;
Mauro Carvalho Chehab39ce61a2011-11-11 12:46:23 -02001034 c->rolloff = ROLLOFF_AUTO;
Mauro Carvalho Chehab26c924f2012-01-01 16:11:10 -03001035 c->voltage = SEC_VOLTAGE_OFF;
Mauro Carvalho Chehab26c924f2012-01-01 16:11:10 -03001036 c->sectone = SEC_TONE_OFF;
1037 c->pilot = PILOT_AUTO;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001038
Mauro Carvalho Chehaba520ca92012-01-01 16:11:15 -03001039 c->isdbt_partial_reception = 0;
1040 c->isdbt_sb_mode = 0;
1041 c->isdbt_sb_subchannel = 0;
1042 c->isdbt_sb_segment_idx = 0;
1043 c->isdbt_sb_segment_count = 0;
1044 c->isdbt_layer_enabled = 0;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001045 for (i = 0; i < 3; i++) {
Andreas Oberritter50727712011-05-08 20:03:39 -03001046 c->layer[i].fec = FEC_AUTO;
1047 c->layer[i].modulation = QAM_AUTO;
Mauro Carvalho Chehaba520ca92012-01-01 16:11:15 -03001048 c->layer[i].interleaving = 0;
1049 c->layer[i].segment_count = 0;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001050 }
1051
Evgeny Plehov287cefd2012-09-13 10:13:30 -03001052 c->stream_id = NO_STREAM_ID_FILTER;
Mauro Carvalho Chehab26c924f2012-01-01 16:11:10 -03001053
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001054 switch (c->delivery_system) {
1055 case SYS_DVBS:
1056 case SYS_DVBS2:
1057 case SYS_TURBO:
1058 c->modulation = QPSK; /* implied for DVB-S in legacy API */
1059 c->rolloff = ROLLOFF_35;/* implied for DVB-S */
1060 break;
1061 case SYS_ATSC:
1062 c->modulation = VSB_8;
1063 break;
Akihiro Tsukada8e281fa2014-10-31 10:19:39 -03001064 case SYS_ISDBS:
1065 c->symbol_rate = 28860000;
1066 c->rolloff = ROLLOFF_35;
1067 c->bandwidth_hz = c->symbol_rate / 100 * 135;
1068 break;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001069 default:
1070 c->modulation = QAM_AUTO;
1071 break;
1072 }
1073
Antti Palosaari33eebec2012-10-03 04:28:56 -03001074 c->lna = LNA_AUTO;
1075
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001076 return 0;
1077}
1078
1079#define _DTV_CMD(n, s, b) \
1080[n] = { \
1081 .name = #n, \
1082 .cmd = n, \
1083 .set = s,\
1084 .buffer = b \
1085}
1086
Andreas Oberritterec05a642011-05-26 07:54:14 -03001087static struct dtv_cmds_h dtv_cmds[DTV_MAX_COMMAND + 1] = {
Mauro Carvalho Chehab06d3a392009-10-23 20:09:42 -03001088 _DTV_CMD(DTV_TUNE, 1, 0),
1089 _DTV_CMD(DTV_CLEAR, 1, 0),
Steven Toth6b73eea2008-09-04 01:12:25 -03001090
1091 /* Set */
Mauro Carvalho Chehab06d3a392009-10-23 20:09:42 -03001092 _DTV_CMD(DTV_FREQUENCY, 1, 0),
1093 _DTV_CMD(DTV_BANDWIDTH_HZ, 1, 0),
1094 _DTV_CMD(DTV_MODULATION, 1, 0),
1095 _DTV_CMD(DTV_INVERSION, 1, 0),
1096 _DTV_CMD(DTV_DISEQC_MASTER, 1, 1),
1097 _DTV_CMD(DTV_SYMBOL_RATE, 1, 0),
1098 _DTV_CMD(DTV_INNER_FEC, 1, 0),
1099 _DTV_CMD(DTV_VOLTAGE, 1, 0),
1100 _DTV_CMD(DTV_TONE, 1, 0),
1101 _DTV_CMD(DTV_PILOT, 1, 0),
1102 _DTV_CMD(DTV_ROLLOFF, 1, 0),
1103 _DTV_CMD(DTV_DELIVERY_SYSTEM, 1, 0),
1104 _DTV_CMD(DTV_HIERARCHY, 1, 0),
1105 _DTV_CMD(DTV_CODE_RATE_HP, 1, 0),
1106 _DTV_CMD(DTV_CODE_RATE_LP, 1, 0),
1107 _DTV_CMD(DTV_GUARD_INTERVAL, 1, 0),
1108 _DTV_CMD(DTV_TRANSMISSION_MODE, 1, 0),
Antti Palosaari224b6642012-08-12 22:33:21 -03001109 _DTV_CMD(DTV_INTERLEAVING, 1, 0),
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001110
1111 _DTV_CMD(DTV_ISDBT_PARTIAL_RECEPTION, 1, 0),
1112 _DTV_CMD(DTV_ISDBT_SOUND_BROADCASTING, 1, 0),
1113 _DTV_CMD(DTV_ISDBT_SB_SUBCHANNEL_ID, 1, 0),
1114 _DTV_CMD(DTV_ISDBT_SB_SEGMENT_IDX, 1, 0),
1115 _DTV_CMD(DTV_ISDBT_SB_SEGMENT_COUNT, 1, 0),
Patrick Boettchere7b79492009-08-14 05:24:19 -03001116 _DTV_CMD(DTV_ISDBT_LAYER_ENABLED, 1, 0),
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001117 _DTV_CMD(DTV_ISDBT_LAYERA_FEC, 1, 0),
1118 _DTV_CMD(DTV_ISDBT_LAYERA_MODULATION, 1, 0),
1119 _DTV_CMD(DTV_ISDBT_LAYERA_SEGMENT_COUNT, 1, 0),
1120 _DTV_CMD(DTV_ISDBT_LAYERA_TIME_INTERLEAVING, 1, 0),
1121 _DTV_CMD(DTV_ISDBT_LAYERB_FEC, 1, 0),
1122 _DTV_CMD(DTV_ISDBT_LAYERB_MODULATION, 1, 0),
1123 _DTV_CMD(DTV_ISDBT_LAYERB_SEGMENT_COUNT, 1, 0),
1124 _DTV_CMD(DTV_ISDBT_LAYERB_TIME_INTERLEAVING, 1, 0),
1125 _DTV_CMD(DTV_ISDBT_LAYERC_FEC, 1, 0),
1126 _DTV_CMD(DTV_ISDBT_LAYERC_MODULATION, 1, 0),
1127 _DTV_CMD(DTV_ISDBT_LAYERC_SEGMENT_COUNT, 1, 0),
1128 _DTV_CMD(DTV_ISDBT_LAYERC_TIME_INTERLEAVING, 1, 0),
1129
Evgeny Plehov287cefd2012-09-13 10:13:30 -03001130 _DTV_CMD(DTV_STREAM_ID, 1, 0),
1131 _DTV_CMD(DTV_DVBT2_PLP_ID_LEGACY, 1, 0),
Antti Palosaari8a2697a2012-07-11 21:54:50 -03001132 _DTV_CMD(DTV_LNA, 1, 0),
HIRANO Takahito98293ef2009-09-18 11:17:54 -03001133
Steven Toth6b73eea2008-09-04 01:12:25 -03001134 /* Get */
Mauro Carvalho Chehab06d3a392009-10-23 20:09:42 -03001135 _DTV_CMD(DTV_DISEQC_SLAVE_REPLY, 0, 1),
1136 _DTV_CMD(DTV_API_VERSION, 0, 0),
Manu Abrahamba2780c2011-11-13 18:47:44 -03001137
1138 _DTV_CMD(DTV_ENUM_DELSYS, 0, 0),
Michael Krufkyca689482012-01-29 15:44:58 -03001139
1140 _DTV_CMD(DTV_ATSCMH_PARADE_ID, 1, 0),
1141 _DTV_CMD(DTV_ATSCMH_RS_FRAME_ENSEMBLE, 1, 0),
1142
1143 _DTV_CMD(DTV_ATSCMH_FIC_VER, 0, 0),
Michael Krufkyca689482012-01-29 15:44:58 -03001144 _DTV_CMD(DTV_ATSCMH_NOG, 0, 0),
1145 _DTV_CMD(DTV_ATSCMH_TNOG, 0, 0),
1146 _DTV_CMD(DTV_ATSCMH_SGN, 0, 0),
1147 _DTV_CMD(DTV_ATSCMH_PRC, 0, 0),
1148 _DTV_CMD(DTV_ATSCMH_RS_FRAME_MODE, 0, 0),
Michael Krufkyca689482012-01-29 15:44:58 -03001149 _DTV_CMD(DTV_ATSCMH_RS_CODE_MODE_PRI, 0, 0),
1150 _DTV_CMD(DTV_ATSCMH_RS_CODE_MODE_SEC, 0, 0),
1151 _DTV_CMD(DTV_ATSCMH_SCCC_BLOCK_MODE, 0, 0),
1152 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_A, 0, 0),
1153 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_B, 0, 0),
1154 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_C, 0, 0),
1155 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_D, 0, 0),
Mauro Carvalho Chehab7cd4ece2013-01-07 15:41:35 -03001156
1157 /* Statistics API */
1158 _DTV_CMD(DTV_STAT_SIGNAL_STRENGTH, 0, 0),
1159 _DTV_CMD(DTV_STAT_CNR, 0, 0),
1160 _DTV_CMD(DTV_STAT_PRE_ERROR_BIT_COUNT, 0, 0),
1161 _DTV_CMD(DTV_STAT_PRE_TOTAL_BIT_COUNT, 0, 0),
1162 _DTV_CMD(DTV_STAT_POST_ERROR_BIT_COUNT, 0, 0),
1163 _DTV_CMD(DTV_STAT_POST_TOTAL_BIT_COUNT, 0, 0),
1164 _DTV_CMD(DTV_STAT_ERROR_BLOCK_COUNT, 0, 0),
1165 _DTV_CMD(DTV_STAT_TOTAL_BLOCK_COUNT, 0, 0),
Steven Toth6b73eea2008-09-04 01:12:25 -03001166};
1167
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001168static void dtv_property_dump(struct dvb_frontend *fe, struct dtv_property *tvp)
Steven Toth6b73eea2008-09-04 01:12:25 -03001169{
1170 int i;
1171
Mauro Carvalho Chehab106ff9e2011-07-15 08:49:06 -03001172 if (tvp->cmd <= 0 || tvp->cmd > DTV_MAX_COMMAND) {
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001173 dev_warn(fe->dvb->device, "%s: tvp.cmd = 0x%08x undefined\n",
1174 __func__, tvp->cmd);
Darron Broad4aae8ef2008-10-03 11:50:00 -03001175 return;
1176 }
1177
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001178 dev_dbg(fe->dvb->device, "%s: tvp.cmd = 0x%08x (%s)\n", __func__,
1179 tvp->cmd, dtv_cmds[tvp->cmd].name);
Steven Toth6b73eea2008-09-04 01:12:25 -03001180
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001181 if (dtv_cmds[tvp->cmd].buffer) {
1182 dev_dbg(fe->dvb->device, "%s: tvp.u.buffer.len = 0x%02x\n",
1183 __func__, tvp->u.buffer.len);
Steven Toth6b73eea2008-09-04 01:12:25 -03001184
1185 for(i = 0; i < tvp->u.buffer.len; i++)
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001186 dev_dbg(fe->dvb->device,
1187 "%s: tvp.u.buffer.data[0x%02x] = 0x%02x\n",
1188 __func__, i, tvp->u.buffer.data[i]);
1189 } else {
1190 dev_dbg(fe->dvb->device, "%s: tvp.u.data = 0x%08x\n", __func__,
1191 tvp->u.data);
1192 }
Steven Toth6b73eea2008-09-04 01:12:25 -03001193}
1194
Steven Tothee33c522008-09-11 23:52:32 -03001195/* Synchronise the legacy tuning parameters into the cache, so that demodulator
1196 * drivers can use a single set_frontend tuning function, regardless of whether
1197 * it's being used for the legacy or new API, reducing code and complexity.
1198 */
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001199static int dtv_property_cache_sync(struct dvb_frontend *fe,
1200 struct dtv_frontend_properties *c,
1201 const struct dvb_frontend_parameters *p)
Steven Tothee33c522008-09-11 23:52:32 -03001202{
Steven Tothee33c522008-09-11 23:52:32 -03001203 c->frequency = p->frequency;
1204 c->inversion = p->inversion;
1205
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001206 switch (dvbv3_type(c->delivery_system)) {
1207 case DVBV3_QPSK:
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001208 dev_dbg(fe->dvb->device, "%s: Preparing QPSK req\n", __func__);
Steven Tothee33c522008-09-11 23:52:32 -03001209 c->symbol_rate = p->u.qpsk.symbol_rate;
1210 c->fec_inner = p->u.qpsk.fec_inner;
1211 break;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001212 case DVBV3_QAM:
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001213 dev_dbg(fe->dvb->device, "%s: Preparing QAM req\n", __func__);
Steven Tothee33c522008-09-11 23:52:32 -03001214 c->symbol_rate = p->u.qam.symbol_rate;
1215 c->fec_inner = p->u.qam.fec_inner;
1216 c->modulation = p->u.qam.modulation;
1217 break;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001218 case DVBV3_OFDM:
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001219 dev_dbg(fe->dvb->device, "%s: Preparing OFDM req\n", __func__);
1220
Mauro Carvalho Chehab9a27e6a2012-01-01 16:11:11 -03001221 switch (p->u.ofdm.bandwidth) {
1222 case BANDWIDTH_10_MHZ:
1223 c->bandwidth_hz = 10000000;
1224 break;
1225 case BANDWIDTH_8_MHZ:
Steven Toth75b7f942008-09-13 16:56:34 -03001226 c->bandwidth_hz = 8000000;
Mauro Carvalho Chehab9a27e6a2012-01-01 16:11:11 -03001227 break;
1228 case BANDWIDTH_7_MHZ:
1229 c->bandwidth_hz = 7000000;
1230 break;
1231 case BANDWIDTH_6_MHZ:
1232 c->bandwidth_hz = 6000000;
1233 break;
1234 case BANDWIDTH_5_MHZ:
1235 c->bandwidth_hz = 5000000;
1236 break;
1237 case BANDWIDTH_1_712_MHZ:
1238 c->bandwidth_hz = 1712000;
1239 break;
1240 case BANDWIDTH_AUTO:
Steven Toth75b7f942008-09-13 16:56:34 -03001241 c->bandwidth_hz = 0;
Mauro Carvalho Chehab9a27e6a2012-01-01 16:11:11 -03001242 }
1243
Steven Tothee33c522008-09-11 23:52:32 -03001244 c->code_rate_HP = p->u.ofdm.code_rate_HP;
1245 c->code_rate_LP = p->u.ofdm.code_rate_LP;
1246 c->modulation = p->u.ofdm.constellation;
1247 c->transmission_mode = p->u.ofdm.transmission_mode;
1248 c->guard_interval = p->u.ofdm.guard_interval;
1249 c->hierarchy = p->u.ofdm.hierarchy_information;
1250 break;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001251 case DVBV3_ATSC:
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001252 dev_dbg(fe->dvb->device, "%s: Preparing ATSC req\n", __func__);
Steven Tothee33c522008-09-11 23:52:32 -03001253 c->modulation = p->u.vsb.modulation;
Michael Krufkyca689482012-01-29 15:44:58 -03001254 if (c->delivery_system == SYS_ATSCMH)
1255 break;
Steven Toth80a773c2008-09-12 00:53:50 -03001256 if ((c->modulation == VSB_8) || (c->modulation == VSB_16))
1257 c->delivery_system = SYS_ATSC;
1258 else
1259 c->delivery_system = SYS_DVBC_ANNEX_B;
Steven Tothee33c522008-09-11 23:52:32 -03001260 break;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001261 case DVBV3_UNKNOWN:
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001262 dev_err(fe->dvb->device,
1263 "%s: doesn't know how to handle a DVBv3 call to delivery system %i\n",
1264 __func__, c->delivery_system);
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001265 return -EINVAL;
Steven Tothee33c522008-09-11 23:52:32 -03001266 }
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001267
1268 return 0;
Steven Tothee33c522008-09-11 23:52:32 -03001269}
1270
Steven Tothd5748f12008-09-12 00:27:13 -03001271/* Ensure the cached values are set correctly in the frontend
1272 * legacy tuning structures, for the advanced tuning API.
1273 */
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001274static int dtv_property_legacy_params_sync(struct dvb_frontend *fe,
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -03001275 struct dvb_frontend_parameters *p)
Steven Toth6b73eea2008-09-04 01:12:25 -03001276{
Andreas Oberritter15cc2bb2011-05-08 20:03:35 -03001277 const struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Steven Toth6b73eea2008-09-04 01:12:25 -03001278
Steven Tothd5748f12008-09-12 00:27:13 -03001279 p->frequency = c->frequency;
1280 p->inversion = c->inversion;
1281
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001282 switch (dvbv3_type(c->delivery_system)) {
1283 case DVBV3_UNKNOWN:
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001284 dev_err(fe->dvb->device,
1285 "%s: doesn't know how to handle a DVBv3 call to delivery system %i\n",
1286 __func__, c->delivery_system);
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001287 return -EINVAL;
1288 case DVBV3_QPSK:
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001289 dev_dbg(fe->dvb->device, "%s: Preparing QPSK req\n", __func__);
Steven Tothd5748f12008-09-12 00:27:13 -03001290 p->u.qpsk.symbol_rate = c->symbol_rate;
1291 p->u.qpsk.fec_inner = c->fec_inner;
1292 break;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001293 case DVBV3_QAM:
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001294 dev_dbg(fe->dvb->device, "%s: Preparing QAM req\n", __func__);
Steven Tothd5748f12008-09-12 00:27:13 -03001295 p->u.qam.symbol_rate = c->symbol_rate;
1296 p->u.qam.fec_inner = c->fec_inner;
1297 p->u.qam.modulation = c->modulation;
1298 break;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001299 case DVBV3_OFDM:
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001300 dev_dbg(fe->dvb->device, "%s: Preparing OFDM req\n", __func__);
Mauro Carvalho Chehab9a27e6a2012-01-01 16:11:11 -03001301 switch (c->bandwidth_hz) {
1302 case 10000000:
1303 p->u.ofdm.bandwidth = BANDWIDTH_10_MHZ;
1304 break;
1305 case 8000000:
Steven Toth75b7f942008-09-13 16:56:34 -03001306 p->u.ofdm.bandwidth = BANDWIDTH_8_MHZ;
Mauro Carvalho Chehab9a27e6a2012-01-01 16:11:11 -03001307 break;
1308 case 7000000:
1309 p->u.ofdm.bandwidth = BANDWIDTH_7_MHZ;
1310 break;
1311 case 6000000:
1312 p->u.ofdm.bandwidth = BANDWIDTH_6_MHZ;
1313 break;
1314 case 5000000:
1315 p->u.ofdm.bandwidth = BANDWIDTH_5_MHZ;
1316 break;
1317 case 1712000:
1318 p->u.ofdm.bandwidth = BANDWIDTH_1_712_MHZ;
1319 break;
1320 case 0:
1321 default:
Steven Toth75b7f942008-09-13 16:56:34 -03001322 p->u.ofdm.bandwidth = BANDWIDTH_AUTO;
Mauro Carvalho Chehab9a27e6a2012-01-01 16:11:11 -03001323 }
Steven Tothd5748f12008-09-12 00:27:13 -03001324 p->u.ofdm.code_rate_HP = c->code_rate_HP;
1325 p->u.ofdm.code_rate_LP = c->code_rate_LP;
1326 p->u.ofdm.constellation = c->modulation;
1327 p->u.ofdm.transmission_mode = c->transmission_mode;
1328 p->u.ofdm.guard_interval = c->guard_interval;
1329 p->u.ofdm.hierarchy_information = c->hierarchy;
1330 break;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001331 case DVBV3_ATSC:
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001332 dev_dbg(fe->dvb->device, "%s: Preparing VSB req\n", __func__);
Steven Tothd5748f12008-09-12 00:27:13 -03001333 p->u.vsb.modulation = c->modulation;
1334 break;
1335 }
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001336 return 0;
Steven Toth6b73eea2008-09-04 01:12:25 -03001337}
1338
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -03001339/**
1340 * dtv_get_frontend - calls a callback for retrieving DTV parameters
1341 * @fe: struct dvb_frontend pointer
1342 * @c: struct dtv_frontend_properties pointer (DVBv5 cache)
1343 * @p_out struct dvb_frontend_parameters pointer (DVBv3 FE struct)
1344 *
1345 * This routine calls either the DVBv3 or DVBv5 get_frontend call.
1346 * If c is not null, it will update the DVBv5 cache struct pointed by it.
1347 * If p_out is not null, it will update the DVBv3 params pointed by it.
1348 */
1349static int dtv_get_frontend(struct dvb_frontend *fe,
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -03001350 struct dvb_frontend_parameters *p_out)
1351{
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -03001352 int r;
1353
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -03001354 if (fe->ops.get_frontend) {
Mauro Carvalho Chehab7c61d802011-12-30 11:30:21 -03001355 r = fe->ops.get_frontend(fe);
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -03001356 if (unlikely(r < 0))
1357 return r;
Mauro Carvalho Chehab7c61d802011-12-30 11:30:21 -03001358 if (p_out)
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -03001359 dtv_property_legacy_params_sync(fe, p_out);
1360 return 0;
1361 }
1362
Mauro Carvalho Chehab7c61d802011-12-30 11:30:21 -03001363 /* As everything is in cache, get_frontend fops are always supported */
Mauro Carvalho Chehabb1e9a65012011-12-26 16:43:32 -03001364 return 0;
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -03001365}
1366
Arnd Bergmann16ef8de2010-04-27 00:24:00 +02001367static int dvb_frontend_ioctl_legacy(struct file *file,
Steven Toth13c97bf2008-09-04 21:19:43 -03001368 unsigned int cmd, void *parg);
Arnd Bergmann16ef8de2010-04-27 00:24:00 +02001369static int dvb_frontend_ioctl_properties(struct file *file,
Steven Toth13c97bf2008-09-04 21:19:43 -03001370 unsigned int cmd, void *parg);
1371
Mauro Carvalho Chehab072ce0c2009-01-05 01:19:06 -03001372static int dtv_property_process_get(struct dvb_frontend *fe,
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -03001373 const struct dtv_frontend_properties *c,
Mauro Carvalho Chehab072ce0c2009-01-05 01:19:06 -03001374 struct dtv_property *tvp,
Arnd Bergmann16ef8de2010-04-27 00:24:00 +02001375 struct file *file)
Steven Toth363429a2008-09-12 01:34:28 -03001376{
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001377 int r, ncaps;
Steven Tothbfbf2da2008-09-12 01:37:37 -03001378
Steven Toth363429a2008-09-12 01:34:28 -03001379 switch(tvp->cmd) {
Manu Abrahamba2780c2011-11-13 18:47:44 -03001380 case DTV_ENUM_DELSYS:
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001381 ncaps = 0;
Ole Ernst0123f292014-03-05 14:08:15 -03001382 while (ncaps < MAX_DELSYS && fe->ops.delsys[ncaps]) {
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001383 tvp->u.buffer.data[ncaps] = fe->ops.delsys[ncaps];
1384 ncaps++;
1385 }
1386 tvp->u.buffer.len = ncaps;
Manu Abrahamba2780c2011-11-13 18:47:44 -03001387 break;
Steven Toth363429a2008-09-12 01:34:28 -03001388 case DTV_FREQUENCY:
Andreas Oberritter50727712011-05-08 20:03:39 -03001389 tvp->u.data = c->frequency;
Steven Toth363429a2008-09-12 01:34:28 -03001390 break;
1391 case DTV_MODULATION:
Andreas Oberritter50727712011-05-08 20:03:39 -03001392 tvp->u.data = c->modulation;
Steven Toth363429a2008-09-12 01:34:28 -03001393 break;
Steven Toth75b7f942008-09-13 16:56:34 -03001394 case DTV_BANDWIDTH_HZ:
Andreas Oberritter50727712011-05-08 20:03:39 -03001395 tvp->u.data = c->bandwidth_hz;
Steven Toth363429a2008-09-12 01:34:28 -03001396 break;
1397 case DTV_INVERSION:
Andreas Oberritter50727712011-05-08 20:03:39 -03001398 tvp->u.data = c->inversion;
Steven Toth363429a2008-09-12 01:34:28 -03001399 break;
1400 case DTV_SYMBOL_RATE:
Andreas Oberritter50727712011-05-08 20:03:39 -03001401 tvp->u.data = c->symbol_rate;
Steven Toth363429a2008-09-12 01:34:28 -03001402 break;
1403 case DTV_INNER_FEC:
Andreas Oberritter50727712011-05-08 20:03:39 -03001404 tvp->u.data = c->fec_inner;
Steven Toth363429a2008-09-12 01:34:28 -03001405 break;
1406 case DTV_PILOT:
Andreas Oberritter50727712011-05-08 20:03:39 -03001407 tvp->u.data = c->pilot;
Steven Toth363429a2008-09-12 01:34:28 -03001408 break;
1409 case DTV_ROLLOFF:
Andreas Oberritter50727712011-05-08 20:03:39 -03001410 tvp->u.data = c->rolloff;
Steven Toth363429a2008-09-12 01:34:28 -03001411 break;
1412 case DTV_DELIVERY_SYSTEM:
Andreas Oberritter50727712011-05-08 20:03:39 -03001413 tvp->u.data = c->delivery_system;
Steven Toth363429a2008-09-12 01:34:28 -03001414 break;
Steven Toth363429a2008-09-12 01:34:28 -03001415 case DTV_VOLTAGE:
Andreas Oberritter50727712011-05-08 20:03:39 -03001416 tvp->u.data = c->voltage;
Steven Toth363429a2008-09-12 01:34:28 -03001417 break;
1418 case DTV_TONE:
Andreas Oberritter50727712011-05-08 20:03:39 -03001419 tvp->u.data = c->sectone;
Steven Toth363429a2008-09-12 01:34:28 -03001420 break;
Steven Totheacf8d82008-09-26 00:29:49 -03001421 case DTV_API_VERSION:
1422 tvp->u.data = (DVB_API_VERSION << 8) | DVB_API_VERSION_MINOR;
1423 break;
Steven Totha4de91b2008-10-06 21:55:46 -03001424 case DTV_CODE_RATE_HP:
Andreas Oberritter50727712011-05-08 20:03:39 -03001425 tvp->u.data = c->code_rate_HP;
Steven Totha4de91b2008-10-06 21:55:46 -03001426 break;
1427 case DTV_CODE_RATE_LP:
Andreas Oberritter50727712011-05-08 20:03:39 -03001428 tvp->u.data = c->code_rate_LP;
Steven Totha4de91b2008-10-06 21:55:46 -03001429 break;
Steven Tothb87625f2008-10-06 21:56:59 -03001430 case DTV_GUARD_INTERVAL:
Andreas Oberritter50727712011-05-08 20:03:39 -03001431 tvp->u.data = c->guard_interval;
Steven Tothb87625f2008-10-06 21:56:59 -03001432 break;
1433 case DTV_TRANSMISSION_MODE:
Andreas Oberritter50727712011-05-08 20:03:39 -03001434 tvp->u.data = c->transmission_mode;
Steven Tothb87625f2008-10-06 21:56:59 -03001435 break;
Steven Tothef526f42008-10-06 22:01:47 -03001436 case DTV_HIERARCHY:
Andreas Oberritter50727712011-05-08 20:03:39 -03001437 tvp->u.data = c->hierarchy;
Steven Tothef526f42008-10-06 22:01:47 -03001438 break;
Antti Palosaari224b6642012-08-12 22:33:21 -03001439 case DTV_INTERLEAVING:
1440 tvp->u.data = c->interleaving;
1441 break;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001442
1443 /* ISDB-T Support here */
1444 case DTV_ISDBT_PARTIAL_RECEPTION:
Andreas Oberritter50727712011-05-08 20:03:39 -03001445 tvp->u.data = c->isdbt_partial_reception;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001446 break;
1447 case DTV_ISDBT_SOUND_BROADCASTING:
Andreas Oberritter50727712011-05-08 20:03:39 -03001448 tvp->u.data = c->isdbt_sb_mode;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001449 break;
1450 case DTV_ISDBT_SB_SUBCHANNEL_ID:
Andreas Oberritter50727712011-05-08 20:03:39 -03001451 tvp->u.data = c->isdbt_sb_subchannel;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001452 break;
1453 case DTV_ISDBT_SB_SEGMENT_IDX:
Andreas Oberritter50727712011-05-08 20:03:39 -03001454 tvp->u.data = c->isdbt_sb_segment_idx;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001455 break;
1456 case DTV_ISDBT_SB_SEGMENT_COUNT:
Andreas Oberritter50727712011-05-08 20:03:39 -03001457 tvp->u.data = c->isdbt_sb_segment_count;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001458 break;
Patrick Boettchere7b79492009-08-14 05:24:19 -03001459 case DTV_ISDBT_LAYER_ENABLED:
Andreas Oberritter50727712011-05-08 20:03:39 -03001460 tvp->u.data = c->isdbt_layer_enabled;
Patrick Boettchere7b79492009-08-14 05:24:19 -03001461 break;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001462 case DTV_ISDBT_LAYERA_FEC:
Andreas Oberritter50727712011-05-08 20:03:39 -03001463 tvp->u.data = c->layer[0].fec;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001464 break;
1465 case DTV_ISDBT_LAYERA_MODULATION:
Andreas Oberritter50727712011-05-08 20:03:39 -03001466 tvp->u.data = c->layer[0].modulation;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001467 break;
1468 case DTV_ISDBT_LAYERA_SEGMENT_COUNT:
Andreas Oberritter50727712011-05-08 20:03:39 -03001469 tvp->u.data = c->layer[0].segment_count;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001470 break;
1471 case DTV_ISDBT_LAYERA_TIME_INTERLEAVING:
Andreas Oberritter50727712011-05-08 20:03:39 -03001472 tvp->u.data = c->layer[0].interleaving;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001473 break;
1474 case DTV_ISDBT_LAYERB_FEC:
Andreas Oberritter50727712011-05-08 20:03:39 -03001475 tvp->u.data = c->layer[1].fec;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001476 break;
1477 case DTV_ISDBT_LAYERB_MODULATION:
Andreas Oberritter50727712011-05-08 20:03:39 -03001478 tvp->u.data = c->layer[1].modulation;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001479 break;
1480 case DTV_ISDBT_LAYERB_SEGMENT_COUNT:
Andreas Oberritter50727712011-05-08 20:03:39 -03001481 tvp->u.data = c->layer[1].segment_count;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001482 break;
1483 case DTV_ISDBT_LAYERB_TIME_INTERLEAVING:
Andreas Oberritter50727712011-05-08 20:03:39 -03001484 tvp->u.data = c->layer[1].interleaving;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001485 break;
1486 case DTV_ISDBT_LAYERC_FEC:
Andreas Oberritter50727712011-05-08 20:03:39 -03001487 tvp->u.data = c->layer[2].fec;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001488 break;
1489 case DTV_ISDBT_LAYERC_MODULATION:
Andreas Oberritter50727712011-05-08 20:03:39 -03001490 tvp->u.data = c->layer[2].modulation;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001491 break;
1492 case DTV_ISDBT_LAYERC_SEGMENT_COUNT:
Andreas Oberritter50727712011-05-08 20:03:39 -03001493 tvp->u.data = c->layer[2].segment_count;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001494 break;
1495 case DTV_ISDBT_LAYERC_TIME_INTERLEAVING:
Andreas Oberritter50727712011-05-08 20:03:39 -03001496 tvp->u.data = c->layer[2].interleaving;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001497 break;
Evgeny Plehov287cefd2012-09-13 10:13:30 -03001498
1499 /* Multistream support */
1500 case DTV_STREAM_ID:
1501 case DTV_DVBT2_PLP_ID_LEGACY:
1502 tvp->u.data = c->stream_id;
Andreas Oberritter94d56ff2011-05-12 18:11:06 -03001503 break;
Michael Krufkyca689482012-01-29 15:44:58 -03001504
1505 /* ATSC-MH */
1506 case DTV_ATSCMH_FIC_VER:
1507 tvp->u.data = fe->dtv_property_cache.atscmh_fic_ver;
1508 break;
1509 case DTV_ATSCMH_PARADE_ID:
1510 tvp->u.data = fe->dtv_property_cache.atscmh_parade_id;
1511 break;
1512 case DTV_ATSCMH_NOG:
1513 tvp->u.data = fe->dtv_property_cache.atscmh_nog;
1514 break;
1515 case DTV_ATSCMH_TNOG:
1516 tvp->u.data = fe->dtv_property_cache.atscmh_tnog;
1517 break;
1518 case DTV_ATSCMH_SGN:
1519 tvp->u.data = fe->dtv_property_cache.atscmh_sgn;
1520 break;
1521 case DTV_ATSCMH_PRC:
1522 tvp->u.data = fe->dtv_property_cache.atscmh_prc;
1523 break;
1524 case DTV_ATSCMH_RS_FRAME_MODE:
1525 tvp->u.data = fe->dtv_property_cache.atscmh_rs_frame_mode;
1526 break;
1527 case DTV_ATSCMH_RS_FRAME_ENSEMBLE:
1528 tvp->u.data = fe->dtv_property_cache.atscmh_rs_frame_ensemble;
1529 break;
1530 case DTV_ATSCMH_RS_CODE_MODE_PRI:
1531 tvp->u.data = fe->dtv_property_cache.atscmh_rs_code_mode_pri;
1532 break;
1533 case DTV_ATSCMH_RS_CODE_MODE_SEC:
1534 tvp->u.data = fe->dtv_property_cache.atscmh_rs_code_mode_sec;
1535 break;
1536 case DTV_ATSCMH_SCCC_BLOCK_MODE:
1537 tvp->u.data = fe->dtv_property_cache.atscmh_sccc_block_mode;
1538 break;
1539 case DTV_ATSCMH_SCCC_CODE_MODE_A:
1540 tvp->u.data = fe->dtv_property_cache.atscmh_sccc_code_mode_a;
1541 break;
1542 case DTV_ATSCMH_SCCC_CODE_MODE_B:
1543 tvp->u.data = fe->dtv_property_cache.atscmh_sccc_code_mode_b;
1544 break;
1545 case DTV_ATSCMH_SCCC_CODE_MODE_C:
1546 tvp->u.data = fe->dtv_property_cache.atscmh_sccc_code_mode_c;
1547 break;
1548 case DTV_ATSCMH_SCCC_CODE_MODE_D:
1549 tvp->u.data = fe->dtv_property_cache.atscmh_sccc_code_mode_d;
1550 break;
Michael Krufkyca689482012-01-29 15:44:58 -03001551
Antti Palosaari33eebec2012-10-03 04:28:56 -03001552 case DTV_LNA:
1553 tvp->u.data = c->lna;
1554 break;
1555
Mauro Carvalho Chehab7cd4ece2013-01-07 15:41:35 -03001556 /* Fill quality measures */
1557 case DTV_STAT_SIGNAL_STRENGTH:
1558 tvp->u.st = c->strength;
1559 break;
1560 case DTV_STAT_CNR:
1561 tvp->u.st = c->cnr;
1562 break;
1563 case DTV_STAT_PRE_ERROR_BIT_COUNT:
1564 tvp->u.st = c->pre_bit_error;
1565 break;
1566 case DTV_STAT_PRE_TOTAL_BIT_COUNT:
1567 tvp->u.st = c->pre_bit_count;
1568 break;
1569 case DTV_STAT_POST_ERROR_BIT_COUNT:
1570 tvp->u.st = c->post_bit_error;
1571 break;
1572 case DTV_STAT_POST_TOTAL_BIT_COUNT:
1573 tvp->u.st = c->post_bit_count;
1574 break;
1575 case DTV_STAT_ERROR_BLOCK_COUNT:
1576 tvp->u.st = c->block_error;
1577 break;
1578 case DTV_STAT_TOTAL_BLOCK_COUNT:
1579 tvp->u.st = c->block_count;
1580 break;
Steven Toth363429a2008-09-12 01:34:28 -03001581 default:
Mauro Carvalho Chehab94a93e52013-01-23 17:06:02 -03001582 dev_dbg(fe->dvb->device,
1583 "%s: FE property %d doesn't exist\n",
1584 __func__, tvp->cmd);
Andreas Oberritteraff8ab52011-05-09 00:03:34 +01001585 return -EINVAL;
Steven Toth363429a2008-09-12 01:34:28 -03001586 }
1587
Andreas Oberrittere23d9ae2011-05-08 20:03:36 -03001588 /* Allow the frontend to override outgoing properties */
1589 if (fe->ops.get_property) {
1590 r = fe->ops.get_property(fe, tvp);
1591 if (r < 0)
1592 return r;
1593 }
1594
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001595 dtv_property_dump(fe, tvp);
Mauro Carvalho Chehab639544d2009-12-31 17:49:32 -03001596
Andreas Oberritteraff8ab52011-05-09 00:03:34 +01001597 return 0;
Steven Toth363429a2008-09-12 01:34:28 -03001598}
1599
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001600static int dtv_set_frontend(struct dvb_frontend *fe);
1601
Mauro Carvalho Chehab04be0f72012-01-01 16:11:14 -03001602static bool is_dvbv3_delsys(u32 delsys)
1603{
1604 bool status;
1605
1606 status = (delsys == SYS_DVBT) || (delsys == SYS_DVBC_ANNEX_A) ||
1607 (delsys == SYS_DVBS) || (delsys == SYS_ATSC);
1608
1609 return status;
1610}
1611
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001612/**
1613 * emulate_delivery_system - emulate a DVBv5 delivery system with a DVBv3 type
1614 * @fe: struct frontend;
1615 * @delsys: DVBv5 type that will be used for emulation
1616 *
1617 * Provides emulation for delivery systems that are compatible with the old
1618 * DVBv3 call. Among its usages, it provices support for ISDB-T, and allows
1619 * using a DVB-S2 only frontend just like it were a DVB-S, if the frontent
1620 * parameters are compatible with DVB-S spec.
1621 */
1622static int emulate_delivery_system(struct dvb_frontend *fe, u32 delsys)
Mauro Carvalho Chehab04be0f72012-01-01 16:11:14 -03001623{
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001624 int i;
Mauro Carvalho Chehab04be0f72012-01-01 16:11:14 -03001625 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Mauro Carvalho Chehab04be0f72012-01-01 16:11:14 -03001626
Mauro Carvalho Chehab36264792012-04-17 18:32:19 -03001627 c->delivery_system = delsys;
1628
Mauro Carvalho Chehab04be0f72012-01-01 16:11:14 -03001629 /*
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001630 * If the call is for ISDB-T, put it into full-seg, auto mode, TV
Mauro Carvalho Chehab04be0f72012-01-01 16:11:14 -03001631 */
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001632 if (c->delivery_system == SYS_ISDBT) {
1633 dev_dbg(fe->dvb->device,
1634 "%s: Using defaults for SYS_ISDBT\n",
1635 __func__);
Mauro Carvalho Chehab04be0f72012-01-01 16:11:14 -03001636
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001637 if (!c->bandwidth_hz)
1638 c->bandwidth_hz = 6000000;
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001639
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001640 c->isdbt_partial_reception = 0;
1641 c->isdbt_sb_mode = 0;
1642 c->isdbt_sb_subchannel = 0;
1643 c->isdbt_sb_segment_idx = 0;
1644 c->isdbt_sb_segment_count = 0;
1645 c->isdbt_layer_enabled = 7;
1646 for (i = 0; i < 3; i++) {
1647 c->layer[i].fec = FEC_AUTO;
1648 c->layer[i].modulation = QAM_AUTO;
1649 c->layer[i].interleaving = 0;
1650 c->layer[i].segment_count = 0;
Mauro Carvalho Chehab04be0f72012-01-01 16:11:14 -03001651 }
1652 }
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001653 dev_dbg(fe->dvb->device, "%s: change delivery system on cache to %d\n",
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001654 __func__, c->delivery_system);
Mauro Carvalho Chehab9474c5e2012-01-05 12:28:20 -02001655
Mauro Carvalho Chehab04be0f72012-01-01 16:11:14 -03001656 return 0;
1657}
1658
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001659/**
1660 * dvbv5_set_delivery_system - Sets the delivery system for a DVBv5 API call
1661 * @fe: frontend struct
1662 * @desired_system: delivery system requested by the user
1663 *
1664 * A DVBv5 call know what's the desired system it wants. So, set it.
1665 *
1666 * There are, however, a few known issues with early DVBv5 applications that
1667 * are also handled by this logic:
1668 *
1669 * 1) Some early apps use SYS_UNDEFINED as the desired delivery system.
1670 * This is an API violation, but, as we don't want to break userspace,
1671 * convert it to the first supported delivery system.
1672 * 2) Some apps might be using a DVBv5 call in a wrong way, passing, for
1673 * example, SYS_DVBT instead of SYS_ISDBT. This is because early usage of
1674 * ISDB-T provided backward compat with DVB-T.
1675 */
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001676static int dvbv5_set_delivery_system(struct dvb_frontend *fe,
1677 u32 desired_system)
1678{
1679 int ncaps;
1680 u32 delsys = SYS_UNDEFINED;
1681 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
1682 enum dvbv3_emulation_type type;
1683
1684 /*
1685 * It was reported that some old DVBv5 applications were
1686 * filling delivery_system with SYS_UNDEFINED. If this happens,
1687 * assume that the application wants to use the first supported
1688 * delivery system.
1689 */
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001690 if (desired_system == SYS_UNDEFINED)
1691 desired_system = fe->ops.delsys[0];
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001692
1693 /*
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001694 * This is a DVBv5 call. So, it likely knows the supported
1695 * delivery systems. So, check if the desired delivery system is
1696 * supported
1697 */
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001698 ncaps = 0;
Ole Ernst0123f292014-03-05 14:08:15 -03001699 while (ncaps < MAX_DELSYS && fe->ops.delsys[ncaps]) {
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001700 if (fe->ops.delsys[ncaps] == desired_system) {
1701 c->delivery_system = desired_system;
1702 dev_dbg(fe->dvb->device,
1703 "%s: Changing delivery system to %d\n",
1704 __func__, desired_system);
1705 return 0;
1706 }
1707 ncaps++;
1708 }
1709
1710 /*
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001711 * The requested delivery system isn't supported. Maybe userspace
1712 * is requesting a DVBv3 compatible delivery system.
1713 *
1714 * The emulation only works if the desired system is one of the
1715 * delivery systems supported by DVBv3 API
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001716 */
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001717 if (!is_dvbv3_delsys(desired_system)) {
1718 dev_dbg(fe->dvb->device,
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001719 "%s: Delivery system %d not supported.\n",
1720 __func__, desired_system);
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001721 return -EINVAL;
1722 }
1723
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001724 type = dvbv3_type(desired_system);
1725
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001726 /*
1727 * Get the last non-DVBv3 delivery system that has the same type
1728 * of the desired system
1729 */
1730 ncaps = 0;
Ole Ernst0123f292014-03-05 14:08:15 -03001731 while (ncaps < MAX_DELSYS && fe->ops.delsys[ncaps]) {
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001732 if (dvbv3_type(fe->ops.delsys[ncaps]) == type)
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001733 delsys = fe->ops.delsys[ncaps];
1734 ncaps++;
1735 }
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001736
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001737 /* There's nothing compatible with the desired delivery system */
1738 if (delsys == SYS_UNDEFINED) {
1739 dev_dbg(fe->dvb->device,
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001740 "%s: Delivery system %d not supported on emulation mode.\n",
1741 __func__, desired_system);
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001742 return -EINVAL;
1743 }
1744
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001745 dev_dbg(fe->dvb->device,
1746 "%s: Using delivery system %d emulated as if it were %d\n",
1747 __func__, delsys, desired_system);
1748
1749 return emulate_delivery_system(fe, desired_system);
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001750}
1751
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001752/**
1753 * dvbv3_set_delivery_system - Sets the delivery system for a DVBv3 API call
1754 * @fe: frontend struct
1755 *
1756 * A DVBv3 call doesn't know what's the desired system it wants. It also
1757 * doesn't allow to switch between different types. Due to that, userspace
1758 * should use DVBv5 instead.
1759 * However, in order to avoid breaking userspace API, limited backward
1760 * compatibility support is provided.
1761 *
1762 * There are some delivery systems that are incompatible with DVBv3 calls.
1763 *
1764 * This routine should work fine for frontends that support just one delivery
1765 * system.
1766 *
1767 * For frontends that support multiple frontends:
1768 * 1) It defaults to use the first supported delivery system. There's an
1769 * userspace application that allows changing it at runtime;
1770 *
1771 * 2) If the current delivery system is not compatible with DVBv3, it gets
1772 * the first one that it is compatible.
1773 *
1774 * NOTE: in order for this to work with applications like Kaffeine that
1775 * uses a DVBv5 call for DVB-S2 and a DVBv3 call to go back to
1776 * DVB-S, drivers that support both DVB-S and DVB-S2 should have the
1777 * SYS_DVBS entry before the SYS_DVBS2, otherwise it won't switch back
1778 * to DVB-S.
1779 */
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001780static int dvbv3_set_delivery_system(struct dvb_frontend *fe)
1781{
1782 int ncaps;
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001783 u32 delsys = SYS_UNDEFINED;
1784 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001785
1786 /* If not set yet, defaults to the first supported delivery system */
1787 if (c->delivery_system == SYS_UNDEFINED)
1788 c->delivery_system = fe->ops.delsys[0];
1789
1790 /*
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001791 * Trivial case: just use the current one, if it already a DVBv3
1792 * delivery system
1793 */
1794 if (is_dvbv3_delsys(c->delivery_system)) {
1795 dev_dbg(fe->dvb->device,
1796 "%s: Using delivery system to %d\n",
1797 __func__, c->delivery_system);
1798 return 0;
1799 }
1800
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001801 /*
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001802 * Seek for the first delivery system that it is compatible with a
1803 * DVBv3 standard
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001804 */
1805 ncaps = 0;
Ole Ernst0123f292014-03-05 14:08:15 -03001806 while (ncaps < MAX_DELSYS && fe->ops.delsys[ncaps]) {
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001807 if (dvbv3_type(fe->ops.delsys[ncaps]) != DVBV3_UNKNOWN) {
1808 delsys = fe->ops.delsys[ncaps];
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001809 break;
1810 }
1811 ncaps++;
1812 }
1813 if (delsys == SYS_UNDEFINED) {
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001814 dev_dbg(fe->dvb->device,
1815 "%s: Couldn't find a delivery system that works with FE_SET_FRONTEND\n",
1816 __func__);
1817 return -EINVAL;
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001818 }
Mauro Carvalho Chehab52dee392013-03-18 15:25:37 -03001819 return emulate_delivery_system(fe, delsys);
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001820}
1821
Mauro Carvalho Chehab072ce0c2009-01-05 01:19:06 -03001822static int dtv_property_process_set(struct dvb_frontend *fe,
1823 struct dtv_property *tvp,
Mauro Carvalho Chehab072ce0c2009-01-05 01:19:06 -03001824 struct file *file)
Steven Toth6b73eea2008-09-04 01:12:25 -03001825{
1826 int r = 0;
Andreas Oberritter50727712011-05-08 20:03:39 -03001827 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Steven Toth6b73eea2008-09-04 01:12:25 -03001828
Steven Tothbfbf2da2008-09-12 01:37:37 -03001829 /* Allow the frontend to validate incoming properties */
Andreas Oberritteraff8ab52011-05-09 00:03:34 +01001830 if (fe->ops.set_property) {
Steven Tothbfbf2da2008-09-12 01:37:37 -03001831 r = fe->ops.set_property(fe, tvp);
Andreas Oberritteraff8ab52011-05-09 00:03:34 +01001832 if (r < 0)
1833 return r;
1834 }
Steven Tothbfbf2da2008-09-12 01:37:37 -03001835
Steven Toth6b73eea2008-09-04 01:12:25 -03001836 switch(tvp->cmd) {
Steven Tothe7fee0f32008-09-11 10:23:01 -03001837 case DTV_CLEAR:
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001838 /*
1839 * Reset a cache of data specific to the frontend here. This does
Steven Toth6b73eea2008-09-04 01:12:25 -03001840 * not effect hardware.
1841 */
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001842 dvb_frontend_clear_cache(fe);
Steven Toth6b73eea2008-09-04 01:12:25 -03001843 break;
Steven Tothe7fee0f32008-09-11 10:23:01 -03001844 case DTV_TUNE:
Steven Toth6b73eea2008-09-04 01:12:25 -03001845 /* interpret the cache of data, build either a traditional frontend
Steven Tothd5748f12008-09-12 00:27:13 -03001846 * tunerequest so we can pass validation in the FE_SET_FRONTEND
1847 * ioctl.
Steven Toth6b73eea2008-09-04 01:12:25 -03001848 */
Andreas Oberritter50727712011-05-08 20:03:39 -03001849 c->state = tvp->cmd;
Antti Palosaari36bdbc32012-08-15 20:28:37 -03001850 dev_dbg(fe->dvb->device, "%s: Finalised property cache\n",
1851 __func__);
Steven Tothd5748f12008-09-12 00:27:13 -03001852
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03001853 r = dtv_set_frontend(fe);
Steven Toth6b73eea2008-09-04 01:12:25 -03001854 break;
Steven Toth363429a2008-09-12 01:34:28 -03001855 case DTV_FREQUENCY:
Andreas Oberritter50727712011-05-08 20:03:39 -03001856 c->frequency = tvp->u.data;
Steven Toth6b73eea2008-09-04 01:12:25 -03001857 break;
Steven Toth363429a2008-09-12 01:34:28 -03001858 case DTV_MODULATION:
Andreas Oberritter50727712011-05-08 20:03:39 -03001859 c->modulation = tvp->u.data;
Steven Toth6b73eea2008-09-04 01:12:25 -03001860 break;
Steven Toth75b7f942008-09-13 16:56:34 -03001861 case DTV_BANDWIDTH_HZ:
Andreas Oberritter50727712011-05-08 20:03:39 -03001862 c->bandwidth_hz = tvp->u.data;
Steven Toth6b73eea2008-09-04 01:12:25 -03001863 break;
Steven Toth363429a2008-09-12 01:34:28 -03001864 case DTV_INVERSION:
Andreas Oberritter50727712011-05-08 20:03:39 -03001865 c->inversion = tvp->u.data;
Steven Toth6b73eea2008-09-04 01:12:25 -03001866 break;
Steven Toth363429a2008-09-12 01:34:28 -03001867 case DTV_SYMBOL_RATE:
Andreas Oberritter50727712011-05-08 20:03:39 -03001868 c->symbol_rate = tvp->u.data;
Steven Toth6b73eea2008-09-04 01:12:25 -03001869 break;
Steven Toth363429a2008-09-12 01:34:28 -03001870 case DTV_INNER_FEC:
Andreas Oberritter50727712011-05-08 20:03:39 -03001871 c->fec_inner = tvp->u.data;
Steven Toth6b73eea2008-09-04 01:12:25 -03001872 break;
Steven Toth363429a2008-09-12 01:34:28 -03001873 case DTV_PILOT:
Andreas Oberritter50727712011-05-08 20:03:39 -03001874 c->pilot = tvp->u.data;
Steven Toth6b73eea2008-09-04 01:12:25 -03001875 break;
Steven Toth363429a2008-09-12 01:34:28 -03001876 case DTV_ROLLOFF:
Andreas Oberritter50727712011-05-08 20:03:39 -03001877 c->rolloff = tvp->u.data;
Steven Toth6b73eea2008-09-04 01:12:25 -03001878 break;
Steven Toth363429a2008-09-12 01:34:28 -03001879 case DTV_DELIVERY_SYSTEM:
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03001880 r = dvbv5_set_delivery_system(fe, tvp->u.data);
Steven Toth6b73eea2008-09-04 01:12:25 -03001881 break;
Steven Toth363429a2008-09-12 01:34:28 -03001882 case DTV_VOLTAGE:
Andreas Oberritter50727712011-05-08 20:03:39 -03001883 c->voltage = tvp->u.data;
Arnd Bergmann16ef8de2010-04-27 00:24:00 +02001884 r = dvb_frontend_ioctl_legacy(file, FE_SET_VOLTAGE,
Andreas Oberritter50727712011-05-08 20:03:39 -03001885 (void *)c->voltage);
Steven Toth13c97bf2008-09-04 21:19:43 -03001886 break;
Steven Toth363429a2008-09-12 01:34:28 -03001887 case DTV_TONE:
Andreas Oberritter50727712011-05-08 20:03:39 -03001888 c->sectone = tvp->u.data;
Arnd Bergmann16ef8de2010-04-27 00:24:00 +02001889 r = dvb_frontend_ioctl_legacy(file, FE_SET_TONE,
Andreas Oberritter50727712011-05-08 20:03:39 -03001890 (void *)c->sectone);
Steven Toth13c97bf2008-09-04 21:19:43 -03001891 break;
Steven Totha4de91b2008-10-06 21:55:46 -03001892 case DTV_CODE_RATE_HP:
Andreas Oberritter50727712011-05-08 20:03:39 -03001893 c->code_rate_HP = tvp->u.data;
Steven Totha4de91b2008-10-06 21:55:46 -03001894 break;
1895 case DTV_CODE_RATE_LP:
Andreas Oberritter50727712011-05-08 20:03:39 -03001896 c->code_rate_LP = tvp->u.data;
Steven Totha4de91b2008-10-06 21:55:46 -03001897 break;
Steven Tothb87625f2008-10-06 21:56:59 -03001898 case DTV_GUARD_INTERVAL:
Andreas Oberritter50727712011-05-08 20:03:39 -03001899 c->guard_interval = tvp->u.data;
Steven Tothb87625f2008-10-06 21:56:59 -03001900 break;
1901 case DTV_TRANSMISSION_MODE:
Andreas Oberritter50727712011-05-08 20:03:39 -03001902 c->transmission_mode = tvp->u.data;
Steven Tothb87625f2008-10-06 21:56:59 -03001903 break;
Steven Tothef526f42008-10-06 22:01:47 -03001904 case DTV_HIERARCHY:
Andreas Oberritter50727712011-05-08 20:03:39 -03001905 c->hierarchy = tvp->u.data;
Steven Tothef526f42008-10-06 22:01:47 -03001906 break;
Antti Palosaari224b6642012-08-12 22:33:21 -03001907 case DTV_INTERLEAVING:
1908 c->interleaving = tvp->u.data;
1909 break;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001910
1911 /* ISDB-T Support here */
1912 case DTV_ISDBT_PARTIAL_RECEPTION:
Andreas Oberritter50727712011-05-08 20:03:39 -03001913 c->isdbt_partial_reception = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001914 break;
1915 case DTV_ISDBT_SOUND_BROADCASTING:
Andreas Oberritter50727712011-05-08 20:03:39 -03001916 c->isdbt_sb_mode = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001917 break;
1918 case DTV_ISDBT_SB_SUBCHANNEL_ID:
Andreas Oberritter50727712011-05-08 20:03:39 -03001919 c->isdbt_sb_subchannel = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001920 break;
1921 case DTV_ISDBT_SB_SEGMENT_IDX:
Andreas Oberritter50727712011-05-08 20:03:39 -03001922 c->isdbt_sb_segment_idx = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001923 break;
1924 case DTV_ISDBT_SB_SEGMENT_COUNT:
Andreas Oberritter50727712011-05-08 20:03:39 -03001925 c->isdbt_sb_segment_count = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001926 break;
Patrick Boettchere7b79492009-08-14 05:24:19 -03001927 case DTV_ISDBT_LAYER_ENABLED:
Andreas Oberritter50727712011-05-08 20:03:39 -03001928 c->isdbt_layer_enabled = tvp->u.data;
Patrick Boettchere7b79492009-08-14 05:24:19 -03001929 break;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001930 case DTV_ISDBT_LAYERA_FEC:
Andreas Oberritter50727712011-05-08 20:03:39 -03001931 c->layer[0].fec = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001932 break;
1933 case DTV_ISDBT_LAYERA_MODULATION:
Andreas Oberritter50727712011-05-08 20:03:39 -03001934 c->layer[0].modulation = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001935 break;
1936 case DTV_ISDBT_LAYERA_SEGMENT_COUNT:
Andreas Oberritter50727712011-05-08 20:03:39 -03001937 c->layer[0].segment_count = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001938 break;
1939 case DTV_ISDBT_LAYERA_TIME_INTERLEAVING:
Andreas Oberritter50727712011-05-08 20:03:39 -03001940 c->layer[0].interleaving = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001941 break;
1942 case DTV_ISDBT_LAYERB_FEC:
Andreas Oberritter50727712011-05-08 20:03:39 -03001943 c->layer[1].fec = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001944 break;
1945 case DTV_ISDBT_LAYERB_MODULATION:
Andreas Oberritter50727712011-05-08 20:03:39 -03001946 c->layer[1].modulation = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001947 break;
1948 case DTV_ISDBT_LAYERB_SEGMENT_COUNT:
Andreas Oberritter50727712011-05-08 20:03:39 -03001949 c->layer[1].segment_count = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001950 break;
1951 case DTV_ISDBT_LAYERB_TIME_INTERLEAVING:
Andreas Oberritter50727712011-05-08 20:03:39 -03001952 c->layer[1].interleaving = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001953 break;
1954 case DTV_ISDBT_LAYERC_FEC:
Andreas Oberritter50727712011-05-08 20:03:39 -03001955 c->layer[2].fec = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001956 break;
1957 case DTV_ISDBT_LAYERC_MODULATION:
Andreas Oberritter50727712011-05-08 20:03:39 -03001958 c->layer[2].modulation = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001959 break;
1960 case DTV_ISDBT_LAYERC_SEGMENT_COUNT:
Andreas Oberritter50727712011-05-08 20:03:39 -03001961 c->layer[2].segment_count = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001962 break;
1963 case DTV_ISDBT_LAYERC_TIME_INTERLEAVING:
Andreas Oberritter50727712011-05-08 20:03:39 -03001964 c->layer[2].interleaving = tvp->u.data;
Patrick Boettcherb6e760f2009-08-03 14:39:15 -03001965 break;
Evgeny Plehov287cefd2012-09-13 10:13:30 -03001966
1967 /* Multistream support */
1968 case DTV_STREAM_ID:
1969 case DTV_DVBT2_PLP_ID_LEGACY:
1970 c->stream_id = tvp->u.data;
Andreas Oberritter94d56ff2011-05-12 18:11:06 -03001971 break;
Michael Krufkyca689482012-01-29 15:44:58 -03001972
1973 /* ATSC-MH */
1974 case DTV_ATSCMH_PARADE_ID:
1975 fe->dtv_property_cache.atscmh_parade_id = tvp->u.data;
1976 break;
1977 case DTV_ATSCMH_RS_FRAME_ENSEMBLE:
1978 fe->dtv_property_cache.atscmh_rs_frame_ensemble = tvp->u.data;
1979 break;
1980
Antti Palosaari33eebec2012-10-03 04:28:56 -03001981 case DTV_LNA:
1982 c->lna = tvp->u.data;
1983 if (fe->ops.set_lna)
1984 r = fe->ops.set_lna(fe);
Mauro Carvalho Chehabe6876692014-02-16 06:36:17 -03001985 if (r < 0)
1986 c->lna = LNA_AUTO;
Antti Palosaari33eebec2012-10-03 04:28:56 -03001987 break;
1988
Steven Toth363429a2008-09-12 01:34:28 -03001989 default:
Andreas Oberritteraff8ab52011-05-09 00:03:34 +01001990 return -EINVAL;
Steven Toth6b73eea2008-09-04 01:12:25 -03001991 }
1992
Steven Toth13c97bf2008-09-04 21:19:43 -03001993 return r;
Steven Toth6b73eea2008-09-04 01:12:25 -03001994}
1995
Arnd Bergmann16ef8de2010-04-27 00:24:00 +02001996static int dvb_frontend_ioctl(struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 unsigned int cmd, void *parg)
1998{
1999 struct dvb_device *dvbdev = file->private_data;
2000 struct dvb_frontend *fe = dvbdev->priv;
Andreas Oberritter50727712011-05-08 20:03:39 -03002001 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07002002 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Mauro Carvalho Chehabac897582013-02-15 13:39:31 -02002003 int err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
Antti Palosaari36bdbc32012-08-15 20:28:37 -03002005 dev_dbg(fe->dvb->device, "%s: (%d)\n", __func__, _IOC_NR(cmd));
Juergen Lock6ae23222012-12-23 17:23:06 -03002006 if (down_interruptible(&fepriv->sem))
2007 return -ERESTARTSYS;
2008
Shuah Khan18ed2862014-07-12 13:44:12 -03002009 if (fe->exit != DVB_FE_NO_EXIT) {
Juergen Lock6ae23222012-12-23 17:23:06 -03002010 up(&fepriv->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 return -ENODEV;
Juergen Lock6ae23222012-12-23 17:23:06 -03002012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014 if ((file->f_flags & O_ACCMODE) == O_RDONLY &&
2015 (_IOC_DIR(cmd) != _IOC_READ || cmd == FE_GET_EVENT ||
Juergen Lock6ae23222012-12-23 17:23:06 -03002016 cmd == FE_DISEQC_RECV_SLAVE_REPLY)) {
2017 up(&fepriv->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 return -EPERM;
Juergen Lock6ae23222012-12-23 17:23:06 -03002019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Steven Toth13c97bf2008-09-04 21:19:43 -03002021 if ((cmd == FE_SET_PROPERTY) || (cmd == FE_GET_PROPERTY))
Arnd Bergmann16ef8de2010-04-27 00:24:00 +02002022 err = dvb_frontend_ioctl_properties(file, cmd, parg);
Steven Toth4dd88be2008-09-13 15:09:07 -03002023 else {
Andreas Oberritter50727712011-05-08 20:03:39 -03002024 c->state = DTV_UNDEFINED;
Arnd Bergmann16ef8de2010-04-27 00:24:00 +02002025 err = dvb_frontend_ioctl_legacy(file, cmd, parg);
Steven Toth4dd88be2008-09-13 15:09:07 -03002026 }
Steven Toth13c97bf2008-09-04 21:19:43 -03002027
2028 up(&fepriv->sem);
2029 return err;
2030}
2031
Arnd Bergmann16ef8de2010-04-27 00:24:00 +02002032static int dvb_frontend_ioctl_properties(struct file *file,
Steven Toth13c97bf2008-09-04 21:19:43 -03002033 unsigned int cmd, void *parg)
2034{
2035 struct dvb_device *dvbdev = file->private_data;
2036 struct dvb_frontend *fe = dvbdev->priv;
Mauro Carvalho Chehab51dcb192012-01-17 16:20:37 -02002037 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Andreas Oberritter50727712011-05-08 20:03:39 -03002038 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Igor M. Liplianine6f9ec82008-09-12 14:49:06 -03002039 int err = 0;
Steven Tothe7fee0f32008-09-11 10:23:01 -03002040
Mauro Carvalho Chehab71d1b2b2014-09-24 10:15:22 -03002041 struct dtv_properties *tvps = parg;
Steven Tothe7fee0f32008-09-11 10:23:01 -03002042 struct dtv_property *tvp = NULL;
2043 int i;
Steven Toth13c97bf2008-09-04 21:19:43 -03002044
Antti Palosaari36bdbc32012-08-15 20:28:37 -03002045 dev_dbg(fe->dvb->device, "%s:\n", __func__);
Steven Toth13c97bf2008-09-04 21:19:43 -03002046
Mauro Carvalho Chehab71d1b2b2014-09-24 10:15:22 -03002047 if (cmd == FE_SET_PROPERTY) {
Antti Palosaari36bdbc32012-08-15 20:28:37 -03002048 dev_dbg(fe->dvb->device, "%s: properties.num = %d\n", __func__, tvps->num);
2049 dev_dbg(fe->dvb->device, "%s: properties.props = %p\n", __func__, tvps->props);
Steven Tothe7fee0f32008-09-11 10:23:01 -03002050
2051 /* Put an arbitrary limit on the number of messages that can
2052 * be sent at once */
Steven Toth6068f502008-10-06 22:46:08 -03002053 if ((tvps->num == 0) || (tvps->num > DTV_IOCTL_MAX_MSGS))
Steven Tothe7fee0f32008-09-11 10:23:01 -03002054 return -EINVAL;
2055
Thiago Farina6e3924a2010-01-16 10:25:38 -03002056 tvp = kmalloc(tvps->num * sizeof(struct dtv_property), GFP_KERNEL);
Steven Tothe7fee0f32008-09-11 10:23:01 -03002057 if (!tvp) {
2058 err = -ENOMEM;
2059 goto out;
Steven Toth6b73eea2008-09-04 01:12:25 -03002060 }
2061
Mauro Carvalho Chehab71d1b2b2014-09-24 10:15:22 -03002062 if (copy_from_user(tvp, (void __user *)tvps->props,
2063 tvps->num * sizeof(struct dtv_property))) {
Steven Tothe7fee0f32008-09-11 10:23:01 -03002064 err = -EFAULT;
2065 goto out;
2066 }
2067
Steven Tothd48cb402008-09-26 00:16:25 -03002068 for (i = 0; i < tvps->num; i++) {
Andreas Oberritteraff8ab52011-05-09 00:03:34 +01002069 err = dtv_property_process_set(fe, tvp + i, file);
2070 if (err < 0)
2071 goto out;
2072 (tvp + i)->result = err;
Steven Tothd48cb402008-09-26 00:16:25 -03002073 }
Steven Tothe7fee0f32008-09-11 10:23:01 -03002074
Andreas Oberritter50727712011-05-08 20:03:39 -03002075 if (c->state == DTV_TUNE)
Antti Palosaari36bdbc32012-08-15 20:28:37 -03002076 dev_dbg(fe->dvb->device, "%s: Property cache is full, tuning\n", __func__);
Steven Tothbfbf2da2008-09-12 01:37:37 -03002077
Mauro Carvalho Chehab71d1b2b2014-09-24 10:15:22 -03002078 } else if (cmd == FE_GET_PROPERTY) {
Antti Palosaari36bdbc32012-08-15 20:28:37 -03002079 dev_dbg(fe->dvb->device, "%s: properties.num = %d\n", __func__, tvps->num);
2080 dev_dbg(fe->dvb->device, "%s: properties.props = %p\n", __func__, tvps->props);
Steven Toth363429a2008-09-12 01:34:28 -03002081
2082 /* Put an arbitrary limit on the number of messages that can
2083 * be sent at once */
Steven Toth6068f502008-10-06 22:46:08 -03002084 if ((tvps->num == 0) || (tvps->num > DTV_IOCTL_MAX_MSGS))
Steven Toth363429a2008-09-12 01:34:28 -03002085 return -EINVAL;
2086
Thiago Farina6e3924a2010-01-16 10:25:38 -03002087 tvp = kmalloc(tvps->num * sizeof(struct dtv_property), GFP_KERNEL);
Steven Toth363429a2008-09-12 01:34:28 -03002088 if (!tvp) {
2089 err = -ENOMEM;
2090 goto out;
2091 }
2092
Mauro Carvalho Chehab71d1b2b2014-09-24 10:15:22 -03002093 if (copy_from_user(tvp, (void __user *)tvps->props,
2094 tvps->num * sizeof(struct dtv_property))) {
Steven Toth363429a2008-09-12 01:34:28 -03002095 err = -EFAULT;
2096 goto out;
2097 }
2098
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -03002099 /*
2100 * Fills the cache out struct with the cache contents, plus
Mauro Carvalho Chehab51dcb192012-01-17 16:20:37 -02002101 * the data retrieved from get_frontend, if the frontend
2102 * is not idle. Otherwise, returns the cached content
Mauro Carvalho Chehaba689e362011-12-22 14:47:48 -03002103 */
Mauro Carvalho Chehab51dcb192012-01-17 16:20:37 -02002104 if (fepriv->state != FESTATE_IDLE) {
2105 err = dtv_get_frontend(fe, NULL);
2106 if (err < 0)
2107 goto out;
2108 }
Steven Tothd48cb402008-09-26 00:16:25 -03002109 for (i = 0; i < tvps->num; i++) {
Mauro Carvalho Chehab7c61d802011-12-30 11:30:21 -03002110 err = dtv_property_process_get(fe, c, tvp + i, file);
Andreas Oberritteraff8ab52011-05-09 00:03:34 +01002111 if (err < 0)
2112 goto out;
2113 (tvp + i)->result = err;
Steven Tothd48cb402008-09-26 00:16:25 -03002114 }
Steven Toth363429a2008-09-12 01:34:28 -03002115
Mauro Carvalho Chehab71d1b2b2014-09-24 10:15:22 -03002116 if (copy_to_user((void __user *)tvps->props, tvp,
2117 tvps->num * sizeof(struct dtv_property))) {
Steven Toth363429a2008-09-12 01:34:28 -03002118 err = -EFAULT;
2119 goto out;
2120 }
2121
Steven Toth363429a2008-09-12 01:34:28 -03002122 } else
Mauro Carvalho Chehabac897582013-02-15 13:39:31 -02002123 err = -EOPNOTSUPP;
Steven Toth363429a2008-09-12 01:34:28 -03002124
Steven Tothe7fee0f32008-09-11 10:23:01 -03002125out:
2126 kfree(tvp);
Steven Toth13c97bf2008-09-04 21:19:43 -03002127 return err;
2128}
2129
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002130static int dtv_set_frontend(struct dvb_frontend *fe)
Mauro Carvalho Chehab9682cea2012-01-01 16:11:12 -03002131{
Mauro Carvalho Chehab9682cea2012-01-01 16:11:12 -03002132 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2133 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
2134 struct dvb_frontend_tune_settings fetunesettings;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002135 u32 rolloff = 0;
Mauro Carvalho Chehab9682cea2012-01-01 16:11:12 -03002136
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002137 if (dvb_frontend_check_parameters(fe) < 0)
2138 return -EINVAL;
Mauro Carvalho Chehab9682cea2012-01-01 16:11:12 -03002139
2140 /*
Chris Rankin556a0442012-04-06 18:38:18 -03002141 * Initialize output parameters to match the values given by
2142 * the user. FE_SET_FRONTEND triggers an initial frontend event
2143 * with status = 0, which copies output parameters to userspace.
2144 */
2145 dtv_property_legacy_params_sync(fe, &fepriv->parameters_out);
2146
2147 /*
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002148 * Be sure that the bandwidth will be filled for all
2149 * non-satellite systems, as tuners need to know what
2150 * low pass/Nyquist half filter should be applied, in
2151 * order to avoid inter-channel noise.
2152 *
2153 * ISDB-T and DVB-T/T2 already sets bandwidth.
2154 * ATSC and DVB-C don't set, so, the core should fill it.
2155 *
2156 * On DVB-C Annex A and C, the bandwidth is a function of
2157 * the roll-off and symbol rate. Annex B defines different
2158 * roll-off factors depending on the modulation. Fortunately,
2159 * Annex B is only used with 6MHz, so there's no need to
2160 * calculate it.
2161 *
2162 * While not officially supported, a side effect of handling it at
2163 * the cache level is that a program could retrieve the bandwidth
2164 * via DTV_BANDWIDTH_HZ, which may be useful for test programs.
2165 */
2166 switch (c->delivery_system) {
2167 case SYS_ATSC:
2168 case SYS_DVBC_ANNEX_B:
2169 c->bandwidth_hz = 6000000;
2170 break;
2171 case SYS_DVBC_ANNEX_A:
2172 rolloff = 115;
2173 break;
2174 case SYS_DVBC_ANNEX_C:
2175 rolloff = 113;
2176 break;
Mauro Carvalho Chehabc623ed62014-08-22 10:30:17 -05002177 case SYS_DVBS:
2178 case SYS_TURBO:
Akihiro Tsukada8e281fa2014-10-31 10:19:39 -03002179 case SYS_ISDBS:
Mauro Carvalho Chehabc623ed62014-08-22 10:30:17 -05002180 rolloff = 135;
2181 break;
2182 case SYS_DVBS2:
2183 switch (c->rolloff) {
2184 case ROLLOFF_20:
2185 rolloff = 120;
2186 break;
2187 case ROLLOFF_25:
2188 rolloff = 125;
2189 break;
2190 default:
2191 case ROLLOFF_35:
2192 rolloff = 135;
2193 }
2194 break;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002195 default:
2196 break;
2197 }
2198 if (rolloff)
Antti Palosaari2a80f292015-04-14 15:12:54 -03002199 c->bandwidth_hz = mult_frac(c->symbol_rate, rolloff, 100);
Mauro Carvalho Chehab9682cea2012-01-01 16:11:12 -03002200
2201 /* force auto frequency inversion if requested */
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002202 if (dvb_force_auto_inversion)
Mauro Carvalho Chehab9682cea2012-01-01 16:11:12 -03002203 c->inversion = INVERSION_AUTO;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002204
2205 /*
2206 * without hierarchical coding code_rate_LP is irrelevant,
2207 * so we tolerate the otherwise invalid FEC_NONE setting
2208 */
2209 if (c->hierarchy == HIERARCHY_NONE && c->code_rate_LP == FEC_NONE)
2210 c->code_rate_LP = FEC_AUTO;
Mauro Carvalho Chehab9682cea2012-01-01 16:11:12 -03002211
2212 /* get frontend-specific tuning settings */
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002213 memset(&fetunesettings, 0, sizeof(struct dvb_frontend_tune_settings));
Mauro Carvalho Chehab9682cea2012-01-01 16:11:12 -03002214 if (fe->ops.get_tune_settings && (fe->ops.get_tune_settings(fe, &fetunesettings) == 0)) {
2215 fepriv->min_delay = (fetunesettings.min_delay_ms * HZ) / 1000;
2216 fepriv->max_drift = fetunesettings.max_drift;
2217 fepriv->step_size = fetunesettings.step_size;
2218 } else {
2219 /* default values */
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002220 switch (c->delivery_system) {
Mauro Carvalho Chehab910a5f22012-05-07 15:01:37 -03002221 case SYS_DVBS:
2222 case SYS_DVBS2:
2223 case SYS_ISDBS:
2224 case SYS_TURBO:
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002225 case SYS_DVBC_ANNEX_A:
2226 case SYS_DVBC_ANNEX_C:
2227 fepriv->min_delay = HZ / 20;
Mauro Carvalho Chehab9682cea2012-01-01 16:11:12 -03002228 fepriv->step_size = c->symbol_rate / 16000;
2229 fepriv->max_drift = c->symbol_rate / 2000;
2230 break;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002231 case SYS_DVBT:
2232 case SYS_DVBT2:
2233 case SYS_ISDBT:
Antti Palosaari224b6642012-08-12 22:33:21 -03002234 case SYS_DTMB:
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002235 fepriv->min_delay = HZ / 20;
Mauro Carvalho Chehab9682cea2012-01-01 16:11:12 -03002236 fepriv->step_size = fe->ops.info.frequency_stepsize * 2;
2237 fepriv->max_drift = (fe->ops.info.frequency_stepsize * 2) + 1;
2238 break;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002239 default:
2240 /*
2241 * FIXME: This sounds wrong! if freqency_stepsize is
2242 * defined by the frontend, why not use it???
2243 */
2244 fepriv->min_delay = HZ / 20;
2245 fepriv->step_size = 0; /* no zigzag */
Mauro Carvalho Chehab9682cea2012-01-01 16:11:12 -03002246 fepriv->max_drift = 0;
2247 break;
2248 }
2249 }
2250 if (dvb_override_tune_delay > 0)
2251 fepriv->min_delay = (dvb_override_tune_delay * HZ) / 1000;
2252
2253 fepriv->state = FESTATE_RETUNE;
2254
2255 /* Request the search algorithm to search */
2256 fepriv->algo_status |= DVBFE_ALGO_SEARCH_AGAIN;
2257
2258 dvb_frontend_clear_events(fe);
2259 dvb_frontend_add_event(fe, 0);
2260 dvb_frontend_wakeup(fe);
2261 fepriv->status = 0;
2262
2263 return 0;
2264}
2265
2266
Arnd Bergmann16ef8de2010-04-27 00:24:00 +02002267static int dvb_frontend_ioctl_legacy(struct file *file,
Steven Toth13c97bf2008-09-04 21:19:43 -03002268 unsigned int cmd, void *parg)
2269{
2270 struct dvb_device *dvbdev = file->private_data;
2271 struct dvb_frontend *fe = dvbdev->priv;
2272 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002273 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Mauro Carvalho Chehabac897582013-02-15 13:39:31 -02002274 int err = -EOPNOTSUPP;
Steven Toth13c97bf2008-09-04 21:19:43 -03002275
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 switch (cmd) {
2277 case FE_GET_INFO: {
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07002278 struct dvb_frontend_info* info = parg;
Mauro Carvalho Chehab9474c5e2012-01-05 12:28:20 -02002279
Patrick Boettcherdea74862006-05-14 05:01:31 -03002280 memcpy(info, &fe->ops.info, sizeof(struct dvb_frontend_info));
Guillaume Audirac2030c032010-05-06 09:30:25 -03002281 dvb_frontend_get_frequency_limits(fe, &info->frequency_min, &info->frequency_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002283 /*
2284 * Associate the 4 delivery systems supported by DVBv3
2285 * API with their DVBv5 counterpart. For the other standards,
2286 * use the closest type, assuming that it would hopefully
2287 * work with a DVBv3 application.
2288 * It should be noticed that, on multi-frontend devices with
2289 * different types (terrestrial and cable, for example),
2290 * a pure DVBv3 application won't be able to use all delivery
2291 * systems. Yet, changing the DVBv5 cache to the other delivery
2292 * system should be enough for making it work.
2293 */
2294 switch (dvbv3_type(c->delivery_system)) {
2295 case DVBV3_QPSK:
Mauro Carvalho Chehab9474c5e2012-01-05 12:28:20 -02002296 info->type = FE_QPSK;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002297 break;
2298 case DVBV3_ATSC:
Mauro Carvalho Chehab9474c5e2012-01-05 12:28:20 -02002299 info->type = FE_ATSC;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002300 break;
2301 case DVBV3_QAM:
Mauro Carvalho Chehab9474c5e2012-01-05 12:28:20 -02002302 info->type = FE_QAM;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002303 break;
2304 case DVBV3_OFDM:
Mauro Carvalho Chehab9474c5e2012-01-05 12:28:20 -02002305 info->type = FE_OFDM;
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002306 break;
2307 default:
Antti Palosaari36bdbc32012-08-15 20:28:37 -03002308 dev_err(fe->dvb->device,
2309 "%s: doesn't know how to handle a DVBv3 call to delivery system %i\n",
2310 __func__, c->delivery_system);
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002311 fe->ops.info.type = FE_OFDM;
2312 }
Antti Palosaari36bdbc32012-08-15 20:28:37 -03002313 dev_dbg(fe->dvb->device, "%s: current delivery system on cache: %d, V3 type: %d\n",
2314 __func__, c->delivery_system, fe->ops.info.type);
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002315
Malcolm Priestleyc9d57de2015-08-31 06:13:45 -03002316 /* Set CAN_INVERSION_AUTO bit on in other than oneshot mode */
2317 if (!(fepriv->tune_mode_flags & FE_TUNE_MODE_ONESHOT))
2318 info->caps |= FE_CAN_INVERSION_AUTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 err = 0;
2320 break;
2321 }
2322
Peter Beutner6757ccc2005-07-07 17:57:36 -07002323 case FE_READ_STATUS: {
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -03002324 enum fe_status *status = parg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002326 /* if retune was requested but hasn't occurred yet, prevent
Peter Beutner6757ccc2005-07-07 17:57:36 -07002327 * that user get signal state from previous tuning */
Janne Grunau01886252009-09-01 19:23:09 -03002328 if (fepriv->state == FESTATE_RETUNE ||
2329 fepriv->state == FESTATE_ERROR) {
Peter Beutner6757ccc2005-07-07 17:57:36 -07002330 err=0;
2331 *status = 0;
2332 break;
2333 }
2334
Patrick Boettcherdea74862006-05-14 05:01:31 -03002335 if (fe->ops.read_status)
2336 err = fe->ops.read_status(fe, status);
Peter Beutner6757ccc2005-07-07 17:57:36 -07002337 break;
2338 }
Antti Palosaari48caa6f2012-08-09 19:00:51 -03002339
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 case FE_READ_BER:
Antti Palosaari48caa6f2012-08-09 19:00:51 -03002341 if (fe->ops.read_ber) {
2342 if (fepriv->thread)
2343 err = fe->ops.read_ber(fe, (__u32 *) parg);
2344 else
2345 err = -EAGAIN;
2346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 break;
2348
2349 case FE_READ_SIGNAL_STRENGTH:
Antti Palosaari48caa6f2012-08-09 19:00:51 -03002350 if (fe->ops.read_signal_strength) {
2351 if (fepriv->thread)
2352 err = fe->ops.read_signal_strength(fe, (__u16 *) parg);
2353 else
2354 err = -EAGAIN;
2355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 break;
2357
2358 case FE_READ_SNR:
Antti Palosaari48caa6f2012-08-09 19:00:51 -03002359 if (fe->ops.read_snr) {
2360 if (fepriv->thread)
2361 err = fe->ops.read_snr(fe, (__u16 *) parg);
2362 else
2363 err = -EAGAIN;
2364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 break;
2366
2367 case FE_READ_UNCORRECTED_BLOCKS:
Antti Palosaari48caa6f2012-08-09 19:00:51 -03002368 if (fe->ops.read_ucblocks) {
2369 if (fepriv->thread)
2370 err = fe->ops.read_ucblocks(fe, (__u32 *) parg);
2371 else
2372 err = -EAGAIN;
2373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 break;
2375
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 case FE_DISEQC_RESET_OVERLOAD:
Patrick Boettcherdea74862006-05-14 05:01:31 -03002377 if (fe->ops.diseqc_reset_overload) {
2378 err = fe->ops.diseqc_reset_overload(fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 fepriv->state = FESTATE_DISEQC;
2380 fepriv->status = 0;
2381 }
2382 break;
2383
2384 case FE_DISEQC_SEND_MASTER_CMD:
Patrick Boettcherdea74862006-05-14 05:01:31 -03002385 if (fe->ops.diseqc_send_master_cmd) {
Dan Carpenter8d7e5062015-06-06 13:55:22 -03002386 struct dvb_diseqc_master_cmd *cmd = parg;
2387
2388 if (cmd->msg_len > sizeof(cmd->msg)) {
2389 err = -EINVAL;
2390 break;
2391 }
2392 err = fe->ops.diseqc_send_master_cmd(fe, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 fepriv->state = FESTATE_DISEQC;
2394 fepriv->status = 0;
2395 }
2396 break;
2397
2398 case FE_DISEQC_SEND_BURST:
Patrick Boettcherdea74862006-05-14 05:01:31 -03002399 if (fe->ops.diseqc_send_burst) {
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -03002400 err = fe->ops.diseqc_send_burst(fe,
2401 (enum fe_sec_mini_cmd)parg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 fepriv->state = FESTATE_DISEQC;
2403 fepriv->status = 0;
2404 }
2405 break;
2406
2407 case FE_SET_TONE:
Patrick Boettcherdea74862006-05-14 05:01:31 -03002408 if (fe->ops.set_tone) {
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -03002409 err = fe->ops.set_tone(fe,
2410 (enum fe_sec_tone_mode)parg);
2411 fepriv->tone = (enum fe_sec_tone_mode)parg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 fepriv->state = FESTATE_DISEQC;
2413 fepriv->status = 0;
2414 }
2415 break;
2416
2417 case FE_SET_VOLTAGE:
Patrick Boettcherdea74862006-05-14 05:01:31 -03002418 if (fe->ops.set_voltage) {
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -03002419 err = fe->ops.set_voltage(fe,
2420 (enum fe_sec_voltage)parg);
2421 fepriv->voltage = (enum fe_sec_voltage)parg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 fepriv->state = FESTATE_DISEQC;
2423 fepriv->status = 0;
2424 }
2425 break;
2426
2427 case FE_DISHNETWORK_SEND_LEGACY_CMD:
Patrick Boettcherdea74862006-05-14 05:01:31 -03002428 if (fe->ops.dishnetwork_send_legacy_command) {
Mauro Carvalho Chehab0df289a2015-06-07 14:53:52 -03002429 err = fe->ops.dishnetwork_send_legacy_command(fe,
2430 (unsigned long)parg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 fepriv->state = FESTATE_DISEQC;
2432 fepriv->status = 0;
Patrick Boettcherdea74862006-05-14 05:01:31 -03002433 } else if (fe->ops.set_voltage) {
NooneImportant83b75b02005-11-08 21:35:27 -08002434 /*
2435 * NOTE: This is a fallback condition. Some frontends
2436 * (stv0299 for instance) take longer than 8msec to
2437 * respond to a set_voltage command. Those switches
2438 * need custom routines to switch properly. For all
Guillaume Audirac2030c032010-05-06 09:30:25 -03002439 * other frontends, the following should work ok.
NooneImportant83b75b02005-11-08 21:35:27 -08002440 * Dish network legacy switches (as used by Dish500)
2441 * are controlled by sending 9-bit command words
2442 * spaced 8msec apart.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002443 * the actual command word is switch/port dependent
NooneImportant83b75b02005-11-08 21:35:27 -08002444 * so it is up to the userspace application to send
2445 * the right command.
2446 * The command must always start with a '0' after
2447 * initialization, so parg is 8 bits and does not
2448 * include the initialization or start bit
2449 */
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03002450 unsigned long swcmd = ((unsigned long) parg) << 1;
Tina Ruchandani9056a232015-05-31 04:17:06 -03002451 ktime_t nexttime;
2452 ktime_t tv[10];
NooneImportant83b75b02005-11-08 21:35:27 -08002453 int i;
2454 u8 last = 1;
2455 if (dvb_frontend_debug)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03002456 printk("%s switch command: 0x%04lx\n", __func__, swcmd);
Tina Ruchandani9056a232015-05-31 04:17:06 -03002457 nexttime = ktime_get_real();
NooneImportant83b75b02005-11-08 21:35:27 -08002458 if (dvb_frontend_debug)
Ezequiel Garciab9b1b3a2012-10-23 15:57:23 -03002459 tv[0] = nexttime;
NooneImportant83b75b02005-11-08 21:35:27 -08002460 /* before sending a command, initialize by sending
2461 * a 32ms 18V to the switch
2462 */
Patrick Boettcherdea74862006-05-14 05:01:31 -03002463 fe->ops.set_voltage(fe, SEC_VOLTAGE_18);
NooneImportant83b75b02005-11-08 21:35:27 -08002464 dvb_frontend_sleep_until(&nexttime, 32000);
2465
2466 for (i = 0; i < 9; i++) {
2467 if (dvb_frontend_debug)
Tina Ruchandani9056a232015-05-31 04:17:06 -03002468 tv[i+1] = ktime_get_real();
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03002469 if ((swcmd & 0x01) != last) {
NooneImportant83b75b02005-11-08 21:35:27 -08002470 /* set voltage to (last ? 13V : 18V) */
Patrick Boettcherdea74862006-05-14 05:01:31 -03002471 fe->ops.set_voltage(fe, (last) ? SEC_VOLTAGE_13 : SEC_VOLTAGE_18);
NooneImportant83b75b02005-11-08 21:35:27 -08002472 last = (last) ? 0 : 1;
2473 }
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03002474 swcmd = swcmd >> 1;
NooneImportant83b75b02005-11-08 21:35:27 -08002475 if (i != 8)
2476 dvb_frontend_sleep_until(&nexttime, 8000);
2477 }
2478 if (dvb_frontend_debug) {
2479 printk("%s(%d): switch delay (should be 32k followed by all 8k\n",
Harvey Harrison46b4f7c2008-04-08 23:20:00 -03002480 __func__, fe->dvb->num);
NooneImportant83b75b02005-11-08 21:35:27 -08002481 for (i = 1; i < 10; i++)
Tina Ruchandani9056a232015-05-31 04:17:06 -03002482 printk("%d: %d\n", i,
2483 (int) ktime_us_delta(tv[i], tv[i-1]));
NooneImportant83b75b02005-11-08 21:35:27 -08002484 }
2485 err = 0;
2486 fepriv->state = FESTATE_DISEQC;
2487 fepriv->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 }
2489 break;
2490
2491 case FE_DISEQC_RECV_SLAVE_REPLY:
Patrick Boettcherdea74862006-05-14 05:01:31 -03002492 if (fe->ops.diseqc_recv_slave_reply)
2493 err = fe->ops.diseqc_recv_slave_reply(fe, (struct dvb_diseqc_slave_reply*) parg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 break;
2495
2496 case FE_ENABLE_HIGH_LNB_VOLTAGE:
Patrick Boettcherdea74862006-05-14 05:01:31 -03002497 if (fe->ops.enable_high_lnb_voltage)
2498 err = fe->ops.enable_high_lnb_voltage(fe, (long) parg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 break;
2500
Mauro Carvalho Chehab9682cea2012-01-01 16:11:12 -03002501 case FE_SET_FRONTEND:
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03002502 err = dvbv3_set_delivery_system(fe);
Mauro Carvalho Chehab04be0f72012-01-01 16:11:14 -03002503 if (err)
2504 break;
2505
Mauro Carvalho Chehabe399ce72012-01-01 16:11:16 -03002506 err = dtv_property_cache_sync(fe, c, parg);
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002507 if (err)
2508 break;
2509 err = dtv_set_frontend(fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 case FE_GET_EVENT:
2512 err = dvb_frontend_get_event (fe, parg, file->f_flags);
2513 break;
2514
2515 case FE_GET_FRONTEND:
Mauro Carvalho Chehabe399ce72012-01-01 16:11:16 -03002516 err = dtv_get_frontend(fe, parg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 break;
Andrew de Quincey36cb5572006-01-09 15:25:07 -02002518
2519 case FE_SET_FRONTEND_TUNE_MODE:
Hans Verkuile18828e2006-01-09 15:25:28 -02002520 fepriv->tune_mode_flags = (unsigned long) parg;
Trent Piepho1b172e02006-06-29 13:16:04 -03002521 err = 0;
Andrew de Quincey36cb5572006-01-09 15:25:07 -02002522 break;
Peter Senna Tschudinc2c1b412012-09-28 05:37:22 -03002523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 return err;
2526}
2527
Steven Toth6b73eea2008-09-04 01:12:25 -03002528
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529static unsigned int dvb_frontend_poll(struct file *file, struct poll_table_struct *wait)
2530{
2531 struct dvb_device *dvbdev = file->private_data;
2532 struct dvb_frontend *fe = dvbdev->priv;
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07002533 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
Antti Palosaari36bdbc32012-08-15 20:28:37 -03002535 dev_dbg_ratelimited(fe->dvb->device, "%s:\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
2537 poll_wait (file, &fepriv->events.wait_queue, wait);
2538
2539 if (fepriv->events.eventw != fepriv->events.eventr)
2540 return (POLLIN | POLLRDNORM | POLLPRI);
2541
2542 return 0;
2543}
2544
2545static int dvb_frontend_open(struct inode *inode, struct file *file)
2546{
2547 struct dvb_device *dvbdev = file->private_data;
2548 struct dvb_frontend *fe = dvbdev->priv;
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07002549 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Darron Broad59b18422008-10-11 11:44:05 -03002550 struct dvb_adapter *adapter = fe->dvb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 int ret;
2552
Antti Palosaari36bdbc32012-08-15 20:28:37 -03002553 dev_dbg(fe->dvb->device, "%s:\n", __func__);
Shuah Khan18ed2862014-07-12 13:44:12 -03002554 if (fe->exit == DVB_FE_DEVICE_REMOVED)
matthieu castete36309f2010-05-05 15:59:20 -03002555 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Darron Broad59b18422008-10-11 11:44:05 -03002557 if (adapter->mfe_shared) {
2558 mutex_lock (&adapter->mfe_lock);
Darron Broad65946902008-10-15 13:37:59 -03002559
2560 if (adapter->mfe_dvbdev == NULL)
2561 adapter->mfe_dvbdev = dvbdev;
2562
2563 else if (adapter->mfe_dvbdev != dvbdev) {
2564 struct dvb_device
2565 *mfedev = adapter->mfe_dvbdev;
2566 struct dvb_frontend
2567 *mfe = mfedev->priv;
2568 struct dvb_frontend_private
2569 *mfepriv = mfe->frontend_priv;
2570 int mferetry = (dvb_mfe_wait_time << 1);
2571
2572 mutex_unlock (&adapter->mfe_lock);
2573 while (mferetry-- && (mfedev->users != -1 ||
2574 mfepriv->thread != NULL)) {
2575 if(msleep_interruptible(500)) {
2576 if(signal_pending(current))
2577 return -EINTR;
Darron Broad59b18422008-10-11 11:44:05 -03002578 }
2579 }
Darron Broad65946902008-10-15 13:37:59 -03002580
2581 mutex_lock (&adapter->mfe_lock);
2582 if(adapter->mfe_dvbdev != dvbdev) {
2583 mfedev = adapter->mfe_dvbdev;
2584 mfe = mfedev->priv;
2585 mfepriv = mfe->frontend_priv;
2586 if (mfedev->users != -1 ||
2587 mfepriv->thread != NULL) {
2588 mutex_unlock (&adapter->mfe_lock);
2589 return -EBUSY;
2590 }
2591 adapter->mfe_dvbdev = dvbdev;
2592 }
Darron Broad59b18422008-10-11 11:44:05 -03002593 }
2594 }
2595
Oliver Endriss48136e12007-08-25 12:00:23 -03002596 if (dvbdev->users == -1 && fe->ops.ts_bus_ctrl) {
2597 if ((ret = fe->ops.ts_bus_ctrl(fe, 1)) < 0)
Darron Broad59b18422008-10-11 11:44:05 -03002598 goto err0;
Devin Heitmueller2d196932011-07-04 21:55:01 -03002599
2600 /* If we took control of the bus, we need to force
2601 reinitialization. This is because many ts_bus_ctrl()
2602 functions strobe the RESET pin on the demod, and if the
2603 frontend thread already exists then the dvb_init() routine
2604 won't get called (which is what usually does initial
2605 register configuration). */
2606 fepriv->reinitialise = 1;
Steven Tothba7e6f32006-09-25 12:41:53 -03002607 }
2608
Oliver Endriss48136e12007-08-25 12:00:23 -03002609 if ((ret = dvb_generic_open (inode, file)) < 0)
2610 goto err1;
Andrew de Quincey04c56d02006-07-10 03:34:14 -03002611
Oliver Endriss48136e12007-08-25 12:00:23 -03002612 if ((file->f_flags & O_ACCMODE) != O_RDONLY) {
Andrew de Quincey04c56d02006-07-10 03:34:14 -03002613 /* normal tune mode when opened R/W */
2614 fepriv->tune_mode_flags &= ~FE_TUNE_MODE_ONESHOT;
2615 fepriv->tone = -1;
2616 fepriv->voltage = -1;
2617
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 ret = dvb_frontend_start (fe);
2619 if (ret)
Oliver Endriss48136e12007-08-25 12:00:23 -03002620 goto err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
2622 /* empty event queue */
2623 fepriv->events.eventr = fepriv->events.eventw = 0;
2624 }
2625
Darron Broad59b18422008-10-11 11:44:05 -03002626 if (adapter->mfe_shared)
2627 mutex_unlock (&adapter->mfe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 return ret;
Oliver Endriss48136e12007-08-25 12:00:23 -03002629
2630err2:
2631 dvb_generic_release(inode, file);
2632err1:
2633 if (dvbdev->users == -1 && fe->ops.ts_bus_ctrl)
2634 fe->ops.ts_bus_ctrl(fe, 0);
Darron Broad59b18422008-10-11 11:44:05 -03002635err0:
2636 if (adapter->mfe_shared)
2637 mutex_unlock (&adapter->mfe_lock);
Oliver Endriss48136e12007-08-25 12:00:23 -03002638 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639}
2640
2641static int dvb_frontend_release(struct inode *inode, struct file *file)
2642{
2643 struct dvb_device *dvbdev = file->private_data;
2644 struct dvb_frontend *fe = dvbdev->priv;
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07002645 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Markus Rechbergerca5be9c2007-04-14 10:18:58 -03002646 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
Antti Palosaari36bdbc32012-08-15 20:28:37 -03002648 dev_dbg(fe->dvb->device, "%s:\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
Andreas Oberritterb9d5efc2011-12-09 21:37:00 -03002650 if ((file->f_flags & O_ACCMODE) != O_RDONLY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 fepriv->release_jiffies = jiffies;
Andreas Oberritterb9d5efc2011-12-09 21:37:00 -03002652 mb();
2653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654
Markus Rechbergerca5be9c2007-04-14 10:18:58 -03002655 ret = dvb_generic_release (inode, file);
2656
Oliver Endriss48136e12007-08-25 12:00:23 -03002657 if (dvbdev->users == -1) {
Andreas Oberritterb9d5efc2011-12-09 21:37:00 -03002658 wake_up(&fepriv->wait_queue);
Shuah Khan18ed2862014-07-12 13:44:12 -03002659 if (fe->exit != DVB_FE_NO_EXIT)
Oliver Endriss48136e12007-08-25 12:00:23 -03002660 wake_up(&dvbdev->wait_queue);
Oliver Endriss48136e12007-08-25 12:00:23 -03002661 if (fe->ops.ts_bus_ctrl)
2662 fe->ops.ts_bus_ctrl(fe, 0);
Markus Rechbergerca5be9c2007-04-14 10:18:58 -03002663 }
Oliver Endriss48136e12007-08-25 12:00:23 -03002664
Markus Rechbergerca5be9c2007-04-14 10:18:58 -03002665 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666}
2667
Jan Engelhardt784e29d2009-01-11 06:12:43 -03002668static const struct file_operations dvb_frontend_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 .owner = THIS_MODULE,
Arnd Bergmann16ef8de2010-04-27 00:24:00 +02002670 .unlocked_ioctl = dvb_generic_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 .poll = dvb_frontend_poll,
2672 .open = dvb_frontend_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002673 .release = dvb_frontend_release,
2674 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675};
2676
Antti Palosaari06bae122012-08-14 22:21:06 -03002677int dvb_frontend_suspend(struct dvb_frontend *fe)
2678{
2679 int ret = 0;
2680
2681 dev_dbg(fe->dvb->device, "%s: adap=%d fe=%d\n", __func__, fe->dvb->num,
2682 fe->id);
2683
Mauro Carvalho Chehab59d78892014-08-09 21:47:19 -03002684 if (fe->ops.tuner_ops.suspend)
2685 ret = fe->ops.tuner_ops.suspend(fe);
2686 else if (fe->ops.tuner_ops.sleep)
Antti Palosaari06bae122012-08-14 22:21:06 -03002687 ret = fe->ops.tuner_ops.sleep(fe);
2688
2689 if (fe->ops.sleep)
2690 ret = fe->ops.sleep(fe);
2691
2692 return ret;
2693}
2694EXPORT_SYMBOL(dvb_frontend_suspend);
2695
2696int dvb_frontend_resume(struct dvb_frontend *fe)
2697{
2698 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2699 int ret = 0;
2700
2701 dev_dbg(fe->dvb->device, "%s: adap=%d fe=%d\n", __func__, fe->dvb->num,
2702 fe->id);
2703
Shuah Khan87cd0fa2014-07-24 13:02:14 -03002704 fe->exit = DVB_FE_DEVICE_RESUME;
Antti Palosaari06bae122012-08-14 22:21:06 -03002705 if (fe->ops.init)
2706 ret = fe->ops.init(fe);
2707
Mauro Carvalho Chehab59d78892014-08-09 21:47:19 -03002708 if (fe->ops.tuner_ops.resume)
2709 ret = fe->ops.tuner_ops.resume(fe);
2710 else if (fe->ops.tuner_ops.init)
Antti Palosaari06bae122012-08-14 22:21:06 -03002711 ret = fe->ops.tuner_ops.init(fe);
2712
Mauro Carvalho Chehab3663b312015-11-10 11:50:30 -02002713 if (fe->ops.set_tone && fepriv->tone != -1)
2714 fe->ops.set_tone(fe, fepriv->tone);
2715 if (fe->ops.set_voltage && fepriv->voltage != -1)
2716 fe->ops.set_voltage(fe, fepriv->voltage);
2717
Shuah Khan87cd0fa2014-07-24 13:02:14 -03002718 fe->exit = DVB_FE_NO_EXIT;
Antti Palosaari06bae122012-08-14 22:21:06 -03002719 fepriv->state = FESTATE_RETUNE;
2720 dvb_frontend_wakeup(fe);
2721
2722 return ret;
2723}
2724EXPORT_SYMBOL(dvb_frontend_resume);
2725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726int dvb_register_frontend(struct dvb_adapter* dvb,
2727 struct dvb_frontend* fe)
2728{
2729 struct dvb_frontend_private *fepriv;
Mauro Carvalho Chehabc1b31b12015-01-02 11:00:17 -03002730 const struct dvb_device dvbdev_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 .users = ~0,
2732 .writers = 1,
2733 .readers = (~0)-1,
2734 .fops = &dvb_frontend_fops,
Mauro Carvalho Chehabc1b31b12015-01-02 11:00:17 -03002735#if defined(CONFIG_MEDIA_CONTROLLER_DVB)
2736 .name = fe->ops.info.name,
2737#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 .kernel_ioctl = dvb_frontend_ioctl
2739 };
2740
Antti Palosaari36bdbc32012-08-15 20:28:37 -03002741 dev_dbg(dvb->device, "%s:\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
Ingo Molnar3593cab2006-02-07 06:49:14 -02002743 if (mutex_lock_interruptible(&frontend_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 return -ERESTARTSYS;
2745
Panagiotis Issaris74081872006-01-11 19:40:56 -02002746 fe->frontend_priv = kzalloc(sizeof(struct dvb_frontend_private), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 if (fe->frontend_priv == NULL) {
Ingo Molnar3593cab2006-02-07 06:49:14 -02002748 mutex_unlock(&frontend_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 return -ENOMEM;
2750 }
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07002751 fepriv = fe->frontend_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
Thomas Gleixnera0a47142010-09-07 11:33:27 -03002753 sema_init(&fepriv->sem, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 init_waitqueue_head (&fepriv->wait_queue);
2755 init_waitqueue_head (&fepriv->events.wait_queue);
Matthias Kaehlcke03b76122007-07-30 14:58:10 -03002756 mutex_init(&fepriv->events.mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 fe->dvb = dvb;
2758 fepriv->inversion = INVERSION_OFF;
2759
Antti Palosaari36bdbc32012-08-15 20:28:37 -03002760 dev_info(fe->dvb->device,
2761 "DVB: registering adapter %i frontend %i (%s)...\n",
2762 fe->dvb->num, fe->id, fe->ops.info.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
2764 dvb_register_device (fe->dvb, &fepriv->dvbdev, &dvbdev_template,
2765 fe, DVB_DEVICE_FRONTEND);
2766
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002767 /*
2768 * Initialize the cache to the proper values according with the
2769 * first supported delivery system (ops->delsys[0])
2770 */
Mauro Carvalho Chehab240ab502012-01-10 18:00:50 -03002771
Mauro Carvalho Chehabbe431b12013-03-18 15:25:36 -03002772 fe->dtv_property_cache.delivery_system = fe->ops.delsys[0];
Mauro Carvalho Chehab5bfaadd2012-01-01 16:11:13 -03002773 dvb_frontend_clear_cache(fe);
2774
Ingo Molnar3593cab2006-02-07 06:49:14 -02002775 mutex_unlock(&frontend_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 return 0;
2777}
2778EXPORT_SYMBOL(dvb_register_frontend);
2779
2780int dvb_unregister_frontend(struct dvb_frontend* fe)
2781{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07002782 struct dvb_frontend_private *fepriv = fe->frontend_priv;
Antti Palosaari36bdbc32012-08-15 20:28:37 -03002783 dev_dbg(fe->dvb->device, "%s:\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Markus Rechberger57861b42007-04-14 10:19:18 -03002785 mutex_lock(&frontend_mutex);
Markus Rechbergerca5be9c2007-04-14 10:18:58 -03002786 dvb_frontend_stop (fe);
Markus Rechberger57861b42007-04-14 10:19:18 -03002787 mutex_unlock(&frontend_mutex);
2788
2789 if (fepriv->dvbdev->users < -1)
2790 wait_event(fepriv->dvbdev->wait_queue,
2791 fepriv->dvbdev->users==-1);
2792
Ingo Molnar3593cab2006-02-07 06:49:14 -02002793 mutex_lock(&frontend_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 dvb_unregister_device (fepriv->dvbdev);
Andrew de Quinceyd9955062006-08-08 09:10:08 -03002795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 /* fe is invalid now */
2797 kfree(fepriv);
Ingo Molnar3593cab2006-02-07 06:49:14 -02002798 mutex_unlock(&frontend_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 return 0;
2800}
2801EXPORT_SYMBOL(dvb_unregister_frontend);
Andrew de Quinceyf52a8382006-08-08 09:10:09 -03002802
Mauro Carvalho Chehab149ef722008-04-29 21:38:46 -03002803#ifdef CONFIG_MEDIA_ATTACH
Andrew de Quinceyf52a8382006-08-08 09:10:09 -03002804void dvb_frontend_detach(struct dvb_frontend* fe)
2805{
2806 void *ptr;
2807
2808 if (fe->ops.release_sec) {
2809 fe->ops.release_sec(fe);
Mauro Carvalho Chehab4647f482014-05-29 09:20:13 -03002810 dvb_detach(fe->ops.release_sec);
Andrew de Quinceyf52a8382006-08-08 09:10:09 -03002811 }
2812 if (fe->ops.tuner_ops.release) {
2813 fe->ops.tuner_ops.release(fe);
Mauro Carvalho Chehab4647f482014-05-29 09:20:13 -03002814 dvb_detach(fe->ops.tuner_ops.release);
Andrew de Quinceyf52a8382006-08-08 09:10:09 -03002815 }
Michael Krufky2426a272007-12-21 11:34:45 -03002816 if (fe->ops.analog_ops.release) {
2817 fe->ops.analog_ops.release(fe);
Mauro Carvalho Chehab4647f482014-05-29 09:20:13 -03002818 dvb_detach(fe->ops.analog_ops.release);
Michael Krufky2426a272007-12-21 11:34:45 -03002819 }
Andrew de Quinceyf52a8382006-08-08 09:10:09 -03002820 ptr = (void*)fe->ops.release;
2821 if (ptr) {
2822 fe->ops.release(fe);
Mauro Carvalho Chehab4647f482014-05-29 09:20:13 -03002823 dvb_detach(ptr);
Andrew de Quinceyf52a8382006-08-08 09:10:09 -03002824 }
2825}
2826#else
2827void dvb_frontend_detach(struct dvb_frontend* fe)
2828{
2829 if (fe->ops.release_sec)
2830 fe->ops.release_sec(fe);
2831 if (fe->ops.tuner_ops.release)
2832 fe->ops.tuner_ops.release(fe);
Michael Krufky2426a272007-12-21 11:34:45 -03002833 if (fe->ops.analog_ops.release)
2834 fe->ops.analog_ops.release(fe);
Andrew de Quinceyf52a8382006-08-08 09:10:09 -03002835 if (fe->ops.release)
2836 fe->ops.release(fe);
2837}
2838#endif
2839EXPORT_SYMBOL(dvb_frontend_detach);