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/nospec.h>
27 #include <linux/list.h>
28 #include <linux/freezer.h>
29 #include <linux/jiffies.h>
30 #include <linux/kthread.h>
31 #include <linux/ktime.h>
32 #include <linux/compat.h>
33 #include <asm/processor.h>
35 #include <media/dvb_frontend.h>
36 #include <media/dvbdev.h>
37 #include <linux/dvb/version.h>
39 static int dvb_frontend_debug;
40 static int dvb_shutdown_timeout;
41 static int dvb_force_auto_inversion;
42 static int dvb_override_tune_delay;
43 static int dvb_powerdown_on_sleep = 1;
44 static int dvb_mfe_wait_time = 5;
46 module_param_named(frontend_debug, dvb_frontend_debug, int, 0644);
47 MODULE_PARM_DESC(frontend_debug, "Turn on/off frontend core debugging (default:off).");
48 module_param(dvb_shutdown_timeout, int, 0644);
49 MODULE_PARM_DESC(dvb_shutdown_timeout, "wait <shutdown_timeout> seconds after close() before suspending hardware");
50 module_param(dvb_force_auto_inversion, int, 0644);
51 MODULE_PARM_DESC(dvb_force_auto_inversion, "0: normal (default), 1: INVERSION_AUTO forced always");
52 module_param(dvb_override_tune_delay, int, 0644);
53 MODULE_PARM_DESC(dvb_override_tune_delay, "0: normal (default), >0 => delay in milliseconds to wait for lock after a tune attempt");
54 module_param(dvb_powerdown_on_sleep, int, 0644);
55 MODULE_PARM_DESC(dvb_powerdown_on_sleep, "0: do not power down, 1: turn LNB voltage off on sleep (default)");
56 module_param(dvb_mfe_wait_time, int, 0644);
57 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)");
59 #define dprintk(fmt, arg...) \
60 printk(KERN_DEBUG pr_fmt("%s: " fmt), __func__, ##arg)
62 #define FESTATE_IDLE 1
63 #define FESTATE_RETUNE 2
64 #define FESTATE_TUNING_FAST 4
65 #define FESTATE_TUNING_SLOW 8
66 #define FESTATE_TUNED 16
67 #define FESTATE_ZIGZAG_FAST 32
68 #define FESTATE_ZIGZAG_SLOW 64
69 #define FESTATE_DISEQC 128
70 #define FESTATE_ERROR 256
71 #define FESTATE_WAITFORLOCK (FESTATE_TUNING_FAST | FESTATE_TUNING_SLOW | FESTATE_ZIGZAG_FAST | FESTATE_ZIGZAG_SLOW | FESTATE_DISEQC)
72 #define FESTATE_SEARCHING_FAST (FESTATE_TUNING_FAST | FESTATE_ZIGZAG_FAST)
73 #define FESTATE_SEARCHING_SLOW (FESTATE_TUNING_SLOW | FESTATE_ZIGZAG_SLOW)
74 #define FESTATE_LOSTLOCK (FESTATE_ZIGZAG_FAST | FESTATE_ZIGZAG_SLOW)
77 * FESTATE_IDLE. No tuning parameters have been supplied and the loop is idling.
78 * FESTATE_RETUNE. Parameters have been supplied, but we have not yet performed the first tune.
79 * FESTATE_TUNING_FAST. Tuning parameters have been supplied and fast zigzag scan is in progress.
80 * FESTATE_TUNING_SLOW. Tuning parameters have been supplied. Fast zigzag failed, so we're trying again, but slower.
81 * FESTATE_TUNED. The frontend has successfully locked on.
82 * FESTATE_ZIGZAG_FAST. The lock has been lost, and a fast zigzag has been initiated to try and regain it.
83 * FESTATE_ZIGZAG_SLOW. The lock has been lost. Fast zigzag has been failed, so we're trying again, but slower.
84 * FESTATE_DISEQC. A DISEQC command has just been issued.
85 * FESTATE_WAITFORLOCK. When we're waiting for a lock.
86 * FESTATE_SEARCHING_FAST. When we're searching for a signal using a fast zigzag scan.
87 * FESTATE_SEARCHING_SLOW. When we're searching for a signal using a slow zigzag scan.
88 * FESTATE_LOSTLOCK. When the lock has been lost, and we're searching it again.
91 static DEFINE_MUTEX(frontend_mutex);
93 struct dvb_frontend_private {
94 /* thread/frontend values */
95 struct dvb_device *dvbdev;
96 struct dvb_frontend_parameters parameters_out;
97 struct dvb_fe_events events;
99 struct list_head list_head;
100 wait_queue_head_t wait_queue;
101 struct task_struct *thread;
102 unsigned long release_jiffies;
104 enum fe_status status;
105 unsigned long tune_mode_flags;
107 unsigned int reinitialise;
111 /* swzigzag values */
113 unsigned int bending;
115 unsigned int inversion;
116 unsigned int auto_step;
117 unsigned int auto_sub_step;
118 unsigned int started_auto_step;
119 unsigned int min_delay;
120 unsigned int max_drift;
121 unsigned int step_size;
123 unsigned int check_wrapped;
124 enum dvbfe_search algo_status;
126 #if defined(CONFIG_MEDIA_CONTROLLER_DVB)
127 struct media_pipeline pipe;
131 static void dvb_frontend_invoke_release(struct dvb_frontend *fe,
132 void (*release)(struct dvb_frontend *fe));
134 static void __dvb_frontend_free(struct dvb_frontend *fe)
136 struct dvb_frontend_private *fepriv = fe->frontend_priv;
139 dvb_device_put(fepriv->dvbdev);
141 dvb_frontend_invoke_release(fe, fe->ops.release);
146 static void dvb_frontend_free(struct kref *ref)
148 struct dvb_frontend *fe =
149 container_of(ref, struct dvb_frontend, refcount);
151 __dvb_frontend_free(fe);
154 static void dvb_frontend_put(struct dvb_frontend *fe)
156 /* call detach before dropping the reference count */
160 * Check if the frontend was registered, as otherwise
161 * kref was not initialized yet.
163 if (fe->frontend_priv)
164 kref_put(&fe->refcount, dvb_frontend_free);
166 __dvb_frontend_free(fe);
169 static void dvb_frontend_get(struct dvb_frontend *fe)
171 kref_get(&fe->refcount);
174 static void dvb_frontend_wakeup(struct dvb_frontend *fe);
175 static int dtv_get_frontend(struct dvb_frontend *fe,
176 struct dtv_frontend_properties *c,
177 struct dvb_frontend_parameters *p_out);
179 dtv_property_legacy_params_sync(struct dvb_frontend *fe,
180 const struct dtv_frontend_properties *c,
181 struct dvb_frontend_parameters *p);
183 static bool has_get_frontend(struct dvb_frontend *fe)
185 return fe->ops.get_frontend;
189 * Due to DVBv3 API calls, a delivery system should be mapped into one of
190 * the 4 DVBv3 delivery systems (FE_QPSK, FE_QAM, FE_OFDM or FE_ATSC),
191 * otherwise, a DVBv3 call will fail.
193 enum dvbv3_emulation_type {
201 static enum dvbv3_emulation_type dvbv3_type(u32 delivery_system)
203 switch (delivery_system) {
204 case SYS_DVBC_ANNEX_A:
205 case SYS_DVBC_ANNEX_C:
220 case SYS_DVBC_ANNEX_B:
228 * Doesn't know how to emulate those types and/or
229 * there's no frontend driver from this type yet
230 * with some emulation code, so, we're not sure yet how
231 * to handle them, or they're not compatible with a DVBv3 call.
233 return DVBV3_UNKNOWN;
237 static void dvb_frontend_add_event(struct dvb_frontend *fe,
238 enum fe_status status)
240 struct dvb_frontend_private *fepriv = fe->frontend_priv;
241 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
242 struct dvb_fe_events *events = &fepriv->events;
243 struct dvb_frontend_event *e;
246 dev_dbg(fe->dvb->device, "%s:\n", __func__);
248 if ((status & FE_HAS_LOCK) && has_get_frontend(fe))
249 dtv_get_frontend(fe, c, &fepriv->parameters_out);
251 mutex_lock(&events->mtx);
253 wp = (events->eventw + 1) % MAX_EVENT;
254 if (wp == events->eventr) {
255 events->overflow = 1;
256 events->eventr = (events->eventr + 1) % MAX_EVENT;
259 e = &events->events[events->eventw];
261 e->parameters = fepriv->parameters_out;
265 mutex_unlock(&events->mtx);
267 wake_up_interruptible(&events->wait_queue);
270 static int dvb_frontend_test_event(struct dvb_frontend_private *fepriv,
271 struct dvb_fe_events *events)
276 ret = events->eventw != events->eventr;
282 static int dvb_frontend_get_event(struct dvb_frontend *fe,
283 struct dvb_frontend_event *event, int flags)
285 struct dvb_frontend_private *fepriv = fe->frontend_priv;
286 struct dvb_fe_events *events = &fepriv->events;
288 dev_dbg(fe->dvb->device, "%s:\n", __func__);
290 if (events->overflow) {
291 events->overflow = 0;
295 if (events->eventw == events->eventr) {
296 struct wait_queue_entry wait;
299 if (flags & O_NONBLOCK)
302 init_waitqueue_entry(&wait, current);
303 add_wait_queue(&events->wait_queue, &wait);
304 while (!dvb_frontend_test_event(fepriv, events)) {
305 wait_woken(&wait, TASK_INTERRUPTIBLE, 0);
306 if (signal_pending(current)) {
311 remove_wait_queue(&events->wait_queue, &wait);
316 mutex_lock(&events->mtx);
317 *event = events->events[events->eventr];
318 events->eventr = (events->eventr + 1) % MAX_EVENT;
319 mutex_unlock(&events->mtx);
324 static void dvb_frontend_clear_events(struct dvb_frontend *fe)
326 struct dvb_frontend_private *fepriv = fe->frontend_priv;
327 struct dvb_fe_events *events = &fepriv->events;
329 mutex_lock(&events->mtx);
330 events->eventr = events->eventw;
331 mutex_unlock(&events->mtx);
334 static void dvb_frontend_init(struct dvb_frontend *fe)
336 dev_dbg(fe->dvb->device,
337 "%s: initialising adapter %i frontend %i (%s)...\n",
338 __func__, fe->dvb->num, fe->id, fe->ops.info.name);
342 if (fe->ops.tuner_ops.init) {
343 if (fe->ops.i2c_gate_ctrl)
344 fe->ops.i2c_gate_ctrl(fe, 1);
345 fe->ops.tuner_ops.init(fe);
346 if (fe->ops.i2c_gate_ctrl)
347 fe->ops.i2c_gate_ctrl(fe, 0);
351 void dvb_frontend_reinitialise(struct dvb_frontend *fe)
353 struct dvb_frontend_private *fepriv = fe->frontend_priv;
355 fepriv->reinitialise = 1;
356 dvb_frontend_wakeup(fe);
358 EXPORT_SYMBOL(dvb_frontend_reinitialise);
360 static void dvb_frontend_swzigzag_update_delay(struct dvb_frontend_private *fepriv, int locked)
363 struct dvb_frontend *fe = fepriv->dvbdev->priv;
365 dev_dbg(fe->dvb->device, "%s:\n", __func__);
368 (fepriv->quality) = (fepriv->quality * 220 + 36 * 256) / 256;
370 (fepriv->quality) = (fepriv->quality * 220 + 0) / 256;
372 q2 = fepriv->quality - 128;
375 fepriv->delay = fepriv->min_delay + q2 * HZ / (128 * 128);
379 * dvb_frontend_swzigzag_autotune - Performs automatic twiddling of frontend
382 * @fe: The frontend concerned.
383 * @check_wrapped: Checks if an iteration has completed.
384 * DO NOT SET ON THE FIRST ATTEMPT.
386 * return: Number of complete iterations that have been performed.
388 static int dvb_frontend_swzigzag_autotune(struct dvb_frontend *fe, int check_wrapped)
393 struct dvb_frontend_private *fepriv = fe->frontend_priv;
394 struct dtv_frontend_properties *c = &fe->dtv_property_cache, tmp;
395 int original_inversion = c->inversion;
396 u32 original_frequency = c->frequency;
398 /* are we using autoinversion? */
399 autoinversion = ((!(fe->ops.info.caps & FE_CAN_INVERSION_AUTO)) &&
400 (c->inversion == INVERSION_AUTO));
402 /* setup parameters correctly */
404 /* calculate the lnb_drift */
405 fepriv->lnb_drift = fepriv->auto_step * fepriv->step_size;
407 /* wrap the auto_step if we've exceeded the maximum drift */
408 if (fepriv->lnb_drift > fepriv->max_drift) {
409 fepriv->auto_step = 0;
410 fepriv->auto_sub_step = 0;
411 fepriv->lnb_drift = 0;
414 /* perform inversion and +/- zigzag */
415 switch (fepriv->auto_sub_step) {
417 /* try with the current inversion and current drift setting */
422 if (!autoinversion) break;
424 fepriv->inversion = (fepriv->inversion == INVERSION_OFF) ? INVERSION_ON : INVERSION_OFF;
429 if (fepriv->lnb_drift == 0) break;
431 fepriv->lnb_drift = -fepriv->lnb_drift;
436 if (fepriv->lnb_drift == 0) break;
437 if (!autoinversion) break;
439 fepriv->inversion = (fepriv->inversion == INVERSION_OFF) ? INVERSION_ON : INVERSION_OFF;
440 fepriv->lnb_drift = -fepriv->lnb_drift;
446 fepriv->auto_sub_step = -1; /* it'll be incremented to 0 in a moment */
450 if (!ready) fepriv->auto_sub_step++;
453 /* if this attempt would hit where we started, indicate a complete
454 * iteration has occurred */
455 if ((fepriv->auto_step == fepriv->started_auto_step) &&
456 (fepriv->auto_sub_step == 0) && check_wrapped) {
460 dev_dbg(fe->dvb->device,
461 "%s: drift:%i inversion:%i auto_step:%i auto_sub_step:%i started_auto_step:%i\n",
462 __func__, fepriv->lnb_drift, fepriv->inversion,
463 fepriv->auto_step, fepriv->auto_sub_step,
464 fepriv->started_auto_step);
466 /* set the frontend itself */
467 c->frequency += fepriv->lnb_drift;
469 c->inversion = fepriv->inversion;
471 if (fe->ops.set_frontend)
472 fe_set_err = fe->ops.set_frontend(fe);
474 if (fe_set_err < 0) {
475 fepriv->state = FESTATE_ERROR;
479 c->frequency = original_frequency;
480 c->inversion = original_inversion;
482 fepriv->auto_sub_step++;
486 static void dvb_frontend_swzigzag(struct dvb_frontend *fe)
488 enum fe_status s = FE_NONE;
490 struct dvb_frontend_private *fepriv = fe->frontend_priv;
491 struct dtv_frontend_properties *c = &fe->dtv_property_cache, tmp;
493 if (fepriv->max_drift)
494 dev_warn_once(fe->dvb->device,
495 "Frontend requested software zigzag, but didn't set the frequency step size\n");
497 /* if we've got no parameters, just keep idling */
498 if (fepriv->state & FESTATE_IDLE) {
499 fepriv->delay = 3 * HZ;
504 /* in SCAN mode, we just set the frontend when asked and leave it alone */
505 if (fepriv->tune_mode_flags & FE_TUNE_MODE_ONESHOT) {
506 if (fepriv->state & FESTATE_RETUNE) {
508 if (fe->ops.set_frontend)
509 retval = fe->ops.set_frontend(fe);
512 fepriv->state = FESTATE_ERROR;
514 fepriv->state = FESTATE_TUNED;
516 fepriv->delay = 3 * HZ;
521 /* get the frontend status */
522 if (fepriv->state & FESTATE_RETUNE) {
525 if (fe->ops.read_status)
526 fe->ops.read_status(fe, &s);
527 if (s != fepriv->status) {
528 dvb_frontend_add_event(fe, s);
533 /* if we're not tuned, and we have a lock, move to the TUNED state */
534 if ((fepriv->state & FESTATE_WAITFORLOCK) && (s & FE_HAS_LOCK)) {
535 dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
536 fepriv->state = FESTATE_TUNED;
538 /* if we're tuned, then we have determined the correct inversion */
539 if ((!(fe->ops.info.caps & FE_CAN_INVERSION_AUTO)) &&
540 (c->inversion == INVERSION_AUTO)) {
541 c->inversion = fepriv->inversion;
546 /* if we are tuned already, check we're still locked */
547 if (fepriv->state & FESTATE_TUNED) {
548 dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
550 /* we're tuned, and the lock is still good... */
551 if (s & FE_HAS_LOCK) {
553 } else { /* if we _WERE_ tuned, but now don't have a lock */
554 fepriv->state = FESTATE_ZIGZAG_FAST;
555 fepriv->started_auto_step = fepriv->auto_step;
556 fepriv->check_wrapped = 0;
560 /* don't actually do anything if we're in the LOSTLOCK state,
561 * the frontend is set to FE_CAN_RECOVER, and the max_drift is 0 */
562 if ((fepriv->state & FESTATE_LOSTLOCK) &&
563 (fe->ops.info.caps & FE_CAN_RECOVER) && (fepriv->max_drift == 0)) {
564 dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
568 /* don't do anything if we're in the DISEQC state, since this
569 * might be someone with a motorized dish controlled by DISEQC.
570 * If its actually a re-tune, there will be a SET_FRONTEND soon enough. */
571 if (fepriv->state & FESTATE_DISEQC) {
572 dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
576 /* if we're in the RETUNE state, set everything up for a brand
577 * new scan, keeping the current inversion setting, as the next
578 * tune is _very_ likely to require the same */
579 if (fepriv->state & FESTATE_RETUNE) {
580 fepriv->lnb_drift = 0;
581 fepriv->auto_step = 0;
582 fepriv->auto_sub_step = 0;
583 fepriv->started_auto_step = 0;
584 fepriv->check_wrapped = 0;
588 if ((fepriv->state & FESTATE_SEARCHING_FAST) || (fepriv->state & FESTATE_RETUNE)) {
589 fepriv->delay = fepriv->min_delay;
592 retval = dvb_frontend_swzigzag_autotune(fe,
593 fepriv->check_wrapped);
597 /* OK, if we've run out of trials at the fast speed.
598 * Drop back to slow for the _next_ attempt */
599 fepriv->state = FESTATE_SEARCHING_SLOW;
600 fepriv->started_auto_step = fepriv->auto_step;
603 fepriv->check_wrapped = 1;
605 /* if we've just re-tuned, enter the ZIGZAG_FAST state.
606 * This ensures we cannot return from an
607 * FE_SET_FRONTEND ioctl before the first frontend tune
609 if (fepriv->state & FESTATE_RETUNE) {
610 fepriv->state = FESTATE_TUNING_FAST;
615 if (fepriv->state & FESTATE_SEARCHING_SLOW) {
616 dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
618 /* Note: don't bother checking for wrapping; we stay in this
619 * state until we get a lock */
620 dvb_frontend_swzigzag_autotune(fe, 0);
624 static int dvb_frontend_is_exiting(struct dvb_frontend *fe)
626 struct dvb_frontend_private *fepriv = fe->frontend_priv;
628 if (fe->exit != DVB_FE_NO_EXIT)
631 if (fepriv->dvbdev->writers == 1)
632 if (time_after_eq(jiffies, fepriv->release_jiffies +
633 dvb_shutdown_timeout * HZ))
639 static int dvb_frontend_should_wakeup(struct dvb_frontend *fe)
641 struct dvb_frontend_private *fepriv = fe->frontend_priv;
643 if (fepriv->wakeup) {
647 return dvb_frontend_is_exiting(fe);
650 static void dvb_frontend_wakeup(struct dvb_frontend *fe)
652 struct dvb_frontend_private *fepriv = fe->frontend_priv;
655 wake_up_interruptible(&fepriv->wait_queue);
658 static int dvb_frontend_thread(void *data)
660 struct dvb_frontend *fe = data;
661 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
662 struct dvb_frontend_private *fepriv = fe->frontend_priv;
663 enum fe_status s = FE_NONE;
664 enum dvbfe_algo algo;
665 bool re_tune = false;
666 bool semheld = false;
668 dev_dbg(fe->dvb->device, "%s:\n", __func__);
670 fepriv->check_wrapped = 0;
672 fepriv->delay = 3 * HZ;
675 fepriv->reinitialise = 0;
677 dvb_frontend_init(fe);
681 up(&fepriv->sem); /* is locked when we enter the thread... */
683 wait_event_interruptible_timeout(fepriv->wait_queue,
684 dvb_frontend_should_wakeup(fe) ||
685 kthread_should_stop() ||
689 if (kthread_should_stop() || dvb_frontend_is_exiting(fe)) {
690 /* got signal or quitting */
691 if (!down_interruptible(&fepriv->sem))
693 fe->exit = DVB_FE_NORMAL_EXIT;
700 if (down_interruptible(&fepriv->sem))
703 if (fepriv->reinitialise) {
704 dvb_frontend_init(fe);
705 if (fe->ops.set_tone && fepriv->tone != -1)
706 fe->ops.set_tone(fe, fepriv->tone);
707 if (fe->ops.set_voltage && fepriv->voltage != -1)
708 fe->ops.set_voltage(fe, fepriv->voltage);
709 fepriv->reinitialise = 0;
712 /* do an iteration of the tuning loop */
713 if (fe->ops.get_frontend_algo) {
714 algo = fe->ops.get_frontend_algo(fe);
717 dev_dbg(fe->dvb->device, "%s: Frontend ALGO = DVBFE_ALGO_HW\n", __func__);
719 if (fepriv->state & FESTATE_RETUNE) {
720 dev_dbg(fe->dvb->device, "%s: Retune requested, FESTATE_RETUNE\n", __func__);
722 fepriv->state = FESTATE_TUNED;
728 fe->ops.tune(fe, re_tune, fepriv->tune_mode_flags, &fepriv->delay, &s);
730 if (s != fepriv->status && !(fepriv->tune_mode_flags & FE_TUNE_MODE_ONESHOT)) {
731 dev_dbg(fe->dvb->device, "%s: state changed, adding current state\n", __func__);
732 dvb_frontend_add_event(fe, s);
737 dev_dbg(fe->dvb->device, "%s: Frontend ALGO = DVBFE_ALGO_SW\n", __func__);
738 dvb_frontend_swzigzag(fe);
740 case DVBFE_ALGO_CUSTOM:
741 dev_dbg(fe->dvb->device, "%s: Frontend ALGO = DVBFE_ALGO_CUSTOM, state=%d\n", __func__, fepriv->state);
742 if (fepriv->state & FESTATE_RETUNE) {
743 dev_dbg(fe->dvb->device, "%s: Retune requested, FESTAT_RETUNE\n", __func__);
744 fepriv->state = FESTATE_TUNED;
746 /* Case where we are going to search for a carrier
747 * User asked us to retune again for some reason, possibly
748 * requesting a search with a new set of parameters
750 if (fepriv->algo_status & DVBFE_ALGO_SEARCH_AGAIN) {
751 if (fe->ops.search) {
752 fepriv->algo_status = fe->ops.search(fe);
753 /* We did do a search as was requested, the flags are
754 * now unset as well and has the flags wrt to search.
757 fepriv->algo_status &= ~DVBFE_ALGO_SEARCH_AGAIN;
760 /* Track the carrier if the search was successful */
761 if (fepriv->algo_status != DVBFE_ALGO_SEARCH_SUCCESS) {
762 fepriv->algo_status |= DVBFE_ALGO_SEARCH_AGAIN;
763 fepriv->delay = HZ / 2;
765 dtv_property_legacy_params_sync(fe, c, &fepriv->parameters_out);
766 fe->ops.read_status(fe, &s);
767 if (s != fepriv->status) {
768 dvb_frontend_add_event(fe, s); /* update event list */
770 if (!(s & FE_HAS_LOCK)) {
771 fepriv->delay = HZ / 10;
772 fepriv->algo_status |= DVBFE_ALGO_SEARCH_AGAIN;
774 fepriv->delay = 60 * HZ;
779 dev_dbg(fe->dvb->device, "%s: UNDEFINED ALGO !\n", __func__);
783 dvb_frontend_swzigzag(fe);
787 if (dvb_powerdown_on_sleep) {
788 if (fe->ops.set_voltage)
789 fe->ops.set_voltage(fe, SEC_VOLTAGE_OFF);
790 if (fe->ops.tuner_ops.sleep) {
791 if (fe->ops.i2c_gate_ctrl)
792 fe->ops.i2c_gate_ctrl(fe, 1);
793 fe->ops.tuner_ops.sleep(fe);
794 if (fe->ops.i2c_gate_ctrl)
795 fe->ops.i2c_gate_ctrl(fe, 0);
801 fepriv->thread = NULL;
802 if (kthread_should_stop())
803 fe->exit = DVB_FE_DEVICE_REMOVED;
805 fe->exit = DVB_FE_NO_EXIT;
810 dvb_frontend_wakeup(fe);
814 static void dvb_frontend_stop(struct dvb_frontend *fe)
816 struct dvb_frontend_private *fepriv = fe->frontend_priv;
818 dev_dbg(fe->dvb->device, "%s:\n", __func__);
820 if (fe->exit != DVB_FE_DEVICE_REMOVED)
821 fe->exit = DVB_FE_NORMAL_EXIT;
827 kthread_stop(fepriv->thread);
829 sema_init(&fepriv->sem, 1);
830 fepriv->state = FESTATE_IDLE;
832 /* paranoia check in case a signal arrived */
834 dev_warn(fe->dvb->device,
835 "dvb_frontend_stop: warning: thread %p won't exit\n",
840 * Sleep for the amount of time given by add_usec parameter
842 * This needs to be as precise as possible, as it affects the detection of
843 * the dish tone command at the satellite subsystem. The precision is improved
844 * by using a scheduled msleep followed by udelay for the remainder.
846 void dvb_frontend_sleep_until(ktime_t *waketime, u32 add_usec)
850 *waketime = ktime_add_us(*waketime, add_usec);
851 delta = ktime_us_delta(ktime_get_boottime(), *waketime);
853 msleep((delta - 1500) / 1000);
854 delta = ktime_us_delta(ktime_get_boottime(), *waketime);
859 EXPORT_SYMBOL(dvb_frontend_sleep_until);
861 static int dvb_frontend_start(struct dvb_frontend *fe)
864 struct dvb_frontend_private *fepriv = fe->frontend_priv;
865 struct task_struct *fe_thread;
867 dev_dbg(fe->dvb->device, "%s:\n", __func__);
869 if (fepriv->thread) {
870 if (fe->exit == DVB_FE_NO_EXIT)
873 dvb_frontend_stop(fe);
876 if (signal_pending(current))
878 if (down_interruptible(&fepriv->sem))
881 fepriv->state = FESTATE_IDLE;
882 fe->exit = DVB_FE_NO_EXIT;
883 fepriv->thread = NULL;
886 fe_thread = kthread_run(dvb_frontend_thread, fe,
887 "kdvb-ad-%i-fe-%i", fe->dvb->num, fe->id);
888 if (IS_ERR(fe_thread)) {
889 ret = PTR_ERR(fe_thread);
890 dev_warn(fe->dvb->device,
891 "dvb_frontend_start: failed to start kthread (%d)\n",
896 fepriv->thread = fe_thread;
900 static void dvb_frontend_get_frequency_limits(struct dvb_frontend *fe,
901 u32 *freq_min, u32 *freq_max,
904 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
905 u32 tuner_min = fe->ops.tuner_ops.info.frequency_min_hz;
906 u32 tuner_max = fe->ops.tuner_ops.info.frequency_max_hz;
907 u32 frontend_min = fe->ops.info.frequency_min_hz;
908 u32 frontend_max = fe->ops.info.frequency_max_hz;
910 *freq_min = max(frontend_min, tuner_min);
912 if (frontend_max == 0)
913 *freq_max = tuner_max;
914 else if (tuner_max == 0)
915 *freq_max = frontend_max;
917 *freq_max = min(frontend_max, tuner_max);
919 if (*freq_min == 0 || *freq_max == 0)
920 dev_warn(fe->dvb->device,
921 "DVB: adapter %i frontend %u frequency limits undefined - fix the driver\n",
922 fe->dvb->num, fe->id);
924 dev_dbg(fe->dvb->device, "frequency interval: tuner: %u...%u, frontend: %u...%u",
925 tuner_min, tuner_max, frontend_min, frontend_max);
927 /* If the standard is for satellite, convert frequencies to kHz */
928 switch (c->delivery_system) {
937 *tolerance = fe->ops.info.frequency_tolerance_hz / kHz;
942 *tolerance = fe->ops.info.frequency_tolerance_hz;
947 static u32 dvb_frontend_get_stepsize(struct dvb_frontend *fe)
949 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
950 u32 fe_step = fe->ops.info.frequency_stepsize_hz;
951 u32 tuner_step = fe->ops.tuner_ops.info.frequency_step_hz;
952 u32 step = max(fe_step, tuner_step);
954 switch (c->delivery_system) {
969 static int dvb_frontend_check_parameters(struct dvb_frontend *fe)
971 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
975 /* range check: frequency */
976 dvb_frontend_get_frequency_limits(fe, &freq_min, &freq_max, NULL);
977 if ((freq_min && c->frequency < freq_min) ||
978 (freq_max && c->frequency > freq_max)) {
979 dev_warn(fe->dvb->device, "DVB: adapter %i frontend %i frequency %u out of range (%u..%u)\n",
980 fe->dvb->num, fe->id, c->frequency,
985 /* range check: symbol rate */
986 switch (c->delivery_system) {
991 case SYS_DVBC_ANNEX_A:
992 case SYS_DVBC_ANNEX_C:
993 if ((fe->ops.info.symbol_rate_min &&
994 c->symbol_rate < fe->ops.info.symbol_rate_min) ||
995 (fe->ops.info.symbol_rate_max &&
996 c->symbol_rate > fe->ops.info.symbol_rate_max)) {
997 dev_warn(fe->dvb->device, "DVB: adapter %i frontend %i symbol rate %u out of range (%u..%u)\n",
998 fe->dvb->num, fe->id, c->symbol_rate,
999 fe->ops.info.symbol_rate_min,
1000 fe->ops.info.symbol_rate_max);
1011 static int dvb_frontend_clear_cache(struct dvb_frontend *fe)
1013 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
1017 delsys = c->delivery_system;
1018 memset(c, 0, offsetof(struct dtv_frontend_properties, strength));
1019 c->delivery_system = delsys;
1021 dev_dbg(fe->dvb->device, "%s: Clearing cache for delivery system %d\n",
1022 __func__, c->delivery_system);
1024 c->transmission_mode = TRANSMISSION_MODE_AUTO;
1025 c->bandwidth_hz = 0; /* AUTO */
1026 c->guard_interval = GUARD_INTERVAL_AUTO;
1027 c->hierarchy = HIERARCHY_AUTO;
1029 c->code_rate_HP = FEC_AUTO;
1030 c->code_rate_LP = FEC_AUTO;
1031 c->fec_inner = FEC_AUTO;
1032 c->rolloff = ROLLOFF_AUTO;
1033 c->voltage = SEC_VOLTAGE_OFF;
1034 c->sectone = SEC_TONE_OFF;
1035 c->pilot = PILOT_AUTO;
1037 c->isdbt_partial_reception = 0;
1038 c->isdbt_sb_mode = 0;
1039 c->isdbt_sb_subchannel = 0;
1040 c->isdbt_sb_segment_idx = 0;
1041 c->isdbt_sb_segment_count = 0;
1042 c->isdbt_layer_enabled = 7; /* All layers (A,B,C) */
1043 for (i = 0; i < 3; i++) {
1044 c->layer[i].fec = FEC_AUTO;
1045 c->layer[i].modulation = QAM_AUTO;
1046 c->layer[i].interleaving = 0;
1047 c->layer[i].segment_count = 0;
1050 c->stream_id = NO_STREAM_ID_FILTER;
1051 c->scrambling_sequence_index = 0;/* default sequence */
1053 switch (c->delivery_system) {
1055 c->modulation = QPSK;
1056 c->rolloff = ROLLOFF_20;
1061 c->modulation = QPSK; /* implied for DVB-S in legacy API */
1062 c->rolloff = ROLLOFF_35;/* implied for DVB-S */
1065 c->modulation = VSB_8;
1068 c->symbol_rate = 28860000;
1069 c->rolloff = ROLLOFF_35;
1070 c->bandwidth_hz = c->symbol_rate / 100 * 135;
1073 c->modulation = QAM_AUTO;
1082 #define _DTV_CMD(n) \
1085 static char *dtv_cmds[DTV_MAX_COMMAND + 1] = {
1087 _DTV_CMD(DTV_CLEAR),
1090 _DTV_CMD(DTV_FREQUENCY),
1091 _DTV_CMD(DTV_BANDWIDTH_HZ),
1092 _DTV_CMD(DTV_MODULATION),
1093 _DTV_CMD(DTV_INVERSION),
1094 _DTV_CMD(DTV_DISEQC_MASTER),
1095 _DTV_CMD(DTV_SYMBOL_RATE),
1096 _DTV_CMD(DTV_INNER_FEC),
1097 _DTV_CMD(DTV_VOLTAGE),
1099 _DTV_CMD(DTV_PILOT),
1100 _DTV_CMD(DTV_ROLLOFF),
1101 _DTV_CMD(DTV_DELIVERY_SYSTEM),
1102 _DTV_CMD(DTV_HIERARCHY),
1103 _DTV_CMD(DTV_CODE_RATE_HP),
1104 _DTV_CMD(DTV_CODE_RATE_LP),
1105 _DTV_CMD(DTV_GUARD_INTERVAL),
1106 _DTV_CMD(DTV_TRANSMISSION_MODE),
1107 _DTV_CMD(DTV_INTERLEAVING),
1109 _DTV_CMD(DTV_ISDBT_PARTIAL_RECEPTION),
1110 _DTV_CMD(DTV_ISDBT_SOUND_BROADCASTING),
1111 _DTV_CMD(DTV_ISDBT_SB_SUBCHANNEL_ID),
1112 _DTV_CMD(DTV_ISDBT_SB_SEGMENT_IDX),
1113 _DTV_CMD(DTV_ISDBT_SB_SEGMENT_COUNT),
1114 _DTV_CMD(DTV_ISDBT_LAYER_ENABLED),
1115 _DTV_CMD(DTV_ISDBT_LAYERA_FEC),
1116 _DTV_CMD(DTV_ISDBT_LAYERA_MODULATION),
1117 _DTV_CMD(DTV_ISDBT_LAYERA_SEGMENT_COUNT),
1118 _DTV_CMD(DTV_ISDBT_LAYERA_TIME_INTERLEAVING),
1119 _DTV_CMD(DTV_ISDBT_LAYERB_FEC),
1120 _DTV_CMD(DTV_ISDBT_LAYERB_MODULATION),
1121 _DTV_CMD(DTV_ISDBT_LAYERB_SEGMENT_COUNT),
1122 _DTV_CMD(DTV_ISDBT_LAYERB_TIME_INTERLEAVING),
1123 _DTV_CMD(DTV_ISDBT_LAYERC_FEC),
1124 _DTV_CMD(DTV_ISDBT_LAYERC_MODULATION),
1125 _DTV_CMD(DTV_ISDBT_LAYERC_SEGMENT_COUNT),
1126 _DTV_CMD(DTV_ISDBT_LAYERC_TIME_INTERLEAVING),
1128 _DTV_CMD(DTV_STREAM_ID),
1129 _DTV_CMD(DTV_DVBT2_PLP_ID_LEGACY),
1130 _DTV_CMD(DTV_SCRAMBLING_SEQUENCE_INDEX),
1134 _DTV_CMD(DTV_DISEQC_SLAVE_REPLY),
1135 _DTV_CMD(DTV_API_VERSION),
1137 _DTV_CMD(DTV_ENUM_DELSYS),
1139 _DTV_CMD(DTV_ATSCMH_PARADE_ID),
1140 _DTV_CMD(DTV_ATSCMH_RS_FRAME_ENSEMBLE),
1142 _DTV_CMD(DTV_ATSCMH_FIC_VER),
1143 _DTV_CMD(DTV_ATSCMH_NOG),
1144 _DTV_CMD(DTV_ATSCMH_TNOG),
1145 _DTV_CMD(DTV_ATSCMH_SGN),
1146 _DTV_CMD(DTV_ATSCMH_PRC),
1147 _DTV_CMD(DTV_ATSCMH_RS_FRAME_MODE),
1148 _DTV_CMD(DTV_ATSCMH_RS_CODE_MODE_PRI),
1149 _DTV_CMD(DTV_ATSCMH_RS_CODE_MODE_SEC),
1150 _DTV_CMD(DTV_ATSCMH_SCCC_BLOCK_MODE),
1151 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_A),
1152 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_B),
1153 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_C),
1154 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_D),
1156 /* Statistics API */
1157 _DTV_CMD(DTV_STAT_SIGNAL_STRENGTH),
1158 _DTV_CMD(DTV_STAT_CNR),
1159 _DTV_CMD(DTV_STAT_PRE_ERROR_BIT_COUNT),
1160 _DTV_CMD(DTV_STAT_PRE_TOTAL_BIT_COUNT),
1161 _DTV_CMD(DTV_STAT_POST_ERROR_BIT_COUNT),
1162 _DTV_CMD(DTV_STAT_POST_TOTAL_BIT_COUNT),
1163 _DTV_CMD(DTV_STAT_ERROR_BLOCK_COUNT),
1164 _DTV_CMD(DTV_STAT_TOTAL_BLOCK_COUNT),
1167 static char *dtv_cmd_name(u32 cmd)
1169 cmd = array_index_nospec(cmd, DTV_MAX_COMMAND);
1170 return dtv_cmds[cmd];
1173 /* Synchronise the legacy tuning parameters into the cache, so that demodulator
1174 * drivers can use a single set_frontend tuning function, regardless of whether
1175 * it's being used for the legacy or new API, reducing code and complexity.
1177 static int dtv_property_cache_sync(struct dvb_frontend *fe,
1178 struct dtv_frontend_properties *c,
1179 const struct dvb_frontend_parameters *p)
1181 c->frequency = p->frequency;
1182 c->inversion = p->inversion;
1184 switch (dvbv3_type(c->delivery_system)) {
1186 dev_dbg(fe->dvb->device, "%s: Preparing QPSK req\n", __func__);
1187 c->symbol_rate = p->u.qpsk.symbol_rate;
1188 c->fec_inner = p->u.qpsk.fec_inner;
1191 dev_dbg(fe->dvb->device, "%s: Preparing QAM req\n", __func__);
1192 c->symbol_rate = p->u.qam.symbol_rate;
1193 c->fec_inner = p->u.qam.fec_inner;
1194 c->modulation = p->u.qam.modulation;
1197 dev_dbg(fe->dvb->device, "%s: Preparing OFDM req\n", __func__);
1199 switch (p->u.ofdm.bandwidth) {
1200 case BANDWIDTH_10_MHZ:
1201 c->bandwidth_hz = 10000000;
1203 case BANDWIDTH_8_MHZ:
1204 c->bandwidth_hz = 8000000;
1206 case BANDWIDTH_7_MHZ:
1207 c->bandwidth_hz = 7000000;
1209 case BANDWIDTH_6_MHZ:
1210 c->bandwidth_hz = 6000000;
1212 case BANDWIDTH_5_MHZ:
1213 c->bandwidth_hz = 5000000;
1215 case BANDWIDTH_1_712_MHZ:
1216 c->bandwidth_hz = 1712000;
1218 case BANDWIDTH_AUTO:
1219 c->bandwidth_hz = 0;
1222 c->code_rate_HP = p->u.ofdm.code_rate_HP;
1223 c->code_rate_LP = p->u.ofdm.code_rate_LP;
1224 c->modulation = p->u.ofdm.constellation;
1225 c->transmission_mode = p->u.ofdm.transmission_mode;
1226 c->guard_interval = p->u.ofdm.guard_interval;
1227 c->hierarchy = p->u.ofdm.hierarchy_information;
1230 dev_dbg(fe->dvb->device, "%s: Preparing ATSC req\n", __func__);
1231 c->modulation = p->u.vsb.modulation;
1232 if (c->delivery_system == SYS_ATSCMH)
1234 if ((c->modulation == VSB_8) || (c->modulation == VSB_16))
1235 c->delivery_system = SYS_ATSC;
1237 c->delivery_system = SYS_DVBC_ANNEX_B;
1240 dev_err(fe->dvb->device,
1241 "%s: doesn't know how to handle a DVBv3 call to delivery system %i\n",
1242 __func__, c->delivery_system);
1249 /* Ensure the cached values are set correctly in the frontend
1250 * legacy tuning structures, for the advanced tuning API.
1253 dtv_property_legacy_params_sync(struct dvb_frontend *fe,
1254 const struct dtv_frontend_properties *c,
1255 struct dvb_frontend_parameters *p)
1257 p->frequency = c->frequency;
1258 p->inversion = c->inversion;
1260 switch (dvbv3_type(c->delivery_system)) {
1262 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);
1267 dev_dbg(fe->dvb->device, "%s: Preparing QPSK req\n", __func__);
1268 p->u.qpsk.symbol_rate = c->symbol_rate;
1269 p->u.qpsk.fec_inner = c->fec_inner;
1272 dev_dbg(fe->dvb->device, "%s: Preparing QAM req\n", __func__);
1273 p->u.qam.symbol_rate = c->symbol_rate;
1274 p->u.qam.fec_inner = c->fec_inner;
1275 p->u.qam.modulation = c->modulation;
1278 dev_dbg(fe->dvb->device, "%s: Preparing OFDM req\n", __func__);
1279 switch (c->bandwidth_hz) {
1281 p->u.ofdm.bandwidth = BANDWIDTH_10_MHZ;
1284 p->u.ofdm.bandwidth = BANDWIDTH_8_MHZ;
1287 p->u.ofdm.bandwidth = BANDWIDTH_7_MHZ;
1290 p->u.ofdm.bandwidth = BANDWIDTH_6_MHZ;
1293 p->u.ofdm.bandwidth = BANDWIDTH_5_MHZ;
1296 p->u.ofdm.bandwidth = BANDWIDTH_1_712_MHZ;
1300 p->u.ofdm.bandwidth = BANDWIDTH_AUTO;
1302 p->u.ofdm.code_rate_HP = c->code_rate_HP;
1303 p->u.ofdm.code_rate_LP = c->code_rate_LP;
1304 p->u.ofdm.constellation = c->modulation;
1305 p->u.ofdm.transmission_mode = c->transmission_mode;
1306 p->u.ofdm.guard_interval = c->guard_interval;
1307 p->u.ofdm.hierarchy_information = c->hierarchy;
1310 dev_dbg(fe->dvb->device, "%s: Preparing VSB req\n", __func__);
1311 p->u.vsb.modulation = c->modulation;
1318 * dtv_get_frontend - calls a callback for retrieving DTV parameters
1319 * @fe: struct dvb_frontend pointer
1320 * @c: struct dtv_frontend_properties pointer (DVBv5 cache)
1321 * @p_out: struct dvb_frontend_parameters pointer (DVBv3 FE struct)
1323 * This routine calls either the DVBv3 or DVBv5 get_frontend call.
1324 * If c is not null, it will update the DVBv5 cache struct pointed by it.
1325 * If p_out is not null, it will update the DVBv3 params pointed by it.
1327 static int dtv_get_frontend(struct dvb_frontend *fe,
1328 struct dtv_frontend_properties *c,
1329 struct dvb_frontend_parameters *p_out)
1333 if (fe->ops.get_frontend) {
1334 r = fe->ops.get_frontend(fe, c);
1335 if (unlikely(r < 0))
1338 dtv_property_legacy_params_sync(fe, c, p_out);
1342 /* As everything is in cache, get_frontend fops are always supported */
1346 static int dvb_frontend_handle_ioctl(struct file *file,
1347 unsigned int cmd, void *parg);
1349 static int dtv_property_process_get(struct dvb_frontend *fe,
1350 const struct dtv_frontend_properties *c,
1351 struct dtv_property *tvp,
1355 unsigned int len = 1;
1358 case DTV_ENUM_DELSYS:
1360 while (ncaps < MAX_DELSYS && fe->ops.delsys[ncaps]) {
1361 tvp->u.buffer.data[ncaps] = fe->ops.delsys[ncaps];
1364 tvp->u.buffer.len = ncaps;
1368 tvp->u.data = c->frequency;
1370 case DTV_MODULATION:
1371 tvp->u.data = c->modulation;
1373 case DTV_BANDWIDTH_HZ:
1374 tvp->u.data = c->bandwidth_hz;
1377 tvp->u.data = c->inversion;
1379 case DTV_SYMBOL_RATE:
1380 tvp->u.data = c->symbol_rate;
1383 tvp->u.data = c->fec_inner;
1386 tvp->u.data = c->pilot;
1389 tvp->u.data = c->rolloff;
1391 case DTV_DELIVERY_SYSTEM:
1392 tvp->u.data = c->delivery_system;
1395 tvp->u.data = c->voltage;
1398 tvp->u.data = c->sectone;
1400 case DTV_API_VERSION:
1401 tvp->u.data = (DVB_API_VERSION << 8) | DVB_API_VERSION_MINOR;
1403 case DTV_CODE_RATE_HP:
1404 tvp->u.data = c->code_rate_HP;
1406 case DTV_CODE_RATE_LP:
1407 tvp->u.data = c->code_rate_LP;
1409 case DTV_GUARD_INTERVAL:
1410 tvp->u.data = c->guard_interval;
1412 case DTV_TRANSMISSION_MODE:
1413 tvp->u.data = c->transmission_mode;
1416 tvp->u.data = c->hierarchy;
1418 case DTV_INTERLEAVING:
1419 tvp->u.data = c->interleaving;
1422 /* ISDB-T Support here */
1423 case DTV_ISDBT_PARTIAL_RECEPTION:
1424 tvp->u.data = c->isdbt_partial_reception;
1426 case DTV_ISDBT_SOUND_BROADCASTING:
1427 tvp->u.data = c->isdbt_sb_mode;
1429 case DTV_ISDBT_SB_SUBCHANNEL_ID:
1430 tvp->u.data = c->isdbt_sb_subchannel;
1432 case DTV_ISDBT_SB_SEGMENT_IDX:
1433 tvp->u.data = c->isdbt_sb_segment_idx;
1435 case DTV_ISDBT_SB_SEGMENT_COUNT:
1436 tvp->u.data = c->isdbt_sb_segment_count;
1438 case DTV_ISDBT_LAYER_ENABLED:
1439 tvp->u.data = c->isdbt_layer_enabled;
1441 case DTV_ISDBT_LAYERA_FEC:
1442 tvp->u.data = c->layer[0].fec;
1444 case DTV_ISDBT_LAYERA_MODULATION:
1445 tvp->u.data = c->layer[0].modulation;
1447 case DTV_ISDBT_LAYERA_SEGMENT_COUNT:
1448 tvp->u.data = c->layer[0].segment_count;
1450 case DTV_ISDBT_LAYERA_TIME_INTERLEAVING:
1451 tvp->u.data = c->layer[0].interleaving;
1453 case DTV_ISDBT_LAYERB_FEC:
1454 tvp->u.data = c->layer[1].fec;
1456 case DTV_ISDBT_LAYERB_MODULATION:
1457 tvp->u.data = c->layer[1].modulation;
1459 case DTV_ISDBT_LAYERB_SEGMENT_COUNT:
1460 tvp->u.data = c->layer[1].segment_count;
1462 case DTV_ISDBT_LAYERB_TIME_INTERLEAVING:
1463 tvp->u.data = c->layer[1].interleaving;
1465 case DTV_ISDBT_LAYERC_FEC:
1466 tvp->u.data = c->layer[2].fec;
1468 case DTV_ISDBT_LAYERC_MODULATION:
1469 tvp->u.data = c->layer[2].modulation;
1471 case DTV_ISDBT_LAYERC_SEGMENT_COUNT:
1472 tvp->u.data = c->layer[2].segment_count;
1474 case DTV_ISDBT_LAYERC_TIME_INTERLEAVING:
1475 tvp->u.data = c->layer[2].interleaving;
1478 /* Multistream support */
1480 case DTV_DVBT2_PLP_ID_LEGACY:
1481 tvp->u.data = c->stream_id;
1484 /* Physical layer scrambling support */
1485 case DTV_SCRAMBLING_SEQUENCE_INDEX:
1486 tvp->u.data = c->scrambling_sequence_index;
1490 case DTV_ATSCMH_FIC_VER:
1491 tvp->u.data = fe->dtv_property_cache.atscmh_fic_ver;
1493 case DTV_ATSCMH_PARADE_ID:
1494 tvp->u.data = fe->dtv_property_cache.atscmh_parade_id;
1496 case DTV_ATSCMH_NOG:
1497 tvp->u.data = fe->dtv_property_cache.atscmh_nog;
1499 case DTV_ATSCMH_TNOG:
1500 tvp->u.data = fe->dtv_property_cache.atscmh_tnog;
1502 case DTV_ATSCMH_SGN:
1503 tvp->u.data = fe->dtv_property_cache.atscmh_sgn;
1505 case DTV_ATSCMH_PRC:
1506 tvp->u.data = fe->dtv_property_cache.atscmh_prc;
1508 case DTV_ATSCMH_RS_FRAME_MODE:
1509 tvp->u.data = fe->dtv_property_cache.atscmh_rs_frame_mode;
1511 case DTV_ATSCMH_RS_FRAME_ENSEMBLE:
1512 tvp->u.data = fe->dtv_property_cache.atscmh_rs_frame_ensemble;
1514 case DTV_ATSCMH_RS_CODE_MODE_PRI:
1515 tvp->u.data = fe->dtv_property_cache.atscmh_rs_code_mode_pri;
1517 case DTV_ATSCMH_RS_CODE_MODE_SEC:
1518 tvp->u.data = fe->dtv_property_cache.atscmh_rs_code_mode_sec;
1520 case DTV_ATSCMH_SCCC_BLOCK_MODE:
1521 tvp->u.data = fe->dtv_property_cache.atscmh_sccc_block_mode;
1523 case DTV_ATSCMH_SCCC_CODE_MODE_A:
1524 tvp->u.data = fe->dtv_property_cache.atscmh_sccc_code_mode_a;
1526 case DTV_ATSCMH_SCCC_CODE_MODE_B:
1527 tvp->u.data = fe->dtv_property_cache.atscmh_sccc_code_mode_b;
1529 case DTV_ATSCMH_SCCC_CODE_MODE_C:
1530 tvp->u.data = fe->dtv_property_cache.atscmh_sccc_code_mode_c;
1532 case DTV_ATSCMH_SCCC_CODE_MODE_D:
1533 tvp->u.data = fe->dtv_property_cache.atscmh_sccc_code_mode_d;
1537 tvp->u.data = c->lna;
1540 /* Fill quality measures */
1541 case DTV_STAT_SIGNAL_STRENGTH:
1542 tvp->u.st = c->strength;
1543 if (tvp->u.buffer.len > MAX_DTV_STATS * sizeof(u32))
1544 tvp->u.buffer.len = MAX_DTV_STATS * sizeof(u32);
1545 len = tvp->u.buffer.len;
1549 if (tvp->u.buffer.len > MAX_DTV_STATS * sizeof(u32))
1550 tvp->u.buffer.len = MAX_DTV_STATS * sizeof(u32);
1551 len = tvp->u.buffer.len;
1553 case DTV_STAT_PRE_ERROR_BIT_COUNT:
1554 tvp->u.st = c->pre_bit_error;
1555 if (tvp->u.buffer.len > MAX_DTV_STATS * sizeof(u32))
1556 tvp->u.buffer.len = MAX_DTV_STATS * sizeof(u32);
1557 len = tvp->u.buffer.len;
1559 case DTV_STAT_PRE_TOTAL_BIT_COUNT:
1560 tvp->u.st = c->pre_bit_count;
1561 if (tvp->u.buffer.len > MAX_DTV_STATS * sizeof(u32))
1562 tvp->u.buffer.len = MAX_DTV_STATS * sizeof(u32);
1563 len = tvp->u.buffer.len;
1565 case DTV_STAT_POST_ERROR_BIT_COUNT:
1566 tvp->u.st = c->post_bit_error;
1567 if (tvp->u.buffer.len > MAX_DTV_STATS * sizeof(u32))
1568 tvp->u.buffer.len = MAX_DTV_STATS * sizeof(u32);
1569 len = tvp->u.buffer.len;
1571 case DTV_STAT_POST_TOTAL_BIT_COUNT:
1572 tvp->u.st = c->post_bit_count;
1573 if (tvp->u.buffer.len > MAX_DTV_STATS * sizeof(u32))
1574 tvp->u.buffer.len = MAX_DTV_STATS * sizeof(u32);
1575 len = tvp->u.buffer.len;
1577 case DTV_STAT_ERROR_BLOCK_COUNT:
1578 tvp->u.st = c->block_error;
1579 if (tvp->u.buffer.len > MAX_DTV_STATS * sizeof(u32))
1580 tvp->u.buffer.len = MAX_DTV_STATS * sizeof(u32);
1581 len = tvp->u.buffer.len;
1583 case DTV_STAT_TOTAL_BLOCK_COUNT:
1584 tvp->u.st = c->block_count;
1585 if (tvp->u.buffer.len > MAX_DTV_STATS * sizeof(u32))
1586 tvp->u.buffer.len = MAX_DTV_STATS * sizeof(u32);
1587 len = tvp->u.buffer.len;
1590 dev_dbg(fe->dvb->device,
1591 "%s: FE property %d doesn't exist\n",
1592 __func__, tvp->cmd);
1599 dev_dbg(fe->dvb->device,
1600 "%s: GET cmd 0x%08x (%s) len %d: %*ph\n",
1601 __func__, tvp->cmd, dtv_cmd_name(tvp->cmd),
1602 tvp->u.buffer.len, tvp->u.buffer.len, tvp->u.buffer.data);
1607 static int dtv_set_frontend(struct dvb_frontend *fe);
1609 static bool is_dvbv3_delsys(u32 delsys)
1611 return (delsys == SYS_DVBT) || (delsys == SYS_DVBC_ANNEX_A) ||
1612 (delsys == SYS_DVBS) || (delsys == SYS_ATSC);
1616 * emulate_delivery_system - emulate a DVBv5 delivery system with a DVBv3 type
1617 * @fe: struct frontend;
1618 * @delsys: DVBv5 type that will be used for emulation
1620 * Provides emulation for delivery systems that are compatible with the old
1621 * DVBv3 call. Among its usages, it provices support for ISDB-T, and allows
1622 * using a DVB-S2 only frontend just like it were a DVB-S, if the frontend
1623 * parameters are compatible with DVB-S spec.
1625 static int emulate_delivery_system(struct dvb_frontend *fe, u32 delsys)
1628 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
1630 c->delivery_system = delsys;
1633 * If the call is for ISDB-T, put it into full-seg, auto mode, TV
1635 if (c->delivery_system == SYS_ISDBT) {
1636 dev_dbg(fe->dvb->device,
1637 "%s: Using defaults for SYS_ISDBT\n",
1640 if (!c->bandwidth_hz)
1641 c->bandwidth_hz = 6000000;
1643 c->isdbt_partial_reception = 0;
1644 c->isdbt_sb_mode = 0;
1645 c->isdbt_sb_subchannel = 0;
1646 c->isdbt_sb_segment_idx = 0;
1647 c->isdbt_sb_segment_count = 0;
1648 c->isdbt_layer_enabled = 7;
1649 for (i = 0; i < 3; i++) {
1650 c->layer[i].fec = FEC_AUTO;
1651 c->layer[i].modulation = QAM_AUTO;
1652 c->layer[i].interleaving = 0;
1653 c->layer[i].segment_count = 0;
1656 dev_dbg(fe->dvb->device, "%s: change delivery system on cache to %d\n",
1657 __func__, c->delivery_system);
1663 * dvbv5_set_delivery_system - Sets the delivery system for a DVBv5 API call
1664 * @fe: frontend struct
1665 * @desired_system: delivery system requested by the user
1667 * A DVBv5 call know what's the desired system it wants. So, set it.
1669 * There are, however, a few known issues with early DVBv5 applications that
1670 * are also handled by this logic:
1672 * 1) Some early apps use SYS_UNDEFINED as the desired delivery system.
1673 * This is an API violation, but, as we don't want to break userspace,
1674 * convert it to the first supported delivery system.
1675 * 2) Some apps might be using a DVBv5 call in a wrong way, passing, for
1676 * example, SYS_DVBT instead of SYS_ISDBT. This is because early usage of
1677 * ISDB-T provided backward compat with DVB-T.
1679 static int dvbv5_set_delivery_system(struct dvb_frontend *fe,
1683 u32 delsys = SYS_UNDEFINED;
1684 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
1685 enum dvbv3_emulation_type type;
1688 * It was reported that some old DVBv5 applications were
1689 * filling delivery_system with SYS_UNDEFINED. If this happens,
1690 * assume that the application wants to use the first supported
1693 if (desired_system == SYS_UNDEFINED)
1694 desired_system = fe->ops.delsys[0];
1697 * This is a DVBv5 call. So, it likely knows the supported
1698 * delivery systems. So, check if the desired delivery system is
1702 while (ncaps < MAX_DELSYS && fe->ops.delsys[ncaps]) {
1703 if (fe->ops.delsys[ncaps] == desired_system) {
1704 c->delivery_system = desired_system;
1705 dev_dbg(fe->dvb->device,
1706 "%s: Changing delivery system to %d\n",
1707 __func__, desired_system);
1714 * The requested delivery system isn't supported. Maybe userspace
1715 * is requesting a DVBv3 compatible delivery system.
1717 * The emulation only works if the desired system is one of the
1718 * delivery systems supported by DVBv3 API
1720 if (!is_dvbv3_delsys(desired_system)) {
1721 dev_dbg(fe->dvb->device,
1722 "%s: Delivery system %d not supported.\n",
1723 __func__, desired_system);
1727 type = dvbv3_type(desired_system);
1730 * Get the last non-DVBv3 delivery system that has the same type
1731 * of the desired system
1734 while (ncaps < MAX_DELSYS && fe->ops.delsys[ncaps]) {
1735 if (dvbv3_type(fe->ops.delsys[ncaps]) == type)
1736 delsys = fe->ops.delsys[ncaps];
1740 /* There's nothing compatible with the desired delivery system */
1741 if (delsys == SYS_UNDEFINED) {
1742 dev_dbg(fe->dvb->device,
1743 "%s: Delivery system %d not supported on emulation mode.\n",
1744 __func__, desired_system);
1748 dev_dbg(fe->dvb->device,
1749 "%s: Using delivery system %d emulated as if it were %d\n",
1750 __func__, delsys, desired_system);
1752 return emulate_delivery_system(fe, desired_system);
1756 * dvbv3_set_delivery_system - Sets the delivery system for a DVBv3 API call
1757 * @fe: frontend struct
1759 * A DVBv3 call doesn't know what's the desired system it wants. It also
1760 * doesn't allow to switch between different types. Due to that, userspace
1761 * should use DVBv5 instead.
1762 * However, in order to avoid breaking userspace API, limited backward
1763 * compatibility support is provided.
1765 * There are some delivery systems that are incompatible with DVBv3 calls.
1767 * This routine should work fine for frontends that support just one delivery
1770 * For frontends that support multiple frontends:
1771 * 1) It defaults to use the first supported delivery system. There's an
1772 * userspace application that allows changing it at runtime;
1774 * 2) If the current delivery system is not compatible with DVBv3, it gets
1775 * the first one that it is compatible.
1777 * NOTE: in order for this to work with applications like Kaffeine that
1778 * uses a DVBv5 call for DVB-S2 and a DVBv3 call to go back to
1779 * DVB-S, drivers that support both DVB-S and DVB-S2 should have the
1780 * SYS_DVBS entry before the SYS_DVBS2, otherwise it won't switch back
1783 static int dvbv3_set_delivery_system(struct dvb_frontend *fe)
1786 u32 delsys = SYS_UNDEFINED;
1787 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
1789 /* If not set yet, defaults to the first supported delivery system */
1790 if (c->delivery_system == SYS_UNDEFINED)
1791 c->delivery_system = fe->ops.delsys[0];
1794 * Trivial case: just use the current one, if it already a DVBv3
1797 if (is_dvbv3_delsys(c->delivery_system)) {
1798 dev_dbg(fe->dvb->device,
1799 "%s: Using delivery system to %d\n",
1800 __func__, c->delivery_system);
1805 * Seek for the first delivery system that it is compatible with a
1809 while (ncaps < MAX_DELSYS && fe->ops.delsys[ncaps]) {
1810 if (dvbv3_type(fe->ops.delsys[ncaps]) != DVBV3_UNKNOWN) {
1811 delsys = fe->ops.delsys[ncaps];
1816 if (delsys == SYS_UNDEFINED) {
1817 dev_dbg(fe->dvb->device,
1818 "%s: Couldn't find a delivery system that works with FE_SET_FRONTEND\n",
1822 return emulate_delivery_system(fe, delsys);
1825 static void prepare_tuning_algo_parameters(struct dvb_frontend *fe)
1827 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
1828 struct dvb_frontend_private *fepriv = fe->frontend_priv;
1829 struct dvb_frontend_tune_settings fetunesettings = { 0 };
1831 /* get frontend-specific tuning settings */
1832 if (fe->ops.get_tune_settings && (fe->ops.get_tune_settings(fe, &fetunesettings) == 0)) {
1833 fepriv->min_delay = (fetunesettings.min_delay_ms * HZ) / 1000;
1834 fepriv->max_drift = fetunesettings.max_drift;
1835 fepriv->step_size = fetunesettings.step_size;
1837 /* default values */
1838 switch (c->delivery_system) {
1844 case SYS_DVBC_ANNEX_A:
1845 case SYS_DVBC_ANNEX_C:
1846 fepriv->min_delay = HZ / 20;
1847 fepriv->step_size = c->symbol_rate / 16000;
1848 fepriv->max_drift = c->symbol_rate / 2000;
1854 fepriv->min_delay = HZ / 20;
1855 fepriv->step_size = dvb_frontend_get_stepsize(fe) * 2;
1856 fepriv->max_drift = fepriv->step_size + 1;
1860 * FIXME: This sounds wrong! if freqency_stepsize is
1861 * defined by the frontend, why not use it???
1863 fepriv->min_delay = HZ / 20;
1864 fepriv->step_size = 0; /* no zigzag */
1865 fepriv->max_drift = 0;
1869 if (dvb_override_tune_delay > 0)
1870 fepriv->min_delay = (dvb_override_tune_delay * HZ) / 1000;
1874 * dtv_property_process_set - Sets a single DTV property
1875 * @fe: Pointer to &struct dvb_frontend
1876 * @file: Pointer to &struct file
1877 * @cmd: Digital TV command
1878 * @data: An unsigned 32-bits number
1880 * This routine assigns the property
1881 * value to the corresponding member of
1882 * &struct dtv_frontend_properties
1885 * Zero on success, negative errno on failure.
1887 static int dtv_property_process_set(struct dvb_frontend *fe,
1892 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
1894 /** Dump DTV command name and value*/
1895 if (!cmd || cmd > DTV_MAX_COMMAND)
1896 dev_warn(fe->dvb->device, "%s: SET cmd 0x%08x undefined\n",
1899 dev_dbg(fe->dvb->device,
1900 "%s: SET cmd 0x%08x (%s) to 0x%08x\n",
1901 __func__, cmd, dtv_cmd_name(cmd), data);
1905 * Reset a cache of data specific to the frontend here. This does
1906 * not effect hardware.
1908 dvb_frontend_clear_cache(fe);
1912 * Use the cached Digital TV properties to tune the
1915 dev_dbg(fe->dvb->device,
1916 "%s: Setting the frontend from property cache\n",
1919 r = dtv_set_frontend(fe);
1922 c->frequency = data;
1924 case DTV_MODULATION:
1925 c->modulation = data;
1927 case DTV_BANDWIDTH_HZ:
1928 c->bandwidth_hz = data;
1931 c->inversion = data;
1933 case DTV_SYMBOL_RATE:
1934 c->symbol_rate = data;
1937 c->fec_inner = data;
1945 case DTV_DELIVERY_SYSTEM:
1946 r = dvbv5_set_delivery_system(fe, data);
1950 r = dvb_frontend_handle_ioctl(file, FE_SET_VOLTAGE,
1951 (void *)c->voltage);
1955 r = dvb_frontend_handle_ioctl(file, FE_SET_TONE,
1956 (void *)c->sectone);
1958 case DTV_CODE_RATE_HP:
1959 c->code_rate_HP = data;
1961 case DTV_CODE_RATE_LP:
1962 c->code_rate_LP = data;
1964 case DTV_GUARD_INTERVAL:
1965 c->guard_interval = data;
1967 case DTV_TRANSMISSION_MODE:
1968 c->transmission_mode = data;
1971 c->hierarchy = data;
1973 case DTV_INTERLEAVING:
1974 c->interleaving = data;
1977 /* ISDB-T Support here */
1978 case DTV_ISDBT_PARTIAL_RECEPTION:
1979 c->isdbt_partial_reception = data;
1981 case DTV_ISDBT_SOUND_BROADCASTING:
1982 c->isdbt_sb_mode = data;
1984 case DTV_ISDBT_SB_SUBCHANNEL_ID:
1985 c->isdbt_sb_subchannel = data;
1987 case DTV_ISDBT_SB_SEGMENT_IDX:
1988 c->isdbt_sb_segment_idx = data;
1990 case DTV_ISDBT_SB_SEGMENT_COUNT:
1991 c->isdbt_sb_segment_count = data;
1993 case DTV_ISDBT_LAYER_ENABLED:
1994 c->isdbt_layer_enabled = data;
1996 case DTV_ISDBT_LAYERA_FEC:
1997 c->layer[0].fec = data;
1999 case DTV_ISDBT_LAYERA_MODULATION:
2000 c->layer[0].modulation = data;
2002 case DTV_ISDBT_LAYERA_SEGMENT_COUNT:
2003 c->layer[0].segment_count = data;
2005 case DTV_ISDBT_LAYERA_TIME_INTERLEAVING:
2006 c->layer[0].interleaving = data;
2008 case DTV_ISDBT_LAYERB_FEC:
2009 c->layer[1].fec = data;
2011 case DTV_ISDBT_LAYERB_MODULATION:
2012 c->layer[1].modulation = data;
2014 case DTV_ISDBT_LAYERB_SEGMENT_COUNT:
2015 c->layer[1].segment_count = data;
2017 case DTV_ISDBT_LAYERB_TIME_INTERLEAVING:
2018 c->layer[1].interleaving = data;
2020 case DTV_ISDBT_LAYERC_FEC:
2021 c->layer[2].fec = data;
2023 case DTV_ISDBT_LAYERC_MODULATION:
2024 c->layer[2].modulation = data;
2026 case DTV_ISDBT_LAYERC_SEGMENT_COUNT:
2027 c->layer[2].segment_count = data;
2029 case DTV_ISDBT_LAYERC_TIME_INTERLEAVING:
2030 c->layer[2].interleaving = data;
2033 /* Multistream support */
2035 case DTV_DVBT2_PLP_ID_LEGACY:
2036 c->stream_id = data;
2039 /* Physical layer scrambling support */
2040 case DTV_SCRAMBLING_SEQUENCE_INDEX:
2041 c->scrambling_sequence_index = data;
2045 case DTV_ATSCMH_PARADE_ID:
2046 fe->dtv_property_cache.atscmh_parade_id = data;
2048 case DTV_ATSCMH_RS_FRAME_ENSEMBLE:
2049 fe->dtv_property_cache.atscmh_rs_frame_ensemble = data;
2054 if (fe->ops.set_lna)
2055 r = fe->ops.set_lna(fe);
2067 static int dvb_frontend_do_ioctl(struct file *file, unsigned int cmd,
2070 struct dvb_device *dvbdev = file->private_data;
2071 struct dvb_frontend *fe = dvbdev->priv;
2072 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2075 dev_dbg(fe->dvb->device, "%s: (%d)\n", __func__, _IOC_NR(cmd));
2076 if (down_interruptible(&fepriv->sem))
2077 return -ERESTARTSYS;
2079 if (fe->exit != DVB_FE_NO_EXIT) {
2085 * If the frontend is opened in read-only mode, only the ioctls
2086 * that don't interfere with the tune logic should be accepted.
2087 * That allows an external application to monitor the DVB QoS and
2088 * statistics parameters.
2090 * That matches all _IOR() ioctls, except for two special cases:
2091 * - FE_GET_EVENT is part of the tuning logic on a DVB application;
2092 * - FE_DISEQC_RECV_SLAVE_REPLY is part of DiSEqC 2.0
2094 * So, those two ioctls should also return -EPERM, as otherwise
2095 * reading from them would interfere with a DVB tune application
2097 if ((file->f_flags & O_ACCMODE) == O_RDONLY
2098 && (_IOC_DIR(cmd) != _IOC_READ
2099 || cmd == FE_GET_EVENT
2100 || cmd == FE_DISEQC_RECV_SLAVE_REPLY)) {
2105 err = dvb_frontend_handle_ioctl(file, cmd, parg);
2111 static long dvb_frontend_ioctl(struct file *file, unsigned int cmd,
2114 struct dvb_device *dvbdev = file->private_data;
2119 return dvb_usercopy(file, cmd, arg, dvb_frontend_do_ioctl);
2122 #ifdef CONFIG_COMPAT
2123 struct compat_dtv_property {
2128 struct dtv_fe_stats st;
2133 compat_uptr_t reserved2;
2137 } __attribute__ ((packed));
2139 struct compat_dtv_properties {
2141 compat_uptr_t props;
2144 #define COMPAT_FE_SET_PROPERTY _IOW('o', 82, struct compat_dtv_properties)
2145 #define COMPAT_FE_GET_PROPERTY _IOR('o', 83, struct compat_dtv_properties)
2147 static int dvb_frontend_handle_compat_ioctl(struct file *file, unsigned int cmd,
2150 struct dvb_device *dvbdev = file->private_data;
2151 struct dvb_frontend *fe = dvbdev->priv;
2152 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2155 if (cmd == COMPAT_FE_SET_PROPERTY) {
2156 struct compat_dtv_properties prop, *tvps = NULL;
2157 struct compat_dtv_property *tvp = NULL;
2159 if (copy_from_user(&prop, compat_ptr(arg), sizeof(prop)))
2165 * Put an arbitrary limit on the number of messages that can
2168 if (!tvps->num || (tvps->num > DTV_IOCTL_MAX_MSGS))
2171 tvp = memdup_user(compat_ptr(tvps->props), tvps->num * sizeof(*tvp));
2173 return PTR_ERR(tvp);
2175 for (i = 0; i < tvps->num; i++) {
2176 err = dtv_property_process_set(fe, file,
2185 } else if (cmd == COMPAT_FE_GET_PROPERTY) {
2186 struct compat_dtv_properties prop, *tvps = NULL;
2187 struct compat_dtv_property *tvp = NULL;
2188 struct dtv_frontend_properties getp = fe->dtv_property_cache;
2190 if (copy_from_user(&prop, compat_ptr(arg), sizeof(prop)))
2196 * Put an arbitrary limit on the number of messages that can
2199 if (!tvps->num || (tvps->num > DTV_IOCTL_MAX_MSGS))
2202 tvp = memdup_user(compat_ptr(tvps->props), tvps->num * sizeof(*tvp));
2204 return PTR_ERR(tvp);
2207 * Let's use our own copy of property cache, in order to
2208 * avoid mangling with DTV zigzag logic, as drivers might
2209 * return crap, if they don't check if the data is available
2210 * before updating the properties cache.
2212 if (fepriv->state != FESTATE_IDLE) {
2213 err = dtv_get_frontend(fe, &getp, NULL);
2219 for (i = 0; i < tvps->num; i++) {
2220 err = dtv_property_process_get(
2221 fe, &getp, (struct dtv_property *)(tvp + i), file);
2228 if (copy_to_user((void __user *)compat_ptr(tvps->props), tvp,
2229 tvps->num * sizeof(struct compat_dtv_property))) {
2239 static long dvb_frontend_compat_ioctl(struct file *file, unsigned int cmd,
2242 struct dvb_device *dvbdev = file->private_data;
2243 struct dvb_frontend *fe = dvbdev->priv;
2244 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2247 if (cmd == COMPAT_FE_SET_PROPERTY || cmd == COMPAT_FE_GET_PROPERTY) {
2248 if (down_interruptible(&fepriv->sem))
2249 return -ERESTARTSYS;
2251 err = dvb_frontend_handle_compat_ioctl(file, cmd, arg);
2257 return dvb_frontend_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
2261 static int dtv_set_frontend(struct dvb_frontend *fe)
2263 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2264 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
2267 if (dvb_frontend_check_parameters(fe) < 0)
2271 * Initialize output parameters to match the values given by
2272 * the user. FE_SET_FRONTEND triggers an initial frontend event
2273 * with status = 0, which copies output parameters to userspace.
2275 dtv_property_legacy_params_sync(fe, c, &fepriv->parameters_out);
2278 * Be sure that the bandwidth will be filled for all
2279 * non-satellite systems, as tuners need to know what
2280 * low pass/Nyquist half filter should be applied, in
2281 * order to avoid inter-channel noise.
2283 * ISDB-T and DVB-T/T2 already sets bandwidth.
2284 * ATSC and DVB-C don't set, so, the core should fill it.
2286 * On DVB-C Annex A and C, the bandwidth is a function of
2287 * the roll-off and symbol rate. Annex B defines different
2288 * roll-off factors depending on the modulation. Fortunately,
2289 * Annex B is only used with 6MHz, so there's no need to
2292 * While not officially supported, a side effect of handling it at
2293 * the cache level is that a program could retrieve the bandwidth
2294 * via DTV_BANDWIDTH_HZ, which may be useful for test programs.
2296 switch (c->delivery_system) {
2298 case SYS_DVBC_ANNEX_B:
2299 c->bandwidth_hz = 6000000;
2301 case SYS_DVBC_ANNEX_A:
2304 case SYS_DVBC_ANNEX_C:
2316 switch (c->rolloff) {
2332 c->bandwidth_hz = mult_frac(c->symbol_rate, rolloff, 100);
2334 /* force auto frequency inversion if requested */
2335 if (dvb_force_auto_inversion)
2336 c->inversion = INVERSION_AUTO;
2339 * without hierarchical coding code_rate_LP is irrelevant,
2340 * so we tolerate the otherwise invalid FEC_NONE setting
2342 if (c->hierarchy == HIERARCHY_NONE && c->code_rate_LP == FEC_NONE)
2343 c->code_rate_LP = FEC_AUTO;
2345 prepare_tuning_algo_parameters(fe);
2347 fepriv->state = FESTATE_RETUNE;
2349 /* Request the search algorithm to search */
2350 fepriv->algo_status |= DVBFE_ALGO_SEARCH_AGAIN;
2352 dvb_frontend_clear_events(fe);
2353 dvb_frontend_add_event(fe, 0);
2354 dvb_frontend_wakeup(fe);
2360 static int dvb_get_property(struct dvb_frontend *fe, struct file *file,
2361 struct dtv_properties *tvps)
2363 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2364 struct dtv_property *tvp = NULL;
2365 struct dtv_frontend_properties getp;
2368 memcpy(&getp, &fe->dtv_property_cache, sizeof(getp));
2370 dev_dbg(fe->dvb->device, "%s: properties.num = %d\n",
2371 __func__, tvps->num);
2372 dev_dbg(fe->dvb->device, "%s: properties.props = %p\n",
2373 __func__, tvps->props);
2376 * Put an arbitrary limit on the number of messages that can
2379 if (!tvps->num || tvps->num > DTV_IOCTL_MAX_MSGS)
2382 tvp = memdup_user((void __user *)tvps->props, tvps->num * sizeof(*tvp));
2384 return PTR_ERR(tvp);
2387 * Let's use our own copy of property cache, in order to
2388 * avoid mangling with DTV zigzag logic, as drivers might
2389 * return crap, if they don't check if the data is available
2390 * before updating the properties cache.
2392 if (fepriv->state != FESTATE_IDLE) {
2393 err = dtv_get_frontend(fe, &getp, NULL);
2397 for (i = 0; i < tvps->num; i++) {
2398 err = dtv_property_process_get(fe, &getp,
2404 if (copy_to_user((void __user *)tvps->props, tvp,
2405 tvps->num * sizeof(struct dtv_property))) {
2416 static int dvb_get_frontend(struct dvb_frontend *fe,
2417 struct dvb_frontend_parameters *p_out)
2419 struct dtv_frontend_properties getp;
2422 * Let's use our own copy of property cache, in order to
2423 * avoid mangling with DTV zigzag logic, as drivers might
2424 * return crap, if they don't check if the data is available
2425 * before updating the properties cache.
2427 memcpy(&getp, &fe->dtv_property_cache, sizeof(getp));
2429 return dtv_get_frontend(fe, &getp, p_out);
2432 static int dvb_frontend_handle_ioctl(struct file *file,
2433 unsigned int cmd, void *parg)
2435 struct dvb_device *dvbdev = file->private_data;
2436 struct dvb_frontend *fe = dvbdev->priv;
2437 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2438 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
2439 int i, err = -ENOTSUPP;
2441 dev_dbg(fe->dvb->device, "%s:\n", __func__);
2444 case FE_SET_PROPERTY: {
2445 struct dtv_properties *tvps = parg;
2446 struct dtv_property *tvp = NULL;
2448 dev_dbg(fe->dvb->device, "%s: properties.num = %d\n",
2449 __func__, tvps->num);
2450 dev_dbg(fe->dvb->device, "%s: properties.props = %p\n",
2451 __func__, tvps->props);
2454 * Put an arbitrary limit on the number of messages that can
2457 if (!tvps->num || (tvps->num > DTV_IOCTL_MAX_MSGS))
2460 tvp = memdup_user((void __user *)tvps->props, tvps->num * sizeof(*tvp));
2462 return PTR_ERR(tvp);
2464 for (i = 0; i < tvps->num; i++) {
2465 err = dtv_property_process_set(fe, file,
2477 case FE_GET_PROPERTY:
2478 err = dvb_get_property(fe, file, parg);
2482 struct dvb_frontend_info *info = parg;
2483 memset(info, 0, sizeof(*info));
2485 strscpy(info->name, fe->ops.info.name, sizeof(info->name));
2486 info->symbol_rate_min = fe->ops.info.symbol_rate_min;
2487 info->symbol_rate_max = fe->ops.info.symbol_rate_max;
2488 info->symbol_rate_tolerance = fe->ops.info.symbol_rate_tolerance;
2489 info->caps = fe->ops.info.caps;
2490 info->frequency_stepsize = dvb_frontend_get_stepsize(fe);
2491 dvb_frontend_get_frequency_limits(fe, &info->frequency_min,
2492 &info->frequency_max,
2493 &info->frequency_tolerance);
2496 * Associate the 4 delivery systems supported by DVBv3
2497 * API with their DVBv5 counterpart. For the other standards,
2498 * use the closest type, assuming that it would hopefully
2499 * work with a DVBv3 application.
2500 * It should be noticed that, on multi-frontend devices with
2501 * different types (terrestrial and cable, for example),
2502 * a pure DVBv3 application won't be able to use all delivery
2503 * systems. Yet, changing the DVBv5 cache to the other delivery
2504 * system should be enough for making it work.
2506 switch (dvbv3_type(c->delivery_system)) {
2508 info->type = FE_QPSK;
2511 info->type = FE_ATSC;
2514 info->type = FE_QAM;
2517 info->type = FE_OFDM;
2520 dev_err(fe->dvb->device,
2521 "%s: doesn't know how to handle a DVBv3 call to delivery system %i\n",
2522 __func__, c->delivery_system);
2523 info->type = FE_OFDM;
2525 dev_dbg(fe->dvb->device, "%s: current delivery system on cache: %d, V3 type: %d\n",
2526 __func__, c->delivery_system, info->type);
2528 /* Set CAN_INVERSION_AUTO bit on in other than oneshot mode */
2529 if (!(fepriv->tune_mode_flags & FE_TUNE_MODE_ONESHOT))
2530 info->caps |= FE_CAN_INVERSION_AUTO;
2535 case FE_READ_STATUS: {
2536 enum fe_status *status = parg;
2538 /* if retune was requested but hasn't occurred yet, prevent
2539 * that user get signal state from previous tuning */
2540 if (fepriv->state == FESTATE_RETUNE ||
2541 fepriv->state == FESTATE_ERROR) {
2547 if (fe->ops.read_status)
2548 err = fe->ops.read_status(fe, status);
2552 case FE_DISEQC_RESET_OVERLOAD:
2553 if (fe->ops.diseqc_reset_overload) {
2554 err = fe->ops.diseqc_reset_overload(fe);
2555 fepriv->state = FESTATE_DISEQC;
2560 case FE_DISEQC_SEND_MASTER_CMD:
2561 if (fe->ops.diseqc_send_master_cmd) {
2562 struct dvb_diseqc_master_cmd *cmd = parg;
2564 if (cmd->msg_len > sizeof(cmd->msg)) {
2568 err = fe->ops.diseqc_send_master_cmd(fe, cmd);
2569 fepriv->state = FESTATE_DISEQC;
2574 case FE_DISEQC_SEND_BURST:
2575 if (fe->ops.diseqc_send_burst) {
2576 err = fe->ops.diseqc_send_burst(fe, (long)parg);
2577 fepriv->state = FESTATE_DISEQC;
2583 if (fe->ops.set_tone) {
2584 fepriv->tone = (long)parg;
2585 err = fe->ops.set_tone(fe, fepriv->tone);
2586 fepriv->state = FESTATE_DISEQC;
2591 case FE_SET_VOLTAGE:
2592 if (fe->ops.set_voltage) {
2593 fepriv->voltage = (long)parg;
2594 err = fe->ops.set_voltage(fe, fepriv->voltage);
2595 fepriv->state = FESTATE_DISEQC;
2600 case FE_DISEQC_RECV_SLAVE_REPLY:
2601 if (fe->ops.diseqc_recv_slave_reply)
2602 err = fe->ops.diseqc_recv_slave_reply(fe, parg);
2605 case FE_ENABLE_HIGH_LNB_VOLTAGE:
2606 if (fe->ops.enable_high_lnb_voltage)
2607 err = fe->ops.enable_high_lnb_voltage(fe, (long)parg);
2610 case FE_SET_FRONTEND_TUNE_MODE:
2611 fepriv->tune_mode_flags = (unsigned long)parg;
2614 /* DEPRECATED dish control ioctls */
2616 case FE_DISHNETWORK_SEND_LEGACY_CMD:
2617 if (fe->ops.dishnetwork_send_legacy_command) {
2618 err = fe->ops.dishnetwork_send_legacy_command(fe,
2619 (unsigned long)parg);
2620 fepriv->state = FESTATE_DISEQC;
2622 } else if (fe->ops.set_voltage) {
2624 * NOTE: This is a fallback condition. Some frontends
2625 * (stv0299 for instance) take longer than 8msec to
2626 * respond to a set_voltage command. Those switches
2627 * need custom routines to switch properly. For all
2628 * other frontends, the following should work ok.
2629 * Dish network legacy switches (as used by Dish500)
2630 * are controlled by sending 9-bit command words
2631 * spaced 8msec apart.
2632 * the actual command word is switch/port dependent
2633 * so it is up to the userspace application to send
2634 * the right command.
2635 * The command must always start with a '0' after
2636 * initialization, so parg is 8 bits and does not
2637 * include the initialization or start bit
2639 unsigned long swcmd = ((unsigned long)parg) << 1;
2645 if (dvb_frontend_debug)
2646 dprintk("switch command: 0x%04lx\n",
2648 nexttime = ktime_get_boottime();
2649 if (dvb_frontend_debug)
2651 /* before sending a command, initialize by sending
2652 * a 32ms 18V to the switch
2654 fe->ops.set_voltage(fe, SEC_VOLTAGE_18);
2655 dvb_frontend_sleep_until(&nexttime, 32000);
2657 for (i = 0; i < 9; i++) {
2658 if (dvb_frontend_debug)
2659 tv[i + 1] = ktime_get_boottime();
2660 if ((swcmd & 0x01) != last) {
2661 /* set voltage to (last ? 13V : 18V) */
2662 fe->ops.set_voltage(fe, (last) ? SEC_VOLTAGE_13 : SEC_VOLTAGE_18);
2663 last = (last) ? 0 : 1;
2667 dvb_frontend_sleep_until(&nexttime, 8000);
2669 if (dvb_frontend_debug) {
2670 dprintk("(adapter %d): switch delay (should be 32k followed by all 8k)\n",
2672 for (i = 1; i < 10; i++)
2673 pr_info("%d: %d\n", i,
2674 (int)ktime_us_delta(tv[i], tv[i - 1]));
2677 fepriv->state = FESTATE_DISEQC;
2682 /* DEPRECATED statistics ioctls */
2685 if (fe->ops.read_ber) {
2687 err = fe->ops.read_ber(fe, parg);
2693 case FE_READ_SIGNAL_STRENGTH:
2694 if (fe->ops.read_signal_strength) {
2696 err = fe->ops.read_signal_strength(fe, parg);
2703 if (fe->ops.read_snr) {
2705 err = fe->ops.read_snr(fe, parg);
2711 case FE_READ_UNCORRECTED_BLOCKS:
2712 if (fe->ops.read_ucblocks) {
2714 err = fe->ops.read_ucblocks(fe, parg);
2720 /* DEPRECATED DVBv3 ioctls */
2722 case FE_SET_FRONTEND:
2723 err = dvbv3_set_delivery_system(fe);
2727 err = dtv_property_cache_sync(fe, c, parg);
2730 err = dtv_set_frontend(fe);
2734 err = dvb_frontend_get_event(fe, parg, file->f_flags);
2737 case FE_GET_FRONTEND:
2738 err = dvb_get_frontend(fe, parg);
2748 static __poll_t dvb_frontend_poll(struct file *file, struct poll_table_struct *wait)
2750 struct dvb_device *dvbdev = file->private_data;
2751 struct dvb_frontend *fe = dvbdev->priv;
2752 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2754 dev_dbg_ratelimited(fe->dvb->device, "%s:\n", __func__);
2756 poll_wait(file, &fepriv->events.wait_queue, wait);
2758 if (fepriv->events.eventw != fepriv->events.eventr)
2759 return (EPOLLIN | EPOLLRDNORM | EPOLLPRI);
2764 static int dvb_frontend_open(struct inode *inode, struct file *file)
2766 struct dvb_device *dvbdev = file->private_data;
2767 struct dvb_frontend *fe = dvbdev->priv;
2768 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2769 struct dvb_adapter *adapter = fe->dvb;
2772 dev_dbg(fe->dvb->device, "%s:\n", __func__);
2773 if (fe->exit == DVB_FE_DEVICE_REMOVED)
2776 if (adapter->mfe_shared == 2) {
2777 mutex_lock(&adapter->mfe_lock);
2778 if ((file->f_flags & O_ACCMODE) != O_RDONLY) {
2779 if (adapter->mfe_dvbdev &&
2780 !adapter->mfe_dvbdev->writers) {
2781 mutex_unlock(&adapter->mfe_lock);
2784 adapter->mfe_dvbdev = dvbdev;
2786 } else if (adapter->mfe_shared) {
2787 mutex_lock(&adapter->mfe_lock);
2789 if (!adapter->mfe_dvbdev)
2790 adapter->mfe_dvbdev = dvbdev;
2792 else if (adapter->mfe_dvbdev != dvbdev) {
2794 *mfedev = adapter->mfe_dvbdev;
2796 *mfe = mfedev->priv;
2797 struct dvb_frontend_private
2798 *mfepriv = mfe->frontend_priv;
2799 int mferetry = (dvb_mfe_wait_time << 1);
2801 mutex_unlock(&adapter->mfe_lock);
2802 while (mferetry-- && (mfedev->users != -1 ||
2804 if (msleep_interruptible(500)) {
2805 if (signal_pending(current))
2810 mutex_lock(&adapter->mfe_lock);
2811 if (adapter->mfe_dvbdev != dvbdev) {
2812 mfedev = adapter->mfe_dvbdev;
2814 mfepriv = mfe->frontend_priv;
2815 if (mfedev->users != -1 ||
2817 mutex_unlock(&adapter->mfe_lock);
2820 adapter->mfe_dvbdev = dvbdev;
2825 if (dvbdev->users == -1 && fe->ops.ts_bus_ctrl) {
2826 if ((ret = fe->ops.ts_bus_ctrl(fe, 1)) < 0)
2829 /* If we took control of the bus, we need to force
2830 reinitialization. This is because many ts_bus_ctrl()
2831 functions strobe the RESET pin on the demod, and if the
2832 frontend thread already exists then the dvb_init() routine
2833 won't get called (which is what usually does initial
2834 register configuration). */
2835 fepriv->reinitialise = 1;
2838 if ((ret = dvb_generic_open(inode, file)) < 0)
2841 if ((file->f_flags & O_ACCMODE) != O_RDONLY) {
2842 /* normal tune mode when opened R/W */
2843 fepriv->tune_mode_flags &= ~FE_TUNE_MODE_ONESHOT;
2845 fepriv->voltage = -1;
2847 #ifdef CONFIG_MEDIA_CONTROLLER_DVB
2848 mutex_lock(&fe->dvb->mdev_lock);
2849 if (fe->dvb->mdev) {
2850 mutex_lock(&fe->dvb->mdev->graph_mutex);
2851 if (fe->dvb->mdev->enable_source)
2852 ret = fe->dvb->mdev->enable_source(
2855 mutex_unlock(&fe->dvb->mdev->graph_mutex);
2857 mutex_unlock(&fe->dvb->mdev_lock);
2858 dev_err(fe->dvb->device,
2859 "Tuner is busy. Error %d\n", ret);
2863 mutex_unlock(&fe->dvb->mdev_lock);
2865 ret = dvb_frontend_start(fe);
2869 /* empty event queue */
2870 fepriv->events.eventr = fepriv->events.eventw = 0;
2873 dvb_frontend_get(fe);
2875 if (adapter->mfe_shared)
2876 mutex_unlock(&adapter->mfe_lock);
2880 #ifdef CONFIG_MEDIA_CONTROLLER_DVB
2881 mutex_lock(&fe->dvb->mdev_lock);
2882 if (fe->dvb->mdev) {
2883 mutex_lock(&fe->dvb->mdev->graph_mutex);
2884 if (fe->dvb->mdev->disable_source)
2885 fe->dvb->mdev->disable_source(dvbdev->entity);
2886 mutex_unlock(&fe->dvb->mdev->graph_mutex);
2888 mutex_unlock(&fe->dvb->mdev_lock);
2891 dvb_generic_release(inode, file);
2893 if (dvbdev->users == -1 && fe->ops.ts_bus_ctrl)
2894 fe->ops.ts_bus_ctrl(fe, 0);
2896 if (adapter->mfe_shared)
2897 mutex_unlock(&adapter->mfe_lock);
2901 static int dvb_frontend_release(struct inode *inode, struct file *file)
2903 struct dvb_device *dvbdev = file->private_data;
2904 struct dvb_frontend *fe = dvbdev->priv;
2905 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2908 dev_dbg(fe->dvb->device, "%s:\n", __func__);
2910 if ((file->f_flags & O_ACCMODE) != O_RDONLY) {
2911 fepriv->release_jiffies = jiffies;
2915 ret = dvb_generic_release(inode, file);
2917 if (dvbdev->users == -1) {
2918 wake_up(&fepriv->wait_queue);
2919 #ifdef CONFIG_MEDIA_CONTROLLER_DVB
2920 mutex_lock(&fe->dvb->mdev_lock);
2921 if (fe->dvb->mdev) {
2922 mutex_lock(&fe->dvb->mdev->graph_mutex);
2923 if (fe->dvb->mdev->disable_source)
2924 fe->dvb->mdev->disable_source(dvbdev->entity);
2925 mutex_unlock(&fe->dvb->mdev->graph_mutex);
2927 mutex_unlock(&fe->dvb->mdev_lock);
2929 if (fe->exit != DVB_FE_NO_EXIT)
2930 wake_up(&dvbdev->wait_queue);
2931 if (fe->ops.ts_bus_ctrl)
2932 fe->ops.ts_bus_ctrl(fe, 0);
2935 dvb_frontend_put(fe);
2940 static const struct file_operations dvb_frontend_fops = {
2941 .owner = THIS_MODULE,
2942 .unlocked_ioctl = dvb_frontend_ioctl,
2943 #ifdef CONFIG_COMPAT
2944 .compat_ioctl = dvb_frontend_compat_ioctl,
2946 .poll = dvb_frontend_poll,
2947 .open = dvb_frontend_open,
2948 .release = dvb_frontend_release,
2949 .llseek = noop_llseek,
2952 int dvb_frontend_suspend(struct dvb_frontend *fe)
2956 dev_dbg(fe->dvb->device, "%s: adap=%d fe=%d\n", __func__, fe->dvb->num,
2959 if (fe->ops.tuner_ops.suspend)
2960 ret = fe->ops.tuner_ops.suspend(fe);
2961 else if (fe->ops.tuner_ops.sleep)
2962 ret = fe->ops.tuner_ops.sleep(fe);
2964 if (fe->ops.suspend)
2965 ret = fe->ops.suspend(fe);
2966 else if (fe->ops.sleep)
2967 ret = fe->ops.sleep(fe);
2971 EXPORT_SYMBOL(dvb_frontend_suspend);
2973 int dvb_frontend_resume(struct dvb_frontend *fe)
2975 struct dvb_frontend_private *fepriv = fe->frontend_priv;
2978 dev_dbg(fe->dvb->device, "%s: adap=%d fe=%d\n", __func__, fe->dvb->num,
2981 fe->exit = DVB_FE_DEVICE_RESUME;
2983 ret = fe->ops.resume(fe);
2984 else if (fe->ops.init)
2985 ret = fe->ops.init(fe);
2987 if (fe->ops.tuner_ops.resume)
2988 ret = fe->ops.tuner_ops.resume(fe);
2989 else if (fe->ops.tuner_ops.init)
2990 ret = fe->ops.tuner_ops.init(fe);
2992 if (fe->ops.set_tone && fepriv->tone != -1)
2993 fe->ops.set_tone(fe, fepriv->tone);
2994 if (fe->ops.set_voltage && fepriv->voltage != -1)
2995 fe->ops.set_voltage(fe, fepriv->voltage);
2997 fe->exit = DVB_FE_NO_EXIT;
2998 fepriv->state = FESTATE_RETUNE;
2999 dvb_frontend_wakeup(fe);
3003 EXPORT_SYMBOL(dvb_frontend_resume);
3005 int dvb_register_frontend(struct dvb_adapter *dvb,
3006 struct dvb_frontend *fe)
3008 struct dvb_frontend_private *fepriv;
3009 const struct dvb_device dvbdev_template = {
3012 .readers = (~0) - 1,
3013 .fops = &dvb_frontend_fops,
3014 #if defined(CONFIG_MEDIA_CONTROLLER_DVB)
3015 .name = fe->ops.info.name,
3020 dev_dbg(dvb->device, "%s:\n", __func__);
3022 if (mutex_lock_interruptible(&frontend_mutex))
3023 return -ERESTARTSYS;
3025 fe->frontend_priv = kzalloc(sizeof(struct dvb_frontend_private), GFP_KERNEL);
3026 if (!fe->frontend_priv) {
3027 mutex_unlock(&frontend_mutex);
3030 fepriv = fe->frontend_priv;
3032 kref_init(&fe->refcount);
3035 * After initialization, there need to be two references: one
3036 * for dvb_unregister_frontend(), and another one for
3037 * dvb_frontend_detach().
3039 dvb_frontend_get(fe);
3041 sema_init(&fepriv->sem, 1);
3042 init_waitqueue_head(&fepriv->wait_queue);
3043 init_waitqueue_head(&fepriv->events.wait_queue);
3044 mutex_init(&fepriv->events.mtx);
3046 fepriv->inversion = INVERSION_OFF;
3048 dev_info(fe->dvb->device,
3049 "DVB: registering adapter %i frontend %i (%s)...\n",
3050 fe->dvb->num, fe->id, fe->ops.info.name);
3052 ret = dvb_register_device(fe->dvb, &fepriv->dvbdev, &dvbdev_template,
3053 fe, DVB_DEVICE_FRONTEND, 0);
3055 dvb_frontend_put(fe);
3056 mutex_unlock(&frontend_mutex);
3061 * Initialize the cache to the proper values according with the
3062 * first supported delivery system (ops->delsys[0])
3065 fe->dtv_property_cache.delivery_system = fe->ops.delsys[0];
3066 dvb_frontend_clear_cache(fe);
3068 mutex_unlock(&frontend_mutex);
3071 EXPORT_SYMBOL(dvb_register_frontend);
3073 int dvb_unregister_frontend(struct dvb_frontend *fe)
3075 struct dvb_frontend_private *fepriv = fe->frontend_priv;
3077 dev_dbg(fe->dvb->device, "%s:\n", __func__);
3079 mutex_lock(&frontend_mutex);
3080 dvb_frontend_stop(fe);
3081 dvb_remove_device(fepriv->dvbdev);
3083 /* fe is invalid now */
3084 mutex_unlock(&frontend_mutex);
3085 dvb_frontend_put(fe);
3088 EXPORT_SYMBOL(dvb_unregister_frontend);
3090 static void dvb_frontend_invoke_release(struct dvb_frontend *fe,
3091 void (*release)(struct dvb_frontend *fe))
3095 #ifdef CONFIG_MEDIA_ATTACH
3096 dvb_detach(release);
3101 void dvb_frontend_detach(struct dvb_frontend *fe)
3103 dvb_frontend_invoke_release(fe, fe->ops.release_sec);
3104 dvb_frontend_invoke_release(fe, fe->ops.tuner_ops.release);
3105 dvb_frontend_invoke_release(fe, fe->ops.analog_ops.release);
3106 dvb_frontend_put(fe);
3108 EXPORT_SYMBOL(dvb_frontend_detach);