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
)
155 /* call detach before dropping the reference count */
159 * Check if the frontend was registered, as otherwise
160 * kref was not initialized yet.
162 if (fe
->frontend_priv
)
163 kref_put(&fe
->refcount
, dvb_frontend_free
);
165 __dvb_frontend_free(fe
);
168 static void dvb_frontend_get(struct dvb_frontend
*fe
)
170 kref_get(&fe
->refcount
);
173 static void dvb_frontend_wakeup(struct dvb_frontend
*fe
);
174 static int dtv_get_frontend(struct dvb_frontend
*fe
,
175 struct dtv_frontend_properties
*c
,
176 struct dvb_frontend_parameters
*p_out
);
178 dtv_property_legacy_params_sync(struct dvb_frontend
*fe
,
179 const struct dtv_frontend_properties
*c
,
180 struct dvb_frontend_parameters
*p
);
182 static bool has_get_frontend(struct dvb_frontend
*fe
)
184 return fe
->ops
.get_frontend
;
188 * Due to DVBv3 API calls, a delivery system should be mapped into one of
189 * the 4 DVBv3 delivery systems (FE_QPSK, FE_QAM, FE_OFDM or FE_ATSC),
190 * otherwise, a DVBv3 call will fail.
192 enum dvbv3_emulation_type
{
200 static enum dvbv3_emulation_type
dvbv3_type(u32 delivery_system
)
202 switch (delivery_system
) {
203 case SYS_DVBC_ANNEX_A
:
204 case SYS_DVBC_ANNEX_C
:
219 case SYS_DVBC_ANNEX_B
:
227 * Doesn't know how to emulate those types and/or
228 * there's no frontend driver from this type yet
229 * with some emulation code, so, we're not sure yet how
230 * to handle them, or they're not compatible with a DVBv3 call.
232 return DVBV3_UNKNOWN
;
236 static void dvb_frontend_add_event(struct dvb_frontend
*fe
,
237 enum fe_status status
)
239 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
240 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
241 struct dvb_fe_events
*events
= &fepriv
->events
;
242 struct dvb_frontend_event
*e
;
245 dev_dbg(fe
->dvb
->device
, "%s:\n", __func__
);
247 if ((status
& FE_HAS_LOCK
) && has_get_frontend(fe
))
248 dtv_get_frontend(fe
, c
, &fepriv
->parameters_out
);
250 mutex_lock(&events
->mtx
);
252 wp
= (events
->eventw
+ 1) % MAX_EVENT
;
253 if (wp
== events
->eventr
) {
254 events
->overflow
= 1;
255 events
->eventr
= (events
->eventr
+ 1) % MAX_EVENT
;
258 e
= &events
->events
[events
->eventw
];
260 e
->parameters
= fepriv
->parameters_out
;
264 mutex_unlock(&events
->mtx
);
266 wake_up_interruptible(&events
->wait_queue
);
269 static int dvb_frontend_test_event(struct dvb_frontend_private
*fepriv
,
270 struct dvb_fe_events
*events
)
275 ret
= events
->eventw
!= events
->eventr
;
281 static int dvb_frontend_get_event(struct dvb_frontend
*fe
,
282 struct dvb_frontend_event
*event
, int flags
)
284 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
285 struct dvb_fe_events
*events
= &fepriv
->events
;
287 dev_dbg(fe
->dvb
->device
, "%s:\n", __func__
);
289 if (events
->overflow
) {
290 events
->overflow
= 0;
294 if (events
->eventw
== events
->eventr
) {
297 if (flags
& O_NONBLOCK
)
300 ret
= wait_event_interruptible(events
->wait_queue
,
301 dvb_frontend_test_event(fepriv
, events
));
307 mutex_lock(&events
->mtx
);
308 *event
= events
->events
[events
->eventr
];
309 events
->eventr
= (events
->eventr
+ 1) % MAX_EVENT
;
310 mutex_unlock(&events
->mtx
);
315 static void dvb_frontend_clear_events(struct dvb_frontend
*fe
)
317 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
318 struct dvb_fe_events
*events
= &fepriv
->events
;
320 mutex_lock(&events
->mtx
);
321 events
->eventr
= events
->eventw
;
322 mutex_unlock(&events
->mtx
);
325 static void dvb_frontend_init(struct dvb_frontend
*fe
)
327 dev_dbg(fe
->dvb
->device
,
328 "%s: initialising adapter %i frontend %i (%s)...\n",
329 __func__
, fe
->dvb
->num
, fe
->id
, fe
->ops
.info
.name
);
333 if (fe
->ops
.tuner_ops
.init
) {
334 if (fe
->ops
.i2c_gate_ctrl
)
335 fe
->ops
.i2c_gate_ctrl(fe
, 1);
336 fe
->ops
.tuner_ops
.init(fe
);
337 if (fe
->ops
.i2c_gate_ctrl
)
338 fe
->ops
.i2c_gate_ctrl(fe
, 0);
342 void dvb_frontend_reinitialise(struct dvb_frontend
*fe
)
344 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
346 fepriv
->reinitialise
= 1;
347 dvb_frontend_wakeup(fe
);
349 EXPORT_SYMBOL(dvb_frontend_reinitialise
);
351 static void dvb_frontend_swzigzag_update_delay(struct dvb_frontend_private
*fepriv
, int locked
)
354 struct dvb_frontend
*fe
= fepriv
->dvbdev
->priv
;
356 dev_dbg(fe
->dvb
->device
, "%s:\n", __func__
);
359 (fepriv
->quality
) = (fepriv
->quality
* 220 + 36 * 256) / 256;
361 (fepriv
->quality
) = (fepriv
->quality
* 220 + 0) / 256;
363 q2
= fepriv
->quality
- 128;
366 fepriv
->delay
= fepriv
->min_delay
+ q2
* HZ
/ (128 * 128);
370 * dvb_frontend_swzigzag_autotune - Performs automatic twiddling of frontend
373 * @fe: The frontend concerned.
374 * @check_wrapped: Checks if an iteration has completed.
375 * DO NOT SET ON THE FIRST ATTEMPT.
377 * return: Number of complete iterations that have been performed.
379 static int dvb_frontend_swzigzag_autotune(struct dvb_frontend
*fe
, int check_wrapped
)
384 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
385 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
, tmp
;
386 int original_inversion
= c
->inversion
;
387 u32 original_frequency
= c
->frequency
;
389 /* are we using autoinversion? */
390 autoinversion
= ((!(fe
->ops
.info
.caps
& FE_CAN_INVERSION_AUTO
)) &&
391 (c
->inversion
== INVERSION_AUTO
));
393 /* setup parameters correctly */
395 /* calculate the lnb_drift */
396 fepriv
->lnb_drift
= fepriv
->auto_step
* fepriv
->step_size
;
398 /* wrap the auto_step if we've exceeded the maximum drift */
399 if (fepriv
->lnb_drift
> fepriv
->max_drift
) {
400 fepriv
->auto_step
= 0;
401 fepriv
->auto_sub_step
= 0;
402 fepriv
->lnb_drift
= 0;
405 /* perform inversion and +/- zigzag */
406 switch (fepriv
->auto_sub_step
) {
408 /* try with the current inversion and current drift setting */
413 if (!autoinversion
) break;
415 fepriv
->inversion
= (fepriv
->inversion
== INVERSION_OFF
) ? INVERSION_ON
: INVERSION_OFF
;
420 if (fepriv
->lnb_drift
== 0) break;
422 fepriv
->lnb_drift
= -fepriv
->lnb_drift
;
427 if (fepriv
->lnb_drift
== 0) break;
428 if (!autoinversion
) break;
430 fepriv
->inversion
= (fepriv
->inversion
== INVERSION_OFF
) ? INVERSION_ON
: INVERSION_OFF
;
431 fepriv
->lnb_drift
= -fepriv
->lnb_drift
;
437 fepriv
->auto_sub_step
= -1; /* it'll be incremented to 0 in a moment */
441 if (!ready
) fepriv
->auto_sub_step
++;
444 /* if this attempt would hit where we started, indicate a complete
445 * iteration has occurred */
446 if ((fepriv
->auto_step
== fepriv
->started_auto_step
) &&
447 (fepriv
->auto_sub_step
== 0) && check_wrapped
) {
451 dev_dbg(fe
->dvb
->device
,
452 "%s: drift:%i inversion:%i auto_step:%i auto_sub_step:%i started_auto_step:%i\n",
453 __func__
, fepriv
->lnb_drift
, fepriv
->inversion
,
454 fepriv
->auto_step
, fepriv
->auto_sub_step
,
455 fepriv
->started_auto_step
);
457 /* set the frontend itself */
458 c
->frequency
+= fepriv
->lnb_drift
;
460 c
->inversion
= fepriv
->inversion
;
462 if (fe
->ops
.set_frontend
)
463 fe_set_err
= fe
->ops
.set_frontend(fe
);
465 if (fe_set_err
< 0) {
466 fepriv
->state
= FESTATE_ERROR
;
470 c
->frequency
= original_frequency
;
471 c
->inversion
= original_inversion
;
473 fepriv
->auto_sub_step
++;
477 static void dvb_frontend_swzigzag(struct dvb_frontend
*fe
)
479 enum fe_status s
= FE_NONE
;
481 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
482 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
, tmp
;
484 /* if we've got no parameters, just keep idling */
485 if (fepriv
->state
& FESTATE_IDLE
) {
486 fepriv
->delay
= 3 * HZ
;
491 /* in SCAN mode, we just set the frontend when asked and leave it alone */
492 if (fepriv
->tune_mode_flags
& FE_TUNE_MODE_ONESHOT
) {
493 if (fepriv
->state
& FESTATE_RETUNE
) {
495 if (fe
->ops
.set_frontend
)
496 retval
= fe
->ops
.set_frontend(fe
);
499 fepriv
->state
= FESTATE_ERROR
;
501 fepriv
->state
= FESTATE_TUNED
;
503 fepriv
->delay
= 3 * HZ
;
508 /* get the frontend status */
509 if (fepriv
->state
& FESTATE_RETUNE
) {
512 if (fe
->ops
.read_status
)
513 fe
->ops
.read_status(fe
, &s
);
514 if (s
!= fepriv
->status
) {
515 dvb_frontend_add_event(fe
, s
);
520 /* if we're not tuned, and we have a lock, move to the TUNED state */
521 if ((fepriv
->state
& FESTATE_WAITFORLOCK
) && (s
& FE_HAS_LOCK
)) {
522 dvb_frontend_swzigzag_update_delay(fepriv
, s
& FE_HAS_LOCK
);
523 fepriv
->state
= FESTATE_TUNED
;
525 /* if we're tuned, then we have determined the correct inversion */
526 if ((!(fe
->ops
.info
.caps
& FE_CAN_INVERSION_AUTO
)) &&
527 (c
->inversion
== INVERSION_AUTO
)) {
528 c
->inversion
= fepriv
->inversion
;
533 /* if we are tuned already, check we're still locked */
534 if (fepriv
->state
& FESTATE_TUNED
) {
535 dvb_frontend_swzigzag_update_delay(fepriv
, s
& FE_HAS_LOCK
);
537 /* we're tuned, and the lock is still good... */
538 if (s
& FE_HAS_LOCK
) {
540 } else { /* if we _WERE_ tuned, but now don't have a lock */
541 fepriv
->state
= FESTATE_ZIGZAG_FAST
;
542 fepriv
->started_auto_step
= fepriv
->auto_step
;
543 fepriv
->check_wrapped
= 0;
547 /* don't actually do anything if we're in the LOSTLOCK state,
548 * the frontend is set to FE_CAN_RECOVER, and the max_drift is 0 */
549 if ((fepriv
->state
& FESTATE_LOSTLOCK
) &&
550 (fe
->ops
.info
.caps
& FE_CAN_RECOVER
) && (fepriv
->max_drift
== 0)) {
551 dvb_frontend_swzigzag_update_delay(fepriv
, s
& FE_HAS_LOCK
);
555 /* don't do anything if we're in the DISEQC state, since this
556 * might be someone with a motorized dish controlled by DISEQC.
557 * If its actually a re-tune, there will be a SET_FRONTEND soon enough. */
558 if (fepriv
->state
& FESTATE_DISEQC
) {
559 dvb_frontend_swzigzag_update_delay(fepriv
, s
& FE_HAS_LOCK
);
563 /* if we're in the RETUNE state, set everything up for a brand
564 * new scan, keeping the current inversion setting, as the next
565 * tune is _very_ likely to require the same */
566 if (fepriv
->state
& FESTATE_RETUNE
) {
567 fepriv
->lnb_drift
= 0;
568 fepriv
->auto_step
= 0;
569 fepriv
->auto_sub_step
= 0;
570 fepriv
->started_auto_step
= 0;
571 fepriv
->check_wrapped
= 0;
575 if ((fepriv
->state
& FESTATE_SEARCHING_FAST
) || (fepriv
->state
& FESTATE_RETUNE
)) {
576 fepriv
->delay
= fepriv
->min_delay
;
579 retval
= dvb_frontend_swzigzag_autotune(fe
,
580 fepriv
->check_wrapped
);
584 /* OK, if we've run out of trials at the fast speed.
585 * Drop back to slow for the _next_ attempt */
586 fepriv
->state
= FESTATE_SEARCHING_SLOW
;
587 fepriv
->started_auto_step
= fepriv
->auto_step
;
590 fepriv
->check_wrapped
= 1;
592 /* if we've just re-tuned, enter the ZIGZAG_FAST state.
593 * This ensures we cannot return from an
594 * FE_SET_FRONTEND ioctl before the first frontend tune
596 if (fepriv
->state
& FESTATE_RETUNE
) {
597 fepriv
->state
= FESTATE_TUNING_FAST
;
602 if (fepriv
->state
& FESTATE_SEARCHING_SLOW
) {
603 dvb_frontend_swzigzag_update_delay(fepriv
, s
& FE_HAS_LOCK
);
605 /* Note: don't bother checking for wrapping; we stay in this
606 * state until we get a lock */
607 dvb_frontend_swzigzag_autotune(fe
, 0);
611 static int dvb_frontend_is_exiting(struct dvb_frontend
*fe
)
613 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
615 if (fe
->exit
!= DVB_FE_NO_EXIT
)
618 if (fepriv
->dvbdev
->writers
== 1)
619 if (time_after_eq(jiffies
, fepriv
->release_jiffies
+
620 dvb_shutdown_timeout
* HZ
))
626 static int dvb_frontend_should_wakeup(struct dvb_frontend
*fe
)
628 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
630 if (fepriv
->wakeup
) {
634 return dvb_frontend_is_exiting(fe
);
637 static void dvb_frontend_wakeup(struct dvb_frontend
*fe
)
639 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
642 wake_up_interruptible(&fepriv
->wait_queue
);
645 static int dvb_frontend_thread(void *data
)
647 struct dvb_frontend
*fe
= data
;
648 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
649 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
650 enum fe_status s
= FE_NONE
;
651 enum dvbfe_algo algo
;
652 bool re_tune
= false;
653 bool semheld
= false;
655 dev_dbg(fe
->dvb
->device
, "%s:\n", __func__
);
657 fepriv
->check_wrapped
= 0;
659 fepriv
->delay
= 3 * HZ
;
662 fepriv
->reinitialise
= 0;
664 dvb_frontend_init(fe
);
668 up(&fepriv
->sem
); /* is locked when we enter the thread... */
670 wait_event_interruptible_timeout(fepriv
->wait_queue
,
671 dvb_frontend_should_wakeup(fe
) ||
672 kthread_should_stop() ||
676 if (kthread_should_stop() || dvb_frontend_is_exiting(fe
)) {
677 /* got signal or quitting */
678 if (!down_interruptible(&fepriv
->sem
))
680 fe
->exit
= DVB_FE_NORMAL_EXIT
;
687 if (down_interruptible(&fepriv
->sem
))
690 if (fepriv
->reinitialise
) {
691 dvb_frontend_init(fe
);
692 if (fe
->ops
.set_tone
&& fepriv
->tone
!= -1)
693 fe
->ops
.set_tone(fe
, fepriv
->tone
);
694 if (fe
->ops
.set_voltage
&& fepriv
->voltage
!= -1)
695 fe
->ops
.set_voltage(fe
, fepriv
->voltage
);
696 fepriv
->reinitialise
= 0;
699 /* do an iteration of the tuning loop */
700 if (fe
->ops
.get_frontend_algo
) {
701 algo
= fe
->ops
.get_frontend_algo(fe
);
704 dev_dbg(fe
->dvb
->device
, "%s: Frontend ALGO = DVBFE_ALGO_HW\n", __func__
);
706 if (fepriv
->state
& FESTATE_RETUNE
) {
707 dev_dbg(fe
->dvb
->device
, "%s: Retune requested, FESTATE_RETUNE\n", __func__
);
709 fepriv
->state
= FESTATE_TUNED
;
715 fe
->ops
.tune(fe
, re_tune
, fepriv
->tune_mode_flags
, &fepriv
->delay
, &s
);
717 if (s
!= fepriv
->status
&& !(fepriv
->tune_mode_flags
& FE_TUNE_MODE_ONESHOT
)) {
718 dev_dbg(fe
->dvb
->device
, "%s: state changed, adding current state\n", __func__
);
719 dvb_frontend_add_event(fe
, s
);
724 dev_dbg(fe
->dvb
->device
, "%s: Frontend ALGO = DVBFE_ALGO_SW\n", __func__
);
725 dvb_frontend_swzigzag(fe
);
727 case DVBFE_ALGO_CUSTOM
:
728 dev_dbg(fe
->dvb
->device
, "%s: Frontend ALGO = DVBFE_ALGO_CUSTOM, state=%d\n", __func__
, fepriv
->state
);
729 if (fepriv
->state
& FESTATE_RETUNE
) {
730 dev_dbg(fe
->dvb
->device
, "%s: Retune requested, FESTAT_RETUNE\n", __func__
);
731 fepriv
->state
= FESTATE_TUNED
;
733 /* Case where we are going to search for a carrier
734 * User asked us to retune again for some reason, possibly
735 * requesting a search with a new set of parameters
737 if (fepriv
->algo_status
& DVBFE_ALGO_SEARCH_AGAIN
) {
738 if (fe
->ops
.search
) {
739 fepriv
->algo_status
= fe
->ops
.search(fe
);
740 /* We did do a search as was requested, the flags are
741 * now unset as well and has the flags wrt to search.
744 fepriv
->algo_status
&= ~DVBFE_ALGO_SEARCH_AGAIN
;
747 /* Track the carrier if the search was successful */
748 if (fepriv
->algo_status
!= DVBFE_ALGO_SEARCH_SUCCESS
) {
749 fepriv
->algo_status
|= DVBFE_ALGO_SEARCH_AGAIN
;
750 fepriv
->delay
= HZ
/ 2;
752 dtv_property_legacy_params_sync(fe
, c
, &fepriv
->parameters_out
);
753 fe
->ops
.read_status(fe
, &s
);
754 if (s
!= fepriv
->status
) {
755 dvb_frontend_add_event(fe
, s
); /* update event list */
757 if (!(s
& FE_HAS_LOCK
)) {
758 fepriv
->delay
= HZ
/ 10;
759 fepriv
->algo_status
|= DVBFE_ALGO_SEARCH_AGAIN
;
761 fepriv
->delay
= 60 * HZ
;
766 dev_dbg(fe
->dvb
->device
, "%s: UNDEFINED ALGO !\n", __func__
);
770 dvb_frontend_swzigzag(fe
);
774 if (dvb_powerdown_on_sleep
) {
775 if (fe
->ops
.set_voltage
)
776 fe
->ops
.set_voltage(fe
, SEC_VOLTAGE_OFF
);
777 if (fe
->ops
.tuner_ops
.sleep
) {
778 if (fe
->ops
.i2c_gate_ctrl
)
779 fe
->ops
.i2c_gate_ctrl(fe
, 1);
780 fe
->ops
.tuner_ops
.sleep(fe
);
781 if (fe
->ops
.i2c_gate_ctrl
)
782 fe
->ops
.i2c_gate_ctrl(fe
, 0);
788 fepriv
->thread
= NULL
;
789 if (kthread_should_stop())
790 fe
->exit
= DVB_FE_DEVICE_REMOVED
;
792 fe
->exit
= DVB_FE_NO_EXIT
;
797 dvb_frontend_wakeup(fe
);
801 static void dvb_frontend_stop(struct dvb_frontend
*fe
)
803 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
805 dev_dbg(fe
->dvb
->device
, "%s:\n", __func__
);
807 if (fe
->exit
!= DVB_FE_DEVICE_REMOVED
)
808 fe
->exit
= DVB_FE_NORMAL_EXIT
;
814 kthread_stop(fepriv
->thread
);
816 sema_init(&fepriv
->sem
, 1);
817 fepriv
->state
= FESTATE_IDLE
;
819 /* paranoia check in case a signal arrived */
821 dev_warn(fe
->dvb
->device
,
822 "dvb_frontend_stop: warning: thread %p won't exit\n",
827 * Sleep for the amount of time given by add_usec parameter
829 * This needs to be as precise as possible, as it affects the detection of
830 * the dish tone command at the satellite subsystem. The precision is improved
831 * by using a scheduled msleep followed by udelay for the remainder.
833 void dvb_frontend_sleep_until(ktime_t
*waketime
, u32 add_usec
)
837 *waketime
= ktime_add_us(*waketime
, add_usec
);
838 delta
= ktime_us_delta(ktime_get_boottime(), *waketime
);
840 msleep((delta
- 1500) / 1000);
841 delta
= ktime_us_delta(ktime_get_boottime(), *waketime
);
846 EXPORT_SYMBOL(dvb_frontend_sleep_until
);
848 static int dvb_frontend_start(struct dvb_frontend
*fe
)
851 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
852 struct task_struct
*fe_thread
;
854 dev_dbg(fe
->dvb
->device
, "%s:\n", __func__
);
856 if (fepriv
->thread
) {
857 if (fe
->exit
== DVB_FE_NO_EXIT
)
860 dvb_frontend_stop(fe
);
863 if (signal_pending(current
))
865 if (down_interruptible(&fepriv
->sem
))
868 fepriv
->state
= FESTATE_IDLE
;
869 fe
->exit
= DVB_FE_NO_EXIT
;
870 fepriv
->thread
= NULL
;
873 fe_thread
= kthread_run(dvb_frontend_thread
, fe
,
874 "kdvb-ad-%i-fe-%i", fe
->dvb
->num
, fe
->id
);
875 if (IS_ERR(fe_thread
)) {
876 ret
= PTR_ERR(fe_thread
);
877 dev_warn(fe
->dvb
->device
,
878 "dvb_frontend_start: failed to start kthread (%d)\n",
883 fepriv
->thread
= fe_thread
;
887 static void dvb_frontend_get_frequency_limits(struct dvb_frontend
*fe
,
888 u32
*freq_min
, u32
*freq_max
,
891 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
892 u32 tuner_min
= fe
->ops
.tuner_ops
.info
.frequency_min_hz
;
893 u32 tuner_max
= fe
->ops
.tuner_ops
.info
.frequency_max_hz
;
894 u32 frontend_min
= fe
->ops
.info
.frequency_min_hz
;
895 u32 frontend_max
= fe
->ops
.info
.frequency_max_hz
;
897 *freq_min
= max(frontend_min
, tuner_min
);
899 if (frontend_max
== 0)
900 *freq_max
= tuner_max
;
901 else if (tuner_max
== 0)
902 *freq_max
= frontend_max
;
904 *freq_max
= min(frontend_max
, tuner_max
);
906 if (*freq_min
== 0 || *freq_max
== 0)
907 dev_warn(fe
->dvb
->device
,
908 "DVB: adapter %i frontend %u frequency limits undefined - fix the driver\n",
909 fe
->dvb
->num
, fe
->id
);
911 dev_dbg(fe
->dvb
->device
, "frequency interval: tuner: %u...%u, frontend: %u...%u",
912 tuner_min
, tuner_max
, frontend_min
, frontend_max
);
914 /* If the standard is for satellite, convert frequencies to kHz */
915 switch (c
->delivery_system
) {
923 *tolerance
= fe
->ops
.info
.frequency_tolerance_hz
/ kHz
;
928 *tolerance
= fe
->ops
.info
.frequency_tolerance_hz
;
933 static u32
dvb_frontend_get_stepsize(struct dvb_frontend
*fe
)
935 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
936 u32 fe_step
= fe
->ops
.info
.frequency_stepsize_hz
;
937 u32 tuner_step
= fe
->ops
.tuner_ops
.info
.frequency_step_hz
;
938 u32 step
= max(fe_step
, tuner_step
);
940 switch (c
->delivery_system
) {
954 static int dvb_frontend_check_parameters(struct dvb_frontend
*fe
)
956 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
960 /* range check: frequency */
961 dvb_frontend_get_frequency_limits(fe
, &freq_min
, &freq_max
, NULL
);
962 if ((freq_min
&& c
->frequency
< freq_min
) ||
963 (freq_max
&& c
->frequency
> freq_max
)) {
964 dev_warn(fe
->dvb
->device
, "DVB: adapter %i frontend %i frequency %u out of range (%u..%u)\n",
965 fe
->dvb
->num
, fe
->id
, c
->frequency
,
970 /* range check: symbol rate */
971 switch (c
->delivery_system
) {
975 case SYS_DVBC_ANNEX_A
:
976 case SYS_DVBC_ANNEX_C
:
977 if ((fe
->ops
.info
.symbol_rate_min
&&
978 c
->symbol_rate
< fe
->ops
.info
.symbol_rate_min
) ||
979 (fe
->ops
.info
.symbol_rate_max
&&
980 c
->symbol_rate
> fe
->ops
.info
.symbol_rate_max
)) {
981 dev_warn(fe
->dvb
->device
, "DVB: adapter %i frontend %i symbol rate %u out of range (%u..%u)\n",
982 fe
->dvb
->num
, fe
->id
, c
->symbol_rate
,
983 fe
->ops
.info
.symbol_rate_min
,
984 fe
->ops
.info
.symbol_rate_max
);
994 static int dvb_frontend_clear_cache(struct dvb_frontend
*fe
)
996 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
1000 delsys
= c
->delivery_system
;
1001 memset(c
, 0, offsetof(struct dtv_frontend_properties
, strength
));
1002 c
->delivery_system
= delsys
;
1004 dev_dbg(fe
->dvb
->device
, "%s: Clearing cache for delivery system %d\n",
1005 __func__
, c
->delivery_system
);
1007 c
->transmission_mode
= TRANSMISSION_MODE_AUTO
;
1008 c
->bandwidth_hz
= 0; /* AUTO */
1009 c
->guard_interval
= GUARD_INTERVAL_AUTO
;
1010 c
->hierarchy
= HIERARCHY_AUTO
;
1012 c
->code_rate_HP
= FEC_AUTO
;
1013 c
->code_rate_LP
= FEC_AUTO
;
1014 c
->fec_inner
= FEC_AUTO
;
1015 c
->rolloff
= ROLLOFF_AUTO
;
1016 c
->voltage
= SEC_VOLTAGE_OFF
;
1017 c
->sectone
= SEC_TONE_OFF
;
1018 c
->pilot
= PILOT_AUTO
;
1020 c
->isdbt_partial_reception
= 0;
1021 c
->isdbt_sb_mode
= 0;
1022 c
->isdbt_sb_subchannel
= 0;
1023 c
->isdbt_sb_segment_idx
= 0;
1024 c
->isdbt_sb_segment_count
= 0;
1025 c
->isdbt_layer_enabled
= 7; /* All layers (A,B,C) */
1026 for (i
= 0; i
< 3; i
++) {
1027 c
->layer
[i
].fec
= FEC_AUTO
;
1028 c
->layer
[i
].modulation
= QAM_AUTO
;
1029 c
->layer
[i
].interleaving
= 0;
1030 c
->layer
[i
].segment_count
= 0;
1033 c
->stream_id
= NO_STREAM_ID_FILTER
;
1034 c
->scrambling_sequence_index
= 0;/* default sequence */
1036 switch (c
->delivery_system
) {
1040 c
->modulation
= QPSK
; /* implied for DVB-S in legacy API */
1041 c
->rolloff
= ROLLOFF_35
;/* implied for DVB-S */
1044 c
->modulation
= VSB_8
;
1047 c
->symbol_rate
= 28860000;
1048 c
->rolloff
= ROLLOFF_35
;
1049 c
->bandwidth_hz
= c
->symbol_rate
/ 100 * 135;
1052 c
->modulation
= QAM_AUTO
;
1061 #define _DTV_CMD(n, s, b) \
1070 char *name
; /* A display name for debugging purposes */
1072 __u32 cmd
; /* A unique ID */
1075 __u32 set
:1; /* Either a set or get property */
1076 __u32 buffer
:1; /* Does this property use the buffer? */
1077 __u32 reserved
:30; /* Align */
1080 static struct dtv_cmds_h dtv_cmds
[DTV_MAX_COMMAND
+ 1] = {
1081 _DTV_CMD(DTV_TUNE
, 1, 0),
1082 _DTV_CMD(DTV_CLEAR
, 1, 0),
1085 _DTV_CMD(DTV_FREQUENCY
, 1, 0),
1086 _DTV_CMD(DTV_BANDWIDTH_HZ
, 1, 0),
1087 _DTV_CMD(DTV_MODULATION
, 1, 0),
1088 _DTV_CMD(DTV_INVERSION
, 1, 0),
1089 _DTV_CMD(DTV_DISEQC_MASTER
, 1, 1),
1090 _DTV_CMD(DTV_SYMBOL_RATE
, 1, 0),
1091 _DTV_CMD(DTV_INNER_FEC
, 1, 0),
1092 _DTV_CMD(DTV_VOLTAGE
, 1, 0),
1093 _DTV_CMD(DTV_TONE
, 1, 0),
1094 _DTV_CMD(DTV_PILOT
, 1, 0),
1095 _DTV_CMD(DTV_ROLLOFF
, 1, 0),
1096 _DTV_CMD(DTV_DELIVERY_SYSTEM
, 1, 0),
1097 _DTV_CMD(DTV_HIERARCHY
, 1, 0),
1098 _DTV_CMD(DTV_CODE_RATE_HP
, 1, 0),
1099 _DTV_CMD(DTV_CODE_RATE_LP
, 1, 0),
1100 _DTV_CMD(DTV_GUARD_INTERVAL
, 1, 0),
1101 _DTV_CMD(DTV_TRANSMISSION_MODE
, 1, 0),
1102 _DTV_CMD(DTV_INTERLEAVING
, 1, 0),
1104 _DTV_CMD(DTV_ISDBT_PARTIAL_RECEPTION
, 1, 0),
1105 _DTV_CMD(DTV_ISDBT_SOUND_BROADCASTING
, 1, 0),
1106 _DTV_CMD(DTV_ISDBT_SB_SUBCHANNEL_ID
, 1, 0),
1107 _DTV_CMD(DTV_ISDBT_SB_SEGMENT_IDX
, 1, 0),
1108 _DTV_CMD(DTV_ISDBT_SB_SEGMENT_COUNT
, 1, 0),
1109 _DTV_CMD(DTV_ISDBT_LAYER_ENABLED
, 1, 0),
1110 _DTV_CMD(DTV_ISDBT_LAYERA_FEC
, 1, 0),
1111 _DTV_CMD(DTV_ISDBT_LAYERA_MODULATION
, 1, 0),
1112 _DTV_CMD(DTV_ISDBT_LAYERA_SEGMENT_COUNT
, 1, 0),
1113 _DTV_CMD(DTV_ISDBT_LAYERA_TIME_INTERLEAVING
, 1, 0),
1114 _DTV_CMD(DTV_ISDBT_LAYERB_FEC
, 1, 0),
1115 _DTV_CMD(DTV_ISDBT_LAYERB_MODULATION
, 1, 0),
1116 _DTV_CMD(DTV_ISDBT_LAYERB_SEGMENT_COUNT
, 1, 0),
1117 _DTV_CMD(DTV_ISDBT_LAYERB_TIME_INTERLEAVING
, 1, 0),
1118 _DTV_CMD(DTV_ISDBT_LAYERC_FEC
, 1, 0),
1119 _DTV_CMD(DTV_ISDBT_LAYERC_MODULATION
, 1, 0),
1120 _DTV_CMD(DTV_ISDBT_LAYERC_SEGMENT_COUNT
, 1, 0),
1121 _DTV_CMD(DTV_ISDBT_LAYERC_TIME_INTERLEAVING
, 1, 0),
1123 _DTV_CMD(DTV_STREAM_ID
, 1, 0),
1124 _DTV_CMD(DTV_DVBT2_PLP_ID_LEGACY
, 1, 0),
1125 _DTV_CMD(DTV_SCRAMBLING_SEQUENCE_INDEX
, 1, 0),
1126 _DTV_CMD(DTV_LNA
, 1, 0),
1129 _DTV_CMD(DTV_DISEQC_SLAVE_REPLY
, 0, 1),
1130 _DTV_CMD(DTV_API_VERSION
, 0, 0),
1132 _DTV_CMD(DTV_ENUM_DELSYS
, 0, 0),
1134 _DTV_CMD(DTV_ATSCMH_PARADE_ID
, 1, 0),
1135 _DTV_CMD(DTV_ATSCMH_RS_FRAME_ENSEMBLE
, 1, 0),
1137 _DTV_CMD(DTV_ATSCMH_FIC_VER
, 0, 0),
1138 _DTV_CMD(DTV_ATSCMH_NOG
, 0, 0),
1139 _DTV_CMD(DTV_ATSCMH_TNOG
, 0, 0),
1140 _DTV_CMD(DTV_ATSCMH_SGN
, 0, 0),
1141 _DTV_CMD(DTV_ATSCMH_PRC
, 0, 0),
1142 _DTV_CMD(DTV_ATSCMH_RS_FRAME_MODE
, 0, 0),
1143 _DTV_CMD(DTV_ATSCMH_RS_CODE_MODE_PRI
, 0, 0),
1144 _DTV_CMD(DTV_ATSCMH_RS_CODE_MODE_SEC
, 0, 0),
1145 _DTV_CMD(DTV_ATSCMH_SCCC_BLOCK_MODE
, 0, 0),
1146 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_A
, 0, 0),
1147 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_B
, 0, 0),
1148 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_C
, 0, 0),
1149 _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_D
, 0, 0),
1151 /* Statistics API */
1152 _DTV_CMD(DTV_STAT_SIGNAL_STRENGTH
, 0, 0),
1153 _DTV_CMD(DTV_STAT_CNR
, 0, 0),
1154 _DTV_CMD(DTV_STAT_PRE_ERROR_BIT_COUNT
, 0, 0),
1155 _DTV_CMD(DTV_STAT_PRE_TOTAL_BIT_COUNT
, 0, 0),
1156 _DTV_CMD(DTV_STAT_POST_ERROR_BIT_COUNT
, 0, 0),
1157 _DTV_CMD(DTV_STAT_POST_TOTAL_BIT_COUNT
, 0, 0),
1158 _DTV_CMD(DTV_STAT_ERROR_BLOCK_COUNT
, 0, 0),
1159 _DTV_CMD(DTV_STAT_TOTAL_BLOCK_COUNT
, 0, 0),
1162 /* Synchronise the legacy tuning parameters into the cache, so that demodulator
1163 * drivers can use a single set_frontend tuning function, regardless of whether
1164 * it's being used for the legacy or new API, reducing code and complexity.
1166 static int dtv_property_cache_sync(struct dvb_frontend
*fe
,
1167 struct dtv_frontend_properties
*c
,
1168 const struct dvb_frontend_parameters
*p
)
1170 c
->frequency
= p
->frequency
;
1171 c
->inversion
= p
->inversion
;
1173 switch (dvbv3_type(c
->delivery_system
)) {
1175 dev_dbg(fe
->dvb
->device
, "%s: Preparing QPSK req\n", __func__
);
1176 c
->symbol_rate
= p
->u
.qpsk
.symbol_rate
;
1177 c
->fec_inner
= p
->u
.qpsk
.fec_inner
;
1180 dev_dbg(fe
->dvb
->device
, "%s: Preparing QAM req\n", __func__
);
1181 c
->symbol_rate
= p
->u
.qam
.symbol_rate
;
1182 c
->fec_inner
= p
->u
.qam
.fec_inner
;
1183 c
->modulation
= p
->u
.qam
.modulation
;
1186 dev_dbg(fe
->dvb
->device
, "%s: Preparing OFDM req\n", __func__
);
1188 switch (p
->u
.ofdm
.bandwidth
) {
1189 case BANDWIDTH_10_MHZ
:
1190 c
->bandwidth_hz
= 10000000;
1192 case BANDWIDTH_8_MHZ
:
1193 c
->bandwidth_hz
= 8000000;
1195 case BANDWIDTH_7_MHZ
:
1196 c
->bandwidth_hz
= 7000000;
1198 case BANDWIDTH_6_MHZ
:
1199 c
->bandwidth_hz
= 6000000;
1201 case BANDWIDTH_5_MHZ
:
1202 c
->bandwidth_hz
= 5000000;
1204 case BANDWIDTH_1_712_MHZ
:
1205 c
->bandwidth_hz
= 1712000;
1207 case BANDWIDTH_AUTO
:
1208 c
->bandwidth_hz
= 0;
1211 c
->code_rate_HP
= p
->u
.ofdm
.code_rate_HP
;
1212 c
->code_rate_LP
= p
->u
.ofdm
.code_rate_LP
;
1213 c
->modulation
= p
->u
.ofdm
.constellation
;
1214 c
->transmission_mode
= p
->u
.ofdm
.transmission_mode
;
1215 c
->guard_interval
= p
->u
.ofdm
.guard_interval
;
1216 c
->hierarchy
= p
->u
.ofdm
.hierarchy_information
;
1219 dev_dbg(fe
->dvb
->device
, "%s: Preparing ATSC req\n", __func__
);
1220 c
->modulation
= p
->u
.vsb
.modulation
;
1221 if (c
->delivery_system
== SYS_ATSCMH
)
1223 if ((c
->modulation
== VSB_8
) || (c
->modulation
== VSB_16
))
1224 c
->delivery_system
= SYS_ATSC
;
1226 c
->delivery_system
= SYS_DVBC_ANNEX_B
;
1229 dev_err(fe
->dvb
->device
,
1230 "%s: doesn't know how to handle a DVBv3 call to delivery system %i\n",
1231 __func__
, c
->delivery_system
);
1238 /* Ensure the cached values are set correctly in the frontend
1239 * legacy tuning structures, for the advanced tuning API.
1242 dtv_property_legacy_params_sync(struct dvb_frontend
*fe
,
1243 const struct dtv_frontend_properties
*c
,
1244 struct dvb_frontend_parameters
*p
)
1246 p
->frequency
= c
->frequency
;
1247 p
->inversion
= c
->inversion
;
1249 switch (dvbv3_type(c
->delivery_system
)) {
1251 dev_err(fe
->dvb
->device
,
1252 "%s: doesn't know how to handle a DVBv3 call to delivery system %i\n",
1253 __func__
, c
->delivery_system
);
1256 dev_dbg(fe
->dvb
->device
, "%s: Preparing QPSK req\n", __func__
);
1257 p
->u
.qpsk
.symbol_rate
= c
->symbol_rate
;
1258 p
->u
.qpsk
.fec_inner
= c
->fec_inner
;
1261 dev_dbg(fe
->dvb
->device
, "%s: Preparing QAM req\n", __func__
);
1262 p
->u
.qam
.symbol_rate
= c
->symbol_rate
;
1263 p
->u
.qam
.fec_inner
= c
->fec_inner
;
1264 p
->u
.qam
.modulation
= c
->modulation
;
1267 dev_dbg(fe
->dvb
->device
, "%s: Preparing OFDM req\n", __func__
);
1268 switch (c
->bandwidth_hz
) {
1270 p
->u
.ofdm
.bandwidth
= BANDWIDTH_10_MHZ
;
1273 p
->u
.ofdm
.bandwidth
= BANDWIDTH_8_MHZ
;
1276 p
->u
.ofdm
.bandwidth
= BANDWIDTH_7_MHZ
;
1279 p
->u
.ofdm
.bandwidth
= BANDWIDTH_6_MHZ
;
1282 p
->u
.ofdm
.bandwidth
= BANDWIDTH_5_MHZ
;
1285 p
->u
.ofdm
.bandwidth
= BANDWIDTH_1_712_MHZ
;
1289 p
->u
.ofdm
.bandwidth
= BANDWIDTH_AUTO
;
1291 p
->u
.ofdm
.code_rate_HP
= c
->code_rate_HP
;
1292 p
->u
.ofdm
.code_rate_LP
= c
->code_rate_LP
;
1293 p
->u
.ofdm
.constellation
= c
->modulation
;
1294 p
->u
.ofdm
.transmission_mode
= c
->transmission_mode
;
1295 p
->u
.ofdm
.guard_interval
= c
->guard_interval
;
1296 p
->u
.ofdm
.hierarchy_information
= c
->hierarchy
;
1299 dev_dbg(fe
->dvb
->device
, "%s: Preparing VSB req\n", __func__
);
1300 p
->u
.vsb
.modulation
= c
->modulation
;
1307 * dtv_get_frontend - calls a callback for retrieving DTV parameters
1308 * @fe: struct dvb_frontend pointer
1309 * @c: struct dtv_frontend_properties pointer (DVBv5 cache)
1310 * @p_out: struct dvb_frontend_parameters pointer (DVBv3 FE struct)
1312 * This routine calls either the DVBv3 or DVBv5 get_frontend call.
1313 * If c is not null, it will update the DVBv5 cache struct pointed by it.
1314 * If p_out is not null, it will update the DVBv3 params pointed by it.
1316 static int dtv_get_frontend(struct dvb_frontend
*fe
,
1317 struct dtv_frontend_properties
*c
,
1318 struct dvb_frontend_parameters
*p_out
)
1322 if (fe
->ops
.get_frontend
) {
1323 r
= fe
->ops
.get_frontend(fe
, c
);
1324 if (unlikely(r
< 0))
1327 dtv_property_legacy_params_sync(fe
, c
, p_out
);
1331 /* As everything is in cache, get_frontend fops are always supported */
1335 static int dvb_frontend_handle_ioctl(struct file
*file
,
1336 unsigned int cmd
, void *parg
);
1338 static int dtv_property_process_get(struct dvb_frontend
*fe
,
1339 const struct dtv_frontend_properties
*c
,
1340 struct dtv_property
*tvp
,
1346 case DTV_ENUM_DELSYS
:
1348 while (ncaps
< MAX_DELSYS
&& fe
->ops
.delsys
[ncaps
]) {
1349 tvp
->u
.buffer
.data
[ncaps
] = fe
->ops
.delsys
[ncaps
];
1352 tvp
->u
.buffer
.len
= ncaps
;
1355 tvp
->u
.data
= c
->frequency
;
1357 case DTV_MODULATION
:
1358 tvp
->u
.data
= c
->modulation
;
1360 case DTV_BANDWIDTH_HZ
:
1361 tvp
->u
.data
= c
->bandwidth_hz
;
1364 tvp
->u
.data
= c
->inversion
;
1366 case DTV_SYMBOL_RATE
:
1367 tvp
->u
.data
= c
->symbol_rate
;
1370 tvp
->u
.data
= c
->fec_inner
;
1373 tvp
->u
.data
= c
->pilot
;
1376 tvp
->u
.data
= c
->rolloff
;
1378 case DTV_DELIVERY_SYSTEM
:
1379 tvp
->u
.data
= c
->delivery_system
;
1382 tvp
->u
.data
= c
->voltage
;
1385 tvp
->u
.data
= c
->sectone
;
1387 case DTV_API_VERSION
:
1388 tvp
->u
.data
= (DVB_API_VERSION
<< 8) | DVB_API_VERSION_MINOR
;
1390 case DTV_CODE_RATE_HP
:
1391 tvp
->u
.data
= c
->code_rate_HP
;
1393 case DTV_CODE_RATE_LP
:
1394 tvp
->u
.data
= c
->code_rate_LP
;
1396 case DTV_GUARD_INTERVAL
:
1397 tvp
->u
.data
= c
->guard_interval
;
1399 case DTV_TRANSMISSION_MODE
:
1400 tvp
->u
.data
= c
->transmission_mode
;
1403 tvp
->u
.data
= c
->hierarchy
;
1405 case DTV_INTERLEAVING
:
1406 tvp
->u
.data
= c
->interleaving
;
1409 /* ISDB-T Support here */
1410 case DTV_ISDBT_PARTIAL_RECEPTION
:
1411 tvp
->u
.data
= c
->isdbt_partial_reception
;
1413 case DTV_ISDBT_SOUND_BROADCASTING
:
1414 tvp
->u
.data
= c
->isdbt_sb_mode
;
1416 case DTV_ISDBT_SB_SUBCHANNEL_ID
:
1417 tvp
->u
.data
= c
->isdbt_sb_subchannel
;
1419 case DTV_ISDBT_SB_SEGMENT_IDX
:
1420 tvp
->u
.data
= c
->isdbt_sb_segment_idx
;
1422 case DTV_ISDBT_SB_SEGMENT_COUNT
:
1423 tvp
->u
.data
= c
->isdbt_sb_segment_count
;
1425 case DTV_ISDBT_LAYER_ENABLED
:
1426 tvp
->u
.data
= c
->isdbt_layer_enabled
;
1428 case DTV_ISDBT_LAYERA_FEC
:
1429 tvp
->u
.data
= c
->layer
[0].fec
;
1431 case DTV_ISDBT_LAYERA_MODULATION
:
1432 tvp
->u
.data
= c
->layer
[0].modulation
;
1434 case DTV_ISDBT_LAYERA_SEGMENT_COUNT
:
1435 tvp
->u
.data
= c
->layer
[0].segment_count
;
1437 case DTV_ISDBT_LAYERA_TIME_INTERLEAVING
:
1438 tvp
->u
.data
= c
->layer
[0].interleaving
;
1440 case DTV_ISDBT_LAYERB_FEC
:
1441 tvp
->u
.data
= c
->layer
[1].fec
;
1443 case DTV_ISDBT_LAYERB_MODULATION
:
1444 tvp
->u
.data
= c
->layer
[1].modulation
;
1446 case DTV_ISDBT_LAYERB_SEGMENT_COUNT
:
1447 tvp
->u
.data
= c
->layer
[1].segment_count
;
1449 case DTV_ISDBT_LAYERB_TIME_INTERLEAVING
:
1450 tvp
->u
.data
= c
->layer
[1].interleaving
;
1452 case DTV_ISDBT_LAYERC_FEC
:
1453 tvp
->u
.data
= c
->layer
[2].fec
;
1455 case DTV_ISDBT_LAYERC_MODULATION
:
1456 tvp
->u
.data
= c
->layer
[2].modulation
;
1458 case DTV_ISDBT_LAYERC_SEGMENT_COUNT
:
1459 tvp
->u
.data
= c
->layer
[2].segment_count
;
1461 case DTV_ISDBT_LAYERC_TIME_INTERLEAVING
:
1462 tvp
->u
.data
= c
->layer
[2].interleaving
;
1465 /* Multistream support */
1467 case DTV_DVBT2_PLP_ID_LEGACY
:
1468 tvp
->u
.data
= c
->stream_id
;
1471 /* Physical layer scrambling support */
1472 case DTV_SCRAMBLING_SEQUENCE_INDEX
:
1473 tvp
->u
.data
= c
->scrambling_sequence_index
;
1477 case DTV_ATSCMH_FIC_VER
:
1478 tvp
->u
.data
= fe
->dtv_property_cache
.atscmh_fic_ver
;
1480 case DTV_ATSCMH_PARADE_ID
:
1481 tvp
->u
.data
= fe
->dtv_property_cache
.atscmh_parade_id
;
1483 case DTV_ATSCMH_NOG
:
1484 tvp
->u
.data
= fe
->dtv_property_cache
.atscmh_nog
;
1486 case DTV_ATSCMH_TNOG
:
1487 tvp
->u
.data
= fe
->dtv_property_cache
.atscmh_tnog
;
1489 case DTV_ATSCMH_SGN
:
1490 tvp
->u
.data
= fe
->dtv_property_cache
.atscmh_sgn
;
1492 case DTV_ATSCMH_PRC
:
1493 tvp
->u
.data
= fe
->dtv_property_cache
.atscmh_prc
;
1495 case DTV_ATSCMH_RS_FRAME_MODE
:
1496 tvp
->u
.data
= fe
->dtv_property_cache
.atscmh_rs_frame_mode
;
1498 case DTV_ATSCMH_RS_FRAME_ENSEMBLE
:
1499 tvp
->u
.data
= fe
->dtv_property_cache
.atscmh_rs_frame_ensemble
;
1501 case DTV_ATSCMH_RS_CODE_MODE_PRI
:
1502 tvp
->u
.data
= fe
->dtv_property_cache
.atscmh_rs_code_mode_pri
;
1504 case DTV_ATSCMH_RS_CODE_MODE_SEC
:
1505 tvp
->u
.data
= fe
->dtv_property_cache
.atscmh_rs_code_mode_sec
;
1507 case DTV_ATSCMH_SCCC_BLOCK_MODE
:
1508 tvp
->u
.data
= fe
->dtv_property_cache
.atscmh_sccc_block_mode
;
1510 case DTV_ATSCMH_SCCC_CODE_MODE_A
:
1511 tvp
->u
.data
= fe
->dtv_property_cache
.atscmh_sccc_code_mode_a
;
1513 case DTV_ATSCMH_SCCC_CODE_MODE_B
:
1514 tvp
->u
.data
= fe
->dtv_property_cache
.atscmh_sccc_code_mode_b
;
1516 case DTV_ATSCMH_SCCC_CODE_MODE_C
:
1517 tvp
->u
.data
= fe
->dtv_property_cache
.atscmh_sccc_code_mode_c
;
1519 case DTV_ATSCMH_SCCC_CODE_MODE_D
:
1520 tvp
->u
.data
= fe
->dtv_property_cache
.atscmh_sccc_code_mode_d
;
1524 tvp
->u
.data
= c
->lna
;
1527 /* Fill quality measures */
1528 case DTV_STAT_SIGNAL_STRENGTH
:
1529 tvp
->u
.st
= c
->strength
;
1534 case DTV_STAT_PRE_ERROR_BIT_COUNT
:
1535 tvp
->u
.st
= c
->pre_bit_error
;
1537 case DTV_STAT_PRE_TOTAL_BIT_COUNT
:
1538 tvp
->u
.st
= c
->pre_bit_count
;
1540 case DTV_STAT_POST_ERROR_BIT_COUNT
:
1541 tvp
->u
.st
= c
->post_bit_error
;
1543 case DTV_STAT_POST_TOTAL_BIT_COUNT
:
1544 tvp
->u
.st
= c
->post_bit_count
;
1546 case DTV_STAT_ERROR_BLOCK_COUNT
:
1547 tvp
->u
.st
= c
->block_error
;
1549 case DTV_STAT_TOTAL_BLOCK_COUNT
:
1550 tvp
->u
.st
= c
->block_count
;
1553 dev_dbg(fe
->dvb
->device
,
1554 "%s: FE property %d doesn't exist\n",
1555 __func__
, tvp
->cmd
);
1559 if (!dtv_cmds
[tvp
->cmd
].buffer
)
1560 dev_dbg(fe
->dvb
->device
,
1561 "%s: GET cmd 0x%08x (%s) = 0x%08x\n",
1562 __func__
, tvp
->cmd
, dtv_cmds
[tvp
->cmd
].name
,
1565 dev_dbg(fe
->dvb
->device
,
1566 "%s: GET cmd 0x%08x (%s) len %d: %*ph\n",
1568 tvp
->cmd
, dtv_cmds
[tvp
->cmd
].name
,
1570 tvp
->u
.buffer
.len
, tvp
->u
.buffer
.data
);
1575 static int dtv_set_frontend(struct dvb_frontend
*fe
);
1577 static bool is_dvbv3_delsys(u32 delsys
)
1579 return (delsys
== SYS_DVBT
) || (delsys
== SYS_DVBC_ANNEX_A
) ||
1580 (delsys
== SYS_DVBS
) || (delsys
== SYS_ATSC
);
1584 * emulate_delivery_system - emulate a DVBv5 delivery system with a DVBv3 type
1585 * @fe: struct frontend;
1586 * @delsys: DVBv5 type that will be used for emulation
1588 * Provides emulation for delivery systems that are compatible with the old
1589 * DVBv3 call. Among its usages, it provices support for ISDB-T, and allows
1590 * using a DVB-S2 only frontend just like it were a DVB-S, if the frontend
1591 * parameters are compatible with DVB-S spec.
1593 static int emulate_delivery_system(struct dvb_frontend
*fe
, u32 delsys
)
1596 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
1598 c
->delivery_system
= delsys
;
1601 * If the call is for ISDB-T, put it into full-seg, auto mode, TV
1603 if (c
->delivery_system
== SYS_ISDBT
) {
1604 dev_dbg(fe
->dvb
->device
,
1605 "%s: Using defaults for SYS_ISDBT\n",
1608 if (!c
->bandwidth_hz
)
1609 c
->bandwidth_hz
= 6000000;
1611 c
->isdbt_partial_reception
= 0;
1612 c
->isdbt_sb_mode
= 0;
1613 c
->isdbt_sb_subchannel
= 0;
1614 c
->isdbt_sb_segment_idx
= 0;
1615 c
->isdbt_sb_segment_count
= 0;
1616 c
->isdbt_layer_enabled
= 7;
1617 for (i
= 0; i
< 3; i
++) {
1618 c
->layer
[i
].fec
= FEC_AUTO
;
1619 c
->layer
[i
].modulation
= QAM_AUTO
;
1620 c
->layer
[i
].interleaving
= 0;
1621 c
->layer
[i
].segment_count
= 0;
1624 dev_dbg(fe
->dvb
->device
, "%s: change delivery system on cache to %d\n",
1625 __func__
, c
->delivery_system
);
1631 * dvbv5_set_delivery_system - Sets the delivery system for a DVBv5 API call
1632 * @fe: frontend struct
1633 * @desired_system: delivery system requested by the user
1635 * A DVBv5 call know what's the desired system it wants. So, set it.
1637 * There are, however, a few known issues with early DVBv5 applications that
1638 * are also handled by this logic:
1640 * 1) Some early apps use SYS_UNDEFINED as the desired delivery system.
1641 * This is an API violation, but, as we don't want to break userspace,
1642 * convert it to the first supported delivery system.
1643 * 2) Some apps might be using a DVBv5 call in a wrong way, passing, for
1644 * example, SYS_DVBT instead of SYS_ISDBT. This is because early usage of
1645 * ISDB-T provided backward compat with DVB-T.
1647 static int dvbv5_set_delivery_system(struct dvb_frontend
*fe
,
1651 u32 delsys
= SYS_UNDEFINED
;
1652 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
1653 enum dvbv3_emulation_type type
;
1656 * It was reported that some old DVBv5 applications were
1657 * filling delivery_system with SYS_UNDEFINED. If this happens,
1658 * assume that the application wants to use the first supported
1661 if (desired_system
== SYS_UNDEFINED
)
1662 desired_system
= fe
->ops
.delsys
[0];
1665 * This is a DVBv5 call. So, it likely knows the supported
1666 * delivery systems. So, check if the desired delivery system is
1670 while (ncaps
< MAX_DELSYS
&& fe
->ops
.delsys
[ncaps
]) {
1671 if (fe
->ops
.delsys
[ncaps
] == desired_system
) {
1672 c
->delivery_system
= desired_system
;
1673 dev_dbg(fe
->dvb
->device
,
1674 "%s: Changing delivery system to %d\n",
1675 __func__
, desired_system
);
1682 * The requested delivery system isn't supported. Maybe userspace
1683 * is requesting a DVBv3 compatible delivery system.
1685 * The emulation only works if the desired system is one of the
1686 * delivery systems supported by DVBv3 API
1688 if (!is_dvbv3_delsys(desired_system
)) {
1689 dev_dbg(fe
->dvb
->device
,
1690 "%s: Delivery system %d not supported.\n",
1691 __func__
, desired_system
);
1695 type
= dvbv3_type(desired_system
);
1698 * Get the last non-DVBv3 delivery system that has the same type
1699 * of the desired system
1702 while (ncaps
< MAX_DELSYS
&& fe
->ops
.delsys
[ncaps
]) {
1703 if (dvbv3_type(fe
->ops
.delsys
[ncaps
]) == type
)
1704 delsys
= fe
->ops
.delsys
[ncaps
];
1708 /* There's nothing compatible with the desired delivery system */
1709 if (delsys
== SYS_UNDEFINED
) {
1710 dev_dbg(fe
->dvb
->device
,
1711 "%s: Delivery system %d not supported on emulation mode.\n",
1712 __func__
, desired_system
);
1716 dev_dbg(fe
->dvb
->device
,
1717 "%s: Using delivery system %d emulated as if it were %d\n",
1718 __func__
, delsys
, desired_system
);
1720 return emulate_delivery_system(fe
, desired_system
);
1724 * dvbv3_set_delivery_system - Sets the delivery system for a DVBv3 API call
1725 * @fe: frontend struct
1727 * A DVBv3 call doesn't know what's the desired system it wants. It also
1728 * doesn't allow to switch between different types. Due to that, userspace
1729 * should use DVBv5 instead.
1730 * However, in order to avoid breaking userspace API, limited backward
1731 * compatibility support is provided.
1733 * There are some delivery systems that are incompatible with DVBv3 calls.
1735 * This routine should work fine for frontends that support just one delivery
1738 * For frontends that support multiple frontends:
1739 * 1) It defaults to use the first supported delivery system. There's an
1740 * userspace application that allows changing it at runtime;
1742 * 2) If the current delivery system is not compatible with DVBv3, it gets
1743 * the first one that it is compatible.
1745 * NOTE: in order for this to work with applications like Kaffeine that
1746 * uses a DVBv5 call for DVB-S2 and a DVBv3 call to go back to
1747 * DVB-S, drivers that support both DVB-S and DVB-S2 should have the
1748 * SYS_DVBS entry before the SYS_DVBS2, otherwise it won't switch back
1751 static int dvbv3_set_delivery_system(struct dvb_frontend
*fe
)
1754 u32 delsys
= SYS_UNDEFINED
;
1755 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
1757 /* If not set yet, defaults to the first supported delivery system */
1758 if (c
->delivery_system
== SYS_UNDEFINED
)
1759 c
->delivery_system
= fe
->ops
.delsys
[0];
1762 * Trivial case: just use the current one, if it already a DVBv3
1765 if (is_dvbv3_delsys(c
->delivery_system
)) {
1766 dev_dbg(fe
->dvb
->device
,
1767 "%s: Using delivery system to %d\n",
1768 __func__
, c
->delivery_system
);
1773 * Seek for the first delivery system that it is compatible with a
1777 while (ncaps
< MAX_DELSYS
&& fe
->ops
.delsys
[ncaps
]) {
1778 if (dvbv3_type(fe
->ops
.delsys
[ncaps
]) != DVBV3_UNKNOWN
) {
1779 delsys
= fe
->ops
.delsys
[ncaps
];
1784 if (delsys
== SYS_UNDEFINED
) {
1785 dev_dbg(fe
->dvb
->device
,
1786 "%s: Couldn't find a delivery system that works with FE_SET_FRONTEND\n",
1790 return emulate_delivery_system(fe
, delsys
);
1794 * dtv_property_process_set - Sets a single DTV property
1795 * @fe: Pointer to &struct dvb_frontend
1796 * @file: Pointer to &struct file
1797 * @cmd: Digital TV command
1798 * @data: An unsigned 32-bits number
1800 * This routine assigns the property
1801 * value to the corresponding member of
1802 * &struct dtv_frontend_properties
1805 * Zero on success, negative errno on failure.
1807 static int dtv_property_process_set(struct dvb_frontend
*fe
,
1812 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
1814 /** Dump DTV command name and value*/
1815 if (!cmd
|| cmd
> DTV_MAX_COMMAND
)
1816 dev_warn(fe
->dvb
->device
, "%s: SET cmd 0x%08x undefined\n",
1819 dev_dbg(fe
->dvb
->device
,
1820 "%s: SET cmd 0x%08x (%s) to 0x%08x\n",
1821 __func__
, cmd
, dtv_cmds
[cmd
].name
, data
);
1825 * Reset a cache of data specific to the frontend here. This does
1826 * not effect hardware.
1828 dvb_frontend_clear_cache(fe
);
1832 * Use the cached Digital TV properties to tune the
1835 dev_dbg(fe
->dvb
->device
,
1836 "%s: Setting the frontend from property cache\n",
1839 r
= dtv_set_frontend(fe
);
1842 c
->frequency
= data
;
1844 case DTV_MODULATION
:
1845 c
->modulation
= data
;
1847 case DTV_BANDWIDTH_HZ
:
1848 c
->bandwidth_hz
= data
;
1851 c
->inversion
= data
;
1853 case DTV_SYMBOL_RATE
:
1854 c
->symbol_rate
= data
;
1857 c
->fec_inner
= data
;
1865 case DTV_DELIVERY_SYSTEM
:
1866 r
= dvbv5_set_delivery_system(fe
, data
);
1870 r
= dvb_frontend_handle_ioctl(file
, FE_SET_VOLTAGE
,
1871 (void *)c
->voltage
);
1875 r
= dvb_frontend_handle_ioctl(file
, FE_SET_TONE
,
1876 (void *)c
->sectone
);
1878 case DTV_CODE_RATE_HP
:
1879 c
->code_rate_HP
= data
;
1881 case DTV_CODE_RATE_LP
:
1882 c
->code_rate_LP
= data
;
1884 case DTV_GUARD_INTERVAL
:
1885 c
->guard_interval
= data
;
1887 case DTV_TRANSMISSION_MODE
:
1888 c
->transmission_mode
= data
;
1891 c
->hierarchy
= data
;
1893 case DTV_INTERLEAVING
:
1894 c
->interleaving
= data
;
1897 /* ISDB-T Support here */
1898 case DTV_ISDBT_PARTIAL_RECEPTION
:
1899 c
->isdbt_partial_reception
= data
;
1901 case DTV_ISDBT_SOUND_BROADCASTING
:
1902 c
->isdbt_sb_mode
= data
;
1904 case DTV_ISDBT_SB_SUBCHANNEL_ID
:
1905 c
->isdbt_sb_subchannel
= data
;
1907 case DTV_ISDBT_SB_SEGMENT_IDX
:
1908 c
->isdbt_sb_segment_idx
= data
;
1910 case DTV_ISDBT_SB_SEGMENT_COUNT
:
1911 c
->isdbt_sb_segment_count
= data
;
1913 case DTV_ISDBT_LAYER_ENABLED
:
1914 c
->isdbt_layer_enabled
= data
;
1916 case DTV_ISDBT_LAYERA_FEC
:
1917 c
->layer
[0].fec
= data
;
1919 case DTV_ISDBT_LAYERA_MODULATION
:
1920 c
->layer
[0].modulation
= data
;
1922 case DTV_ISDBT_LAYERA_SEGMENT_COUNT
:
1923 c
->layer
[0].segment_count
= data
;
1925 case DTV_ISDBT_LAYERA_TIME_INTERLEAVING
:
1926 c
->layer
[0].interleaving
= data
;
1928 case DTV_ISDBT_LAYERB_FEC
:
1929 c
->layer
[1].fec
= data
;
1931 case DTV_ISDBT_LAYERB_MODULATION
:
1932 c
->layer
[1].modulation
= data
;
1934 case DTV_ISDBT_LAYERB_SEGMENT_COUNT
:
1935 c
->layer
[1].segment_count
= data
;
1937 case DTV_ISDBT_LAYERB_TIME_INTERLEAVING
:
1938 c
->layer
[1].interleaving
= data
;
1940 case DTV_ISDBT_LAYERC_FEC
:
1941 c
->layer
[2].fec
= data
;
1943 case DTV_ISDBT_LAYERC_MODULATION
:
1944 c
->layer
[2].modulation
= data
;
1946 case DTV_ISDBT_LAYERC_SEGMENT_COUNT
:
1947 c
->layer
[2].segment_count
= data
;
1949 case DTV_ISDBT_LAYERC_TIME_INTERLEAVING
:
1950 c
->layer
[2].interleaving
= data
;
1953 /* Multistream support */
1955 case DTV_DVBT2_PLP_ID_LEGACY
:
1956 c
->stream_id
= data
;
1959 /* Physical layer scrambling support */
1960 case DTV_SCRAMBLING_SEQUENCE_INDEX
:
1961 c
->scrambling_sequence_index
= data
;
1965 case DTV_ATSCMH_PARADE_ID
:
1966 fe
->dtv_property_cache
.atscmh_parade_id
= data
;
1968 case DTV_ATSCMH_RS_FRAME_ENSEMBLE
:
1969 fe
->dtv_property_cache
.atscmh_rs_frame_ensemble
= data
;
1974 if (fe
->ops
.set_lna
)
1975 r
= fe
->ops
.set_lna(fe
);
1987 static int dvb_frontend_do_ioctl(struct file
*file
, unsigned int cmd
,
1990 struct dvb_device
*dvbdev
= file
->private_data
;
1991 struct dvb_frontend
*fe
= dvbdev
->priv
;
1992 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
1995 dev_dbg(fe
->dvb
->device
, "%s: (%d)\n", __func__
, _IOC_NR(cmd
));
1996 if (down_interruptible(&fepriv
->sem
))
1997 return -ERESTARTSYS
;
1999 if (fe
->exit
!= DVB_FE_NO_EXIT
) {
2005 * If the frontend is opened in read-only mode, only the ioctls
2006 * that don't interfere with the tune logic should be accepted.
2007 * That allows an external application to monitor the DVB QoS and
2008 * statistics parameters.
2010 * That matches all _IOR() ioctls, except for two special cases:
2011 * - FE_GET_EVENT is part of the tuning logic on a DVB application;
2012 * - FE_DISEQC_RECV_SLAVE_REPLY is part of DiSEqC 2.0
2014 * So, those two ioctls should also return -EPERM, as otherwise
2015 * reading from them would interfere with a DVB tune application
2017 if ((file
->f_flags
& O_ACCMODE
) == O_RDONLY
2018 && (_IOC_DIR(cmd
) != _IOC_READ
2019 || cmd
== FE_GET_EVENT
2020 || cmd
== FE_DISEQC_RECV_SLAVE_REPLY
)) {
2025 err
= dvb_frontend_handle_ioctl(file
, cmd
, parg
);
2031 static long dvb_frontend_ioctl(struct file
*file
, unsigned int cmd
,
2034 struct dvb_device
*dvbdev
= file
->private_data
;
2039 return dvb_usercopy(file
, cmd
, arg
, dvb_frontend_do_ioctl
);
2042 #ifdef CONFIG_COMPAT
2043 struct compat_dtv_property
{
2048 struct dtv_fe_stats st
;
2053 compat_uptr_t reserved2
;
2057 } __attribute__ ((packed
));
2059 struct compat_dtv_properties
{
2061 compat_uptr_t props
;
2064 #define COMPAT_FE_SET_PROPERTY _IOW('o', 82, struct compat_dtv_properties)
2065 #define COMPAT_FE_GET_PROPERTY _IOR('o', 83, struct compat_dtv_properties)
2067 static int dvb_frontend_handle_compat_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 if (cmd
== COMPAT_FE_SET_PROPERTY
) {
2076 struct compat_dtv_properties prop
, *tvps
= NULL
;
2077 struct compat_dtv_property
*tvp
= NULL
;
2079 if (copy_from_user(&prop
, compat_ptr(arg
), sizeof(prop
)))
2085 * Put an arbitrary limit on the number of messages that can
2088 if (!tvps
->num
|| (tvps
->num
> DTV_IOCTL_MAX_MSGS
))
2091 tvp
= memdup_user(compat_ptr(tvps
->props
), tvps
->num
* sizeof(*tvp
));
2093 return PTR_ERR(tvp
);
2095 for (i
= 0; i
< tvps
->num
; i
++) {
2096 err
= dtv_property_process_set(fe
, file
,
2105 } else if (cmd
== COMPAT_FE_GET_PROPERTY
) {
2106 struct compat_dtv_properties prop
, *tvps
= NULL
;
2107 struct compat_dtv_property
*tvp
= NULL
;
2108 struct dtv_frontend_properties getp
= fe
->dtv_property_cache
;
2110 if (copy_from_user(&prop
, compat_ptr(arg
), sizeof(prop
)))
2116 * Put an arbitrary limit on the number of messages that can
2119 if (!tvps
->num
|| (tvps
->num
> DTV_IOCTL_MAX_MSGS
))
2122 tvp
= memdup_user(compat_ptr(tvps
->props
), tvps
->num
* sizeof(*tvp
));
2124 return PTR_ERR(tvp
);
2127 * Let's use our own copy of property cache, in order to
2128 * avoid mangling with DTV zigzag logic, as drivers might
2129 * return crap, if they don't check if the data is available
2130 * before updating the properties cache.
2132 if (fepriv
->state
!= FESTATE_IDLE
) {
2133 err
= dtv_get_frontend(fe
, &getp
, NULL
);
2139 for (i
= 0; i
< tvps
->num
; i
++) {
2140 err
= dtv_property_process_get(
2141 fe
, &getp
, (struct dtv_property
*)(tvp
+ i
), file
);
2148 if (copy_to_user((void __user
*)compat_ptr(tvps
->props
), tvp
,
2149 tvps
->num
* sizeof(struct compat_dtv_property
))) {
2159 static long dvb_frontend_compat_ioctl(struct file
*file
, unsigned int cmd
,
2162 struct dvb_device
*dvbdev
= file
->private_data
;
2163 struct dvb_frontend
*fe
= dvbdev
->priv
;
2164 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
2167 if (cmd
== COMPAT_FE_SET_PROPERTY
|| cmd
== COMPAT_FE_GET_PROPERTY
) {
2168 if (down_interruptible(&fepriv
->sem
))
2169 return -ERESTARTSYS
;
2171 err
= dvb_frontend_handle_compat_ioctl(file
, cmd
, arg
);
2177 return dvb_frontend_ioctl(file
, cmd
, (unsigned long)compat_ptr(arg
));
2181 static int dtv_set_frontend(struct dvb_frontend
*fe
)
2183 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
2184 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
2185 struct dvb_frontend_tune_settings fetunesettings
;
2188 if (dvb_frontend_check_parameters(fe
) < 0)
2192 * Initialize output parameters to match the values given by
2193 * the user. FE_SET_FRONTEND triggers an initial frontend event
2194 * with status = 0, which copies output parameters to userspace.
2196 dtv_property_legacy_params_sync(fe
, c
, &fepriv
->parameters_out
);
2199 * Be sure that the bandwidth will be filled for all
2200 * non-satellite systems, as tuners need to know what
2201 * low pass/Nyquist half filter should be applied, in
2202 * order to avoid inter-channel noise.
2204 * ISDB-T and DVB-T/T2 already sets bandwidth.
2205 * ATSC and DVB-C don't set, so, the core should fill it.
2207 * On DVB-C Annex A and C, the bandwidth is a function of
2208 * the roll-off and symbol rate. Annex B defines different
2209 * roll-off factors depending on the modulation. Fortunately,
2210 * Annex B is only used with 6MHz, so there's no need to
2213 * While not officially supported, a side effect of handling it at
2214 * the cache level is that a program could retrieve the bandwidth
2215 * via DTV_BANDWIDTH_HZ, which may be useful for test programs.
2217 switch (c
->delivery_system
) {
2219 case SYS_DVBC_ANNEX_B
:
2220 c
->bandwidth_hz
= 6000000;
2222 case SYS_DVBC_ANNEX_A
:
2225 case SYS_DVBC_ANNEX_C
:
2234 switch (c
->rolloff
) {
2250 c
->bandwidth_hz
= mult_frac(c
->symbol_rate
, rolloff
, 100);
2252 /* force auto frequency inversion if requested */
2253 if (dvb_force_auto_inversion
)
2254 c
->inversion
= INVERSION_AUTO
;
2257 * without hierarchical coding code_rate_LP is irrelevant,
2258 * so we tolerate the otherwise invalid FEC_NONE setting
2260 if (c
->hierarchy
== HIERARCHY_NONE
&& c
->code_rate_LP
== FEC_NONE
)
2261 c
->code_rate_LP
= FEC_AUTO
;
2263 /* get frontend-specific tuning settings */
2264 memset(&fetunesettings
, 0, sizeof(struct dvb_frontend_tune_settings
));
2265 if (fe
->ops
.get_tune_settings
&& (fe
->ops
.get_tune_settings(fe
, &fetunesettings
) == 0)) {
2266 fepriv
->min_delay
= (fetunesettings
.min_delay_ms
* HZ
) / 1000;
2267 fepriv
->max_drift
= fetunesettings
.max_drift
;
2268 fepriv
->step_size
= fetunesettings
.step_size
;
2270 /* default values */
2271 switch (c
->delivery_system
) {
2276 case SYS_DVBC_ANNEX_A
:
2277 case SYS_DVBC_ANNEX_C
:
2278 fepriv
->min_delay
= HZ
/ 20;
2279 fepriv
->step_size
= c
->symbol_rate
/ 16000;
2280 fepriv
->max_drift
= c
->symbol_rate
/ 2000;
2286 fepriv
->min_delay
= HZ
/ 20;
2287 fepriv
->step_size
= dvb_frontend_get_stepsize(fe
) * 2;
2288 fepriv
->max_drift
= (dvb_frontend_get_stepsize(fe
) * 2) + 1;
2292 * FIXME: This sounds wrong! if freqency_stepsize is
2293 * defined by the frontend, why not use it???
2295 fepriv
->min_delay
= HZ
/ 20;
2296 fepriv
->step_size
= 0; /* no zigzag */
2297 fepriv
->max_drift
= 0;
2301 if (dvb_override_tune_delay
> 0)
2302 fepriv
->min_delay
= (dvb_override_tune_delay
* HZ
) / 1000;
2304 fepriv
->state
= FESTATE_RETUNE
;
2306 /* Request the search algorithm to search */
2307 fepriv
->algo_status
|= DVBFE_ALGO_SEARCH_AGAIN
;
2309 dvb_frontend_clear_events(fe
);
2310 dvb_frontend_add_event(fe
, 0);
2311 dvb_frontend_wakeup(fe
);
2317 static int dvb_get_property(struct dvb_frontend
*fe
, struct file
*file
,
2318 struct dtv_properties
*tvps
)
2320 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
2321 struct dtv_property
*tvp
= NULL
;
2322 struct dtv_frontend_properties getp
;
2325 memcpy(&getp
, &fe
->dtv_property_cache
, sizeof(getp
));
2327 dev_dbg(fe
->dvb
->device
, "%s: properties.num = %d\n",
2328 __func__
, tvps
->num
);
2329 dev_dbg(fe
->dvb
->device
, "%s: properties.props = %p\n",
2330 __func__
, tvps
->props
);
2333 * Put an arbitrary limit on the number of messages that can
2336 if (!tvps
->num
|| tvps
->num
> DTV_IOCTL_MAX_MSGS
)
2339 tvp
= memdup_user((void __user
*)tvps
->props
, tvps
->num
* sizeof(*tvp
));
2341 return PTR_ERR(tvp
);
2344 * Let's use our own copy of property cache, in order to
2345 * avoid mangling with DTV zigzag logic, as drivers might
2346 * return crap, if they don't check if the data is available
2347 * before updating the properties cache.
2349 if (fepriv
->state
!= FESTATE_IDLE
) {
2350 err
= dtv_get_frontend(fe
, &getp
, NULL
);
2354 for (i
= 0; i
< tvps
->num
; i
++) {
2355 err
= dtv_property_process_get(fe
, &getp
,
2361 if (copy_to_user((void __user
*)tvps
->props
, tvp
,
2362 tvps
->num
* sizeof(struct dtv_property
))) {
2373 static int dvb_get_frontend(struct dvb_frontend
*fe
,
2374 struct dvb_frontend_parameters
*p_out
)
2376 struct dtv_frontend_properties getp
;
2379 * Let's use our own copy of property cache, in order to
2380 * avoid mangling with DTV zigzag logic, as drivers might
2381 * return crap, if they don't check if the data is available
2382 * before updating the properties cache.
2384 memcpy(&getp
, &fe
->dtv_property_cache
, sizeof(getp
));
2386 return dtv_get_frontend(fe
, &getp
, p_out
);
2389 static int dvb_frontend_handle_ioctl(struct file
*file
,
2390 unsigned int cmd
, void *parg
)
2392 struct dvb_device
*dvbdev
= file
->private_data
;
2393 struct dvb_frontend
*fe
= dvbdev
->priv
;
2394 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
2395 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
2396 int i
, err
= -ENOTSUPP
;
2398 dev_dbg(fe
->dvb
->device
, "%s:\n", __func__
);
2401 case FE_SET_PROPERTY
: {
2402 struct dtv_properties
*tvps
= parg
;
2403 struct dtv_property
*tvp
= NULL
;
2405 dev_dbg(fe
->dvb
->device
, "%s: properties.num = %d\n",
2406 __func__
, tvps
->num
);
2407 dev_dbg(fe
->dvb
->device
, "%s: properties.props = %p\n",
2408 __func__
, tvps
->props
);
2411 * Put an arbitrary limit on the number of messages that can
2414 if (!tvps
->num
|| (tvps
->num
> DTV_IOCTL_MAX_MSGS
))
2417 tvp
= memdup_user((void __user
*)tvps
->props
, tvps
->num
* sizeof(*tvp
));
2419 return PTR_ERR(tvp
);
2421 for (i
= 0; i
< tvps
->num
; i
++) {
2422 err
= dtv_property_process_set(fe
, file
,
2434 case FE_GET_PROPERTY
:
2435 err
= dvb_get_property(fe
, file
, parg
);
2439 struct dvb_frontend_info
*info
= parg
;
2440 memset(info
, 0, sizeof(*info
));
2442 strscpy(info
->name
, fe
->ops
.info
.name
, sizeof(info
->name
));
2443 info
->symbol_rate_min
= fe
->ops
.info
.symbol_rate_min
;
2444 info
->symbol_rate_max
= fe
->ops
.info
.symbol_rate_max
;
2445 info
->symbol_rate_tolerance
= fe
->ops
.info
.symbol_rate_tolerance
;
2446 info
->caps
= fe
->ops
.info
.caps
;
2447 info
->frequency_stepsize
= dvb_frontend_get_stepsize(fe
);
2448 dvb_frontend_get_frequency_limits(fe
, &info
->frequency_min
,
2449 &info
->frequency_max
,
2450 &info
->frequency_tolerance
);
2453 * Associate the 4 delivery systems supported by DVBv3
2454 * API with their DVBv5 counterpart. For the other standards,
2455 * use the closest type, assuming that it would hopefully
2456 * work with a DVBv3 application.
2457 * It should be noticed that, on multi-frontend devices with
2458 * different types (terrestrial and cable, for example),
2459 * a pure DVBv3 application won't be able to use all delivery
2460 * systems. Yet, changing the DVBv5 cache to the other delivery
2461 * system should be enough for making it work.
2463 switch (dvbv3_type(c
->delivery_system
)) {
2465 info
->type
= FE_QPSK
;
2468 info
->type
= FE_ATSC
;
2471 info
->type
= FE_QAM
;
2474 info
->type
= FE_OFDM
;
2477 dev_err(fe
->dvb
->device
,
2478 "%s: doesn't know how to handle a DVBv3 call to delivery system %i\n",
2479 __func__
, c
->delivery_system
);
2480 info
->type
= FE_OFDM
;
2482 dev_dbg(fe
->dvb
->device
, "%s: current delivery system on cache: %d, V3 type: %d\n",
2483 __func__
, c
->delivery_system
, info
->type
);
2485 /* Set CAN_INVERSION_AUTO bit on in other than oneshot mode */
2486 if (!(fepriv
->tune_mode_flags
& FE_TUNE_MODE_ONESHOT
))
2487 info
->caps
|= FE_CAN_INVERSION_AUTO
;
2492 case FE_READ_STATUS
: {
2493 enum fe_status
*status
= parg
;
2495 /* if retune was requested but hasn't occurred yet, prevent
2496 * that user get signal state from previous tuning */
2497 if (fepriv
->state
== FESTATE_RETUNE
||
2498 fepriv
->state
== FESTATE_ERROR
) {
2504 if (fe
->ops
.read_status
)
2505 err
= fe
->ops
.read_status(fe
, status
);
2509 case FE_DISEQC_RESET_OVERLOAD
:
2510 if (fe
->ops
.diseqc_reset_overload
) {
2511 err
= fe
->ops
.diseqc_reset_overload(fe
);
2512 fepriv
->state
= FESTATE_DISEQC
;
2517 case FE_DISEQC_SEND_MASTER_CMD
:
2518 if (fe
->ops
.diseqc_send_master_cmd
) {
2519 struct dvb_diseqc_master_cmd
*cmd
= parg
;
2521 if (cmd
->msg_len
> sizeof(cmd
->msg
)) {
2525 err
= fe
->ops
.diseqc_send_master_cmd(fe
, cmd
);
2526 fepriv
->state
= FESTATE_DISEQC
;
2531 case FE_DISEQC_SEND_BURST
:
2532 if (fe
->ops
.diseqc_send_burst
) {
2533 err
= fe
->ops
.diseqc_send_burst(fe
,
2534 (enum fe_sec_mini_cmd
)parg
);
2535 fepriv
->state
= FESTATE_DISEQC
;
2541 if (fe
->ops
.set_tone
) {
2542 err
= fe
->ops
.set_tone(fe
,
2543 (enum fe_sec_tone_mode
)parg
);
2544 fepriv
->tone
= (enum fe_sec_tone_mode
)parg
;
2545 fepriv
->state
= FESTATE_DISEQC
;
2550 case FE_SET_VOLTAGE
:
2551 if (fe
->ops
.set_voltage
) {
2552 err
= fe
->ops
.set_voltage(fe
,
2553 (enum fe_sec_voltage
)parg
);
2554 fepriv
->voltage
= (enum fe_sec_voltage
)parg
;
2555 fepriv
->state
= FESTATE_DISEQC
;
2560 case FE_DISEQC_RECV_SLAVE_REPLY
:
2561 if (fe
->ops
.diseqc_recv_slave_reply
)
2562 err
= fe
->ops
.diseqc_recv_slave_reply(fe
, parg
);
2565 case FE_ENABLE_HIGH_LNB_VOLTAGE
:
2566 if (fe
->ops
.enable_high_lnb_voltage
)
2567 err
= fe
->ops
.enable_high_lnb_voltage(fe
, (long)parg
);
2570 case FE_SET_FRONTEND_TUNE_MODE
:
2571 fepriv
->tune_mode_flags
= (unsigned long)parg
;
2574 /* DEPRECATED dish control ioctls */
2576 case FE_DISHNETWORK_SEND_LEGACY_CMD
:
2577 if (fe
->ops
.dishnetwork_send_legacy_command
) {
2578 err
= fe
->ops
.dishnetwork_send_legacy_command(fe
,
2579 (unsigned long)parg
);
2580 fepriv
->state
= FESTATE_DISEQC
;
2582 } else if (fe
->ops
.set_voltage
) {
2584 * NOTE: This is a fallback condition. Some frontends
2585 * (stv0299 for instance) take longer than 8msec to
2586 * respond to a set_voltage command. Those switches
2587 * need custom routines to switch properly. For all
2588 * other frontends, the following should work ok.
2589 * Dish network legacy switches (as used by Dish500)
2590 * are controlled by sending 9-bit command words
2591 * spaced 8msec apart.
2592 * the actual command word is switch/port dependent
2593 * so it is up to the userspace application to send
2594 * the right command.
2595 * The command must always start with a '0' after
2596 * initialization, so parg is 8 bits and does not
2597 * include the initialization or start bit
2599 unsigned long swcmd
= ((unsigned long)parg
) << 1;
2605 if (dvb_frontend_debug
)
2606 dprintk("switch command: 0x%04lx\n",
2608 nexttime
= ktime_get_boottime();
2609 if (dvb_frontend_debug
)
2611 /* before sending a command, initialize by sending
2612 * a 32ms 18V to the switch
2614 fe
->ops
.set_voltage(fe
, SEC_VOLTAGE_18
);
2615 dvb_frontend_sleep_until(&nexttime
, 32000);
2617 for (i
= 0; i
< 9; i
++) {
2618 if (dvb_frontend_debug
)
2619 tv
[i
+ 1] = ktime_get_boottime();
2620 if ((swcmd
& 0x01) != last
) {
2621 /* set voltage to (last ? 13V : 18V) */
2622 fe
->ops
.set_voltage(fe
, (last
) ? SEC_VOLTAGE_13
: SEC_VOLTAGE_18
);
2623 last
= (last
) ? 0 : 1;
2627 dvb_frontend_sleep_until(&nexttime
, 8000);
2629 if (dvb_frontend_debug
) {
2630 dprintk("(adapter %d): switch delay (should be 32k followed by all 8k)\n",
2632 for (i
= 1; i
< 10; i
++)
2633 pr_info("%d: %d\n", i
,
2634 (int)ktime_us_delta(tv
[i
], tv
[i
- 1]));
2637 fepriv
->state
= FESTATE_DISEQC
;
2642 /* DEPRECATED statistics ioctls */
2645 if (fe
->ops
.read_ber
) {
2647 err
= fe
->ops
.read_ber(fe
, parg
);
2653 case FE_READ_SIGNAL_STRENGTH
:
2654 if (fe
->ops
.read_signal_strength
) {
2656 err
= fe
->ops
.read_signal_strength(fe
, parg
);
2663 if (fe
->ops
.read_snr
) {
2665 err
= fe
->ops
.read_snr(fe
, parg
);
2671 case FE_READ_UNCORRECTED_BLOCKS
:
2672 if (fe
->ops
.read_ucblocks
) {
2674 err
= fe
->ops
.read_ucblocks(fe
, parg
);
2680 /* DEPRECATED DVBv3 ioctls */
2682 case FE_SET_FRONTEND
:
2683 err
= dvbv3_set_delivery_system(fe
);
2687 err
= dtv_property_cache_sync(fe
, c
, parg
);
2690 err
= dtv_set_frontend(fe
);
2694 err
= dvb_frontend_get_event(fe
, parg
, file
->f_flags
);
2697 case FE_GET_FRONTEND
:
2698 err
= dvb_get_frontend(fe
, parg
);
2708 static __poll_t
dvb_frontend_poll(struct file
*file
, struct poll_table_struct
*wait
)
2710 struct dvb_device
*dvbdev
= file
->private_data
;
2711 struct dvb_frontend
*fe
= dvbdev
->priv
;
2712 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
2714 dev_dbg_ratelimited(fe
->dvb
->device
, "%s:\n", __func__
);
2716 poll_wait(file
, &fepriv
->events
.wait_queue
, wait
);
2718 if (fepriv
->events
.eventw
!= fepriv
->events
.eventr
)
2719 return (EPOLLIN
| EPOLLRDNORM
| EPOLLPRI
);
2724 static int dvb_frontend_open(struct inode
*inode
, struct file
*file
)
2726 struct dvb_device
*dvbdev
= file
->private_data
;
2727 struct dvb_frontend
*fe
= dvbdev
->priv
;
2728 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
2729 struct dvb_adapter
*adapter
= fe
->dvb
;
2732 dev_dbg(fe
->dvb
->device
, "%s:\n", __func__
);
2733 if (fe
->exit
== DVB_FE_DEVICE_REMOVED
)
2736 if (adapter
->mfe_shared
) {
2737 mutex_lock(&adapter
->mfe_lock
);
2739 if (!adapter
->mfe_dvbdev
)
2740 adapter
->mfe_dvbdev
= dvbdev
;
2742 else if (adapter
->mfe_dvbdev
!= dvbdev
) {
2744 *mfedev
= adapter
->mfe_dvbdev
;
2746 *mfe
= mfedev
->priv
;
2747 struct dvb_frontend_private
2748 *mfepriv
= mfe
->frontend_priv
;
2749 int mferetry
= (dvb_mfe_wait_time
<< 1);
2751 mutex_unlock(&adapter
->mfe_lock
);
2752 while (mferetry
-- && (mfedev
->users
!= -1 ||
2754 if (msleep_interruptible(500)) {
2755 if (signal_pending(current
))
2760 mutex_lock(&adapter
->mfe_lock
);
2761 if (adapter
->mfe_dvbdev
!= dvbdev
) {
2762 mfedev
= adapter
->mfe_dvbdev
;
2764 mfepriv
= mfe
->frontend_priv
;
2765 if (mfedev
->users
!= -1 ||
2767 mutex_unlock(&adapter
->mfe_lock
);
2770 adapter
->mfe_dvbdev
= dvbdev
;
2775 if (dvbdev
->users
== -1 && fe
->ops
.ts_bus_ctrl
) {
2776 if ((ret
= fe
->ops
.ts_bus_ctrl(fe
, 1)) < 0)
2779 /* If we took control of the bus, we need to force
2780 reinitialization. This is because many ts_bus_ctrl()
2781 functions strobe the RESET pin on the demod, and if the
2782 frontend thread already exists then the dvb_init() routine
2783 won't get called (which is what usually does initial
2784 register configuration). */
2785 fepriv
->reinitialise
= 1;
2788 if ((ret
= dvb_generic_open(inode
, file
)) < 0)
2791 if ((file
->f_flags
& O_ACCMODE
) != O_RDONLY
) {
2792 /* normal tune mode when opened R/W */
2793 fepriv
->tune_mode_flags
&= ~FE_TUNE_MODE_ONESHOT
;
2795 fepriv
->voltage
= -1;
2797 #ifdef CONFIG_MEDIA_CONTROLLER_DVB
2798 mutex_lock(&fe
->dvb
->mdev_lock
);
2799 if (fe
->dvb
->mdev
) {
2800 mutex_lock(&fe
->dvb
->mdev
->graph_mutex
);
2801 if (fe
->dvb
->mdev
->enable_source
)
2802 ret
= fe
->dvb
->mdev
->enable_source(
2805 mutex_unlock(&fe
->dvb
->mdev
->graph_mutex
);
2807 mutex_unlock(&fe
->dvb
->mdev_lock
);
2808 dev_err(fe
->dvb
->device
,
2809 "Tuner is busy. Error %d\n", ret
);
2813 mutex_unlock(&fe
->dvb
->mdev_lock
);
2815 ret
= dvb_frontend_start(fe
);
2819 /* empty event queue */
2820 fepriv
->events
.eventr
= fepriv
->events
.eventw
= 0;
2823 dvb_frontend_get(fe
);
2825 if (adapter
->mfe_shared
)
2826 mutex_unlock(&adapter
->mfe_lock
);
2830 #ifdef CONFIG_MEDIA_CONTROLLER_DVB
2831 mutex_lock(&fe
->dvb
->mdev_lock
);
2832 if (fe
->dvb
->mdev
) {
2833 mutex_lock(&fe
->dvb
->mdev
->graph_mutex
);
2834 if (fe
->dvb
->mdev
->disable_source
)
2835 fe
->dvb
->mdev
->disable_source(dvbdev
->entity
);
2836 mutex_unlock(&fe
->dvb
->mdev
->graph_mutex
);
2838 mutex_unlock(&fe
->dvb
->mdev_lock
);
2841 dvb_generic_release(inode
, file
);
2843 if (dvbdev
->users
== -1 && fe
->ops
.ts_bus_ctrl
)
2844 fe
->ops
.ts_bus_ctrl(fe
, 0);
2846 if (adapter
->mfe_shared
)
2847 mutex_unlock(&adapter
->mfe_lock
);
2851 static int dvb_frontend_release(struct inode
*inode
, struct file
*file
)
2853 struct dvb_device
*dvbdev
= file
->private_data
;
2854 struct dvb_frontend
*fe
= dvbdev
->priv
;
2855 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
2858 dev_dbg(fe
->dvb
->device
, "%s:\n", __func__
);
2860 if ((file
->f_flags
& O_ACCMODE
) != O_RDONLY
) {
2861 fepriv
->release_jiffies
= jiffies
;
2865 ret
= dvb_generic_release(inode
, file
);
2867 if (dvbdev
->users
== -1) {
2868 wake_up(&fepriv
->wait_queue
);
2869 #ifdef CONFIG_MEDIA_CONTROLLER_DVB
2870 mutex_lock(&fe
->dvb
->mdev_lock
);
2871 if (fe
->dvb
->mdev
) {
2872 mutex_lock(&fe
->dvb
->mdev
->graph_mutex
);
2873 if (fe
->dvb
->mdev
->disable_source
)
2874 fe
->dvb
->mdev
->disable_source(dvbdev
->entity
);
2875 mutex_unlock(&fe
->dvb
->mdev
->graph_mutex
);
2877 mutex_unlock(&fe
->dvb
->mdev_lock
);
2879 if (fe
->exit
!= DVB_FE_NO_EXIT
)
2880 wake_up(&dvbdev
->wait_queue
);
2881 if (fe
->ops
.ts_bus_ctrl
)
2882 fe
->ops
.ts_bus_ctrl(fe
, 0);
2885 dvb_frontend_put(fe
);
2890 static const struct file_operations dvb_frontend_fops
= {
2891 .owner
= THIS_MODULE
,
2892 .unlocked_ioctl
= dvb_frontend_ioctl
,
2893 #ifdef CONFIG_COMPAT
2894 .compat_ioctl
= dvb_frontend_compat_ioctl
,
2896 .poll
= dvb_frontend_poll
,
2897 .open
= dvb_frontend_open
,
2898 .release
= dvb_frontend_release
,
2899 .llseek
= noop_llseek
,
2902 int dvb_frontend_suspend(struct dvb_frontend
*fe
)
2906 dev_dbg(fe
->dvb
->device
, "%s: adap=%d fe=%d\n", __func__
, fe
->dvb
->num
,
2909 if (fe
->ops
.tuner_ops
.suspend
)
2910 ret
= fe
->ops
.tuner_ops
.suspend(fe
);
2911 else if (fe
->ops
.tuner_ops
.sleep
)
2912 ret
= fe
->ops
.tuner_ops
.sleep(fe
);
2915 ret
= fe
->ops
.sleep(fe
);
2919 EXPORT_SYMBOL(dvb_frontend_suspend
);
2921 int dvb_frontend_resume(struct dvb_frontend
*fe
)
2923 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
2926 dev_dbg(fe
->dvb
->device
, "%s: adap=%d fe=%d\n", __func__
, fe
->dvb
->num
,
2929 fe
->exit
= DVB_FE_DEVICE_RESUME
;
2931 ret
= fe
->ops
.init(fe
);
2933 if (fe
->ops
.tuner_ops
.resume
)
2934 ret
= fe
->ops
.tuner_ops
.resume(fe
);
2935 else if (fe
->ops
.tuner_ops
.init
)
2936 ret
= fe
->ops
.tuner_ops
.init(fe
);
2938 if (fe
->ops
.set_tone
&& fepriv
->tone
!= -1)
2939 fe
->ops
.set_tone(fe
, fepriv
->tone
);
2940 if (fe
->ops
.set_voltage
&& fepriv
->voltage
!= -1)
2941 fe
->ops
.set_voltage(fe
, fepriv
->voltage
);
2943 fe
->exit
= DVB_FE_NO_EXIT
;
2944 fepriv
->state
= FESTATE_RETUNE
;
2945 dvb_frontend_wakeup(fe
);
2949 EXPORT_SYMBOL(dvb_frontend_resume
);
2951 int dvb_register_frontend(struct dvb_adapter
*dvb
,
2952 struct dvb_frontend
*fe
)
2954 struct dvb_frontend_private
*fepriv
;
2955 const struct dvb_device dvbdev_template
= {
2958 .readers
= (~0) - 1,
2959 .fops
= &dvb_frontend_fops
,
2960 #if defined(CONFIG_MEDIA_CONTROLLER_DVB)
2961 .name
= fe
->ops
.info
.name
,
2965 dev_dbg(dvb
->device
, "%s:\n", __func__
);
2967 if (mutex_lock_interruptible(&frontend_mutex
))
2968 return -ERESTARTSYS
;
2970 fe
->frontend_priv
= kzalloc(sizeof(struct dvb_frontend_private
), GFP_KERNEL
);
2971 if (!fe
->frontend_priv
) {
2972 mutex_unlock(&frontend_mutex
);
2975 fepriv
= fe
->frontend_priv
;
2977 kref_init(&fe
->refcount
);
2980 * After initialization, there need to be two references: one
2981 * for dvb_unregister_frontend(), and another one for
2982 * dvb_frontend_detach().
2984 dvb_frontend_get(fe
);
2986 sema_init(&fepriv
->sem
, 1);
2987 init_waitqueue_head(&fepriv
->wait_queue
);
2988 init_waitqueue_head(&fepriv
->events
.wait_queue
);
2989 mutex_init(&fepriv
->events
.mtx
);
2991 fepriv
->inversion
= INVERSION_OFF
;
2993 dev_info(fe
->dvb
->device
,
2994 "DVB: registering adapter %i frontend %i (%s)...\n",
2995 fe
->dvb
->num
, fe
->id
, fe
->ops
.info
.name
);
2997 dvb_register_device(fe
->dvb
, &fepriv
->dvbdev
, &dvbdev_template
,
2998 fe
, DVB_DEVICE_FRONTEND
, 0);
3001 * Initialize the cache to the proper values according with the
3002 * first supported delivery system (ops->delsys[0])
3005 fe
->dtv_property_cache
.delivery_system
= fe
->ops
.delsys
[0];
3006 dvb_frontend_clear_cache(fe
);
3008 mutex_unlock(&frontend_mutex
);
3011 EXPORT_SYMBOL(dvb_register_frontend
);
3013 int dvb_unregister_frontend(struct dvb_frontend
*fe
)
3015 struct dvb_frontend_private
*fepriv
= fe
->frontend_priv
;
3017 dev_dbg(fe
->dvb
->device
, "%s:\n", __func__
);
3019 mutex_lock(&frontend_mutex
);
3020 dvb_frontend_stop(fe
);
3021 dvb_remove_device(fepriv
->dvbdev
);
3023 /* fe is invalid now */
3024 mutex_unlock(&frontend_mutex
);
3025 dvb_frontend_put(fe
);
3028 EXPORT_SYMBOL(dvb_unregister_frontend
);
3030 static void dvb_frontend_invoke_release(struct dvb_frontend
*fe
,
3031 void (*release
)(struct dvb_frontend
*fe
))
3035 #ifdef CONFIG_MEDIA_ATTACH
3036 dvb_detach(release
);
3041 void dvb_frontend_detach(struct dvb_frontend
*fe
)
3043 dvb_frontend_invoke_release(fe
, fe
->ops
.release_sec
);
3044 dvb_frontend_invoke_release(fe
, fe
->ops
.tuner_ops
.release
);
3045 dvb_frontend_invoke_release(fe
, fe
->ops
.analog_ops
.release
);
3046 dvb_frontend_put(fe
);
3048 EXPORT_SYMBOL(dvb_frontend_detach
);