1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * dvb_frontend.c: DVB frontend tuning interface/thread
5 * Copyright (C) 1999-2001 Ralph Metzler
8 * for convergence integrated media GmbH
10 * Copyright (C) 2004 Andrew de Quincey (tuning thread cleanup)
13 /* Enables DVBv3 compatibility bits at the headers */
16 #define pr_fmt(fmt) "dvb_frontend: " fmt
18 #include <linux/string.h>
19 #include <linux/kernel.h>
20 #include <linux/sched/signal.h>
21 #include <linux/wait.h>
22 #include <linux/slab.h>
23 #include <linux/poll.h>
24 #include <linux/semaphore.h>
25 #include <linux/module.h>
26 #include <linux/list.h>
27 #include <linux/freezer.h>
28 #include <linux/jiffies.h>
29 #include <linux/kthread.h>
30 #include <linux/ktime.h>
31 #include <linux/compat.h>
32 #include <asm/processor.h>
34 #include <media/dvb_frontend.h>
35 #include <media/dvbdev.h>
36 #include <linux/dvb/version.h>
38 static int dvb_frontend_debug;
39 static int dvb_shutdown_timeout;
40 static int dvb_force_auto_inversion;
41 static int dvb_override_tune_delay;
42 static int dvb_powerdown_on_sleep = 1;
43 static int dvb_mfe_wait_time = 5;
45 module_param_named(frontend_debug, dvb_frontend_debug, int, 0644);
46 MODULE_PARM_DESC(frontend_debug, "Turn on/off frontend core debugging (default:off).");
47 module_param(dvb_shutdown_timeout, int, 0644);
48 MODULE_PARM_DESC(dvb_shutdown_timeout, "wait <shutdown_timeout> seconds after close() before suspending hardware");
49 module_param(dvb_force_auto_inversion, int, 0644);
50 MODULE_PARM_DESC(dvb_force_auto_inversion, "0: normal (default), 1: INVERSION_AUTO forced always");
51 module_param(dvb_override_tune_delay, int, 0644);
52 MODULE_PARM_DESC(dvb_override_tune_delay, "0: normal (default), >0 => delay in milliseconds to wait for lock after a tune attempt");
53 module_param(dvb_powerdown_on_sleep, int, 0644);
54 MODULE_PARM_DESC(dvb_powerdown_on_sleep, "0: do not power down, 1: turn LNB voltage off on sleep (default)");
55 module_param(dvb_mfe_wait_time, int, 0644);
56 MODULE_PARM_DESC(dvb_mfe_wait_time, "Wait up to <mfe_wait_time> seconds on open() for multi-frontend to become available (default:5 seconds)");
58 #define dprintk(fmt, arg...) \
59 printk(KERN_DEBUG pr_fmt("%s: " fmt), __func__, ##arg)
61 #define FESTATE_IDLE 1
62 #define FESTATE_RETUNE 2
63 #define FESTATE_TUNING_FAST 4
64 #define FESTATE_TUNING_SLOW 8
65 #define FESTATE_TUNED 16
66 #define FESTATE_ZIGZAG_FAST 32
67 #define FESTATE_ZIGZAG_SLOW 64
68 #define FESTATE_DISEQC 128
69 #define FESTATE_ERROR 256
70 #define FESTATE_WAITFORLOCK (FESTATE_TUNING_FAST | FESTATE_TUNING_SLOW | FESTATE_ZIGZAG_FAST | FESTATE_ZIGZAG_SLOW | FESTATE_DISEQC)
71 #define FESTATE_SEARCHING_FAST (FESTATE_TUNING_FAST | FESTATE_ZIGZAG_FAST)
72 #define FESTATE_SEARCHING_SLOW (FESTATE_TUNING_SLOW | FESTATE_ZIGZAG_SLOW)
73 #define FESTATE_LOSTLOCK (FESTATE_ZIGZAG_FAST | FESTATE_ZIGZAG_SLOW)
76 * FESTATE_IDLE. No tuning parameters have been supplied and the loop is idling.
77 * FESTATE_RETUNE. Parameters have been supplied, but we have not yet performed the first tune.
78 * FESTATE_TUNING_FAST. Tuning parameters have been supplied and fast zigzag scan is in progress.
79 * FESTATE_TUNING_SLOW. Tuning parameters have been supplied. Fast zigzag failed, so we're trying again, but slower.
80 * FESTATE_TUNED. The frontend has successfully locked on.
81 * FESTATE_ZIGZAG_FAST. The lock has been lost, and a fast zigzag has been initiated to try and regain it.
82 * FESTATE_ZIGZAG_SLOW. The lock has been lost. Fast zigzag has been failed, so we're trying again, but slower.
83 * FESTATE_DISEQC. A DISEQC command has just been issued.
84 * FESTATE_WAITFORLOCK. When we're waiting for a lock.
85 * FESTATE_SEARCHING_FAST. When we're searching for a signal using a fast zigzag scan.
86 * FESTATE_SEARCHING_SLOW. When we're searching for a signal using a slow zigzag scan.
87 * FESTATE_LOSTLOCK. When the lock has been lost, and we're searching it again.
90 static DEFINE_MUTEX(frontend_mutex);
92 struct dvb_frontend_private {
93 /* thread/frontend values */
94 struct dvb_device *dvbdev;
95 struct dvb_frontend_parameters parameters_out;
96 struct dvb_fe_events events;
98 struct list_head list_head;
99 wait_queue_head_t wait_queue;
100 struct task_struct *thread;
101 unsigned long release_jiffies;
103 enum fe_status status;
104 unsigned long tune_mode_flags;
106 unsigned int reinitialise;
110 /* swzigzag values */
112 unsigned int bending;
114 unsigned int inversion;
115 unsigned int auto_step;
116 unsigned int auto_sub_step;
117 unsigned int started_auto_step;
118 unsigned int min_delay;
119 unsigned int max_drift;
120 unsigned int step_size;
122 unsigned int check_wrapped;
123 enum dvbfe_search algo_status;
125 #if defined(CONFIG_MEDIA_CONTROLLER_DVB)
126 struct media_pipeline pipe;
130 static void dvb_frontend_invoke_release(struct dvb_frontend *fe,
131 void (*release)(struct dvb_frontend *fe));
133 static void __dvb_frontend_free(struct dvb_frontend *fe)
135 struct dvb_frontend_private *fepriv = fe->frontend_priv;
138 dvb_free_device(fepriv->dvbdev);
140 dvb_frontend_invoke_release(fe, fe->ops.release);
145 static void dvb_frontend_free(struct kref *ref)
147 struct dvb_frontend *fe =
148 container_of(ref, struct dvb_frontend, refcount);
150 __dvb_frontend_free(fe);
153 static void dvb_frontend_put(struct dvb_frontend *fe)
156 * Check if the frontend was registered, as otherwise
157 * kref was not initialized yet.
159 if (fe->frontend_priv)
160 kref_put(&fe->refcount, dvb_frontend_free);
162 __dvb_frontend_free(fe);
165 static void dvb_frontend_get(struct dvb_frontend *fe)
167 kref_get(&fe->refcount);
170 static void dvb_frontend_wakeup(struct dvb_frontend *fe);
171 static int dtv_get_frontend(struct dvb_frontend *fe,
172 struct dtv_frontend_properties *c,
173 struct dvb_frontend_parameters *p_out);
175 dtv_property_legacy_params_sync(struct dvb_frontend *fe,
176 const struct dtv_frontend_properties *c,
177 struct dvb_frontend_parameters *p);
179 static bool has_get_frontend(struct dvb_frontend *fe)
181 return fe->ops.get_frontend;
185 * Due to DVBv3 API calls, a delivery system should be mapped into one of
186 * the 4 DVBv3 delivery systems (FE_QPSK, FE_QAM, FE_OFDM or FE_ATSC),
187 * otherwise, a DVBv3 call will fail.
189 enum dvbv3_emulation_type {
197 static enum dvbv3_emulation_type dvbv3_type(u32 delivery_system)
199 switch (delivery_system) {
200 case SYS_DVBC_ANNEX_A:
201 case SYS_DVBC_ANNEX_C:
216 case SYS_DVBC_ANNEX_B:
224 * Doesn't know how to emulate those types and/or
225 * there's no frontend driver from this type yet
226 * with some emulation code, so, we're not sure yet how
227 * to handle them, or they're not compatible with a DVBv3 call.
229 return DVBV3_UNKNOWN;
233 static void dvb_frontend_add_event(struct dvb_frontend *fe,
234 enum fe_status status)
236 struct dvb_frontend_private *fepriv = fe->frontend_priv;
237 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
238 struct dvb_fe_events *events = &fepriv->events;
239 struct dvb_frontend_event *e;
242 dev_dbg(fe->dvb->device, "%s:\n", __func__);
244 if ((status & FE_HAS_LOCK) && has_get_frontend(fe))
245 dtv_get_frontend(fe, c, &fepriv->parameters_out);
247 mutex_lock(&events->mtx);
249 wp = (events->eventw + 1) % MAX_EVENT;
250 if (wp == events->eventr) {
251 events->overflow = 1;
252 events->eventr = (events->eventr + 1) % MAX_EVENT;
255 e = &events->events[events->eventw];
257 e->parameters = fepriv->parameters_out;
261 mutex_unlock(&events->mtx);
263 wake_up_interruptible(&events->wait_queue);
266 static int dvb_frontend_test_event(struct dvb_frontend_private *fepriv,
267 struct dvb_fe_events *events)
272 ret = events->eventw != events->eventr;
278 static int dvb_frontend_get_event(struct dvb_frontend *fe,
279 struct dvb_frontend_event *event, int flags)
281 struct dvb_frontend_private *fepriv = fe->frontend_priv;
282 struct dvb_fe_events *events = &fepriv->events;
284 dev_dbg(fe->dvb->device, "%s:\n", __func__);
286 if (events->overflow) {
287 events->overflow = 0;
291 if (events->eventw == events->eventr) {
294 if (flags & O_NONBLOCK)
297 ret = wait_event_interruptible(events->wait_queue,
298 dvb_frontend_test_event(fepriv, events));
304 mutex_lock(&events->mtx);
305 *event = events->events[events->eventr];
306 events->eventr = (events->eventr + 1) % MAX_EVENT;
307 mutex_unlock(&events->mtx);
312 static void dvb_frontend_clear_events(struct dvb_frontend *fe)
314 struct dvb_frontend_private *fepriv = fe->frontend_priv;
315 struct dvb_fe_events *events = &fepriv->events;
317 mutex_lock(&events->mtx);
318 events->eventr = events->eventw;
319 mutex_unlock(&events->mtx);
322 static void dvb_frontend_init(struct dvb_frontend *fe)
324 dev_dbg(fe->dvb->device,
325 "%s: initialising adapter %i frontend %i (%s)...\n",
326 __func__, fe->dvb->num, fe->id, fe->ops.info.name);
330 if (fe->ops.tuner_ops.init) {
331 if (fe->ops.i2c_gate_ctrl)
332 fe->ops.i2c_gate_ctrl(fe, 1);
333 fe->ops.tuner_ops.init(fe);
334 if (fe->ops.i2c_gate_ctrl)
335 fe->ops.i2c_gate_ctrl(fe, 0);
339 void dvb_frontend_reinitialise(struct dvb_frontend *fe)
341 struct dvb_frontend_private *fepriv = fe->frontend_priv;
343 fepriv->reinitialise = 1;
344 dvb_frontend_wakeup(fe);
346 EXPORT_SYMBOL(dvb_frontend_reinitialise);
348 static void dvb_frontend_swzigzag_update_delay(struct dvb_frontend_private *fepriv, int locked)
351 struct dvb_frontend *fe = fepriv->dvbdev->priv;
353 dev_dbg(fe->dvb->device, "%s:\n", __func__);
356 (fepriv->quality) = (fepriv->quality * 220 + 36 * 256) / 256;
358 (fepriv->quality) = (fepriv->quality * 220 + 0) / 256;
360 q2 = fepriv->quality - 128;
363 fepriv->delay = fepriv->min_delay + q2 * HZ / (128 * 128);
367 * dvb_frontend_swzigzag_autotune - Performs automatic twiddling of frontend
370 * @fe: The frontend concerned.
371 * @check_wrapped: Checks if an iteration has completed.
372 * DO NOT SET ON THE FIRST ATTEMPT.
374 * return: Number of complete iterations that have been performed.
376 static int dvb_frontend_swzigzag_autotune(struct dvb_frontend *fe, int check_wrapped)
381 struct dvb_frontend_private *fepriv = fe->frontend_priv;
382 struct dtv_frontend_properties *c = &fe->dtv_property_cache, tmp;
383 int original_inversion = c->inversion;
384 u32 original_frequency = c->frequency;
386 /* are we using autoinversion? */
387 autoinversion = ((!(fe->ops.info.caps & FE_CAN_INVERSION_AUTO)) &&
388 (c->inversion == INVERSION_AUTO));
390 /* setup parameters correctly */
392 /* calculate the lnb_drift */
393 fepriv->lnb_drift = fepriv->auto_step * fepriv->step_size;
395 /* wrap the auto_step if we've exceeded the maximum drift */
396 if (fepriv->lnb_drift > fepriv->max_drift) {
397 fepriv->auto_step = 0;
398 fepriv->auto_sub_step = 0;
399 fepriv->lnb_drift = 0;
402 /* perform inversion and +/- zigzag */
403 switch (fepriv->auto_sub_step) {
405 /* try with the current inversion and current drift setting */
410 if (!autoinversion) break;
412 fepriv->inversion = (fepriv->inversion == INVERSION_OFF) ? INVERSION_ON : INVERSION_OFF;
417 if (fepriv->lnb_drift == 0) break;
419 fepriv->lnb_drift = -fepriv->lnb_drift;
424 if (fepriv->lnb_drift == 0) break;
425 if (!autoinversion) break;
427 fepriv->inversion = (fepriv->inversion == INVERSION_OFF) ? INVERSION_ON : INVERSION_OFF;
428 fepriv->lnb_drift = -fepriv->lnb_drift;
434 fepriv->auto_sub_step = -1; /* it'll be incremented to 0 in a moment */
438 if (!ready) fepriv->auto_sub_step++;
441 /* if this attempt would hit where we started, indicate a complete
442 * iteration has occurred */
443 if ((fepriv->auto_step == fepriv->started_auto_step) &&
444 (fepriv->auto_sub_step == 0) && check_wrapped) {
448 dev_dbg(fe->dvb->device,
449 "%s: drift:%i inversion:%i auto_step:%i auto_sub_step:%i started_auto_step:%i\n",
450 __func__, fepriv->lnb_drift, fepriv->inversion,
451 fepriv->auto_step, fepriv->auto_sub_step,
452 fepriv->started_auto_step);
454 /* set the frontend itself */
455 c->frequency += fepriv->lnb_drift;
457 c->inversion = fepriv->inversion;
459 if (fe->ops.set_frontend)
460 fe_set_err = fe->ops.set_frontend(fe);
462 if (fe_set_err < 0) {
463 fepriv->state = FESTATE_ERROR;
467 c->frequency = original_frequency;
468 c->inversion = original_inversion;
470 fepriv->auto_sub_step++;
474 static void dvb_frontend_swzigzag(struct dvb_frontend *fe)
476 enum fe_status s = FE_NONE;
478 struct dvb_frontend_private *fepriv = fe->frontend_priv;
479 struct dtv_frontend_properties *c = &fe->dtv_property_cache, tmp;
481 /* if we've got no parameters, just keep idling */
482 if (fepriv->state & FESTATE_IDLE) {
483 fepriv->delay = 3 * HZ;
488 /* in SCAN mode, we just set the frontend when asked and leave it alone */
489 if (fepriv->tune_mode_flags & FE_TUNE_MODE_ONESHOT) {
490 if (fepriv->state & FESTATE_RETUNE) {
492 if (fe->ops.set_frontend)
493 retval = fe->ops.set_frontend(fe);
496 fepriv->state = FESTATE_ERROR;
498 fepriv->state = FESTATE_TUNED;
500 fepriv->delay = 3 * HZ;
505 /* get the frontend status */
506 if (fepriv->state & FESTATE_RETUNE) {
509 if (fe->ops.read_status)
510 fe->ops.read_status(fe, &s);
511 if (s != fepriv->status) {
512 dvb_frontend_add_event(fe, s);
517 /* if we're not tuned, and we have a lock, move to the TUNED state */
518 if ((fepriv->state & FESTATE_WAITFORLOCK) && (s & FE_HAS_LOCK)) {
519 dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
520 fepriv->state = FESTATE_TUNED;
522 /* if we're tuned, then we have determined the correct inversion */
523 if ((!(fe->ops.info.caps & FE_CAN_INVERSION_AUTO)) &&
524 (c->inversion == INVERSION_AUTO)) {
525 c->inversion = fepriv->inversion;
530 /* if we are tuned already, check we're still locked */
531 if (fepriv->state & FESTATE_TUNED) {
532 dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
534 /* we're tuned, and the lock is still good... */
535 if (s & FE_HAS_LOCK) {
537 } else { /* if we _WERE_ tuned, but now don't have a lock */
538 fepriv->state = FESTATE_ZIGZAG_FAST;
539 fepriv->started_auto_step = fepriv->auto_step;
540 fepriv->check_wrapped = 0;
544 /* don't actually do anything if we're in the LOSTLOCK state,
545 * the frontend is set to FE_CAN_RECOVER, and the max_drift is 0 */
546 if ((fepriv->state & FESTATE_LOSTLOCK) &&
547 (fe->ops.info.caps & FE_CAN_RECOVER) && (fepriv->max_drift == 0)) {
548 dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
552 /* don't do anything if we're in the DISEQC state, since this
553 * might be someone with a motorized dish controlled by DISEQC.
554 * If its actually a re-tune, there will be a SET_FRONTEND soon enough. */
555 if (fepriv->state & FESTATE_DISEQC) {
556 dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
560 /* if we're in the RETUNE state, set everything up for a brand
561 * new scan, keeping the current inversion setting, as the next
562 * tune is _very_ likely to require the same */
563 if (fepriv->state & FESTATE_RETUNE) {
564 fepriv->lnb_drift = 0;
565 fepriv->auto_step = 0;
566 fepriv->auto_sub_step = 0;
567 fepriv->started_auto_step = 0;
568 fepriv->check_wrapped = 0;
572 if ((fepriv->state & FESTATE_SEARCHING_FAST) || (fepriv->state & FESTATE_RETUNE)) {
573 fepriv->delay = fepriv->min_delay;
576 retval = dvb_frontend_swzigzag_autotune(fe,
577 fepriv->check_wrapped);
581 /* OK, if we've run out of trials at the fast speed.
582 * Drop back to slow for the _next_ attempt */
583 fepriv->state = FESTATE_SEARCHING_SLOW;
584 fepriv->started_auto_step = fepriv->auto_step;
587 fepriv->check_wrapped = 1;
589 /* if we've just re-tuned, enter the ZIGZAG_FAST state.
590 * This ensures we cannot return from an
591 * FE_SET_FRONTEND ioctl before the first frontend tune
593 if (fepriv->state & FESTATE_RETUNE) {
594 fepriv->state = FESTATE_TUNING_FAST;
599 if (fepriv->state & FESTATE_SEARCHING_SLOW) {
600 dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
602 /* Note: don't bother checking for wrapping; we stay in this
603 * state until we get a lock */
604 dvb_frontend_swzigzag_autotune(fe, 0);
608 static int dvb_frontend_is_exiting(struct dvb_frontend *fe)
610 struct dvb_frontend_private *fepriv = fe->frontend_priv;
612 if (fe->exit != DVB_FE_NO_EXIT)
615 if (fepriv->dvbdev->writers == 1)
616 if (time_after_eq(jiffies, fepriv->release_jiffies +
617 dvb_shutdown_timeout * HZ))
623 static int dvb_frontend_should_wakeup(struct dvb_frontend *fe)
625 struct dvb_frontend_private *fepriv = fe->frontend_priv;
627 if (fepriv->wakeup) {
631 return dvb_frontend_is_exiting(fe);
634 static void dvb_frontend_wakeup(struct dvb_frontend *fe)
636 struct dvb_frontend_private *fepriv = fe->frontend_priv;
639 wake_up_interruptible(&fepriv->wait_queue);
642 static int dvb_frontend_thread(void *data)
644 struct dvb_frontend *fe = data;
645 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
646 struct dvb_frontend_private *fepriv = fe->frontend_priv;
647 enum fe_status s = FE_NONE;
648 enum dvbfe_algo algo;
649 bool re_tune = false;
650 bool semheld = false;
652 dev_dbg(fe->dvb->device, "%s:\n", __func__);
654 fepriv->check_wrapped = 0;
656 fepriv->delay = 3 * HZ;
659 fepriv->reinitialise = 0;
661 dvb_frontend_init(fe);
665 up(&fepriv->sem); /* is locked when we enter the thread... */
667 wait_event_interruptible_timeout(fepriv->wait_queue,
668 dvb_frontend_should_wakeup(fe) ||
669 kthread_should_stop() ||
673 if (kthread_should_stop() || dvb_frontend_is_exiting(fe)) {
674 /* got signal or quitting */
675 if (!down_interruptible(&fepriv->sem))
677 fe->exit = DVB_FE_NORMAL_EXIT;
684 if (down_interruptible(&fepriv->sem))
687 if (fepriv->reinitialise) {
688 dvb_frontend_init(fe);
689 if (fe->ops.set_tone && fepriv->tone != -1)
690 fe->ops.set_tone(fe, fepriv->tone);
691 if (fe->ops.set_voltage && fepriv->voltage != -1)
692 fe->ops.set_voltage(fe, fepriv->voltage);
693 fepriv->reinitialise = 0;
696 /* do an iteration of the tuning loop */
697 if (fe->ops.get_frontend_algo) {
698 algo = fe->ops.get_frontend_algo(fe);
701 dev_dbg(fe->dvb->device, "%s: Frontend ALGO = DVBFE_ALGO_HW\n", __func__);
703 if (fepriv->state & FESTATE_RETUNE) {
704 dev_dbg(fe->dvb->device, "%s: Retune requested, FESTATE_RETUNE\n", __func__);
706 fepriv->state = FESTATE_TUNED;
712 fe->ops.tune(fe, re_tune, fepriv->tune_mode_flags, &fepriv->delay, &s);
714 if (s != fepriv->status && !(fepriv->tune_mode_flags & FE_TUNE_MODE_ONESHOT)) {
715 dev_dbg(fe->dvb->device, "%s: state changed, adding current state\n", __func__);
716 dvb_frontend_add_event(fe, s);
721 dev_dbg(fe->dvb->device, "%s: Frontend ALGO = DVBFE_ALGO_SW\n", __func__);
722 dvb_frontend_swzigzag(fe);
724 case DVBFE_ALGO_CUSTOM:
725 dev_dbg(fe->dvb->device, "%s: Frontend ALGO = DVBFE_ALGO_CUSTOM, state=%d\n", __func__, fepriv->state);
726 if (fepriv->state & FESTATE_RETUNE) {
727 dev_dbg(fe->dvb->device, "%s: Retune requested, FESTAT_RETUNE\n", __func__);
728 fepriv->state = FESTATE_TUNED;
730 /* Case where we are going to search for a carrier
731 * User asked us to retune again for some reason, possibly
732 * requesting a search with a new set of parameters
734 if (fepriv->algo_status & DVBFE_ALGO_SEARCH_AGAIN) {
735 if (fe->ops.search) {
736 fepriv->algo_status = fe->ops.search(fe);
737 /* We did do a search as was requested, the flags are
738 * now unset as well and has the flags wrt to search.
741 fepriv->algo_status &= ~DVBFE_ALGO_SEARCH_AGAIN;
744 /* Track the carrier if the search was successful */
745 if (fepriv->algo_status != DVBFE_ALGO_SEARCH_SUCCESS) {
746 fepriv->algo_status |= DVBFE_ALGO_SEARCH_AGAIN;
747 fepriv->delay = HZ / 2;
749 dtv_property_legacy_params_sync(fe, c, &fepriv->parameters_out);
750 fe->ops.read_status(fe, &s);
751 if (s != fepriv->status) {
752 dvb_frontend_add_event(fe, s); /* update event list */
754 if (!(s & FE_HAS_LOCK)) {
755 fepriv->delay = HZ / 10;
756 fepriv->algo_status |= DVBFE_ALGO_SEARCH_AGAIN;
758 fepriv->delay = 60 * HZ;
763 dev_dbg(fe->dvb->device, "%s: UNDEFINED ALGO !\n", __func__);
767 dvb_frontend_swzigzag(fe);
771 if (dvb_powerdown_on_sleep) {
772 if (fe->ops.set_voltage)
773 fe->ops.set_voltage(fe, SEC_VOLTAGE_OFF);
774 if (fe->ops.tuner_ops.sleep) {
775 if (fe->ops.i2c_gate_ctrl)
776 fe->ops.i2c_gate_ctrl(fe, 1);
777 fe->ops.tuner_ops.sleep(fe);
778 if (fe->ops.i2c_gate_ctrl)
779 fe->ops.i2c_gate_ctrl(fe, 0);
785 fepriv->thread = NULL;
786 if (kthread_should_stop())
787 fe->exit = DVB_FE_DEVICE_REMOVED;
789 fe->exit = DVB_FE_NO_EXIT;
794 dvb_frontend_wakeup(fe);
798 static void dvb_frontend_stop(struct dvb_frontend *fe)
800 struct dvb_frontend_private *fepriv = fe->frontend_priv;
802 dev_dbg(fe->dvb->device, "%s:\n", __func__);
804 if (fe->exit != DVB_FE_DEVICE_REMOVED)
805 fe->exit = DVB_FE_NORMAL_EXIT;
811 kthread_stop(fepriv->thread);
813 sema_init(&fepriv->sem, 1);
814 fepriv->state = FESTATE_IDLE;
816 /* paranoia check in case a signal arrived */
818 dev_warn(fe->dvb->device,
819 "dvb_frontend_stop: warning: thread %p won't exit\n",
824 * Sleep for the amount of time given by add_usec parameter
826 * This needs to be as precise as possible, as it affects the detection of
827 * the dish tone command at the satellite subsystem. The precision is improved
828 * by using a scheduled msleep followed by udelay for the remainder.
830 void dvb_frontend_sleep_until(ktime_t *waketime, u32 add_usec)
834 *waketime = ktime_add_us(*waketime, add_usec);
835 delta = ktime_us_delta(ktime_get_boottime(), *waketime);
837 msleep((delta - 1500) / 1000);
838 delta = ktime_us_delta(ktime_get_boottime(), *waketime);
843 EXPORT_SYMBOL(dvb_frontend_sleep_until);
845 static int dvb_frontend_start(struct dvb_frontend *fe)
848 struct dvb_frontend_private *fepriv = fe->frontend_priv;
849 struct task_struct *fe_thread;
851 dev_dbg(fe->dvb->device, "%s:\n", __func__);
853 if (fepriv->thread) {
854 if (fe->exit == DVB_FE_NO_EXIT)
857 dvb_frontend_stop(fe);
860 if (signal_pending(current))
862 if (down_interruptible(&fepriv->sem))
865 fepriv->state = FESTATE_IDLE;
866 fe->exit = DVB_FE_NO_EXIT;
867 fepriv->thread = NULL;
870 fe_thread = kthread_run(dvb_frontend_thread, fe,
871 "kdvb-ad-%i-fe-%i", fe->dvb->num, fe->id);
872 if (IS_ERR(fe_thread)) {
873 ret = PTR_ERR(fe_thread);
874 dev_warn(fe->dvb->device,
875 "dvb_frontend_start: failed to start kthread (%d)\n",
880 fepriv->thread = fe_thread;
884 static void dvb_frontend_get_frequency_limits(struct dvb_frontend *fe,
885 u32 *freq_min, u32 *freq_max,
888 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
889 u32 tuner_min = fe->ops.tuner_ops.info.frequency_min_hz;
890 u32 tuner_max = fe->ops.tuner_ops.info.frequency_max_hz;
891 u32 frontend_min = fe->ops.info.frequency_min_hz;
892 u32 frontend_max = fe->ops.info.frequency_max_hz;
894 *freq_min = max(frontend_min, tuner_min);
896 if (frontend_max == 0)
897 *freq_max = tuner_max;
898 else if (tuner_max == 0)
899 *freq_max = frontend_max;
901 *freq_max = min(frontend_max, tuner_max);
903 if (*freq_min == 0 || *freq_max == 0)
904 dev_warn(fe->dvb->device,
905 "DVB: adapter %i frontend %u frequency limits undefined - fix the driver\n",
906 fe->dvb->num, fe->id);
908 dev_dbg(fe->dvb->device, "frequency interval: tuner: %u...%u, frontend: %u...%u",
909 tuner_min, tuner_max, frontend_min, frontend_max);
911 /* If the standard is for satellite, convert frequencies to kHz */
912 switch (c->delivery_system) {
920 *tolerance = fe->ops.info.frequency_tolerance_hz / kHz;
925 *tolerance = fe->ops.info.frequency_tolerance_hz;
930 static u32 dvb_frontend_get_stepsize(struct dvb_frontend *fe)
932 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
933 u32 fe_step = fe->ops.info.frequency_stepsize_hz;
934 u32 tuner_step = fe->ops.tuner_ops.info.frequency_step_hz;
935 u32 step = max(fe_step, tuner_step);
937 switch (c->delivery_system) {
951 static int dvb_frontend_check_parameters(struct dvb_frontend *fe)
953 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
957 /* range check: frequency */
958 dvb_frontend_get_frequency_limits(fe, &freq_min, &freq_max, NULL);
959 if ((freq_min && c->frequency < freq_min) ||
960 (freq_max && c->frequency > freq_max)) {
961 dev_warn(fe->dvb->device, "DVB: adapter %i frontend %i frequency %u out of range (%u..%u)\n",
962 fe->dvb->num, fe->id, c->frequency,
967 /* range check: symbol rate */
968 switch (c->delivery_system) {
972 case SYS_DVBC_ANNEX_A:
973 case SYS_DVBC_ANNEX_C:
974 if ((fe->ops.info.symbol_rate_min &&
975 c->symbol_rate < fe->ops.info.symbol_rate_min) ||
976 (fe->ops.info.symbol_rate_max &&
977 c->symbol_rate > fe->ops.info.symbol_rate_max)) {
978 dev_warn(fe->dvb->device, "DVB: adapter %i frontend %i symbol rate %u out of range (%u..%u)\n",
979 fe->dvb->num, fe->id, c->symbol_rate,
980 fe->ops.info.symbol_rate_min,
981 fe->ops.info.symbol_rate_max);
991 static int dvb_frontend_clear_cache(struct dvb_frontend *fe)
993 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
997 delsys = c->delivery_system;
998 memset(c, 0, offsetof(struct dtv_frontend_properties, strength));
999 c->delivery_system = delsys;
1001 dev_dbg(fe->dvb->device, "%s: Clearing cache for delivery system %d\n",
1002 __func__, c->delivery_system);
1004 c->transmission_mode = TRANSMISSION_MODE_AUTO;
1005 c->bandwidth_hz = 0; /* AUTO */
1006 c->guard_interval = GUARD_INTERVAL_AUTO;
1007 c->hierarchy = HIERARCHY_AUTO;
1009 c->code_rate_HP = FEC_AUTO;
1010 c->code_rate_LP = FEC_AUTO;
1011 c->fec_inner = FEC_AUTO;
1012 c->rolloff = ROLLOFF_AUTO;
1013 c->voltage = SEC_VOLTAGE_OFF;
1014 c->sectone = SEC_TONE_OFF;
1015 c->pilot = PILOT_AUTO;
1017 c->isdbt_partial_reception = 0;
1018 c->isdbt_sb_mode = 0;
1019 c->isdbt_sb_subchannel = 0;
1020 c->isdbt_sb_segment_idx = 0;
1021 c->isdbt_sb_segment_count = 0;
1022 c->isdbt_layer_enabled = 7; /* All layers (A,B,C) */
1023 for (i = 0; i < 3; i++) {
1024 c->layer[i].fec = FEC_AUTO;
1025 c->layer[i].modulation = QAM_AUTO;
1026 c->layer[i].interleaving = 0;
1027 c->layer[i].segment_count = 0;
1030 c->stream_id = NO_STREAM_ID_FILTER;
1031 c->scrambling_sequence_index = 0;/* default sequence */
1033 switch (c->delivery_system) {
1037 c->modulation = QPSK; /* implied for DVB-S in legacy API */
1038 c->rolloff = ROLLOFF_35;/* implied for DVB-S */
1041 c->modulation = VSB_8;
1044 c->symbol_rate = 28860000;
1045 c->rolloff = ROLLOFF_35;
1046 c->bandwidth_hz = c->symbol_rate / 100 * 135;
1049 c->modulation = QAM_AUTO;
1058 #define _DTV_CMD(n, s, b) \
1067 char *name; /* A display name for debugging purposes */
1069 __u32 cmd; /* A unique ID */
1072 __u32 set:1; /* Either a set or get property */
1073 __u32 buffer:1; /* Does this property use the buffer? */
1074 __u32 reserved:30; /* Align */
1077 static struct dtv_cmds_h dtv_cmds[DTV_MAX_COMMAND + 1] = {
1078 _DTV_CMD(DTV_TUNE, 1, 0),
1079 _DTV_CMD(DTV_CLEAR, 1, 0),
1082 _DTV_CMD(DTV_FREQUENCY, 1, 0),
1083 _DTV_CMD(DTV_BANDWIDTH_HZ, 1, 0),
1084 _DTV_CMD(DTV_MODULATION, 1, 0),
1085 _DTV_CMD(DTV_INVERSION, 1, 0),
1086 _DTV_CMD(DTV_DISEQC_MASTER, 1, 1),
1087 _DTV_CMD(DTV_SYMBOL_RATE, 1, 0),
1088 _DTV_CMD(DTV_INNER_FEC, 1, 0),
1089 _DTV_CMD(DTV_VOLTAGE, 1, 0),
1090 _DTV_CMD(DTV_TONE, 1, 0),
1091 _DTV_CMD(DTV_PILOT, 1, 0),
1092 _DTV_CMD(DTV_ROLLOFF, 1, 0),
1093 _DTV_CMD(DTV_DELIVERY_SYSTEM, 1, 0),
1094 _DTV_CMD(DTV_HIERARCHY, 1, 0),
1095 _DTV_CMD(DTV_CODE_RATE_HP, 1, 0),
1096 _DTV_CMD(DTV_CODE_RATE_LP, 1, 0),
1097 _DTV_CMD(DTV_GUARD_INTERVAL, 1, 0),
1098 _DTV_CMD(DTV_TRANSMISSION_MODE, 1, 0),
1099 _DTV_CMD(DTV_INTERLEAVING, 1, 0),
1101 _DTV_CMD(DTV_ISDBT_PARTIAL_RECEPTION, 1, 0),
1102 _DTV_CMD(DTV_ISDBT_SOUND_BROADCASTING, 1, 0),
1103 _DTV_CMD(DTV_ISDBT_SB_SUBCHANNEL_ID, 1, 0),
1104 _DTV_CMD(DTV_ISDBT_SB_SEGMENT_IDX, 1, 0),
1105 _DTV_CMD(DTV_ISDBT_SB_SEGMENT_COUNT, 1, 0),
1106 _DTV_CMD(DTV_ISDBT_LAYER_ENABLED, 1, 0),
1107 _DTV_CMD(DTV_ISDBT_LAYERA_FEC, 1, 0),
1108 _DTV_CMD(DTV_ISDBT_LAYERA_MODULATION, 1, 0),
1109 _DTV_CMD(DTV_ISDBT_LAYERA_SEGMENT_COUNT, 1, 0),
1110 _DTV_CMD(DTV_ISDBT_LAYERA_TIME_INTERLEAVING, 1, 0),
1111 _DTV_CMD(DTV_ISDBT_LAYERB_FEC, 1, 0),
1112 _DTV_CMD(DTV_ISDBT_LAYERB_MODULATION, 1, 0),
1113 _DTV_CMD(DTV_ISDBT_LAYERB_SEGMENT_COUNT, 1, 0),
1114 _DTV_CMD(DTV_ISDBT_LAYERB_TIME_INTERLEAVING, 1, 0),
1115 _DTV_CMD(DTV_ISDBT_LAYERC_FEC, 1, 0),
1116 _DTV_CMD(DTV_ISDBT_LAYERC_MODULATION, 1, 0),
1117 _DTV_CMD(DTV_ISDBT_LAYERC_SEGMENT_COUNT, 1, 0),
1118 _DTV_CMD(DTV_ISDBT_LAYERC_TIME_INTERLEAVING, 1, 0),
1120 _DTV_CMD(DTV_STREAM_ID, 1, 0),
1121 _DTV_CMD(DTV_DVBT2_PLP_ID_LEGACY, 1, 0),
1122 _DTV_CMD(DTV_SCRAMBLING_SEQUENCE_INDEX, 1, 0),
1123 _DTV_CMD(DTV_LNA, 1, 0),
1126 _DTV_CMD(DTV_DISEQC_SLAVE_REPLY, 0, 1),
1127 _DTV_CMD(DTV_API_VERSION, 0, 0),
1129 _DTV_CMD(DTV_ENUM_DELSYS, 0, 0),
1131 _DTV_CMD(DTV_ATSCMH_PARADE_ID, 1, 0),
1132 _DTV_CMD(DTV_ATSCMH_RS_FRAME_ENSEMBLE, 1, 0),
1134 _DTV_CMD(DTV_ATSCMH_FIC_VER, 0, 0),
1135 _DTV_CMD(DTV_ATSCMH_NOG, 0, 0),
1136 _DTV_CMD(DTV_ATSCMH_TNOG, 0, 0),
1137 _DTV_CMD(DTV_ATSCMH_SGN, 0, 0),
1138 _DTV_CMD(DTV_ATSCMH_PRC, 0, 0),
1139 _DTV_CMD(DTV_ATSCMH_RS_FRAME_MODE, 0, 0),
1140 _DTV_CMD(DTV_ATSCMH_RS_CODE_MODE_PRI, 0, 0),
1141 _DTV_CMD(DTV_ATSCMH_RS_CODE_MODE_SEC, 0, 0),
1142 _DTV_CMD(DTV_ATSCMH_SCCC_BLOCK_MODE, 0, 0),
1143 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_A, 0, 0),
1144 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_B, 0, 0),
1145 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_C, 0, 0),
1146 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_D, 0, 0),
1148 /* Statistics API */
1149 _DTV_CMD(DTV_STAT_SIGNAL_STRENGTH, 0, 0),
1150 _DTV_CMD(DTV_STAT_CNR, 0, 0),
1151 _DTV_CMD(DTV_STAT_PRE_ERROR_BIT_COUNT, 0, 0),
1152 _DTV_CMD(DTV_STAT_PRE_TOTAL_BIT_COUNT, 0, 0),
1153 _DTV_CMD(DTV_STAT_POST_ERROR_BIT_COUNT, 0, 0),
1154 _DTV_CMD(DTV_STAT_POST_TOTAL_BIT_COUNT, 0, 0),
1155 _DTV_CMD(DTV_STAT_ERROR_BLOCK_COUNT, 0, 0),
1156 _DTV_CMD(DTV_STAT_TOTAL_BLOCK_COUNT, 0, 0),
1159 /* Synchronise the legacy tuning parameters into the cache, so that demodulator
1160 * drivers can use a single set_frontend tuning function, regardless of whether
1161 * it's being used for the legacy or new API, reducing code and complexity.
1163 static int dtv_property_cache_sync(struct dvb_frontend *fe,
1164 struct dtv_frontend_properties *c,
1165 const struct dvb_frontend_parameters *p)
1167 c->frequency = p->frequency;
1168 c->inversion = p->inversion;
1170 switch (dvbv3_type(c->delivery_system)) {
1172 dev_dbg(fe->dvb->device, "%s: Preparing QPSK req\n", __func__);
1173 c->symbol_rate = p->u.qpsk.symbol_rate;
1174 c->fec_inner = p->u.qpsk.fec_inner;
1177 dev_dbg(fe->dvb->device, "%s: Preparing QAM req\n", __func__);
1178 c->symbol_rate = p->u.qam.symbol_rate;
1179 c->fec_inner = p->u.qam.fec_inner;
1180 c->modulation = p->u.qam.modulation;
1183 dev_dbg(fe->dvb->device, "%s: Preparing OFDM req\n", __func__);
1185 switch (p->u.ofdm.bandwidth) {
1186 case BANDWIDTH_10_MHZ:
1187 c->bandwidth_hz = 10000000;
1189 case BANDWIDTH_8_MHZ:
1190 c->bandwidth_hz = 8000000;
1192 case BANDWIDTH_7_MHZ:
1193 c->bandwidth_hz = 7000000;
1195 case BANDWIDTH_6_MHZ:
1196 c->bandwidth_hz = 6000000;
1198 case BANDWIDTH_5_MHZ:
1199 c->bandwidth_hz = 5000000;
1201 case BANDWIDTH_1_712_MHZ:
1202 c->bandwidth_hz = 1712000;
1204 case BANDWIDTH_AUTO:
1205 c->bandwidth_hz = 0;
1208 c->code_rate_HP = p->u.ofdm.code_rate_HP;
1209 c->code_rate_LP = p->u.ofdm.code_rate_LP;
1210 c->modulation = p->u.ofdm.constellation;
1211 c->transmission_mode = p->u.ofdm.transmission_mode;
1212 c->guard_interval = p->u.ofdm.guard_interval;
1213 c->hierarchy = p->u.ofdm.hierarchy_information;
1216 dev_dbg(fe->dvb->device, "%s: Preparing ATSC req\n", __func__);
1217 c->modulation = p->u.vsb.modulation;
1218 if (c->delivery_system == SYS_ATSCMH)
1220 if ((c->modulation == VSB_8) || (c->modulation == VSB_16))
1221 c->delivery_system = SYS_ATSC;
1223 c->delivery_system = SYS_DVBC_ANNEX_B;
1226 dev_err(fe->dvb->device,
1227 "%s: doesn't know how to handle a DVBv3 call to delivery system %i\n",
1228 __func__, c->delivery_system);
1235 /* Ensure the cached values are set correctly in the frontend
1236 * legacy tuning structures, for the advanced tuning API.
1239 dtv_property_legacy_params_sync(struct dvb_frontend *fe,
1240 const struct dtv_frontend_properties *c,
1241 struct dvb_frontend_parameters *p)
1243 p->frequency = c->frequency;
1244 p->inversion = c->inversion;
1246 switch (dvbv3_type(c->delivery_system)) {
1248 dev_err(fe->dvb->device,
1249 "%s: doesn't know how to handle a DVBv3 call to delivery system %i\n",
1250 __func__, c->delivery_system);
1253 dev_dbg(fe->dvb->device, "%s: Preparing QPSK req\n", __func__);
1254 p->u.qpsk.symbol_rate = c->symbol_rate;
1255 p->u.qpsk.fec_inner = c->fec_inner;
1258 dev_dbg(fe->dvb->device, "%s: Preparing QAM req\n", __func__);
1259 p->u.qam.symbol_rate = c->symbol_rate;
1260 p->u.qam.fec_inner = c->fec_inner;
1261 p->u.qam.modulation = c->modulation;
1264 dev_dbg(fe->dvb->device, "%s: Preparing OFDM req\n", __func__);
1265 switch (c->bandwidth_hz) {
1267 p->u.ofdm.bandwidth = BANDWIDTH_10_MHZ;
1270 p->u.ofdm.bandwidth = BANDWIDTH_8_MHZ;
1273 p->u.ofdm.bandwidth = BANDWIDTH_7_MHZ;
1276 p->u.ofdm.bandwidth = BANDWIDTH_6_MHZ;
1279 p->u.ofdm.bandwidth = BANDWIDTH_5_MHZ;
1282 p->u.ofdm.bandwidth = BANDWIDTH_1_712_MHZ;
1286 p->u.ofdm.bandwidth = BANDWIDTH_AUTO;
1288 p->u.ofdm.code_rate_HP = c->code_rate_HP;
1289 p->u.ofdm.code_rate_LP = c->code_rate_LP;
1290 p->u.ofdm.constellation = c->modulation;
1291 p->u.ofdm.transmission_mode = c->transmission_mode;
1292 p->u.ofdm.guard_interval = c->guard_interval;
1293 p->u.ofdm.hierarchy_information = c->hierarchy;
1296 dev_dbg(fe->dvb->device, "%s: Preparing VSB req\n", __func__);
1297 p->u.vsb.modulation = c->modulation;
1304 * dtv_get_frontend - calls a callback for retrieving DTV parameters
1305 * @fe: struct dvb_frontend pointer
1306 * @c: struct dtv_frontend_properties pointer (DVBv5 cache)
1307 * @p_out: struct dvb_frontend_parameters pointer (DVBv3 FE struct)
1309 * This routine calls either the DVBv3 or DVBv5 get_frontend call.
1310 * If c is not null, it will update the DVBv5 cache struct pointed by it.
1311 * If p_out is not null, it will update the DVBv3 params pointed by it.
1313 static int dtv_get_frontend(struct dvb_frontend *fe,
1314 struct dtv_frontend_properties *c,
1315 struct dvb_frontend_parameters *p_out)
1319 if (fe->ops.get_frontend) {
1320 r = fe->ops.get_frontend(fe, c);
1321 if (unlikely(r < 0))
1324 dtv_property_legacy_params_sync(fe, c, p_out);
1328 /* As everything is in cache, get_frontend fops are always supported */
1332 static int dvb_frontend_handle_ioctl(struct file *file,
1333 unsigned int cmd, void *parg);
1335 static int dtv_property_process_get(struct dvb_frontend *fe,
1336 const struct dtv_frontend_properties *c,
1337 struct dtv_property *tvp,
1343 case DTV_ENUM_DELSYS:
1345 while (ncaps < MAX_DELSYS && fe->ops.delsys[ncaps]) {
1346 tvp->u.buffer.data[ncaps] = fe->ops.delsys[ncaps];
1349 tvp->u.buffer.len = ncaps;
1352 tvp->u.data = c->frequency;
1354 case DTV_MODULATION:
1355 tvp->u.data = c->modulation;
1357 case DTV_BANDWIDTH_HZ:
1358 tvp->u.data = c->bandwidth_hz;
1361 tvp->u.data = c->inversion;
1363 case DTV_SYMBOL_RATE:
1364 tvp->u.data = c->symbol_rate;
1367 tvp->u.data = c->fec_inner;
1370 tvp->u.data = c->pilot;
1373 tvp->u.data = c->rolloff;
1375 case DTV_DELIVERY_SYSTEM:
1376 tvp->u.data = c->delivery_system;
1379 tvp->u.data = c->voltage;
1382 tvp->u.data = c->sectone;
1384 case DTV_API_VERSION:
1385 tvp->u.data = (DVB_API_VERSION << 8) | DVB_API_VERSION_MINOR;
1387 case DTV_CODE_RATE_HP:
1388 tvp->u.data = c->code_rate_HP;
1390 case DTV_CODE_RATE_LP:
1391 tvp->u.data = c->code_rate_LP;
1393 case DTV_GUARD_INTERVAL:
1394 tvp->u.data = c->guard_interval;
1396 case DTV_TRANSMISSION_MODE:
1397 tvp->u.data = c->transmission_mode;
1400 tvp->u.data = c->hierarchy;
1402 case DTV_INTERLEAVING:
1403 tvp->u.data = c->interleaving;
1406 /* ISDB-T Support here */
1407 case DTV_ISDBT_PARTIAL_RECEPTION:
1408 tvp->u.data = c->isdbt_partial_reception;
1410 case DTV_ISDBT_SOUND_BROADCASTING:
1411 tvp->u.data = c->isdbt_sb_mode;
1413 case DTV_ISDBT_SB_SUBCHANNEL_ID:
1414 tvp->u.data = c->isdbt_sb_subchannel;
1416 case DTV_ISDBT_SB_SEGMENT_IDX:
1417 tvp->u.data = c->isdbt_sb_segment_idx;
1419 case DTV_ISDBT_SB_SEGMENT_COUNT:
1420 tvp->u.data = c->isdbt_sb_segment_count;
1422 case DTV_ISDBT_LAYER_ENABLED:
1423 tvp->u.data = c->isdbt_layer_enabled;
1425 case DTV_ISDBT_LAYERA_FEC:
1426 tvp->u.data = c->layer[0].fec;
1428 case DTV_ISDBT_LAYERA_MODULATION:
1429 tvp->u.data = c->layer[0].modulation;
1431 case DTV_ISDBT_LAYERA_SEGMENT_COUNT:
1432 tvp->u.data = c->layer[0].segment_count;
1434 case DTV_ISDBT_LAYERA_TIME_INTERLEAVING:
1435 tvp->u.data = c->layer[0].interleaving;
1437 case DTV_ISDBT_LAYERB_FEC:
1438 tvp->u.data = c->layer[1].fec;
1440 case DTV_ISDBT_LAYERB_MODULATION:
1441 tvp->u.data = c->layer[1].modulation;
1443 case DTV_ISDBT_LAYERB_SEGMENT_COUNT:
1444 tvp->u.data = c->layer[1].segment_count;
1446 case DTV_ISDBT_LAYERB_TIME_INTERLEAVING:
1447 tvp->u.data = c->layer[1].interleaving;
1449 case DTV_ISDBT_LAYERC_FEC:
1450 tvp->u.data = c->layer[2].fec;
1452 case DTV_ISDBT_LAYERC_MODULATION:
1453 tvp->u.data = c->layer[2].modulation;
1455 case DTV_ISDBT_LAYERC_SEGMENT_COUNT:
1456 tvp->u.data = c->layer[2].segment_count;
1458 case DTV_ISDBT_LAYERC_TIME_INTERLEAVING:
1459 tvp->u.data = c->layer[2].interleaving;
1462 /* Multistream support */
1464 case DTV_DVBT2_PLP_ID_LEGACY:
1465 tvp->u.data = c->stream_id;
1468 /* Physical layer scrambling support */
1469 case DTV_SCRAMBLING_SEQUENCE_INDEX:
1470 tvp->u.data = c->scrambling_sequence_index;
1474 case DTV_ATSCMH_FIC_VER:
1475 tvp->u.data = fe->dtv_property_cache.atscmh_fic_ver;
1477 case DTV_ATSCMH_PARADE_ID:
1478 tvp->u.data = fe->dtv_property_cache.atscmh_parade_id;
1480 case DTV_ATSCMH_NOG:
1481 tvp->u.data = fe->dtv_property_cache.atscmh_nog;
1483 case DTV_ATSCMH_TNOG:
1484 tvp->u.data = fe->dtv_property_cache.atscmh_tnog;
1486 case DTV_ATSCMH_SGN:
1487 tvp->u.data = fe->dtv_property_cache.atscmh_sgn;
1489 case DTV_ATSCMH_PRC:
1490 tvp->u.data = fe->dtv_property_cache.atscmh_prc;
1492 case DTV_ATSCMH_RS_FRAME_MODE:
1493 tvp->u.data = fe->dtv_property_cache.atscmh_rs_frame_mode;
1495 case DTV_ATSCMH_RS_FRAME_ENSEMBLE:
1496 tvp->u.data = fe->dtv_property_cache.atscmh_rs_frame_ensemble;
1498 case DTV_ATSCMH_RS_CODE_MODE_PRI:
1499 tvp->u.data = fe->dtv_property_cache.atscmh_rs_code_mode_pri;
1501 case DTV_ATSCMH_RS_CODE_MODE_SEC:
1502 tvp->u.data = fe->dtv_property_cache.atscmh_rs_code_mode_sec;
1504 case DTV_ATSCMH_SCCC_BLOCK_MODE:
1505 tvp->u.data = fe->dtv_property_cache.atscmh_sccc_block_mode;
1507 case DTV_ATSCMH_SCCC_CODE_MODE_A:
1508 tvp->u.data = fe->dtv_property_cache.atscmh_sccc_code_mode_a;
1510 case DTV_ATSCMH_SCCC_CODE_MODE_B:
1511 tvp->u.data = fe->dtv_property_cache.atscmh_sccc_code_mode_b;
1513 case DTV_ATSCMH_SCCC_CODE_MODE_C:
1514 tvp->u.data = fe->dtv_property_cache.atscmh_sccc_code_mode_c;
1516 case DTV_ATSCMH_SCCC_CODE_MODE_D:
1517 tvp->u.data = fe->dtv_property_cache.atscmh_sccc_code_mode_d;
1521 tvp->u.data = c->lna;
1524 /* Fill quality measures */
1525 case DTV_STAT_SIGNAL_STRENGTH:
1526 tvp->u.st = c->strength;
1531 case DTV_STAT_PRE_ERROR_BIT_COUNT:
1532 tvp->u.st = c->pre_bit_error;
1534 case DTV_STAT_PRE_TOTAL_BIT_COUNT:
1535 tvp->u.st = c->pre_bit_count;
1537 case DTV_STAT_POST_ERROR_BIT_COUNT:
1538 tvp->u.st = c->post_bit_error;
1540 case DTV_STAT_POST_TOTAL_BIT_COUNT:
1541 tvp->u.st = c->post_bit_count;
1543 case DTV_STAT_ERROR_BLOCK_COUNT:
1544 tvp->u.st = c->block_error;
1546 case DTV_STAT_TOTAL_BLOCK_COUNT:
1547 tvp->u.st = c->block_count;
1550 dev_dbg(fe->dvb->device,
1551 "%s: FE property %d doesn't exist\n",
1552 __func__, tvp->cmd);
1556 if (!dtv_cmds[tvp->cmd].buffer)
1557 dev_dbg(fe->dvb->device,
1558 "%s: GET cmd 0x%08x (%s) = 0x%08x\n",
1559 __func__, tvp->cmd, dtv_cmds[tvp->cmd].name,
1562 dev_dbg(fe->dvb->device,
1563 "%s: GET cmd 0x%08x (%s) len %d: %*ph\n",
1565 tvp->cmd, dtv_cmds[tvp->cmd].name,
1567 tvp->u.buffer.len, tvp->u.buffer.data);
1572 static int dtv_set_frontend(struct dvb_frontend *fe);
1574 static bool is_dvbv3_delsys(u32 delsys)
1576 return (delsys == SYS_DVBT) || (delsys == SYS_DVBC_ANNEX_A) ||
1577 (delsys == SYS_DVBS) || (delsys == SYS_ATSC);
1581 * emulate_delivery_system - emulate a DVBv5 delivery system with a DVBv3 type
1582 * @fe: struct frontend;
1583 * @delsys: DVBv5 type that will be used for emulation
1585 * Provides emulation for delivery systems that are compatible with the old
1586 * DVBv3 call. Among its usages, it provices support for ISDB-T, and allows
1587 * using a DVB-S2 only frontend just like it were a DVB-S, if the frontend
1588 * parameters are compatible with DVB-S spec.
1590 static int emulate_delivery_system(struct dvb_frontend *fe, u32 delsys)
1593 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
1595 c->delivery_system = delsys;
1598 * If the call is for ISDB-T, put it into full-seg, auto mode, TV
1600 if (c->delivery_system == SYS_ISDBT) {
1601 dev_dbg(fe->dvb->device,
1602 "%s: Using defaults for SYS_ISDBT\n",
1605 if (!c->bandwidth_hz)
1606 c->bandwidth_hz = 6000000;
1608 c->isdbt_partial_reception = 0;
1609 c->isdbt_sb_mode = 0;
1610 c->isdbt_sb_subchannel = 0;
1611 c->isdbt_sb_segment_idx = 0;
1612 c->isdbt_sb_segment_count = 0;
1613 c->isdbt_layer_enabled = 7;
1614 for (i = 0; i < 3; i++) {
1615 c->layer[i].fec = FEC_AUTO;
1616 c->layer[i].modulation = QAM_AUTO;
1617 c->layer[i].interleaving = 0;
1618 c->layer[i].segment_count = 0;
1621 dev_dbg(fe->dvb->device, "%s: change delivery system on cache to %d\n",
1622 __func__, c->delivery_system);
1628 * dvbv5_set_delivery_system - Sets the delivery system for a DVBv5 API call
1629 * @fe: frontend struct
1630 * @desired_system: delivery system requested by the user
1632 * A DVBv5 call know what's the desired system it wants. So, set it.
1634 * There are, however, a few known issues with early DVBv5 applications that
1635 * are also handled by this logic:
1637 * 1) Some early apps use SYS_UNDEFINED as the desired delivery system.
1638 * This is an API violation, but, as we don't want to break userspace,
1639 * convert it to the first supported delivery system.
1640 * 2) Some apps might be using a DVBv5 call in a wrong way, passing, for
1641 * example, SYS_DVBT instead of SYS_ISDBT. This is because early usage of
1642 * ISDB-T provided backward compat with DVB-T.
1644 static int dvbv5_set_delivery_system(struct dvb_frontend *fe,
1648 u32 delsys = SYS_UNDEFINED;
1649 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
1650 enum dvbv3_emulation_type type;
1653 * It was reported that some old DVBv5 applications were
1654 * filling delivery_system with SYS_UNDEFINED. If this happens,
1655 * assume that the application wants to use the first supported
1658 if (desired_system == SYS_UNDEFINED)
1659 desired_system = fe->ops.delsys[0];
1662 * This is a DVBv5 call. So, it likely knows the supported
1663 * delivery systems. So, check if the desired delivery system is
1667 while (ncaps < MAX_DELSYS && fe->ops.delsys[ncaps]) {
1668 if (fe->ops.delsys[ncaps] == desired_system) {
1669 c->delivery_system = desired_system;
1670 dev_dbg(fe->dvb->device,
1671 "%s: Changing delivery system to %d\n",
1672 __func__, desired_system);
1679 * The requested delivery system isn't supported. Maybe userspace
1680 * is requesting a DVBv3 compatible delivery system.
1682 * The emulation only works if the desired system is one of the
1683 * delivery systems supported by DVBv3 API
1685 if (!is_dvbv3_delsys(desired_system)) {
1686 dev_dbg(fe->dvb->device,
1687 "%s: Delivery system %d not supported.\n",
1688 __func__, desired_system);
1692 type = dvbv3_type(desired_system);
1695 * Get the last non-DVBv3 delivery system that has the same type
1696 * of the desired system
1699 while (ncaps < MAX_DELSYS && fe->ops.delsys[ncaps]) {
1700 if (dvbv3_type(fe->ops.delsys[ncaps]) == type)
1701 delsys = fe->ops.delsys[ncaps];
1705 /* There's nothing compatible with the desired delivery system */
1706 if (delsys == SYS_UNDEFINED) {
1707 dev_dbg(fe->dvb->device,
1708 "%s: Delivery system %d not supported on emulation mode.\n",
1709 __func__, desired_system);
1713 dev_dbg(fe->dvb->device,
1714 "%s: Using delivery system %d emulated as if it were %d\n",
1715 __func__, delsys, desired_system);
1717 return emulate_delivery_system(fe, desired_system);
1721 * dvbv3_set_delivery_system - Sets the delivery system for a DVBv3 API call
1722 * @fe: frontend struct
1724 * A DVBv3 call doesn't know what's the desired system it wants. It also
1725 * doesn't allow to switch between different types. Due to that, userspace
1726 * should use DVBv5 instead.
1727 * However, in order to avoid breaking userspace API, limited backward
1728 * compatibility support is provided.
1730 * There are some delivery systems that are incompatible with DVBv3 calls.
1732 * This routine should work fine for frontends that support just one delivery
1735 * For frontends that support multiple frontends:
1736 * 1) It defaults to use the first supported delivery system. There's an
1737 * userspace application that allows changing it at runtime;
1739 * 2) If the current delivery system is not compatible with DVBv3, it gets
1740 * the first one that it is compatible.
1742 * NOTE: in order for this to work with applications like Kaffeine that
1743 * uses a DVBv5 call for DVB-S2 and a DVBv3 call to go back to
1744 * DVB-S, drivers that support both DVB-S and DVB-S2 should have the
1745 * SYS_DVBS entry before the SYS_DVBS2, otherwise it won't switch back
1748 static int dvbv3_set_delivery_system(struct dvb_frontend *fe)
1751 u32 delsys = SYS_UNDEFINED;
1752 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
1754 /* If not set yet, defaults to the first supported delivery system */
1755 if (c->delivery_system == SYS_UNDEFINED)
1756 c->delivery_system = fe->ops.delsys[0];
1759 * Trivial case: just use the current one, if it already a DVBv3
1762 if (is_dvbv3_delsys(c->delivery_system)) {
1763 dev_dbg(fe->dvb->device,
1764 "%s: Using delivery system to %d\n",
1765 __func__, c->delivery_system);
1770 * Seek for the first delivery system that it is compatible with a
1774 while (ncaps < MAX_DELSYS && fe->ops.delsys[ncaps]) {
1775 if (dvbv3_type(fe->ops.delsys[ncaps]) != DVBV3_UNKNOWN) {
1776 delsys = fe->ops.delsys[ncaps];
1781 if (delsys == SYS_UNDEFINED) {
1782 dev_dbg(fe->dvb->device,
1783 "%s: Couldn't find a delivery system that works with FE_SET_FRONTEND\n",
1787 return emulate_delivery_system(fe, delsys);
1791 * dtv_property_process_set - Sets a single DTV property
1792 * @fe: Pointer to &struct dvb_frontend
1793 * @file: Pointer to &struct file
1794 * @cmd: Digital TV command
1795 * @data: An unsigned 32-bits number
1797 * This routine assigns the property
1798 * value to the corresponding member of
1799 * &struct dtv_frontend_properties
1802 * Zero on success, negative errno on failure.
1804 static int dtv_property_process_set(struct dvb_frontend *fe,
1809 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
1811 /** Dump DTV command name and value*/
1812 if (!cmd || cmd > DTV_MAX_COMMAND)
1813 dev_warn(fe->dvb->device, "%s: SET cmd 0x%08x undefined\n",
1816 dev_dbg(fe->dvb->device,
1817 "%s: SET cmd 0x%08x (%s) to 0x%08x\n",
1818 __func__, cmd, dtv_cmds[cmd].name, data);
1822 * Reset a cache of data specific to the frontend here. This does
1823 * not effect hardware.
1825 dvb_frontend_clear_cache(fe);
1829 * Use the cached Digital TV properties to tune the
1832 dev_dbg(fe->dvb->device,
1833 "%s: Setting the frontend from property cache\n",
1836 r = dtv_set_frontend(fe);
1839 c->frequency = data;
1841 case DTV_MODULATION:
1842 c->modulation = data;
1844 case DTV_BANDWIDTH_HZ:
1845 c->bandwidth_hz = data;
1848 c->inversion = data;
1850 case DTV_SYMBOL_RATE:
1851 c->symbol_rate = data;
1854 c->fec_inner = data;
1862 case DTV_DELIVERY_SYSTEM:
1863 r = dvbv5_set_delivery_system(fe, data);
1867 r = dvb_frontend_handle_ioctl(file, FE_SET_VOLTAGE,
1868 (void *)c->voltage);
1872 r = dvb_frontend_handle_ioctl(file, FE_SET_TONE,
1873 (void *)c->sectone);
1875 case DTV_CODE_RATE_HP:
1876 c->code_rate_HP = data;
1878 case DTV_CODE_RATE_LP:
1879 c->code_rate_LP = data;
1881 case DTV_GUARD_INTERVAL:
1882 c->guard_interval = data;
1884 case DTV_TRANSMISSION_MODE:
1885 c->transmission_mode = data;
1888 c->hierarchy = data;
1890 case DTV_INTERLEAVING:
1891 c->interleaving = data;
1894 /* ISDB-T Support here */
1895 case DTV_ISDBT_PARTIAL_RECEPTION:
1896 c->isdbt_partial_reception = data;
1898 case DTV_ISDBT_SOUND_BROADCASTING:
1899 c->isdbt_sb_mode = data;
1901 case DTV_ISDBT_SB_SUBCHANNEL_ID:
1902 c->isdbt_sb_subchannel = data;
1904 case DTV_ISDBT_SB_SEGMENT_IDX:
1905 c->isdbt_sb_segment_idx = data;
1907 case DTV_ISDBT_SB_SEGMENT_COUNT:
1908 c->isdbt_sb_segment_count = data;
1910 case DTV_ISDBT_LAYER_ENABLED:
1911 c->isdbt_layer_enabled = data;
1913 case DTV_ISDBT_LAYERA_FEC:
1914 c->layer[0].fec = data;
1916 case DTV_ISDBT_LAYERA_MODULATION:
1917 c->layer[0].modulation = data;
1919 case DTV_ISDBT_LAYERA_SEGMENT_COUNT:
1920 c->layer[0].segment_count = data;
1922 case DTV_ISDBT_LAYERA_TIME_INTERLEAVING:
1923 c->layer[0].interleaving = data;
1925 case DTV_ISDBT_LAYERB_FEC:
1926 c->layer[1].fec = data;
1928 case DTV_ISDBT_LAYERB_MODULATION:
1929 c->layer[1].modulation = data;
1931 case DTV_ISDBT_LAYERB_SEGMENT_COUNT:
1932 c->layer[1].segment_count = data;
1934 case DTV_ISDBT_LAYERB_TIME_INTERLEAVING:
1935 c->layer[1].interleaving = data;
1937 case DTV_ISDBT_LAYERC_FEC:
1938 c->layer[2].fec = data;
1940 case DTV_ISDBT_LAYERC_MODULATION:
1941 c->layer[2].modulation = data;
1943 case DTV_ISDBT_LAYERC_SEGMENT_COUNT:
1944 c->layer[2].segment_count = data;
1946 case DTV_ISDBT_LAYERC_TIME_INTERLEAVING:
1947 c->layer[2].interleaving = data;
1950 /* Multistream support */
1952 case DTV_DVBT2_PLP_ID_LEGACY:
1953 c->stream_id = data;
1956 /* Physical layer scrambling support */
1957 case DTV_SCRAMBLING_SEQUENCE_INDEX:
1958 c->scrambling_sequence_index = data;
1962 case DTV_ATSCMH_PARADE_ID:
1963 fe->dtv_property_cache.atscmh_parade_id = data;
1965 case DTV_ATSCMH_RS_FRAME_ENSEMBLE:
1966 fe->dtv_property_cache.atscmh_rs_frame_ensemble = data;
1971 if (fe->ops.set_lna)
1972 r = fe->ops.set_lna(fe);
1984 static int dvb_frontend_do_ioctl(struct file *file, unsigned int cmd,
1987 struct dvb_device *dvbdev = file->private_data;
1988 struct dvb_frontend *fe = dvbdev->priv;
1989 struct dvb_frontend_private *fepriv = fe->frontend_priv;
1992 dev_dbg(fe->dvb->device, "%s: (%d)\n", __func__, _IOC_NR(cmd));
1993 if (down_interruptible(&fepriv->sem))
1994 return -ERESTARTSYS;
1996 if (fe->exit != DVB_FE_NO_EXIT) {
2002 * If the frontend is opened in read-only mode, only the ioctls
2003 * that don't interfere with the tune logic should be accepted.
2004 * That allows an external application to monitor the DVB QoS and
2005 * statistics parameters.
2007 * That matches all _IOR() ioctls, except for two special cases:
2008 * - FE_GET_EVENT is part of the tuning logic on a DVB application;
2009 * - FE_DISEQC_RECV_SLAVE_REPLY is part of DiSEqC 2.0
2011 * So, those two ioctls should also return -EPERM, as otherwise
2012 * reading from them would interfere with a DVB tune application
2014 if ((file->f_flags & O_ACCMODE) == O_RDONLY
2015 && (_IOC_DIR(cmd) != _IOC_READ
2016 || cmd == FE_GET_EVENT
2017 || cmd == FE_DISEQC_RECV_SLAVE_REPLY)) {
2022 err = dvb_frontend_handle_ioctl(file, cmd, parg);
2028 static long dvb_frontend_ioctl(struct file *file, unsigned int cmd,
2031 struct dvb_device *dvbdev = file->private_data;
2036 return dvb_usercopy(file, cmd, arg, dvb_frontend_do_ioctl);
2039 #ifdef CONFIG_COMPAT
2040 struct compat_dtv_property {
2045 struct dtv_fe_stats st;
2050 compat_uptr_t reserved2;
2054 } __attribute__ ((packed));
2056 struct compat_dtv_properties {
2058 compat_uptr_t props;
2061 #define COMPAT_FE_SET_PROPERTY _IOW('o', 82, struct compat_dtv_properties)
2062 #define COMPAT_FE_GET_PROPERTY _IOR('o', 83, struct compat_dtv_properties)
2064 static int dvb_frontend_handle_compat_ioctl(struct file *file, unsigned int cmd,
2067 struct dvb_device *dvbdev = file->private_data;
2068 struct dvb_frontend *fe = dvbdev->priv;
2069 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2072 if (cmd == COMPAT_FE_SET_PROPERTY) {
2073 struct compat_dtv_properties prop, *tvps = NULL;
2074 struct compat_dtv_property *tvp = NULL;
2076 if (copy_from_user(&prop, compat_ptr(arg), sizeof(prop)))
2082 * Put an arbitrary limit on the number of messages that can
2085 if (!tvps->num || (tvps->num > DTV_IOCTL_MAX_MSGS))
2088 tvp = memdup_user(compat_ptr(tvps->props), tvps->num * sizeof(*tvp));
2090 return PTR_ERR(tvp);
2092 for (i = 0; i < tvps->num; i++) {
2093 err = dtv_property_process_set(fe, file,
2102 } else if (cmd == COMPAT_FE_GET_PROPERTY) {
2103 struct compat_dtv_properties prop, *tvps = NULL;
2104 struct compat_dtv_property *tvp = NULL;
2105 struct dtv_frontend_properties getp = fe->dtv_property_cache;
2107 if (copy_from_user(&prop, compat_ptr(arg), sizeof(prop)))
2113 * Put an arbitrary limit on the number of messages that can
2116 if (!tvps->num || (tvps->num > DTV_IOCTL_MAX_MSGS))
2119 tvp = memdup_user(compat_ptr(tvps->props), tvps->num * sizeof(*tvp));
2121 return PTR_ERR(tvp);
2124 * Let's use our own copy of property cache, in order to
2125 * avoid mangling with DTV zigzag logic, as drivers might
2126 * return crap, if they don't check if the data is available
2127 * before updating the properties cache.
2129 if (fepriv->state != FESTATE_IDLE) {
2130 err = dtv_get_frontend(fe, &getp, NULL);
2136 for (i = 0; i < tvps->num; i++) {
2137 err = dtv_property_process_get(
2138 fe, &getp, (struct dtv_property *)(tvp + i), file);
2145 if (copy_to_user((void __user *)compat_ptr(tvps->props), tvp,
2146 tvps->num * sizeof(struct compat_dtv_property))) {
2156 static long dvb_frontend_compat_ioctl(struct file *file, unsigned int cmd,
2159 struct dvb_device *dvbdev = file->private_data;
2160 struct dvb_frontend *fe = dvbdev->priv;
2161 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2164 if (cmd == COMPAT_FE_SET_PROPERTY || cmd == COMPAT_FE_GET_PROPERTY) {
2165 if (down_interruptible(&fepriv->sem))
2166 return -ERESTARTSYS;
2168 err = dvb_frontend_handle_compat_ioctl(file, cmd, arg);
2174 return dvb_frontend_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
2178 static int dtv_set_frontend(struct dvb_frontend *fe)
2180 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2181 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
2182 struct dvb_frontend_tune_settings fetunesettings;
2185 if (dvb_frontend_check_parameters(fe) < 0)
2189 * Initialize output parameters to match the values given by
2190 * the user. FE_SET_FRONTEND triggers an initial frontend event
2191 * with status = 0, which copies output parameters to userspace.
2193 dtv_property_legacy_params_sync(fe, c, &fepriv->parameters_out);
2196 * Be sure that the bandwidth will be filled for all
2197 * non-satellite systems, as tuners need to know what
2198 * low pass/Nyquist half filter should be applied, in
2199 * order to avoid inter-channel noise.
2201 * ISDB-T and DVB-T/T2 already sets bandwidth.
2202 * ATSC and DVB-C don't set, so, the core should fill it.
2204 * On DVB-C Annex A and C, the bandwidth is a function of
2205 * the roll-off and symbol rate. Annex B defines different
2206 * roll-off factors depending on the modulation. Fortunately,
2207 * Annex B is only used with 6MHz, so there's no need to
2210 * While not officially supported, a side effect of handling it at
2211 * the cache level is that a program could retrieve the bandwidth
2212 * via DTV_BANDWIDTH_HZ, which may be useful for test programs.
2214 switch (c->delivery_system) {
2216 case SYS_DVBC_ANNEX_B:
2217 c->bandwidth_hz = 6000000;
2219 case SYS_DVBC_ANNEX_A:
2222 case SYS_DVBC_ANNEX_C:
2231 switch (c->rolloff) {
2247 c->bandwidth_hz = mult_frac(c->symbol_rate, rolloff, 100);
2249 /* force auto frequency inversion if requested */
2250 if (dvb_force_auto_inversion)
2251 c->inversion = INVERSION_AUTO;
2254 * without hierarchical coding code_rate_LP is irrelevant,
2255 * so we tolerate the otherwise invalid FEC_NONE setting
2257 if (c->hierarchy == HIERARCHY_NONE && c->code_rate_LP == FEC_NONE)
2258 c->code_rate_LP = FEC_AUTO;
2260 /* get frontend-specific tuning settings */
2261 memset(&fetunesettings, 0, sizeof(struct dvb_frontend_tune_settings));
2262 if (fe->ops.get_tune_settings && (fe->ops.get_tune_settings(fe, &fetunesettings) == 0)) {
2263 fepriv->min_delay = (fetunesettings.min_delay_ms * HZ) / 1000;
2264 fepriv->max_drift = fetunesettings.max_drift;
2265 fepriv->step_size = fetunesettings.step_size;
2267 /* default values */
2268 switch (c->delivery_system) {
2273 case SYS_DVBC_ANNEX_A:
2274 case SYS_DVBC_ANNEX_C:
2275 fepriv->min_delay = HZ / 20;
2276 fepriv->step_size = c->symbol_rate / 16000;
2277 fepriv->max_drift = c->symbol_rate / 2000;
2283 fepriv->min_delay = HZ / 20;
2284 fepriv->step_size = dvb_frontend_get_stepsize(fe) * 2;
2285 fepriv->max_drift = (dvb_frontend_get_stepsize(fe) * 2) + 1;
2289 * FIXME: This sounds wrong! if freqency_stepsize is
2290 * defined by the frontend, why not use it???
2292 fepriv->min_delay = HZ / 20;
2293 fepriv->step_size = 0; /* no zigzag */
2294 fepriv->max_drift = 0;
2298 if (dvb_override_tune_delay > 0)
2299 fepriv->min_delay = (dvb_override_tune_delay * HZ) / 1000;
2301 fepriv->state = FESTATE_RETUNE;
2303 /* Request the search algorithm to search */
2304 fepriv->algo_status |= DVBFE_ALGO_SEARCH_AGAIN;
2306 dvb_frontend_clear_events(fe);
2307 dvb_frontend_add_event(fe, 0);
2308 dvb_frontend_wakeup(fe);
2314 static int dvb_get_property(struct dvb_frontend *fe, struct file *file,
2315 struct dtv_properties *tvps)
2317 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2318 struct dtv_property *tvp = NULL;
2319 struct dtv_frontend_properties getp;
2322 memcpy(&getp, &fe->dtv_property_cache, sizeof(getp));
2324 dev_dbg(fe->dvb->device, "%s: properties.num = %d\n",
2325 __func__, tvps->num);
2326 dev_dbg(fe->dvb->device, "%s: properties.props = %p\n",
2327 __func__, tvps->props);
2330 * Put an arbitrary limit on the number of messages that can
2333 if (!tvps->num || tvps->num > DTV_IOCTL_MAX_MSGS)
2336 tvp = memdup_user((void __user *)tvps->props, tvps->num * sizeof(*tvp));
2338 return PTR_ERR(tvp);
2341 * Let's use our own copy of property cache, in order to
2342 * avoid mangling with DTV zigzag logic, as drivers might
2343 * return crap, if they don't check if the data is available
2344 * before updating the properties cache.
2346 if (fepriv->state != FESTATE_IDLE) {
2347 err = dtv_get_frontend(fe, &getp, NULL);
2351 for (i = 0; i < tvps->num; i++) {
2352 err = dtv_property_process_get(fe, &getp,
2358 if (copy_to_user((void __user *)tvps->props, tvp,
2359 tvps->num * sizeof(struct dtv_property))) {
2370 static int dvb_get_frontend(struct dvb_frontend *fe,
2371 struct dvb_frontend_parameters *p_out)
2373 struct dtv_frontend_properties getp;
2376 * Let's use our own copy of property cache, in order to
2377 * avoid mangling with DTV zigzag logic, as drivers might
2378 * return crap, if they don't check if the data is available
2379 * before updating the properties cache.
2381 memcpy(&getp, &fe->dtv_property_cache, sizeof(getp));
2383 return dtv_get_frontend(fe, &getp, p_out);
2386 static int dvb_frontend_handle_ioctl(struct file *file,
2387 unsigned int cmd, void *parg)
2389 struct dvb_device *dvbdev = file->private_data;
2390 struct dvb_frontend *fe = dvbdev->priv;
2391 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2392 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
2393 int i, err = -ENOTSUPP;
2395 dev_dbg(fe->dvb->device, "%s:\n", __func__);
2398 case FE_SET_PROPERTY: {
2399 struct dtv_properties *tvps = parg;
2400 struct dtv_property *tvp = NULL;
2402 dev_dbg(fe->dvb->device, "%s: properties.num = %d\n",
2403 __func__, tvps->num);
2404 dev_dbg(fe->dvb->device, "%s: properties.props = %p\n",
2405 __func__, tvps->props);
2408 * Put an arbitrary limit on the number of messages that can
2411 if (!tvps->num || (tvps->num > DTV_IOCTL_MAX_MSGS))
2414 tvp = memdup_user((void __user *)tvps->props, tvps->num * sizeof(*tvp));
2416 return PTR_ERR(tvp);
2418 for (i = 0; i < tvps->num; i++) {
2419 err = dtv_property_process_set(fe, file,
2431 case FE_GET_PROPERTY:
2432 err = dvb_get_property(fe, file, parg);
2436 struct dvb_frontend_info *info = parg;
2437 memset(info, 0, sizeof(*info));
2439 strscpy(info->name, fe->ops.info.name, sizeof(info->name));
2440 info->symbol_rate_min = fe->ops.info.symbol_rate_min;
2441 info->symbol_rate_max = fe->ops.info.symbol_rate_max;
2442 info->symbol_rate_tolerance = fe->ops.info.symbol_rate_tolerance;
2443 info->caps = fe->ops.info.caps;
2444 info->frequency_stepsize = dvb_frontend_get_stepsize(fe);
2445 dvb_frontend_get_frequency_limits(fe, &info->frequency_min,
2446 &info->frequency_max,
2447 &info->frequency_tolerance);
2450 * Associate the 4 delivery systems supported by DVBv3
2451 * API with their DVBv5 counterpart. For the other standards,
2452 * use the closest type, assuming that it would hopefully
2453 * work with a DVBv3 application.
2454 * It should be noticed that, on multi-frontend devices with
2455 * different types (terrestrial and cable, for example),
2456 * a pure DVBv3 application won't be able to use all delivery
2457 * systems. Yet, changing the DVBv5 cache to the other delivery
2458 * system should be enough for making it work.
2460 switch (dvbv3_type(c->delivery_system)) {
2462 info->type = FE_QPSK;
2465 info->type = FE_ATSC;
2468 info->type = FE_QAM;
2471 info->type = FE_OFDM;
2474 dev_err(fe->dvb->device,
2475 "%s: doesn't know how to handle a DVBv3 call to delivery system %i\n",
2476 __func__, c->delivery_system);
2477 info->type = FE_OFDM;
2479 dev_dbg(fe->dvb->device, "%s: current delivery system on cache: %d, V3 type: %d\n",
2480 __func__, c->delivery_system, info->type);
2482 /* Set CAN_INVERSION_AUTO bit on in other than oneshot mode */
2483 if (!(fepriv->tune_mode_flags & FE_TUNE_MODE_ONESHOT))
2484 info->caps |= FE_CAN_INVERSION_AUTO;
2489 case FE_READ_STATUS: {
2490 enum fe_status *status = parg;
2492 /* if retune was requested but hasn't occurred yet, prevent
2493 * that user get signal state from previous tuning */
2494 if (fepriv->state == FESTATE_RETUNE ||
2495 fepriv->state == FESTATE_ERROR) {
2501 if (fe->ops.read_status)
2502 err = fe->ops.read_status(fe, status);
2506 case FE_DISEQC_RESET_OVERLOAD:
2507 if (fe->ops.diseqc_reset_overload) {
2508 err = fe->ops.diseqc_reset_overload(fe);
2509 fepriv->state = FESTATE_DISEQC;
2514 case FE_DISEQC_SEND_MASTER_CMD:
2515 if (fe->ops.diseqc_send_master_cmd) {
2516 struct dvb_diseqc_master_cmd *cmd = parg;
2518 if (cmd->msg_len > sizeof(cmd->msg)) {
2522 err = fe->ops.diseqc_send_master_cmd(fe, cmd);
2523 fepriv->state = FESTATE_DISEQC;
2528 case FE_DISEQC_SEND_BURST:
2529 if (fe->ops.diseqc_send_burst) {
2530 err = fe->ops.diseqc_send_burst(fe,
2531 (enum fe_sec_mini_cmd)parg);
2532 fepriv->state = FESTATE_DISEQC;
2538 if (fe->ops.set_tone) {
2539 err = fe->ops.set_tone(fe,
2540 (enum fe_sec_tone_mode)parg);
2541 fepriv->tone = (enum fe_sec_tone_mode)parg;
2542 fepriv->state = FESTATE_DISEQC;
2547 case FE_SET_VOLTAGE:
2548 if (fe->ops.set_voltage) {
2549 err = fe->ops.set_voltage(fe,
2550 (enum fe_sec_voltage)parg);
2551 fepriv->voltage = (enum fe_sec_voltage)parg;
2552 fepriv->state = FESTATE_DISEQC;
2557 case FE_DISEQC_RECV_SLAVE_REPLY:
2558 if (fe->ops.diseqc_recv_slave_reply)
2559 err = fe->ops.diseqc_recv_slave_reply(fe, parg);
2562 case FE_ENABLE_HIGH_LNB_VOLTAGE:
2563 if (fe->ops.enable_high_lnb_voltage)
2564 err = fe->ops.enable_high_lnb_voltage(fe, (long)parg);
2567 case FE_SET_FRONTEND_TUNE_MODE:
2568 fepriv->tune_mode_flags = (unsigned long)parg;
2571 /* DEPRECATED dish control ioctls */
2573 case FE_DISHNETWORK_SEND_LEGACY_CMD:
2574 if (fe->ops.dishnetwork_send_legacy_command) {
2575 err = fe->ops.dishnetwork_send_legacy_command(fe,
2576 (unsigned long)parg);
2577 fepriv->state = FESTATE_DISEQC;
2579 } else if (fe->ops.set_voltage) {
2581 * NOTE: This is a fallback condition. Some frontends
2582 * (stv0299 for instance) take longer than 8msec to
2583 * respond to a set_voltage command. Those switches
2584 * need custom routines to switch properly. For all
2585 * other frontends, the following should work ok.
2586 * Dish network legacy switches (as used by Dish500)
2587 * are controlled by sending 9-bit command words
2588 * spaced 8msec apart.
2589 * the actual command word is switch/port dependent
2590 * so it is up to the userspace application to send
2591 * the right command.
2592 * The command must always start with a '0' after
2593 * initialization, so parg is 8 bits and does not
2594 * include the initialization or start bit
2596 unsigned long swcmd = ((unsigned long)parg) << 1;
2602 if (dvb_frontend_debug)
2603 dprintk("switch command: 0x%04lx\n",
2605 nexttime = ktime_get_boottime();
2606 if (dvb_frontend_debug)
2608 /* before sending a command, initialize by sending
2609 * a 32ms 18V to the switch
2611 fe->ops.set_voltage(fe, SEC_VOLTAGE_18);
2612 dvb_frontend_sleep_until(&nexttime, 32000);
2614 for (i = 0; i < 9; i++) {
2615 if (dvb_frontend_debug)
2616 tv[i + 1] = ktime_get_boottime();
2617 if ((swcmd & 0x01) != last) {
2618 /* set voltage to (last ? 13V : 18V) */
2619 fe->ops.set_voltage(fe, (last) ? SEC_VOLTAGE_13 : SEC_VOLTAGE_18);
2620 last = (last) ? 0 : 1;
2624 dvb_frontend_sleep_until(&nexttime, 8000);
2626 if (dvb_frontend_debug) {
2627 dprintk("(adapter %d): switch delay (should be 32k followed by all 8k)\n",
2629 for (i = 1; i < 10; i++)
2630 pr_info("%d: %d\n", i,
2631 (int)ktime_us_delta(tv[i], tv[i - 1]));
2634 fepriv->state = FESTATE_DISEQC;
2639 /* DEPRECATED statistics ioctls */
2642 if (fe->ops.read_ber) {
2644 err = fe->ops.read_ber(fe, parg);
2650 case FE_READ_SIGNAL_STRENGTH:
2651 if (fe->ops.read_signal_strength) {
2653 err = fe->ops.read_signal_strength(fe, parg);
2660 if (fe->ops.read_snr) {
2662 err = fe->ops.read_snr(fe, parg);
2668 case FE_READ_UNCORRECTED_BLOCKS:
2669 if (fe->ops.read_ucblocks) {
2671 err = fe->ops.read_ucblocks(fe, parg);
2677 /* DEPRECATED DVBv3 ioctls */
2679 case FE_SET_FRONTEND:
2680 err = dvbv3_set_delivery_system(fe);
2684 err = dtv_property_cache_sync(fe, c, parg);
2687 err = dtv_set_frontend(fe);
2691 err = dvb_frontend_get_event(fe, parg, file->f_flags);
2694 case FE_GET_FRONTEND:
2695 err = dvb_get_frontend(fe, parg);
2705 static __poll_t dvb_frontend_poll(struct file *file, struct poll_table_struct *wait)
2707 struct dvb_device *dvbdev = file->private_data;
2708 struct dvb_frontend *fe = dvbdev->priv;
2709 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2711 dev_dbg_ratelimited(fe->dvb->device, "%s:\n", __func__);
2713 poll_wait(file, &fepriv->events.wait_queue, wait);
2715 if (fepriv->events.eventw != fepriv->events.eventr)
2716 return (EPOLLIN | EPOLLRDNORM | EPOLLPRI);
2721 static int dvb_frontend_open(struct inode *inode, struct file *file)
2723 struct dvb_device *dvbdev = file->private_data;
2724 struct dvb_frontend *fe = dvbdev->priv;
2725 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2726 struct dvb_adapter *adapter = fe->dvb;
2729 dev_dbg(fe->dvb->device, "%s:\n", __func__);
2730 if (fe->exit == DVB_FE_DEVICE_REMOVED)
2733 if (adapter->mfe_shared) {
2734 mutex_lock(&adapter->mfe_lock);
2736 if (!adapter->mfe_dvbdev)
2737 adapter->mfe_dvbdev = dvbdev;
2739 else if (adapter->mfe_dvbdev != dvbdev) {
2741 *mfedev = adapter->mfe_dvbdev;
2743 *mfe = mfedev->priv;
2744 struct dvb_frontend_private
2745 *mfepriv = mfe->frontend_priv;
2746 int mferetry = (dvb_mfe_wait_time << 1);
2748 mutex_unlock(&adapter->mfe_lock);
2749 while (mferetry-- && (mfedev->users != -1 ||
2751 if (msleep_interruptible(500)) {
2752 if (signal_pending(current))
2757 mutex_lock(&adapter->mfe_lock);
2758 if (adapter->mfe_dvbdev != dvbdev) {
2759 mfedev = adapter->mfe_dvbdev;
2761 mfepriv = mfe->frontend_priv;
2762 if (mfedev->users != -1 ||
2764 mutex_unlock(&adapter->mfe_lock);
2767 adapter->mfe_dvbdev = dvbdev;
2772 if (dvbdev->users == -1 && fe->ops.ts_bus_ctrl) {
2773 if ((ret = fe->ops.ts_bus_ctrl(fe, 1)) < 0)
2776 /* If we took control of the bus, we need to force
2777 reinitialization. This is because many ts_bus_ctrl()
2778 functions strobe the RESET pin on the demod, and if the
2779 frontend thread already exists then the dvb_init() routine
2780 won't get called (which is what usually does initial
2781 register configuration). */
2782 fepriv->reinitialise = 1;
2785 if ((ret = dvb_generic_open(inode, file)) < 0)
2788 if ((file->f_flags & O_ACCMODE) != O_RDONLY) {
2789 /* normal tune mode when opened R/W */
2790 fepriv->tune_mode_flags &= ~FE_TUNE_MODE_ONESHOT;
2792 fepriv->voltage = -1;
2794 #ifdef CONFIG_MEDIA_CONTROLLER_DVB
2795 mutex_lock(&fe->dvb->mdev_lock);
2796 if (fe->dvb->mdev) {
2797 mutex_lock(&fe->dvb->mdev->graph_mutex);
2798 if (fe->dvb->mdev->enable_source)
2799 ret = fe->dvb->mdev->enable_source(
2802 mutex_unlock(&fe->dvb->mdev->graph_mutex);
2804 mutex_unlock(&fe->dvb->mdev_lock);
2805 dev_err(fe->dvb->device,
2806 "Tuner is busy. Error %d\n", ret);
2810 mutex_unlock(&fe->dvb->mdev_lock);
2812 ret = dvb_frontend_start(fe);
2816 /* empty event queue */
2817 fepriv->events.eventr = fepriv->events.eventw = 0;
2820 dvb_frontend_get(fe);
2822 if (adapter->mfe_shared)
2823 mutex_unlock(&adapter->mfe_lock);
2827 #ifdef CONFIG_MEDIA_CONTROLLER_DVB
2828 mutex_lock(&fe->dvb->mdev_lock);
2829 if (fe->dvb->mdev) {
2830 mutex_lock(&fe->dvb->mdev->graph_mutex);
2831 if (fe->dvb->mdev->disable_source)
2832 fe->dvb->mdev->disable_source(dvbdev->entity);
2833 mutex_unlock(&fe->dvb->mdev->graph_mutex);
2835 mutex_unlock(&fe->dvb->mdev_lock);
2838 dvb_generic_release(inode, file);
2840 if (dvbdev->users == -1 && fe->ops.ts_bus_ctrl)
2841 fe->ops.ts_bus_ctrl(fe, 0);
2843 if (adapter->mfe_shared)
2844 mutex_unlock(&adapter->mfe_lock);
2848 static int dvb_frontend_release(struct inode *inode, struct file *file)
2850 struct dvb_device *dvbdev = file->private_data;
2851 struct dvb_frontend *fe = dvbdev->priv;
2852 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2855 dev_dbg(fe->dvb->device, "%s:\n", __func__);
2857 if ((file->f_flags & O_ACCMODE) != O_RDONLY) {
2858 fepriv->release_jiffies = jiffies;
2862 ret = dvb_generic_release(inode, file);
2864 if (dvbdev->users == -1) {
2865 wake_up(&fepriv->wait_queue);
2866 #ifdef CONFIG_MEDIA_CONTROLLER_DVB
2867 mutex_lock(&fe->dvb->mdev_lock);
2868 if (fe->dvb->mdev) {
2869 mutex_lock(&fe->dvb->mdev->graph_mutex);
2870 if (fe->dvb->mdev->disable_source)
2871 fe->dvb->mdev->disable_source(dvbdev->entity);
2872 mutex_unlock(&fe->dvb->mdev->graph_mutex);
2874 mutex_unlock(&fe->dvb->mdev_lock);
2876 if (fe->exit != DVB_FE_NO_EXIT)
2877 wake_up(&dvbdev->wait_queue);
2878 if (fe->ops.ts_bus_ctrl)
2879 fe->ops.ts_bus_ctrl(fe, 0);
2882 dvb_frontend_put(fe);
2887 static const struct file_operations dvb_frontend_fops = {
2888 .owner = THIS_MODULE,
2889 .unlocked_ioctl = dvb_frontend_ioctl,
2890 #ifdef CONFIG_COMPAT
2891 .compat_ioctl = dvb_frontend_compat_ioctl,
2893 .poll = dvb_frontend_poll,
2894 .open = dvb_frontend_open,
2895 .release = dvb_frontend_release,
2896 .llseek = noop_llseek,
2899 int dvb_frontend_suspend(struct dvb_frontend *fe)
2903 dev_dbg(fe->dvb->device, "%s: adap=%d fe=%d\n", __func__, fe->dvb->num,
2906 if (fe->ops.tuner_ops.suspend)
2907 ret = fe->ops.tuner_ops.suspend(fe);
2908 else if (fe->ops.tuner_ops.sleep)
2909 ret = fe->ops.tuner_ops.sleep(fe);
2912 ret = fe->ops.sleep(fe);
2916 EXPORT_SYMBOL(dvb_frontend_suspend);
2918 int dvb_frontend_resume(struct dvb_frontend *fe)
2920 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2923 dev_dbg(fe->dvb->device, "%s: adap=%d fe=%d\n", __func__, fe->dvb->num,
2926 fe->exit = DVB_FE_DEVICE_RESUME;
2928 ret = fe->ops.init(fe);
2930 if (fe->ops.tuner_ops.resume)
2931 ret = fe->ops.tuner_ops.resume(fe);
2932 else if (fe->ops.tuner_ops.init)
2933 ret = fe->ops.tuner_ops.init(fe);
2935 if (fe->ops.set_tone && fepriv->tone != -1)
2936 fe->ops.set_tone(fe, fepriv->tone);
2937 if (fe->ops.set_voltage && fepriv->voltage != -1)
2938 fe->ops.set_voltage(fe, fepriv->voltage);
2940 fe->exit = DVB_FE_NO_EXIT;
2941 fepriv->state = FESTATE_RETUNE;
2942 dvb_frontend_wakeup(fe);
2946 EXPORT_SYMBOL(dvb_frontend_resume);
2948 int dvb_register_frontend(struct dvb_adapter *dvb,
2949 struct dvb_frontend *fe)
2951 struct dvb_frontend_private *fepriv;
2952 const struct dvb_device dvbdev_template = {
2955 .readers = (~0) - 1,
2956 .fops = &dvb_frontend_fops,
2957 #if defined(CONFIG_MEDIA_CONTROLLER_DVB)
2958 .name = fe->ops.info.name,
2962 dev_dbg(dvb->device, "%s:\n", __func__);
2964 if (mutex_lock_interruptible(&frontend_mutex))
2965 return -ERESTARTSYS;
2967 fe->frontend_priv = kzalloc(sizeof(struct dvb_frontend_private), GFP_KERNEL);
2968 if (!fe->frontend_priv) {
2969 mutex_unlock(&frontend_mutex);
2972 fepriv = fe->frontend_priv;
2974 kref_init(&fe->refcount);
2977 * After initialization, there need to be two references: one
2978 * for dvb_unregister_frontend(), and another one for
2979 * dvb_frontend_detach().
2981 dvb_frontend_get(fe);
2983 sema_init(&fepriv->sem, 1);
2984 init_waitqueue_head(&fepriv->wait_queue);
2985 init_waitqueue_head(&fepriv->events.wait_queue);
2986 mutex_init(&fepriv->events.mtx);
2988 fepriv->inversion = INVERSION_OFF;
2990 dev_info(fe->dvb->device,
2991 "DVB: registering adapter %i frontend %i (%s)...\n",
2992 fe->dvb->num, fe->id, fe->ops.info.name);
2994 dvb_register_device(fe->dvb, &fepriv->dvbdev, &dvbdev_template,
2995 fe, DVB_DEVICE_FRONTEND, 0);
2998 * Initialize the cache to the proper values according with the
2999 * first supported delivery system (ops->delsys[0])
3002 fe->dtv_property_cache.delivery_system = fe->ops.delsys[0];
3003 dvb_frontend_clear_cache(fe);
3005 mutex_unlock(&frontend_mutex);
3008 EXPORT_SYMBOL(dvb_register_frontend);
3010 int dvb_unregister_frontend(struct dvb_frontend *fe)
3012 struct dvb_frontend_private *fepriv = fe->frontend_priv;
3014 dev_dbg(fe->dvb->device, "%s:\n", __func__);
3016 mutex_lock(&frontend_mutex);
3017 dvb_frontend_stop(fe);
3018 dvb_remove_device(fepriv->dvbdev);
3020 /* fe is invalid now */
3021 mutex_unlock(&frontend_mutex);
3022 dvb_frontend_put(fe);
3025 EXPORT_SYMBOL(dvb_unregister_frontend);
3027 static void dvb_frontend_invoke_release(struct dvb_frontend *fe,
3028 void (*release)(struct dvb_frontend *fe))
3032 #ifdef CONFIG_MEDIA_ATTACH
3033 dvb_detach(release);
3038 void dvb_frontend_detach(struct dvb_frontend *fe)
3040 dvb_frontend_invoke_release(fe, fe->ops.release_sec);
3041 dvb_frontend_invoke_release(fe, fe->ops.tuner_ops.release);
3042 dvb_frontend_invoke_release(fe, fe->ops.analog_ops.release);
3043 dvb_frontend_invoke_release(fe, fe->ops.detach);
3044 dvb_frontend_put(fe);
3046 EXPORT_SYMBOL(dvb_frontend_detach);