2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* dvb_frontend.c: DVB frontend tuning interface/thread
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999-2001 Ralph Metzler
|
|
|
|
* Marcus Metzler
|
|
|
|
* Holger Waechtler
|
|
|
|
* for convergence integrated media GmbH
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Andrew de Quincey (tuning thread cleanup)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
* Or, point your browser to http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/wait.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/poll.h>
|
2009-12-01 21:17:41 +00:00
|
|
|
#include <linux/semaphore.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/list.h>
|
2006-12-07 04:34:23 +00:00
|
|
|
#include <linux/freezer.h>
|
2005-06-24 05:02:39 +00:00
|
|
|
#include <linux/jiffies.h>
|
2007-02-08 17:32:43 +00:00
|
|
|
#include <linux/kthread.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm/processor.h>
|
|
|
|
|
|
|
|
#include "dvb_frontend.h"
|
|
|
|
#include "dvbdev.h"
|
2008-09-26 03:29:49 +00:00
|
|
|
#include <linux/dvb/version.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
static int dvb_frontend_debug;
|
2007-08-25 15:22:16 +00:00
|
|
|
static int dvb_shutdown_timeout;
|
2005-04-16 22:20:36 +00:00
|
|
|
static int dvb_force_auto_inversion;
|
|
|
|
static int dvb_override_tune_delay;
|
|
|
|
static int dvb_powerdown_on_sleep = 1;
|
2008-10-11 14:44:05 +00:00
|
|
|
static int dvb_mfe_wait_time = 5;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
module_param_named(frontend_debug, dvb_frontend_debug, int, 0644);
|
2005-05-17 04:54:21 +00:00
|
|
|
MODULE_PARM_DESC(frontend_debug, "Turn on/off frontend core debugging (default:off).");
|
2006-02-27 03:09:32 +00:00
|
|
|
module_param(dvb_shutdown_timeout, int, 0644);
|
2005-04-16 22:20:36 +00:00
|
|
|
MODULE_PARM_DESC(dvb_shutdown_timeout, "wait <shutdown_timeout> seconds after close() before suspending hardware");
|
2006-02-27 03:09:32 +00:00
|
|
|
module_param(dvb_force_auto_inversion, int, 0644);
|
2005-04-16 22:20:36 +00:00
|
|
|
MODULE_PARM_DESC(dvb_force_auto_inversion, "0: normal (default), 1: INVERSION_AUTO forced always");
|
2006-02-27 03:09:32 +00:00
|
|
|
module_param(dvb_override_tune_delay, int, 0644);
|
2005-04-16 22:20:36 +00:00
|
|
|
MODULE_PARM_DESC(dvb_override_tune_delay, "0: normal (default), >0 => delay in milliseconds to wait for lock after a tune attempt");
|
2006-02-27 03:09:32 +00:00
|
|
|
module_param(dvb_powerdown_on_sleep, int, 0644);
|
2006-04-11 13:21:37 +00:00
|
|
|
MODULE_PARM_DESC(dvb_powerdown_on_sleep, "0: do not power down, 1: turn LNB voltage off on sleep (default)");
|
2008-10-11 14:44:05 +00:00
|
|
|
module_param(dvb_mfe_wait_time, int, 0644);
|
|
|
|
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)");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#define dprintk if (dvb_frontend_debug) printk
|
|
|
|
|
|
|
|
#define FESTATE_IDLE 1
|
|
|
|
#define FESTATE_RETUNE 2
|
|
|
|
#define FESTATE_TUNING_FAST 4
|
|
|
|
#define FESTATE_TUNING_SLOW 8
|
|
|
|
#define FESTATE_TUNED 16
|
|
|
|
#define FESTATE_ZIGZAG_FAST 32
|
|
|
|
#define FESTATE_ZIGZAG_SLOW 64
|
|
|
|
#define FESTATE_DISEQC 128
|
2009-09-01 22:23:09 +00:00
|
|
|
#define FESTATE_ERROR 256
|
2005-04-16 22:20:36 +00:00
|
|
|
#define FESTATE_WAITFORLOCK (FESTATE_TUNING_FAST | FESTATE_TUNING_SLOW | FESTATE_ZIGZAG_FAST | FESTATE_ZIGZAG_SLOW | FESTATE_DISEQC)
|
|
|
|
#define FESTATE_SEARCHING_FAST (FESTATE_TUNING_FAST | FESTATE_ZIGZAG_FAST)
|
|
|
|
#define FESTATE_SEARCHING_SLOW (FESTATE_TUNING_SLOW | FESTATE_ZIGZAG_SLOW)
|
|
|
|
#define FESTATE_LOSTLOCK (FESTATE_ZIGZAG_FAST | FESTATE_ZIGZAG_SLOW)
|
2006-06-21 13:27:31 +00:00
|
|
|
|
|
|
|
#define FE_ALGO_HW 1
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* FESTATE_IDLE. No tuning parameters have been supplied and the loop is idling.
|
|
|
|
* FESTATE_RETUNE. Parameters have been supplied, but we have not yet performed the first tune.
|
|
|
|
* FESTATE_TUNING_FAST. Tuning parameters have been supplied and fast zigzag scan is in progress.
|
|
|
|
* FESTATE_TUNING_SLOW. Tuning parameters have been supplied. Fast zigzag failed, so we're trying again, but slower.
|
|
|
|
* FESTATE_TUNED. The frontend has successfully locked on.
|
|
|
|
* FESTATE_ZIGZAG_FAST. The lock has been lost, and a fast zigzag has been initiated to try and regain it.
|
|
|
|
* FESTATE_ZIGZAG_SLOW. The lock has been lost. Fast zigzag has been failed, so we're trying again, but slower.
|
|
|
|
* FESTATE_DISEQC. A DISEQC command has just been issued.
|
|
|
|
* FESTATE_WAITFORLOCK. When we're waiting for a lock.
|
|
|
|
* FESTATE_SEARCHING_FAST. When we're searching for a signal using a fast zigzag scan.
|
|
|
|
* FESTATE_SEARCHING_SLOW. When we're searching for a signal using a slow zigzag scan.
|
|
|
|
* FESTATE_LOSTLOCK. When the lock has been lost, and we're searching it again.
|
|
|
|
*/
|
|
|
|
|
2010-05-05 18:59:20 +00:00
|
|
|
#define DVB_FE_NO_EXIT 0
|
|
|
|
#define DVB_FE_NORMAL_EXIT 1
|
|
|
|
#define DVB_FE_DEVICE_REMOVED 2
|
|
|
|
|
2006-02-07 08:49:14 +00:00
|
|
|
static DEFINE_MUTEX(frontend_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
struct dvb_frontend_private {
|
|
|
|
|
2006-01-09 17:25:07 +00:00
|
|
|
/* thread/frontend values */
|
2005-04-16 22:20:36 +00:00
|
|
|
struct dvb_device *dvbdev;
|
2011-05-08 23:03:37 +00:00
|
|
|
struct dvb_frontend_parameters parameters_in;
|
2011-05-08 23:03:40 +00:00
|
|
|
struct dvb_frontend_parameters parameters_out;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct dvb_fe_events events;
|
|
|
|
struct semaphore sem;
|
|
|
|
struct list_head list_head;
|
|
|
|
wait_queue_head_t wait_queue;
|
2007-02-08 17:32:43 +00:00
|
|
|
struct task_struct *thread;
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned long release_jiffies;
|
2006-01-09 17:25:07 +00:00
|
|
|
unsigned int exit;
|
|
|
|
unsigned int wakeup;
|
2005-04-16 22:20:36 +00:00
|
|
|
fe_status_t status;
|
2006-01-09 17:32:43 +00:00
|
|
|
unsigned long tune_mode_flags;
|
2006-01-09 17:25:07 +00:00
|
|
|
unsigned int delay;
|
2006-03-30 18:53:35 +00:00
|
|
|
unsigned int reinitialise;
|
2006-04-06 17:32:23 +00:00
|
|
|
int tone;
|
|
|
|
int voltage;
|
2006-01-09 17:25:07 +00:00
|
|
|
|
|
|
|
/* swzigzag values */
|
|
|
|
unsigned int state;
|
|
|
|
unsigned int bending;
|
|
|
|
int lnb_drift;
|
|
|
|
unsigned int inversion;
|
|
|
|
unsigned int auto_step;
|
|
|
|
unsigned int auto_sub_step;
|
|
|
|
unsigned int started_auto_step;
|
|
|
|
unsigned int min_delay;
|
|
|
|
unsigned int max_drift;
|
|
|
|
unsigned int step_size;
|
|
|
|
int quality;
|
|
|
|
unsigned int check_wrapped;
|
2008-10-14 19:34:07 +00:00
|
|
|
enum dvbfe_search algo_status;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
2006-03-30 18:53:35 +00:00
|
|
|
static void dvb_frontend_wakeup(struct dvb_frontend *fe);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
static void dvb_frontend_add_event(struct dvb_frontend *fe, fe_status_t status)
|
|
|
|
{
|
2005-05-17 04:54:24 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct dvb_fe_events *events = &fepriv->events;
|
|
|
|
struct dvb_frontend_event *e;
|
|
|
|
int wp;
|
|
|
|
|
2008-04-09 02:20:00 +00:00
|
|
|
dprintk ("%s\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-08-04 15:33:15 +00:00
|
|
|
if ((status & FE_HAS_LOCK) && fe->ops.get_frontend)
|
|
|
|
fe->ops.get_frontend(fe, &fepriv->parameters_out);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-08-04 15:33:15 +00:00
|
|
|
mutex_lock(&events->mtx);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-08-04 15:33:15 +00:00
|
|
|
wp = (events->eventw + 1) % MAX_EVENT;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (wp == events->eventr) {
|
|
|
|
events->overflow = 1;
|
|
|
|
events->eventr = (events->eventr + 1) % MAX_EVENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
e = &events->events[events->eventw];
|
2011-08-04 15:33:15 +00:00
|
|
|
e->status = status;
|
2011-05-08 23:03:40 +00:00
|
|
|
e->parameters = fepriv->parameters_out;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
events->eventw = wp;
|
|
|
|
|
2007-07-30 17:58:10 +00:00
|
|
|
mutex_unlock(&events->mtx);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
wake_up_interruptible (&events->wait_queue);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dvb_frontend_get_event(struct dvb_frontend *fe,
|
|
|
|
struct dvb_frontend_event *event, int flags)
|
|
|
|
{
|
2005-05-17 04:54:24 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct dvb_fe_events *events = &fepriv->events;
|
|
|
|
|
2008-04-09 02:20:00 +00:00
|
|
|
dprintk ("%s\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (events->overflow) {
|
|
|
|
events->overflow = 0;
|
|
|
|
return -EOVERFLOW;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (events->eventw == events->eventr) {
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (flags & O_NONBLOCK)
|
|
|
|
return -EWOULDBLOCK;
|
|
|
|
|
|
|
|
up(&fepriv->sem);
|
|
|
|
|
|
|
|
ret = wait_event_interruptible (events->wait_queue,
|
|
|
|
events->eventw != events->eventr);
|
|
|
|
|
|
|
|
if (down_interruptible (&fepriv->sem))
|
|
|
|
return -ERESTARTSYS;
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-04 15:33:15 +00:00
|
|
|
mutex_lock(&events->mtx);
|
|
|
|
*event = events->events[events->eventr];
|
2005-04-16 22:20:36 +00:00
|
|
|
events->eventr = (events->eventr + 1) % MAX_EVENT;
|
2007-07-30 17:58:10 +00:00
|
|
|
mutex_unlock(&events->mtx);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-04 15:33:14 +00:00
|
|
|
static void dvb_frontend_clear_events(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
|
|
|
struct dvb_fe_events *events = &fepriv->events;
|
|
|
|
|
|
|
|
mutex_lock(&events->mtx);
|
|
|
|
events->eventr = events->eventw;
|
|
|
|
mutex_unlock(&events->mtx);
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
static void dvb_frontend_init(struct dvb_frontend *fe)
|
|
|
|
{
|
2008-10-11 14:05:50 +00:00
|
|
|
dprintk ("DVB: initialising adapter %i frontend %i (%s)...\n",
|
2005-04-16 22:20:36 +00:00
|
|
|
fe->dvb->num,
|
2008-10-11 14:05:50 +00:00
|
|
|
fe->id,
|
2006-05-14 08:01:31 +00:00
|
|
|
fe->ops.info.name);
|
|
|
|
|
|
|
|
if (fe->ops.init)
|
|
|
|
fe->ops.init(fe);
|
|
|
|
if (fe->ops.tuner_ops.init) {
|
2008-10-20 21:14:14 +00:00
|
|
|
if (fe->ops.i2c_gate_ctrl)
|
|
|
|
fe->ops.i2c_gate_ctrl(fe, 1);
|
2006-05-14 08:01:31 +00:00
|
|
|
fe->ops.tuner_ops.init(fe);
|
|
|
|
if (fe->ops.i2c_gate_ctrl)
|
|
|
|
fe->ops.i2c_gate_ctrl(fe, 0);
|
2006-04-18 20:47:09 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-03-30 18:53:35 +00:00
|
|
|
void dvb_frontend_reinitialise(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
|
|
|
|
|
|
|
fepriv->reinitialise = 1;
|
|
|
|
dvb_frontend_wakeup(fe);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dvb_frontend_reinitialise);
|
|
|
|
|
2006-01-09 17:25:07 +00:00
|
|
|
static void dvb_frontend_swzigzag_update_delay(struct dvb_frontend_private *fepriv, int locked)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-01-09 17:25:07 +00:00
|
|
|
int q2;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-04-09 02:20:00 +00:00
|
|
|
dprintk ("%s\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-01-09 17:25:07 +00:00
|
|
|
if (locked)
|
|
|
|
(fepriv->quality) = (fepriv->quality * 220 + 36*256) / 256;
|
|
|
|
else
|
|
|
|
(fepriv->quality) = (fepriv->quality * 220 + 0) / 256;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-01-09 17:25:07 +00:00
|
|
|
q2 = fepriv->quality - 128;
|
|
|
|
q2 *= q2;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-01-09 17:25:07 +00:00
|
|
|
fepriv->delay = fepriv->min_delay + q2 * HZ / (128*128);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs automatic twiddling of frontend parameters.
|
|
|
|
*
|
|
|
|
* @param fe The frontend concerned.
|
|
|
|
* @param check_wrapped Checks if an iteration has completed. DO NOT SET ON THE FIRST ATTEMPT
|
|
|
|
* @returns Number of complete iterations that have been performed.
|
|
|
|
*/
|
2006-01-09 17:25:07 +00:00
|
|
|
static int dvb_frontend_swzigzag_autotune(struct dvb_frontend *fe, int check_wrapped)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int autoinversion;
|
|
|
|
int ready = 0;
|
2009-09-01 22:23:09 +00:00
|
|
|
int fe_set_err = 0;
|
2005-05-17 04:54:24 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2011-05-08 23:03:37 +00:00
|
|
|
int original_inversion = fepriv->parameters_in.inversion;
|
|
|
|
u32 original_frequency = fepriv->parameters_in.frequency;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* are we using autoinversion? */
|
2006-05-14 08:01:31 +00:00
|
|
|
autoinversion = ((!(fe->ops.info.caps & FE_CAN_INVERSION_AUTO)) &&
|
2011-05-08 23:03:37 +00:00
|
|
|
(fepriv->parameters_in.inversion == INVERSION_AUTO));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* setup parameters correctly */
|
|
|
|
while(!ready) {
|
|
|
|
/* calculate the lnb_drift */
|
|
|
|
fepriv->lnb_drift = fepriv->auto_step * fepriv->step_size;
|
|
|
|
|
|
|
|
/* wrap the auto_step if we've exceeded the maximum drift */
|
|
|
|
if (fepriv->lnb_drift > fepriv->max_drift) {
|
|
|
|
fepriv->auto_step = 0;
|
|
|
|
fepriv->auto_sub_step = 0;
|
|
|
|
fepriv->lnb_drift = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* perform inversion and +/- zigzag */
|
|
|
|
switch(fepriv->auto_sub_step) {
|
|
|
|
case 0:
|
|
|
|
/* try with the current inversion and current drift setting */
|
|
|
|
ready = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
if (!autoinversion) break;
|
|
|
|
|
|
|
|
fepriv->inversion = (fepriv->inversion == INVERSION_OFF) ? INVERSION_ON : INVERSION_OFF;
|
|
|
|
ready = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
if (fepriv->lnb_drift == 0) break;
|
|
|
|
|
|
|
|
fepriv->lnb_drift = -fepriv->lnb_drift;
|
|
|
|
ready = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
if (fepriv->lnb_drift == 0) break;
|
|
|
|
if (!autoinversion) break;
|
|
|
|
|
|
|
|
fepriv->inversion = (fepriv->inversion == INVERSION_OFF) ? INVERSION_ON : INVERSION_OFF;
|
|
|
|
fepriv->lnb_drift = -fepriv->lnb_drift;
|
|
|
|
ready = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
fepriv->auto_step++;
|
|
|
|
fepriv->auto_sub_step = -1; /* it'll be incremented to 0 in a moment */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ready) fepriv->auto_sub_step++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if this attempt would hit where we started, indicate a complete
|
|
|
|
* iteration has occurred */
|
|
|
|
if ((fepriv->auto_step == fepriv->started_auto_step) &&
|
|
|
|
(fepriv->auto_sub_step == 0) && check_wrapped) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
dprintk("%s: drift:%i inversion:%i auto_step:%i "
|
|
|
|
"auto_sub_step:%i started_auto_step:%i\n",
|
2008-04-09 02:20:00 +00:00
|
|
|
__func__, fepriv->lnb_drift, fepriv->inversion,
|
2005-04-16 22:20:36 +00:00
|
|
|
fepriv->auto_step, fepriv->auto_sub_step, fepriv->started_auto_step);
|
|
|
|
|
|
|
|
/* set the frontend itself */
|
2011-05-08 23:03:37 +00:00
|
|
|
fepriv->parameters_in.frequency += fepriv->lnb_drift;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (autoinversion)
|
2011-05-08 23:03:37 +00:00
|
|
|
fepriv->parameters_in.inversion = fepriv->inversion;
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.set_frontend)
|
2011-05-08 23:03:37 +00:00
|
|
|
fe_set_err = fe->ops.set_frontend(fe, &fepriv->parameters_in);
|
2011-05-08 23:03:40 +00:00
|
|
|
fepriv->parameters_out = fepriv->parameters_in;
|
2009-09-01 22:23:09 +00:00
|
|
|
if (fe_set_err < 0) {
|
|
|
|
fepriv->state = FESTATE_ERROR;
|
|
|
|
return fe_set_err;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-05-08 23:03:37 +00:00
|
|
|
fepriv->parameters_in.frequency = original_frequency;
|
|
|
|
fepriv->parameters_in.inversion = original_inversion;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
fepriv->auto_sub_step++;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-01-09 17:25:07 +00:00
|
|
|
static void dvb_frontend_swzigzag(struct dvb_frontend *fe)
|
|
|
|
{
|
2006-11-17 01:12:40 +00:00
|
|
|
fe_status_t s = 0;
|
2009-09-01 22:23:09 +00:00
|
|
|
int retval = 0;
|
2006-01-09 17:25:07 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
|
|
|
|
|
|
|
/* if we've got no parameters, just keep idling */
|
|
|
|
if (fepriv->state & FESTATE_IDLE) {
|
|
|
|
fepriv->delay = 3*HZ;
|
|
|
|
fepriv->quality = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* in SCAN mode, we just set the frontend when asked and leave it alone */
|
|
|
|
if (fepriv->tune_mode_flags & FE_TUNE_MODE_ONESHOT) {
|
|
|
|
if (fepriv->state & FESTATE_RETUNE) {
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.set_frontend)
|
2009-09-01 22:23:09 +00:00
|
|
|
retval = fe->ops.set_frontend(fe,
|
2011-05-08 23:03:37 +00:00
|
|
|
&fepriv->parameters_in);
|
2011-05-08 23:03:40 +00:00
|
|
|
fepriv->parameters_out = fepriv->parameters_in;
|
2009-09-01 22:23:09 +00:00
|
|
|
if (retval < 0)
|
|
|
|
fepriv->state = FESTATE_ERROR;
|
|
|
|
else
|
|
|
|
fepriv->state = FESTATE_TUNED;
|
2006-01-09 17:25:07 +00:00
|
|
|
}
|
|
|
|
fepriv->delay = 3*HZ;
|
|
|
|
fepriv->quality = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get the frontend status */
|
|
|
|
if (fepriv->state & FESTATE_RETUNE) {
|
|
|
|
s = 0;
|
|
|
|
} else {
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.read_status)
|
|
|
|
fe->ops.read_status(fe, &s);
|
2006-01-09 17:25:07 +00:00
|
|
|
if (s != fepriv->status) {
|
|
|
|
dvb_frontend_add_event(fe, s);
|
|
|
|
fepriv->status = s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if we're not tuned, and we have a lock, move to the TUNED state */
|
|
|
|
if ((fepriv->state & FESTATE_WAITFORLOCK) && (s & FE_HAS_LOCK)) {
|
|
|
|
dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
|
|
|
|
fepriv->state = FESTATE_TUNED;
|
|
|
|
|
|
|
|
/* if we're tuned, then we have determined the correct inversion */
|
2006-05-14 08:01:31 +00:00
|
|
|
if ((!(fe->ops.info.caps & FE_CAN_INVERSION_AUTO)) &&
|
2011-05-08 23:03:37 +00:00
|
|
|
(fepriv->parameters_in.inversion == INVERSION_AUTO)) {
|
|
|
|
fepriv->parameters_in.inversion = fepriv->inversion;
|
2006-01-09 17:25:07 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if we are tuned already, check we're still locked */
|
|
|
|
if (fepriv->state & FESTATE_TUNED) {
|
|
|
|
dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
|
|
|
|
|
|
|
|
/* we're tuned, and the lock is still good... */
|
|
|
|
if (s & FE_HAS_LOCK) {
|
|
|
|
return;
|
|
|
|
} else { /* if we _WERE_ tuned, but now don't have a lock */
|
|
|
|
fepriv->state = FESTATE_ZIGZAG_FAST;
|
|
|
|
fepriv->started_auto_step = fepriv->auto_step;
|
|
|
|
fepriv->check_wrapped = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* don't actually do anything if we're in the LOSTLOCK state,
|
|
|
|
* the frontend is set to FE_CAN_RECOVER, and the max_drift is 0 */
|
|
|
|
if ((fepriv->state & FESTATE_LOSTLOCK) &&
|
2006-05-14 08:01:31 +00:00
|
|
|
(fe->ops.info.caps & FE_CAN_RECOVER) && (fepriv->max_drift == 0)) {
|
2006-01-09 17:25:07 +00:00
|
|
|
dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* don't do anything if we're in the DISEQC state, since this
|
|
|
|
* might be someone with a motorized dish controlled by DISEQC.
|
|
|
|
* If its actually a re-tune, there will be a SET_FRONTEND soon enough. */
|
|
|
|
if (fepriv->state & FESTATE_DISEQC) {
|
|
|
|
dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if we're in the RETUNE state, set everything up for a brand
|
|
|
|
* new scan, keeping the current inversion setting, as the next
|
|
|
|
* tune is _very_ likely to require the same */
|
|
|
|
if (fepriv->state & FESTATE_RETUNE) {
|
|
|
|
fepriv->lnb_drift = 0;
|
|
|
|
fepriv->auto_step = 0;
|
|
|
|
fepriv->auto_sub_step = 0;
|
|
|
|
fepriv->started_auto_step = 0;
|
|
|
|
fepriv->check_wrapped = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fast zigzag. */
|
|
|
|
if ((fepriv->state & FESTATE_SEARCHING_FAST) || (fepriv->state & FESTATE_RETUNE)) {
|
|
|
|
fepriv->delay = fepriv->min_delay;
|
|
|
|
|
2010-05-06 12:30:25 +00:00
|
|
|
/* perform a tune */
|
2009-09-01 22:23:09 +00:00
|
|
|
retval = dvb_frontend_swzigzag_autotune(fe,
|
|
|
|
fepriv->check_wrapped);
|
|
|
|
if (retval < 0) {
|
|
|
|
return;
|
|
|
|
} else if (retval) {
|
2006-01-09 17:25:07 +00:00
|
|
|
/* OK, if we've run out of trials at the fast speed.
|
|
|
|
* Drop back to slow for the _next_ attempt */
|
|
|
|
fepriv->state = FESTATE_SEARCHING_SLOW;
|
|
|
|
fepriv->started_auto_step = fepriv->auto_step;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
fepriv->check_wrapped = 1;
|
|
|
|
|
|
|
|
/* if we've just retuned, enter the ZIGZAG_FAST state.
|
|
|
|
* This ensures we cannot return from an
|
|
|
|
* FE_SET_FRONTEND ioctl before the first frontend tune
|
|
|
|
* occurs */
|
|
|
|
if (fepriv->state & FESTATE_RETUNE) {
|
|
|
|
fepriv->state = FESTATE_TUNING_FAST;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* slow zigzag */
|
|
|
|
if (fepriv->state & FESTATE_SEARCHING_SLOW) {
|
|
|
|
dvb_frontend_swzigzag_update_delay(fepriv, s & FE_HAS_LOCK);
|
|
|
|
|
|
|
|
/* Note: don't bother checking for wrapping; we stay in this
|
|
|
|
* state until we get a lock */
|
|
|
|
dvb_frontend_swzigzag_autotune(fe, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
static int dvb_frontend_is_exiting(struct dvb_frontend *fe)
|
|
|
|
{
|
2005-05-17 04:54:24 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-05-05 18:59:20 +00:00
|
|
|
if (fepriv->exit != DVB_FE_NO_EXIT)
|
2005-04-16 22:20:36 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (fepriv->dvbdev->writers == 1)
|
2005-06-24 05:02:39 +00:00
|
|
|
if (time_after(jiffies, fepriv->release_jiffies +
|
2006-01-09 17:25:07 +00:00
|
|
|
dvb_shutdown_timeout * HZ))
|
2005-04-16 22:20:36 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dvb_frontend_should_wakeup(struct dvb_frontend *fe)
|
|
|
|
{
|
2005-05-17 04:54:24 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (fepriv->wakeup) {
|
|
|
|
fepriv->wakeup = 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return dvb_frontend_is_exiting(fe);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dvb_frontend_wakeup(struct dvb_frontend *fe)
|
|
|
|
{
|
2005-05-17 04:54:24 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
fepriv->wakeup = 1;
|
|
|
|
wake_up_interruptible(&fepriv->wait_queue);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dvb_frontend_thread(void *data)
|
|
|
|
{
|
2005-05-17 04:54:24 +00:00
|
|
|
struct dvb_frontend *fe = data;
|
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2005-04-16 22:20:36 +00:00
|
|
|
fe_status_t s;
|
2008-10-14 19:34:07 +00:00
|
|
|
enum dvbfe_algo algo;
|
|
|
|
|
2006-01-09 17:25:07 +00:00
|
|
|
struct dvb_frontend_parameters *params;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-04-09 02:20:00 +00:00
|
|
|
dprintk("%s\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-01-09 17:25:07 +00:00
|
|
|
fepriv->check_wrapped = 0;
|
|
|
|
fepriv->quality = 0;
|
|
|
|
fepriv->delay = 3*HZ;
|
2005-04-16 22:20:36 +00:00
|
|
|
fepriv->status = 0;
|
|
|
|
fepriv->wakeup = 0;
|
2006-07-10 06:34:14 +00:00
|
|
|
fepriv->reinitialise = 0;
|
|
|
|
|
|
|
|
dvb_frontend_init(fe);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-07-17 11:03:35 +00:00
|
|
|
set_freezable();
|
2005-04-16 22:20:36 +00:00
|
|
|
while (1) {
|
|
|
|
up(&fepriv->sem); /* is locked when we enter the thread... */
|
2007-02-08 17:36:57 +00:00
|
|
|
restart:
|
2011-08-27 14:30:25 +00:00
|
|
|
wait_event_interruptible_timeout(fepriv->wait_queue,
|
2007-10-18 10:04:45 +00:00
|
|
|
dvb_frontend_should_wakeup(fe) || kthread_should_stop()
|
|
|
|
|| freezing(current),
|
2007-02-08 17:32:43 +00:00
|
|
|
fepriv->delay);
|
|
|
|
|
|
|
|
if (kthread_should_stop() || dvb_frontend_is_exiting(fe)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
/* got signal or quitting */
|
2010-05-05 18:59:20 +00:00
|
|
|
fepriv->exit = DVB_FE_NORMAL_EXIT;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-02-08 17:32:43 +00:00
|
|
|
if (try_to_freeze())
|
2007-02-08 17:36:57 +00:00
|
|
|
goto restart;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (down_interruptible(&fepriv->sem))
|
|
|
|
break;
|
|
|
|
|
2006-03-30 18:53:35 +00:00
|
|
|
if (fepriv->reinitialise) {
|
|
|
|
dvb_frontend_init(fe);
|
2011-08-24 17:33:52 +00:00
|
|
|
if (fe->ops.set_tone && fepriv->tone != -1)
|
2006-05-14 08:01:31 +00:00
|
|
|
fe->ops.set_tone(fe, fepriv->tone);
|
2011-08-24 17:33:52 +00:00
|
|
|
if (fe->ops.set_voltage && fepriv->voltage != -1)
|
2006-05-14 08:01:31 +00:00
|
|
|
fe->ops.set_voltage(fe, fepriv->voltage);
|
2006-03-30 18:53:35 +00:00
|
|
|
fepriv->reinitialise = 0;
|
|
|
|
}
|
|
|
|
|
2006-01-09 17:25:07 +00:00
|
|
|
/* do an iteration of the tuning loop */
|
2006-06-24 14:18:58 +00:00
|
|
|
if (fe->ops.get_frontend_algo) {
|
2008-10-14 19:34:07 +00:00
|
|
|
algo = fe->ops.get_frontend_algo(fe);
|
|
|
|
switch (algo) {
|
|
|
|
case DVBFE_ALGO_HW:
|
|
|
|
dprintk("%s: Frontend ALGO = DVBFE_ALGO_HW\n", __func__);
|
|
|
|
params = NULL; /* have we been asked to RETUNE ? */
|
|
|
|
|
2006-06-24 14:18:58 +00:00
|
|
|
if (fepriv->state & FESTATE_RETUNE) {
|
2008-10-14 19:34:07 +00:00
|
|
|
dprintk("%s: Retune requested, FESTATE_RETUNE\n", __func__);
|
2011-05-08 23:03:37 +00:00
|
|
|
params = &fepriv->parameters_in;
|
2006-06-24 14:18:58 +00:00
|
|
|
fepriv->state = FESTATE_TUNED;
|
|
|
|
}
|
|
|
|
|
2008-10-14 19:34:07 +00:00
|
|
|
if (fe->ops.tune)
|
|
|
|
fe->ops.tune(fe, params, fepriv->tune_mode_flags, &fepriv->delay, &s);
|
2011-05-08 23:03:40 +00:00
|
|
|
if (params)
|
|
|
|
fepriv->parameters_out = *params;
|
2008-10-14 19:34:07 +00:00
|
|
|
|
2008-12-18 09:27:50 +00:00
|
|
|
if (s != fepriv->status && !(fepriv->tune_mode_flags & FE_TUNE_MODE_ONESHOT)) {
|
2008-10-14 19:34:07 +00:00
|
|
|
dprintk("%s: state changed, adding current state\n", __func__);
|
2006-06-24 14:18:58 +00:00
|
|
|
dvb_frontend_add_event(fe, s);
|
|
|
|
fepriv->status = s;
|
|
|
|
}
|
2008-10-14 19:34:07 +00:00
|
|
|
break;
|
|
|
|
case DVBFE_ALGO_SW:
|
|
|
|
dprintk("%s: Frontend ALGO = DVBFE_ALGO_SW\n", __func__);
|
2006-06-30 01:05:23 +00:00
|
|
|
dvb_frontend_swzigzag(fe);
|
2008-10-14 19:34:07 +00:00
|
|
|
break;
|
|
|
|
case DVBFE_ALGO_CUSTOM:
|
|
|
|
dprintk("%s: Frontend ALGO = DVBFE_ALGO_CUSTOM, state=%d\n", __func__, fepriv->state);
|
|
|
|
if (fepriv->state & FESTATE_RETUNE) {
|
|
|
|
dprintk("%s: Retune requested, FESTAT_RETUNE\n", __func__);
|
|
|
|
fepriv->state = FESTATE_TUNED;
|
|
|
|
}
|
|
|
|
/* Case where we are going to search for a carrier
|
|
|
|
* User asked us to retune again for some reason, possibly
|
|
|
|
* requesting a search with a new set of parameters
|
|
|
|
*/
|
|
|
|
if (fepriv->algo_status & DVBFE_ALGO_SEARCH_AGAIN) {
|
2008-10-20 09:05:21 +00:00
|
|
|
if (fe->ops.search) {
|
2011-05-08 23:03:37 +00:00
|
|
|
fepriv->algo_status = fe->ops.search(fe, &fepriv->parameters_in);
|
2008-10-14 19:34:07 +00:00
|
|
|
/* We did do a search as was requested, the flags are
|
|
|
|
* now unset as well and has the flags wrt to search.
|
|
|
|
*/
|
2008-10-20 09:05:21 +00:00
|
|
|
} else {
|
|
|
|
fepriv->algo_status &= ~DVBFE_ALGO_SEARCH_AGAIN;
|
|
|
|
}
|
2008-10-14 19:34:07 +00:00
|
|
|
}
|
|
|
|
/* Track the carrier if the search was successful */
|
|
|
|
if (fepriv->algo_status == DVBFE_ALGO_SEARCH_SUCCESS) {
|
|
|
|
if (fe->ops.track)
|
2011-05-08 23:03:37 +00:00
|
|
|
fe->ops.track(fe, &fepriv->parameters_in);
|
2008-10-20 09:05:21 +00:00
|
|
|
} else {
|
|
|
|
fepriv->algo_status |= DVBFE_ALGO_SEARCH_AGAIN;
|
|
|
|
fepriv->delay = HZ / 2;
|
|
|
|
}
|
2011-05-08 23:03:40 +00:00
|
|
|
fepriv->parameters_out = fepriv->parameters_in;
|
2008-10-20 09:05:21 +00:00
|
|
|
fe->ops.read_status(fe, &s);
|
|
|
|
if (s != fepriv->status) {
|
|
|
|
dvb_frontend_add_event(fe, s); /* update event list */
|
|
|
|
fepriv->status = s;
|
|
|
|
if (!(s & FE_HAS_LOCK)) {
|
|
|
|
fepriv->delay = HZ / 10;
|
|
|
|
fepriv->algo_status |= DVBFE_ALGO_SEARCH_AGAIN;
|
|
|
|
} else {
|
|
|
|
fepriv->delay = 60 * HZ;
|
|
|
|
}
|
2008-10-14 19:34:07 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
dprintk("%s: UNDEFINED ALGO !\n", __func__);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
2006-06-25 08:46:26 +00:00
|
|
|
dvb_frontend_swzigzag(fe);
|
2008-10-14 19:34:07 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2007-08-25 16:17:53 +00:00
|
|
|
if (dvb_powerdown_on_sleep) {
|
|
|
|
if (fe->ops.set_voltage)
|
|
|
|
fe->ops.set_voltage(fe, SEC_VOLTAGE_OFF);
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.tuner_ops.sleep) {
|
2008-11-16 03:44:52 +00:00
|
|
|
if (fe->ops.i2c_gate_ctrl)
|
|
|
|
fe->ops.i2c_gate_ctrl(fe, 1);
|
2006-05-14 08:01:31 +00:00
|
|
|
fe->ops.tuner_ops.sleep(fe);
|
|
|
|
if (fe->ops.i2c_gate_ctrl)
|
|
|
|
fe->ops.i2c_gate_ctrl(fe, 0);
|
2006-04-18 20:47:09 +00:00
|
|
|
}
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.sleep)
|
|
|
|
fe->ops.sleep(fe);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2007-02-08 17:32:43 +00:00
|
|
|
fepriv->thread = NULL;
|
2010-05-05 18:59:20 +00:00
|
|
|
if (kthread_should_stop())
|
|
|
|
fepriv->exit = DVB_FE_DEVICE_REMOVED;
|
|
|
|
else
|
|
|
|
fepriv->exit = DVB_FE_NO_EXIT;
|
2005-04-16 22:20:36 +00:00
|
|
|
mb();
|
|
|
|
|
|
|
|
dvb_frontend_wakeup(fe);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dvb_frontend_stop(struct dvb_frontend *fe)
|
|
|
|
{
|
2005-05-17 04:54:24 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-04-09 02:20:00 +00:00
|
|
|
dprintk ("%s\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-05-05 18:59:20 +00:00
|
|
|
fepriv->exit = DVB_FE_NORMAL_EXIT;
|
2005-04-16 22:20:36 +00:00
|
|
|
mb();
|
|
|
|
|
2007-02-08 17:32:43 +00:00
|
|
|
if (!fepriv->thread)
|
2005-04-16 22:20:36 +00:00
|
|
|
return;
|
|
|
|
|
2007-02-08 17:32:43 +00:00
|
|
|
kthread_stop(fepriv->thread);
|
2007-04-14 13:18:58 +00:00
|
|
|
|
2010-09-07 14:33:27 +00:00
|
|
|
sema_init(&fepriv->sem, 1);
|
2005-04-16 22:20:36 +00:00
|
|
|
fepriv->state = FESTATE_IDLE;
|
|
|
|
|
|
|
|
/* paranoia check in case a signal arrived */
|
2007-02-08 17:32:43 +00:00
|
|
|
if (fepriv->thread)
|
|
|
|
printk("dvb_frontend_stop: warning: thread %p won't exit\n",
|
|
|
|
fepriv->thread);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-11-09 05:35:27 +00:00
|
|
|
s32 timeval_usec_diff(struct timeval lasttime, struct timeval curtime)
|
|
|
|
{
|
|
|
|
return ((curtime.tv_usec < lasttime.tv_usec) ?
|
|
|
|
1000000 - lasttime.tv_usec + curtime.tv_usec :
|
|
|
|
curtime.tv_usec - lasttime.tv_usec);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(timeval_usec_diff);
|
|
|
|
|
|
|
|
static inline void timeval_usec_add(struct timeval *curtime, u32 add_usec)
|
|
|
|
{
|
|
|
|
curtime->tv_usec += add_usec;
|
|
|
|
if (curtime->tv_usec >= 1000000) {
|
|
|
|
curtime->tv_usec -= 1000000;
|
|
|
|
curtime->tv_sec++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sleep until gettimeofday() > waketime + add_usec
|
|
|
|
* This needs to be as precise as possible, but as the delay is
|
|
|
|
* usually between 2ms and 32ms, it is done using a scheduled msleep
|
|
|
|
* followed by usleep (normally a busy-wait loop) for the remainder
|
|
|
|
*/
|
|
|
|
void dvb_frontend_sleep_until(struct timeval *waketime, u32 add_usec)
|
|
|
|
{
|
|
|
|
struct timeval lasttime;
|
|
|
|
s32 delta, newdelta;
|
|
|
|
|
|
|
|
timeval_usec_add(waketime, add_usec);
|
|
|
|
|
|
|
|
do_gettimeofday(&lasttime);
|
|
|
|
delta = timeval_usec_diff(lasttime, *waketime);
|
|
|
|
if (delta > 2500) {
|
|
|
|
msleep((delta - 1500) / 1000);
|
|
|
|
do_gettimeofday(&lasttime);
|
|
|
|
newdelta = timeval_usec_diff(lasttime, *waketime);
|
|
|
|
delta = (newdelta > delta) ? 0 : newdelta;
|
|
|
|
}
|
|
|
|
if (delta > 0)
|
|
|
|
udelay(delta);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dvb_frontend_sleep_until);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
static int dvb_frontend_start(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
int ret;
|
2005-05-17 04:54:24 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2007-02-08 17:32:43 +00:00
|
|
|
struct task_struct *fe_thread;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-04-09 02:20:00 +00:00
|
|
|
dprintk ("%s\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-02-08 17:32:43 +00:00
|
|
|
if (fepriv->thread) {
|
2010-05-05 18:59:20 +00:00
|
|
|
if (fepriv->exit == DVB_FE_NO_EXIT)
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
dvb_frontend_stop (fe);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (signal_pending(current))
|
|
|
|
return -EINTR;
|
|
|
|
if (down_interruptible (&fepriv->sem))
|
|
|
|
return -EINTR;
|
|
|
|
|
|
|
|
fepriv->state = FESTATE_IDLE;
|
2010-05-05 18:59:20 +00:00
|
|
|
fepriv->exit = DVB_FE_NO_EXIT;
|
2007-02-08 17:32:43 +00:00
|
|
|
fepriv->thread = NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
mb();
|
|
|
|
|
2007-02-08 17:32:43 +00:00
|
|
|
fe_thread = kthread_run(dvb_frontend_thread, fe,
|
2008-10-11 14:05:50 +00:00
|
|
|
"kdvb-ad-%i-fe-%i", fe->dvb->num,fe->id);
|
2007-02-08 17:32:43 +00:00
|
|
|
if (IS_ERR(fe_thread)) {
|
|
|
|
ret = PTR_ERR(fe_thread);
|
|
|
|
printk("dvb_frontend_start: failed to start kthread (%d)\n", ret);
|
2005-04-16 22:20:36 +00:00
|
|
|
up(&fepriv->sem);
|
|
|
|
return ret;
|
|
|
|
}
|
2007-02-08 17:32:43 +00:00
|
|
|
fepriv->thread = fe_thread;
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-05-06 12:30:25 +00:00
|
|
|
static void dvb_frontend_get_frequency_limits(struct dvb_frontend *fe,
|
2007-08-09 04:03:42 +00:00
|
|
|
u32 *freq_min, u32 *freq_max)
|
|
|
|
{
|
|
|
|
*freq_min = max(fe->ops.info.frequency_min, fe->ops.tuner_ops.info.frequency_min);
|
|
|
|
|
|
|
|
if (fe->ops.info.frequency_max == 0)
|
|
|
|
*freq_max = fe->ops.tuner_ops.info.frequency_max;
|
|
|
|
else if (fe->ops.tuner_ops.info.frequency_max == 0)
|
|
|
|
*freq_max = fe->ops.info.frequency_max;
|
|
|
|
else
|
|
|
|
*freq_max = min(fe->ops.info.frequency_max, fe->ops.tuner_ops.info.frequency_max);
|
|
|
|
|
|
|
|
if (*freq_min == 0 || *freq_max == 0)
|
2008-10-11 14:05:50 +00:00
|
|
|
printk(KERN_WARNING "DVB: adapter %i frontend %u frequency limits undefined - fix the driver\n",
|
|
|
|
fe->dvb->num,fe->id);
|
2007-08-09 04:03:42 +00:00
|
|
|
}
|
|
|
|
|
2007-07-24 00:00:36 +00:00
|
|
|
static int dvb_frontend_check_parameters(struct dvb_frontend *fe,
|
|
|
|
struct dvb_frontend_parameters *parms)
|
|
|
|
{
|
2007-08-09 04:03:42 +00:00
|
|
|
u32 freq_min;
|
|
|
|
u32 freq_max;
|
|
|
|
|
2007-07-24 00:00:36 +00:00
|
|
|
/* range check: frequency */
|
2010-05-06 12:30:25 +00:00
|
|
|
dvb_frontend_get_frequency_limits(fe, &freq_min, &freq_max);
|
2007-08-09 04:03:42 +00:00
|
|
|
if ((freq_min && parms->frequency < freq_min) ||
|
|
|
|
(freq_max && parms->frequency > freq_max)) {
|
2008-10-11 14:05:50 +00:00
|
|
|
printk(KERN_WARNING "DVB: adapter %i frontend %i frequency %u out of range (%u..%u)\n",
|
|
|
|
fe->dvb->num, fe->id, parms->frequency, freq_min, freq_max);
|
2007-07-24 00:00:36 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* range check: symbol rate */
|
|
|
|
if (fe->ops.info.type == FE_QPSK) {
|
|
|
|
if ((fe->ops.info.symbol_rate_min &&
|
|
|
|
parms->u.qpsk.symbol_rate < fe->ops.info.symbol_rate_min) ||
|
|
|
|
(fe->ops.info.symbol_rate_max &&
|
|
|
|
parms->u.qpsk.symbol_rate > fe->ops.info.symbol_rate_max)) {
|
2008-10-11 14:05:50 +00:00
|
|
|
printk(KERN_WARNING "DVB: adapter %i frontend %i symbol rate %u out of range (%u..%u)\n",
|
|
|
|
fe->dvb->num, fe->id, parms->u.qpsk.symbol_rate,
|
2007-07-24 00:00:36 +00:00
|
|
|
fe->ops.info.symbol_rate_min, fe->ops.info.symbol_rate_max);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (fe->ops.info.type == FE_QAM) {
|
|
|
|
if ((fe->ops.info.symbol_rate_min &&
|
|
|
|
parms->u.qam.symbol_rate < fe->ops.info.symbol_rate_min) ||
|
|
|
|
(fe->ops.info.symbol_rate_max &&
|
|
|
|
parms->u.qam.symbol_rate > fe->ops.info.symbol_rate_max)) {
|
2008-10-11 14:05:50 +00:00
|
|
|
printk(KERN_WARNING "DVB: adapter %i frontend %i symbol rate %u out of range (%u..%u)\n",
|
|
|
|
fe->dvb->num, fe->id, parms->u.qam.symbol_rate,
|
2007-07-24 00:00:36 +00:00
|
|
|
fe->ops.info.symbol_rate_min, fe->ops.info.symbol_rate_max);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-01 22:24:08 +00:00
|
|
|
/* check for supported modulation */
|
|
|
|
if (fe->ops.info.type == FE_QAM &&
|
|
|
|
(parms->u.qam.modulation > QAM_AUTO ||
|
|
|
|
!((1 << (parms->u.qam.modulation + 10)) & fe->ops.info.caps))) {
|
|
|
|
printk(KERN_WARNING "DVB: adapter %i frontend %i modulation %u not supported\n",
|
|
|
|
fe->dvb->num, fe->id, parms->u.qam.modulation);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2007-07-24 00:00:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-03 17:39:15 +00:00
|
|
|
static int dvb_frontend_clear_cache(struct dvb_frontend *fe)
|
|
|
|
{
|
2011-05-08 23:03:39 +00:00
|
|
|
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
|
2009-08-03 17:39:15 +00:00
|
|
|
int i;
|
|
|
|
|
2011-05-08 23:03:39 +00:00
|
|
|
memset(c, 0, sizeof(struct dtv_frontend_properties));
|
|
|
|
|
|
|
|
c->state = DTV_CLEAR;
|
|
|
|
c->delivery_system = SYS_UNDEFINED;
|
|
|
|
c->inversion = INVERSION_AUTO;
|
|
|
|
c->fec_inner = FEC_AUTO;
|
|
|
|
c->transmission_mode = TRANSMISSION_MODE_AUTO;
|
|
|
|
c->bandwidth_hz = BANDWIDTH_AUTO;
|
|
|
|
c->guard_interval = GUARD_INTERVAL_AUTO;
|
|
|
|
c->hierarchy = HIERARCHY_AUTO;
|
|
|
|
c->symbol_rate = QAM_AUTO;
|
|
|
|
c->code_rate_HP = FEC_AUTO;
|
|
|
|
c->code_rate_LP = FEC_AUTO;
|
2011-11-11 14:46:23 +00:00
|
|
|
c->rolloff = ROLLOFF_AUTO;
|
2011-05-08 23:03:39 +00:00
|
|
|
|
|
|
|
c->isdbt_partial_reception = -1;
|
|
|
|
c->isdbt_sb_mode = -1;
|
|
|
|
c->isdbt_sb_subchannel = -1;
|
|
|
|
c->isdbt_sb_segment_idx = -1;
|
|
|
|
c->isdbt_sb_segment_count = -1;
|
|
|
|
c->isdbt_layer_enabled = 0x7;
|
2009-08-03 17:39:15 +00:00
|
|
|
for (i = 0; i < 3; i++) {
|
2011-05-08 23:03:39 +00:00
|
|
|
c->layer[i].fec = FEC_AUTO;
|
|
|
|
c->layer[i].modulation = QAM_AUTO;
|
|
|
|
c->layer[i].interleaving = -1;
|
|
|
|
c->layer[i].segment_count = -1;
|
2009-08-03 17:39:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define _DTV_CMD(n, s, b) \
|
|
|
|
[n] = { \
|
|
|
|
.name = #n, \
|
|
|
|
.cmd = n, \
|
|
|
|
.set = s,\
|
|
|
|
.buffer = b \
|
|
|
|
}
|
|
|
|
|
2011-05-26 10:54:14 +00:00
|
|
|
static struct dtv_cmds_h dtv_cmds[DTV_MAX_COMMAND + 1] = {
|
2009-10-23 23:09:42 +00:00
|
|
|
_DTV_CMD(DTV_TUNE, 1, 0),
|
|
|
|
_DTV_CMD(DTV_CLEAR, 1, 0),
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
|
|
|
|
/* Set */
|
2009-10-23 23:09:42 +00:00
|
|
|
_DTV_CMD(DTV_FREQUENCY, 1, 0),
|
|
|
|
_DTV_CMD(DTV_BANDWIDTH_HZ, 1, 0),
|
|
|
|
_DTV_CMD(DTV_MODULATION, 1, 0),
|
|
|
|
_DTV_CMD(DTV_INVERSION, 1, 0),
|
|
|
|
_DTV_CMD(DTV_DISEQC_MASTER, 1, 1),
|
|
|
|
_DTV_CMD(DTV_SYMBOL_RATE, 1, 0),
|
|
|
|
_DTV_CMD(DTV_INNER_FEC, 1, 0),
|
|
|
|
_DTV_CMD(DTV_VOLTAGE, 1, 0),
|
|
|
|
_DTV_CMD(DTV_TONE, 1, 0),
|
|
|
|
_DTV_CMD(DTV_PILOT, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ROLLOFF, 1, 0),
|
|
|
|
_DTV_CMD(DTV_DELIVERY_SYSTEM, 1, 0),
|
|
|
|
_DTV_CMD(DTV_HIERARCHY, 1, 0),
|
|
|
|
_DTV_CMD(DTV_CODE_RATE_HP, 1, 0),
|
|
|
|
_DTV_CMD(DTV_CODE_RATE_LP, 1, 0),
|
|
|
|
_DTV_CMD(DTV_GUARD_INTERVAL, 1, 0),
|
|
|
|
_DTV_CMD(DTV_TRANSMISSION_MODE, 1, 0),
|
2009-08-03 17:39:15 +00:00
|
|
|
|
|
|
|
_DTV_CMD(DTV_ISDBT_PARTIAL_RECEPTION, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_SOUND_BROADCASTING, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_SB_SUBCHANNEL_ID, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_SB_SEGMENT_IDX, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_SB_SEGMENT_COUNT, 1, 0),
|
2009-08-14 08:24:19 +00:00
|
|
|
_DTV_CMD(DTV_ISDBT_LAYER_ENABLED, 1, 0),
|
2009-08-03 17:39:15 +00:00
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERA_FEC, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERA_MODULATION, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERA_SEGMENT_COUNT, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERA_TIME_INTERLEAVING, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERB_FEC, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERB_MODULATION, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERB_SEGMENT_COUNT, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERB_TIME_INTERLEAVING, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERC_FEC, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERC_MODULATION, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERC_SEGMENT_COUNT, 1, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERC_TIME_INTERLEAVING, 1, 0),
|
|
|
|
|
|
|
|
_DTV_CMD(DTV_ISDBT_PARTIAL_RECEPTION, 0, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_SOUND_BROADCASTING, 0, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_SB_SUBCHANNEL_ID, 0, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_SB_SEGMENT_IDX, 0, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_SB_SEGMENT_COUNT, 0, 0),
|
2009-08-14 08:24:19 +00:00
|
|
|
_DTV_CMD(DTV_ISDBT_LAYER_ENABLED, 0, 0),
|
2009-08-03 17:39:15 +00:00
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERA_FEC, 0, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERA_MODULATION, 0, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERA_SEGMENT_COUNT, 0, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERA_TIME_INTERLEAVING, 0, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERB_FEC, 0, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERB_MODULATION, 0, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERB_SEGMENT_COUNT, 0, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERB_TIME_INTERLEAVING, 0, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERC_FEC, 0, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERC_MODULATION, 0, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERC_SEGMENT_COUNT, 0, 0),
|
|
|
|
_DTV_CMD(DTV_ISDBT_LAYERC_TIME_INTERLEAVING, 0, 0),
|
|
|
|
|
2009-09-18 14:17:54 +00:00
|
|
|
_DTV_CMD(DTV_ISDBS_TS_ID, 1, 0),
|
2011-05-26 10:54:14 +00:00
|
|
|
_DTV_CMD(DTV_DVBT2_PLP_ID, 1, 0),
|
2009-09-18 14:17:54 +00:00
|
|
|
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
/* Get */
|
2009-10-23 23:09:42 +00:00
|
|
|
_DTV_CMD(DTV_DISEQC_SLAVE_REPLY, 0, 1),
|
|
|
|
_DTV_CMD(DTV_API_VERSION, 0, 0),
|
|
|
|
_DTV_CMD(DTV_CODE_RATE_HP, 0, 0),
|
|
|
|
_DTV_CMD(DTV_CODE_RATE_LP, 0, 0),
|
|
|
|
_DTV_CMD(DTV_GUARD_INTERVAL, 0, 0),
|
|
|
|
_DTV_CMD(DTV_TRANSMISSION_MODE, 0, 0),
|
|
|
|
_DTV_CMD(DTV_HIERARCHY, 0, 0),
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
};
|
|
|
|
|
2009-01-05 04:19:06 +00:00
|
|
|
static void dtv_property_dump(struct dtv_property *tvp)
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2011-07-15 11:49:06 +00:00
|
|
|
if (tvp->cmd <= 0 || tvp->cmd > DTV_MAX_COMMAND) {
|
2008-10-17 03:20:19 +00:00
|
|
|
printk(KERN_WARNING "%s: tvp.cmd = 0x%08x undefined\n",
|
2008-10-03 14:50:00 +00:00
|
|
|
__func__, tvp->cmd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-10-17 03:20:19 +00:00
|
|
|
dprintk("%s() tvp.cmd = 0x%08x (%s)\n"
|
|
|
|
,__func__
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
,tvp->cmd
|
2008-09-11 13:19:27 +00:00
|
|
|
,dtv_cmds[ tvp->cmd ].name);
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
|
2008-09-11 13:19:27 +00:00
|
|
|
if(dtv_cmds[ tvp->cmd ].buffer) {
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
|
2008-10-17 03:20:19 +00:00
|
|
|
dprintk("%s() tvp.u.buffer.len = 0x%02x\n"
|
|
|
|
,__func__
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
,tvp->u.buffer.len);
|
|
|
|
|
|
|
|
for(i = 0; i < tvp->u.buffer.len; i++)
|
2008-10-17 03:20:19 +00:00
|
|
|
dprintk("%s() tvp.u.buffer.data[0x%02x] = 0x%02x\n"
|
|
|
|
,__func__
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
,i
|
|
|
|
,tvp->u.buffer.data[i]);
|
|
|
|
|
|
|
|
} else
|
2008-10-17 03:20:19 +00:00
|
|
|
dprintk("%s() tvp.u.data = 0x%08x\n", __func__, tvp->u.data);
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
}
|
|
|
|
|
2009-01-05 04:19:06 +00:00
|
|
|
static int is_legacy_delivery_system(fe_delivery_system_t s)
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
{
|
|
|
|
if((s == SYS_UNDEFINED) || (s == SYS_DVBC_ANNEX_AC) ||
|
2008-11-16 03:33:32 +00:00
|
|
|
(s == SYS_DVBC_ANNEX_B) || (s == SYS_DVBT) || (s == SYS_DVBS) ||
|
|
|
|
(s == SYS_ATSC))
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-16 14:04:06 +00:00
|
|
|
/* Initialize the cache with some default values derived from the
|
|
|
|
* legacy frontend_info structure.
|
|
|
|
*/
|
|
|
|
static void dtv_property_cache_init(struct dvb_frontend *fe,
|
|
|
|
struct dtv_frontend_properties *c)
|
|
|
|
{
|
|
|
|
switch (fe->ops.info.type) {
|
|
|
|
case FE_QPSK:
|
|
|
|
c->modulation = QPSK; /* implied for DVB-S in legacy API */
|
|
|
|
c->rolloff = ROLLOFF_35;/* implied for DVB-S */
|
|
|
|
c->delivery_system = SYS_DVBS;
|
|
|
|
break;
|
|
|
|
case FE_QAM:
|
|
|
|
c->delivery_system = SYS_DVBC_ANNEX_AC;
|
2011-11-11 14:46:23 +00:00
|
|
|
c->rolloff = ROLLOFF_15; /* implied for Annex A */
|
2011-08-16 14:04:06 +00:00
|
|
|
break;
|
|
|
|
case FE_OFDM:
|
|
|
|
c->delivery_system = SYS_DVBT;
|
|
|
|
break;
|
|
|
|
case FE_ATSC:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-12 02:52:32 +00:00
|
|
|
/* Synchronise the legacy tuning parameters into the cache, so that demodulator
|
|
|
|
* drivers can use a single set_frontend tuning function, regardless of whether
|
|
|
|
* it's being used for the legacy or new API, reducing code and complexity.
|
|
|
|
*/
|
2009-01-05 04:19:06 +00:00
|
|
|
static void dtv_property_cache_sync(struct dvb_frontend *fe,
|
2011-05-08 23:03:41 +00:00
|
|
|
struct dtv_frontend_properties *c,
|
|
|
|
const struct dvb_frontend_parameters *p)
|
2008-09-12 02:52:32 +00:00
|
|
|
{
|
|
|
|
c->frequency = p->frequency;
|
|
|
|
c->inversion = p->inversion;
|
|
|
|
|
|
|
|
switch (fe->ops.info.type) {
|
|
|
|
case FE_QPSK:
|
|
|
|
c->symbol_rate = p->u.qpsk.symbol_rate;
|
|
|
|
c->fec_inner = p->u.qpsk.fec_inner;
|
|
|
|
break;
|
|
|
|
case FE_QAM:
|
|
|
|
c->symbol_rate = p->u.qam.symbol_rate;
|
|
|
|
c->fec_inner = p->u.qam.fec_inner;
|
|
|
|
c->modulation = p->u.qam.modulation;
|
|
|
|
break;
|
|
|
|
case FE_OFDM:
|
2008-09-13 19:56:34 +00:00
|
|
|
if (p->u.ofdm.bandwidth == BANDWIDTH_6_MHZ)
|
|
|
|
c->bandwidth_hz = 6000000;
|
|
|
|
else if (p->u.ofdm.bandwidth == BANDWIDTH_7_MHZ)
|
|
|
|
c->bandwidth_hz = 7000000;
|
|
|
|
else if (p->u.ofdm.bandwidth == BANDWIDTH_8_MHZ)
|
|
|
|
c->bandwidth_hz = 8000000;
|
|
|
|
else
|
|
|
|
/* Including BANDWIDTH_AUTO */
|
|
|
|
c->bandwidth_hz = 0;
|
2008-09-12 02:52:32 +00:00
|
|
|
c->code_rate_HP = p->u.ofdm.code_rate_HP;
|
|
|
|
c->code_rate_LP = p->u.ofdm.code_rate_LP;
|
|
|
|
c->modulation = p->u.ofdm.constellation;
|
|
|
|
c->transmission_mode = p->u.ofdm.transmission_mode;
|
|
|
|
c->guard_interval = p->u.ofdm.guard_interval;
|
|
|
|
c->hierarchy = p->u.ofdm.hierarchy_information;
|
|
|
|
break;
|
|
|
|
case FE_ATSC:
|
|
|
|
c->modulation = p->u.vsb.modulation;
|
2008-09-12 03:53:50 +00:00
|
|
|
if ((c->modulation == VSB_8) || (c->modulation == VSB_16))
|
|
|
|
c->delivery_system = SYS_ATSC;
|
|
|
|
else
|
|
|
|
c->delivery_system = SYS_DVBC_ANNEX_B;
|
2008-09-12 02:52:32 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-12 03:27:13 +00:00
|
|
|
/* Ensure the cached values are set correctly in the frontend
|
|
|
|
* legacy tuning structures, for the advanced tuning API.
|
|
|
|
*/
|
2009-01-05 04:19:06 +00:00
|
|
|
static void dtv_property_legacy_params_sync(struct dvb_frontend *fe)
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
{
|
2011-05-08 23:03:35 +00:00
|
|
|
const struct dtv_frontend_properties *c = &fe->dtv_property_cache;
|
2008-09-12 03:27:13 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2011-05-08 23:03:37 +00:00
|
|
|
struct dvb_frontend_parameters *p = &fepriv->parameters_in;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
|
2008-09-12 03:27:13 +00:00
|
|
|
p->frequency = c->frequency;
|
|
|
|
p->inversion = c->inversion;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
|
2008-09-12 03:27:13 +00:00
|
|
|
switch (fe->ops.info.type) {
|
|
|
|
case FE_QPSK:
|
2008-10-17 03:20:19 +00:00
|
|
|
dprintk("%s() Preparing QPSK req\n", __func__);
|
2008-09-12 03:27:13 +00:00
|
|
|
p->u.qpsk.symbol_rate = c->symbol_rate;
|
|
|
|
p->u.qpsk.fec_inner = c->fec_inner;
|
|
|
|
break;
|
|
|
|
case FE_QAM:
|
2008-10-17 03:20:19 +00:00
|
|
|
dprintk("%s() Preparing QAM req\n", __func__);
|
2008-09-12 03:27:13 +00:00
|
|
|
p->u.qam.symbol_rate = c->symbol_rate;
|
|
|
|
p->u.qam.fec_inner = c->fec_inner;
|
|
|
|
p->u.qam.modulation = c->modulation;
|
|
|
|
break;
|
|
|
|
case FE_OFDM:
|
2008-10-17 03:20:19 +00:00
|
|
|
dprintk("%s() Preparing OFDM req\n", __func__);
|
2008-09-13 19:56:34 +00:00
|
|
|
if (c->bandwidth_hz == 6000000)
|
|
|
|
p->u.ofdm.bandwidth = BANDWIDTH_6_MHZ;
|
|
|
|
else if (c->bandwidth_hz == 7000000)
|
|
|
|
p->u.ofdm.bandwidth = BANDWIDTH_7_MHZ;
|
|
|
|
else if (c->bandwidth_hz == 8000000)
|
|
|
|
p->u.ofdm.bandwidth = BANDWIDTH_8_MHZ;
|
|
|
|
else
|
|
|
|
p->u.ofdm.bandwidth = BANDWIDTH_AUTO;
|
2008-09-12 03:27:13 +00:00
|
|
|
p->u.ofdm.code_rate_HP = c->code_rate_HP;
|
|
|
|
p->u.ofdm.code_rate_LP = c->code_rate_LP;
|
|
|
|
p->u.ofdm.constellation = c->modulation;
|
|
|
|
p->u.ofdm.transmission_mode = c->transmission_mode;
|
|
|
|
p->u.ofdm.guard_interval = c->guard_interval;
|
|
|
|
p->u.ofdm.hierarchy_information = c->hierarchy;
|
|
|
|
break;
|
|
|
|
case FE_ATSC:
|
2008-10-17 03:20:19 +00:00
|
|
|
dprintk("%s() Preparing VSB req\n", __func__);
|
2008-09-12 03:27:13 +00:00
|
|
|
p->u.vsb.modulation = c->modulation;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure the cached values are set correctly in the frontend
|
|
|
|
* legacy tuning structures, for the legacy tuning API.
|
|
|
|
*/
|
2009-01-05 04:19:06 +00:00
|
|
|
static void dtv_property_adv_params_sync(struct dvb_frontend *fe)
|
2008-09-12 03:27:13 +00:00
|
|
|
{
|
2011-05-08 23:03:35 +00:00
|
|
|
const struct dtv_frontend_properties *c = &fe->dtv_property_cache;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2011-05-08 23:03:37 +00:00
|
|
|
struct dvb_frontend_parameters *p = &fepriv->parameters_in;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
|
2008-09-12 03:27:13 +00:00
|
|
|
p->frequency = c->frequency;
|
|
|
|
p->inversion = c->inversion;
|
|
|
|
|
2011-08-08 14:54:36 +00:00
|
|
|
if (c->delivery_system == SYS_DSS ||
|
|
|
|
c->delivery_system == SYS_DVBS ||
|
|
|
|
c->delivery_system == SYS_DVBS2 ||
|
|
|
|
c->delivery_system == SYS_ISDBS ||
|
|
|
|
c->delivery_system == SYS_TURBO) {
|
2008-09-12 03:27:13 +00:00
|
|
|
p->u.qpsk.symbol_rate = c->symbol_rate;
|
|
|
|
p->u.qpsk.fec_inner = c->fec_inner;
|
|
|
|
}
|
|
|
|
|
2011-05-12 21:11:06 +00:00
|
|
|
/* Fake out a generic DVB-T request so we pass validation in the ioctl */
|
|
|
|
if ((c->delivery_system == SYS_ISDBT) ||
|
|
|
|
(c->delivery_system == SYS_DVBT2)) {
|
2008-09-12 03:27:13 +00:00
|
|
|
p->u.ofdm.constellation = QAM_AUTO;
|
|
|
|
p->u.ofdm.code_rate_HP = FEC_AUTO;
|
|
|
|
p->u.ofdm.code_rate_LP = FEC_AUTO;
|
|
|
|
p->u.ofdm.transmission_mode = TRANSMISSION_MODE_AUTO;
|
|
|
|
p->u.ofdm.guard_interval = GUARD_INTERVAL_AUTO;
|
|
|
|
p->u.ofdm.hierarchy_information = HIERARCHY_AUTO;
|
2009-08-03 17:39:15 +00:00
|
|
|
if (c->bandwidth_hz == 8000000)
|
|
|
|
p->u.ofdm.bandwidth = BANDWIDTH_8_MHZ;
|
|
|
|
else if (c->bandwidth_hz == 7000000)
|
|
|
|
p->u.ofdm.bandwidth = BANDWIDTH_7_MHZ;
|
|
|
|
else if (c->bandwidth_hz == 6000000)
|
|
|
|
p->u.ofdm.bandwidth = BANDWIDTH_6_MHZ;
|
|
|
|
else
|
|
|
|
p->u.ofdm.bandwidth = BANDWIDTH_AUTO;
|
2008-09-12 03:27:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-05 04:19:06 +00:00
|
|
|
static void dtv_property_cache_submit(struct dvb_frontend *fe)
|
2008-09-12 03:27:13 +00:00
|
|
|
{
|
2011-05-08 23:03:35 +00:00
|
|
|
const struct dtv_frontend_properties *c = &fe->dtv_property_cache;
|
2008-09-12 03:27:13 +00:00
|
|
|
|
|
|
|
/* For legacy delivery systems we don't need the delivery_system to
|
|
|
|
* be specified, but we populate the older structures from the cache
|
|
|
|
* so we can call set_frontend on older drivers.
|
|
|
|
*/
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
if(is_legacy_delivery_system(c->delivery_system)) {
|
|
|
|
|
2008-10-17 03:20:19 +00:00
|
|
|
dprintk("%s() legacy, modulation = %d\n", __func__, c->modulation);
|
2008-09-12 03:27:13 +00:00
|
|
|
dtv_property_legacy_params_sync(fe);
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
|
|
|
|
} else {
|
2008-10-17 03:20:19 +00:00
|
|
|
dprintk("%s() adv, modulation = %d\n", __func__, c->modulation);
|
2008-09-12 03:27:13 +00:00
|
|
|
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
/* For advanced delivery systems / modulation types ...
|
|
|
|
* we seed the lecacy dvb_frontend_parameters structure
|
|
|
|
* so that the sanity checking code later in the IOCTL processing
|
|
|
|
* can validate our basic frequency ranges, symbolrates, modulation
|
|
|
|
* etc.
|
|
|
|
*/
|
2008-09-12 03:27:13 +00:00
|
|
|
dtv_property_adv_params_sync(fe);
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-26 22:24:00 +00:00
|
|
|
static int dvb_frontend_ioctl_legacy(struct file *file,
|
2008-09-05 00:19:43 +00:00
|
|
|
unsigned int cmd, void *parg);
|
2010-04-26 22:24:00 +00:00
|
|
|
static int dvb_frontend_ioctl_properties(struct file *file,
|
2008-09-05 00:19:43 +00:00
|
|
|
unsigned int cmd, void *parg);
|
|
|
|
|
2009-01-05 04:19:06 +00:00
|
|
|
static int dtv_property_process_get(struct dvb_frontend *fe,
|
|
|
|
struct dtv_property *tvp,
|
2010-04-26 22:24:00 +00:00
|
|
|
struct file *file)
|
2008-09-12 04:34:28 +00:00
|
|
|
{
|
2011-05-08 23:03:39 +00:00
|
|
|
const struct dtv_frontend_properties *c = &fe->dtv_property_cache;
|
2011-05-08 23:03:41 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
|
|
|
struct dtv_frontend_properties cdetected;
|
2011-05-08 23:03:36 +00:00
|
|
|
int r;
|
2008-09-12 04:37:37 +00:00
|
|
|
|
2011-05-08 23:03:41 +00:00
|
|
|
/*
|
|
|
|
* If the driver implements a get_frontend function, then convert
|
|
|
|
* detected parameters to S2API properties.
|
|
|
|
*/
|
|
|
|
if (fe->ops.get_frontend) {
|
|
|
|
cdetected = *c;
|
|
|
|
dtv_property_cache_sync(fe, &cdetected, &fepriv->parameters_out);
|
|
|
|
c = &cdetected;
|
|
|
|
}
|
|
|
|
|
2008-09-12 04:34:28 +00:00
|
|
|
switch(tvp->cmd) {
|
|
|
|
case DTV_FREQUENCY:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->frequency;
|
2008-09-12 04:34:28 +00:00
|
|
|
break;
|
|
|
|
case DTV_MODULATION:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->modulation;
|
2008-09-12 04:34:28 +00:00
|
|
|
break;
|
2008-09-13 19:56:34 +00:00
|
|
|
case DTV_BANDWIDTH_HZ:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->bandwidth_hz;
|
2008-09-12 04:34:28 +00:00
|
|
|
break;
|
|
|
|
case DTV_INVERSION:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->inversion;
|
2008-09-12 04:34:28 +00:00
|
|
|
break;
|
|
|
|
case DTV_SYMBOL_RATE:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->symbol_rate;
|
2008-09-12 04:34:28 +00:00
|
|
|
break;
|
|
|
|
case DTV_INNER_FEC:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->fec_inner;
|
2008-09-12 04:34:28 +00:00
|
|
|
break;
|
|
|
|
case DTV_PILOT:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->pilot;
|
2008-09-12 04:34:28 +00:00
|
|
|
break;
|
|
|
|
case DTV_ROLLOFF:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->rolloff;
|
2008-09-12 04:34:28 +00:00
|
|
|
break;
|
|
|
|
case DTV_DELIVERY_SYSTEM:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->delivery_system;
|
2008-09-12 04:34:28 +00:00
|
|
|
break;
|
|
|
|
case DTV_VOLTAGE:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->voltage;
|
2008-09-12 04:34:28 +00:00
|
|
|
break;
|
|
|
|
case DTV_TONE:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->sectone;
|
2008-09-12 04:34:28 +00:00
|
|
|
break;
|
2008-09-26 03:29:49 +00:00
|
|
|
case DTV_API_VERSION:
|
|
|
|
tvp->u.data = (DVB_API_VERSION << 8) | DVB_API_VERSION_MINOR;
|
|
|
|
break;
|
2008-10-07 00:55:46 +00:00
|
|
|
case DTV_CODE_RATE_HP:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->code_rate_HP;
|
2008-10-07 00:55:46 +00:00
|
|
|
break;
|
|
|
|
case DTV_CODE_RATE_LP:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->code_rate_LP;
|
2008-10-07 00:55:46 +00:00
|
|
|
break;
|
2008-10-07 00:56:59 +00:00
|
|
|
case DTV_GUARD_INTERVAL:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->guard_interval;
|
2008-10-07 00:56:59 +00:00
|
|
|
break;
|
|
|
|
case DTV_TRANSMISSION_MODE:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->transmission_mode;
|
2008-10-07 00:56:59 +00:00
|
|
|
break;
|
2008-10-07 01:01:47 +00:00
|
|
|
case DTV_HIERARCHY:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->hierarchy;
|
2008-10-07 01:01:47 +00:00
|
|
|
break;
|
2009-08-03 17:39:15 +00:00
|
|
|
|
|
|
|
/* ISDB-T Support here */
|
|
|
|
case DTV_ISDBT_PARTIAL_RECEPTION:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->isdbt_partial_reception;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_SOUND_BROADCASTING:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->isdbt_sb_mode;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_SB_SUBCHANNEL_ID:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->isdbt_sb_subchannel;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_SB_SEGMENT_IDX:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->isdbt_sb_segment_idx;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_SB_SEGMENT_COUNT:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->isdbt_sb_segment_count;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
2009-08-14 08:24:19 +00:00
|
|
|
case DTV_ISDBT_LAYER_ENABLED:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->isdbt_layer_enabled;
|
2009-08-14 08:24:19 +00:00
|
|
|
break;
|
2009-08-03 17:39:15 +00:00
|
|
|
case DTV_ISDBT_LAYERA_FEC:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->layer[0].fec;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERA_MODULATION:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->layer[0].modulation;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERA_SEGMENT_COUNT:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->layer[0].segment_count;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERA_TIME_INTERLEAVING:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->layer[0].interleaving;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERB_FEC:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->layer[1].fec;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERB_MODULATION:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->layer[1].modulation;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERB_SEGMENT_COUNT:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->layer[1].segment_count;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERB_TIME_INTERLEAVING:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->layer[1].interleaving;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERC_FEC:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->layer[2].fec;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERC_MODULATION:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->layer[2].modulation;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERC_SEGMENT_COUNT:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->layer[2].segment_count;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERC_TIME_INTERLEAVING:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->layer[2].interleaving;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
2009-09-18 14:17:54 +00:00
|
|
|
case DTV_ISDBS_TS_ID:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->isdbs_ts_id;
|
2009-09-18 14:17:54 +00:00
|
|
|
break;
|
2011-05-12 21:11:06 +00:00
|
|
|
case DTV_DVBT2_PLP_ID:
|
2011-05-08 23:03:39 +00:00
|
|
|
tvp->u.data = c->dvbt2_plp_id;
|
2011-05-12 21:11:06 +00:00
|
|
|
break;
|
2008-09-12 04:34:28 +00:00
|
|
|
default:
|
2011-05-08 23:03:34 +00:00
|
|
|
return -EINVAL;
|
2008-09-12 04:34:28 +00:00
|
|
|
}
|
|
|
|
|
2011-05-08 23:03:36 +00:00
|
|
|
/* Allow the frontend to override outgoing properties */
|
|
|
|
if (fe->ops.get_property) {
|
|
|
|
r = fe->ops.get_property(fe, tvp);
|
|
|
|
if (r < 0)
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2009-12-31 20:49:32 +00:00
|
|
|
dtv_property_dump(tvp);
|
|
|
|
|
2011-05-08 23:03:34 +00:00
|
|
|
return 0;
|
2008-09-12 04:34:28 +00:00
|
|
|
}
|
|
|
|
|
2009-01-05 04:19:06 +00:00
|
|
|
static int dtv_property_process_set(struct dvb_frontend *fe,
|
|
|
|
struct dtv_property *tvp,
|
|
|
|
struct file *file)
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
{
|
|
|
|
int r = 0;
|
2011-05-08 23:03:39 +00:00
|
|
|
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
|
2008-09-05 00:19:43 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2008-09-11 13:19:27 +00:00
|
|
|
dtv_property_dump(tvp);
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
|
2008-09-12 04:37:37 +00:00
|
|
|
/* Allow the frontend to validate incoming properties */
|
2011-05-08 23:03:34 +00:00
|
|
|
if (fe->ops.set_property) {
|
2008-09-12 04:37:37 +00:00
|
|
|
r = fe->ops.set_property(fe, tvp);
|
2011-05-08 23:03:34 +00:00
|
|
|
if (r < 0)
|
|
|
|
return r;
|
|
|
|
}
|
2008-09-12 04:37:37 +00:00
|
|
|
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
switch(tvp->cmd) {
|
2008-09-11 13:23:01 +00:00
|
|
|
case DTV_CLEAR:
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
/* Reset a cache of data specific to the frontend here. This does
|
|
|
|
* not effect hardware.
|
|
|
|
*/
|
2009-08-03 17:39:15 +00:00
|
|
|
dvb_frontend_clear_cache(fe);
|
2008-10-17 03:20:19 +00:00
|
|
|
dprintk("%s() Flushing property cache\n", __func__);
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
break;
|
2008-09-11 13:23:01 +00:00
|
|
|
case DTV_TUNE:
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
/* interpret the cache of data, build either a traditional frontend
|
2008-09-12 03:27:13 +00:00
|
|
|
* tunerequest so we can pass validation in the FE_SET_FRONTEND
|
|
|
|
* ioctl.
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
*/
|
2011-05-08 23:03:39 +00:00
|
|
|
c->state = tvp->cmd;
|
2008-10-17 03:20:19 +00:00
|
|
|
dprintk("%s() Finalised property cache\n", __func__);
|
2008-09-12 03:27:13 +00:00
|
|
|
dtv_property_cache_submit(fe);
|
|
|
|
|
2011-05-08 23:03:34 +00:00
|
|
|
r = dvb_frontend_ioctl_legacy(file, FE_SET_FRONTEND,
|
2011-05-08 23:03:37 +00:00
|
|
|
&fepriv->parameters_in);
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
break;
|
2008-09-12 04:34:28 +00:00
|
|
|
case DTV_FREQUENCY:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->frequency = tvp->u.data;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
break;
|
2008-09-12 04:34:28 +00:00
|
|
|
case DTV_MODULATION:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->modulation = tvp->u.data;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
break;
|
2008-09-13 19:56:34 +00:00
|
|
|
case DTV_BANDWIDTH_HZ:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->bandwidth_hz = tvp->u.data;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
break;
|
2008-09-12 04:34:28 +00:00
|
|
|
case DTV_INVERSION:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->inversion = tvp->u.data;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
break;
|
2008-09-12 04:34:28 +00:00
|
|
|
case DTV_SYMBOL_RATE:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->symbol_rate = tvp->u.data;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
break;
|
2008-09-12 04:34:28 +00:00
|
|
|
case DTV_INNER_FEC:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->fec_inner = tvp->u.data;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
break;
|
2008-09-12 04:34:28 +00:00
|
|
|
case DTV_PILOT:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->pilot = tvp->u.data;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
break;
|
2008-09-12 04:34:28 +00:00
|
|
|
case DTV_ROLLOFF:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->rolloff = tvp->u.data;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
break;
|
2008-09-12 04:34:28 +00:00
|
|
|
case DTV_DELIVERY_SYSTEM:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->delivery_system = tvp->u.data;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
break;
|
2008-09-12 04:34:28 +00:00
|
|
|
case DTV_VOLTAGE:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->voltage = tvp->u.data;
|
2010-04-26 22:24:00 +00:00
|
|
|
r = dvb_frontend_ioctl_legacy(file, FE_SET_VOLTAGE,
|
2011-05-08 23:03:39 +00:00
|
|
|
(void *)c->voltage);
|
2008-09-05 00:19:43 +00:00
|
|
|
break;
|
2008-09-12 04:34:28 +00:00
|
|
|
case DTV_TONE:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->sectone = tvp->u.data;
|
2010-04-26 22:24:00 +00:00
|
|
|
r = dvb_frontend_ioctl_legacy(file, FE_SET_TONE,
|
2011-05-08 23:03:39 +00:00
|
|
|
(void *)c->sectone);
|
2008-09-05 00:19:43 +00:00
|
|
|
break;
|
2008-10-07 00:55:46 +00:00
|
|
|
case DTV_CODE_RATE_HP:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->code_rate_HP = tvp->u.data;
|
2008-10-07 00:55:46 +00:00
|
|
|
break;
|
|
|
|
case DTV_CODE_RATE_LP:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->code_rate_LP = tvp->u.data;
|
2008-10-07 00:55:46 +00:00
|
|
|
break;
|
2008-10-07 00:56:59 +00:00
|
|
|
case DTV_GUARD_INTERVAL:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->guard_interval = tvp->u.data;
|
2008-10-07 00:56:59 +00:00
|
|
|
break;
|
|
|
|
case DTV_TRANSMISSION_MODE:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->transmission_mode = tvp->u.data;
|
2008-10-07 00:56:59 +00:00
|
|
|
break;
|
2008-10-07 01:01:47 +00:00
|
|
|
case DTV_HIERARCHY:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->hierarchy = tvp->u.data;
|
2008-10-07 01:01:47 +00:00
|
|
|
break;
|
2009-08-03 17:39:15 +00:00
|
|
|
|
|
|
|
/* ISDB-T Support here */
|
|
|
|
case DTV_ISDBT_PARTIAL_RECEPTION:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->isdbt_partial_reception = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_SOUND_BROADCASTING:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->isdbt_sb_mode = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_SB_SUBCHANNEL_ID:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->isdbt_sb_subchannel = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_SB_SEGMENT_IDX:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->isdbt_sb_segment_idx = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_SB_SEGMENT_COUNT:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->isdbt_sb_segment_count = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
2009-08-14 08:24:19 +00:00
|
|
|
case DTV_ISDBT_LAYER_ENABLED:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->isdbt_layer_enabled = tvp->u.data;
|
2009-08-14 08:24:19 +00:00
|
|
|
break;
|
2009-08-03 17:39:15 +00:00
|
|
|
case DTV_ISDBT_LAYERA_FEC:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->layer[0].fec = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERA_MODULATION:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->layer[0].modulation = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERA_SEGMENT_COUNT:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->layer[0].segment_count = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERA_TIME_INTERLEAVING:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->layer[0].interleaving = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERB_FEC:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->layer[1].fec = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERB_MODULATION:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->layer[1].modulation = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERB_SEGMENT_COUNT:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->layer[1].segment_count = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERB_TIME_INTERLEAVING:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->layer[1].interleaving = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERC_FEC:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->layer[2].fec = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERC_MODULATION:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->layer[2].modulation = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERC_SEGMENT_COUNT:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->layer[2].segment_count = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
|
|
|
case DTV_ISDBT_LAYERC_TIME_INTERLEAVING:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->layer[2].interleaving = tvp->u.data;
|
2009-08-03 17:39:15 +00:00
|
|
|
break;
|
2009-09-18 14:17:54 +00:00
|
|
|
case DTV_ISDBS_TS_ID:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->isdbs_ts_id = tvp->u.data;
|
2011-05-12 21:11:06 +00:00
|
|
|
break;
|
|
|
|
case DTV_DVBT2_PLP_ID:
|
2011-05-08 23:03:39 +00:00
|
|
|
c->dvbt2_plp_id = tvp->u.data;
|
2009-09-18 14:17:54 +00:00
|
|
|
break;
|
2008-09-12 04:34:28 +00:00
|
|
|
default:
|
2011-05-08 23:03:34 +00:00
|
|
|
return -EINVAL;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
}
|
|
|
|
|
2008-09-05 00:19:43 +00:00
|
|
|
return r;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
}
|
|
|
|
|
2010-04-26 22:24:00 +00:00
|
|
|
static int dvb_frontend_ioctl(struct file *file,
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned int cmd, void *parg)
|
|
|
|
{
|
|
|
|
struct dvb_device *dvbdev = file->private_data;
|
|
|
|
struct dvb_frontend *fe = dvbdev->priv;
|
2011-05-08 23:03:39 +00:00
|
|
|
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
|
2005-05-17 04:54:24 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2005-04-16 22:20:36 +00:00
|
|
|
int err = -EOPNOTSUPP;
|
|
|
|
|
2009-12-31 21:14:54 +00:00
|
|
|
dprintk("%s (%d)\n", __func__, _IOC_NR(cmd));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-05-05 18:59:20 +00:00
|
|
|
if (fepriv->exit != DVB_FE_NO_EXIT)
|
2005-04-16 22:20:36 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
if ((file->f_flags & O_ACCMODE) == O_RDONLY &&
|
|
|
|
(_IOC_DIR(cmd) != _IOC_READ || cmd == FE_GET_EVENT ||
|
|
|
|
cmd == FE_DISEQC_RECV_SLAVE_REPLY))
|
|
|
|
return -EPERM;
|
|
|
|
|
|
|
|
if (down_interruptible (&fepriv->sem))
|
|
|
|
return -ERESTARTSYS;
|
|
|
|
|
2008-09-05 00:19:43 +00:00
|
|
|
if ((cmd == FE_SET_PROPERTY) || (cmd == FE_GET_PROPERTY))
|
2010-04-26 22:24:00 +00:00
|
|
|
err = dvb_frontend_ioctl_properties(file, cmd, parg);
|
2008-09-13 18:09:07 +00:00
|
|
|
else {
|
2011-05-08 23:03:39 +00:00
|
|
|
c->state = DTV_UNDEFINED;
|
2010-04-26 22:24:00 +00:00
|
|
|
err = dvb_frontend_ioctl_legacy(file, cmd, parg);
|
2008-09-13 18:09:07 +00:00
|
|
|
}
|
2008-09-05 00:19:43 +00:00
|
|
|
|
|
|
|
up(&fepriv->sem);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2010-04-26 22:24:00 +00:00
|
|
|
static int dvb_frontend_ioctl_properties(struct file *file,
|
2008-09-05 00:19:43 +00:00
|
|
|
unsigned int cmd, void *parg)
|
|
|
|
{
|
|
|
|
struct dvb_device *dvbdev = file->private_data;
|
|
|
|
struct dvb_frontend *fe = dvbdev->priv;
|
2011-05-08 23:03:39 +00:00
|
|
|
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
|
2008-09-12 17:49:06 +00:00
|
|
|
int err = 0;
|
2008-09-11 13:23:01 +00:00
|
|
|
|
|
|
|
struct dtv_properties *tvps = NULL;
|
|
|
|
struct dtv_property *tvp = NULL;
|
|
|
|
int i;
|
2008-09-05 00:19:43 +00:00
|
|
|
|
|
|
|
dprintk("%s\n", __func__);
|
|
|
|
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
if(cmd == FE_SET_PROPERTY) {
|
2008-09-11 13:23:01 +00:00
|
|
|
tvps = (struct dtv_properties __user *)parg;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
|
2008-10-17 03:20:19 +00:00
|
|
|
dprintk("%s() properties.num = %d\n", __func__, tvps->num);
|
|
|
|
dprintk("%s() properties.props = %p\n", __func__, tvps->props);
|
2008-09-11 13:23:01 +00:00
|
|
|
|
|
|
|
/* Put an arbitrary limit on the number of messages that can
|
|
|
|
* be sent at once */
|
2008-10-07 01:46:08 +00:00
|
|
|
if ((tvps->num == 0) || (tvps->num > DTV_IOCTL_MAX_MSGS))
|
2008-09-11 13:23:01 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2010-01-16 13:25:38 +00:00
|
|
|
tvp = kmalloc(tvps->num * sizeof(struct dtv_property), GFP_KERNEL);
|
2008-09-11 13:23:01 +00:00
|
|
|
if (!tvp) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto out;
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
}
|
|
|
|
|
2008-09-11 13:23:01 +00:00
|
|
|
if (copy_from_user(tvp, tvps->props, tvps->num * sizeof(struct dtv_property))) {
|
|
|
|
err = -EFAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2008-09-26 03:16:25 +00:00
|
|
|
for (i = 0; i < tvps->num; i++) {
|
2011-05-08 23:03:34 +00:00
|
|
|
err = dtv_property_process_set(fe, tvp + i, file);
|
|
|
|
if (err < 0)
|
|
|
|
goto out;
|
|
|
|
(tvp + i)->result = err;
|
2008-09-26 03:16:25 +00:00
|
|
|
}
|
2008-09-11 13:23:01 +00:00
|
|
|
|
2011-05-08 23:03:39 +00:00
|
|
|
if (c->state == DTV_TUNE)
|
2008-10-17 03:20:19 +00:00
|
|
|
dprintk("%s() Property cache is full, tuning\n", __func__);
|
2008-09-12 04:37:37 +00:00
|
|
|
|
2008-09-12 04:34:28 +00:00
|
|
|
} else
|
|
|
|
if(cmd == FE_GET_PROPERTY) {
|
|
|
|
|
|
|
|
tvps = (struct dtv_properties __user *)parg;
|
|
|
|
|
2008-10-17 03:20:19 +00:00
|
|
|
dprintk("%s() properties.num = %d\n", __func__, tvps->num);
|
|
|
|
dprintk("%s() properties.props = %p\n", __func__, tvps->props);
|
2008-09-12 04:34:28 +00:00
|
|
|
|
|
|
|
/* Put an arbitrary limit on the number of messages that can
|
|
|
|
* be sent at once */
|
2008-10-07 01:46:08 +00:00
|
|
|
if ((tvps->num == 0) || (tvps->num > DTV_IOCTL_MAX_MSGS))
|
2008-09-12 04:34:28 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2010-01-16 13:25:38 +00:00
|
|
|
tvp = kmalloc(tvps->num * sizeof(struct dtv_property), GFP_KERNEL);
|
2008-09-12 04:34:28 +00:00
|
|
|
if (!tvp) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (copy_from_user(tvp, tvps->props, tvps->num * sizeof(struct dtv_property))) {
|
|
|
|
err = -EFAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2008-09-26 03:16:25 +00:00
|
|
|
for (i = 0; i < tvps->num; i++) {
|
2011-05-08 23:03:34 +00:00
|
|
|
err = dtv_property_process_get(fe, tvp + i, file);
|
|
|
|
if (err < 0)
|
|
|
|
goto out;
|
|
|
|
(tvp + i)->result = err;
|
2008-09-26 03:16:25 +00:00
|
|
|
}
|
2008-09-12 04:34:28 +00:00
|
|
|
|
|
|
|
if (copy_to_user(tvps->props, tvp, tvps->num * sizeof(struct dtv_property))) {
|
|
|
|
err = -EFAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else
|
|
|
|
err = -EOPNOTSUPP;
|
|
|
|
|
2008-09-11 13:23:01 +00:00
|
|
|
out:
|
|
|
|
kfree(tvp);
|
2008-09-05 00:19:43 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2010-04-26 22:24:00 +00:00
|
|
|
static int dvb_frontend_ioctl_legacy(struct file *file,
|
2008-09-05 00:19:43 +00:00
|
|
|
unsigned int cmd, void *parg)
|
|
|
|
{
|
|
|
|
struct dvb_device *dvbdev = file->private_data;
|
|
|
|
struct dvb_frontend *fe = dvbdev->priv;
|
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2009-05-23 21:00:59 +00:00
|
|
|
int cb_err, err = -EOPNOTSUPP;
|
|
|
|
|
|
|
|
if (fe->dvb->fe_ioctl_override) {
|
|
|
|
cb_err = fe->dvb->fe_ioctl_override(fe, cmd, parg,
|
|
|
|
DVB_FE_IOCTL_PRE);
|
|
|
|
if (cb_err < 0)
|
|
|
|
return cb_err;
|
|
|
|
if (cb_err > 0)
|
|
|
|
return 0;
|
|
|
|
/* fe_ioctl_override returning 0 allows
|
|
|
|
* dvb-core to continue handling the ioctl */
|
|
|
|
}
|
2008-09-05 00:19:43 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
switch (cmd) {
|
|
|
|
case FE_GET_INFO: {
|
2005-05-17 04:54:24 +00:00
|
|
|
struct dvb_frontend_info* info = parg;
|
2006-05-14 08:01:31 +00:00
|
|
|
memcpy(info, &fe->ops.info, sizeof(struct dvb_frontend_info));
|
2010-05-06 12:30:25 +00:00
|
|
|
dvb_frontend_get_frequency_limits(fe, &info->frequency_min, &info->frequency_max);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Force the CAN_INVERSION_AUTO bit on. If the frontend doesn't
|
|
|
|
* do it, it is done for it. */
|
|
|
|
info->caps |= FE_CAN_INVERSION_AUTO;
|
|
|
|
err = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-07-08 00:57:36 +00:00
|
|
|
case FE_READ_STATUS: {
|
|
|
|
fe_status_t* status = parg;
|
|
|
|
|
2011-03-31 01:57:33 +00:00
|
|
|
/* if retune was requested but hasn't occurred yet, prevent
|
2005-07-08 00:57:36 +00:00
|
|
|
* that user get signal state from previous tuning */
|
2009-09-01 22:23:09 +00:00
|
|
|
if (fepriv->state == FESTATE_RETUNE ||
|
|
|
|
fepriv->state == FESTATE_ERROR) {
|
2005-07-08 00:57:36 +00:00
|
|
|
err=0;
|
|
|
|
*status = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.read_status)
|
|
|
|
err = fe->ops.read_status(fe, status);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
2005-07-08 00:57:36 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
case FE_READ_BER:
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.read_ber)
|
|
|
|
err = fe->ops.read_ber(fe, (__u32*) parg);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FE_READ_SIGNAL_STRENGTH:
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.read_signal_strength)
|
|
|
|
err = fe->ops.read_signal_strength(fe, (__u16*) parg);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FE_READ_SNR:
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.read_snr)
|
|
|
|
err = fe->ops.read_snr(fe, (__u16*) parg);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FE_READ_UNCORRECTED_BLOCKS:
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.read_ucblocks)
|
|
|
|
err = fe->ops.read_ucblocks(fe, (__u32*) parg);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case FE_DISEQC_RESET_OVERLOAD:
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.diseqc_reset_overload) {
|
|
|
|
err = fe->ops.diseqc_reset_overload(fe);
|
2005-04-16 22:20:36 +00:00
|
|
|
fepriv->state = FESTATE_DISEQC;
|
|
|
|
fepriv->status = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FE_DISEQC_SEND_MASTER_CMD:
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.diseqc_send_master_cmd) {
|
|
|
|
err = fe->ops.diseqc_send_master_cmd(fe, (struct dvb_diseqc_master_cmd*) parg);
|
2005-04-16 22:20:36 +00:00
|
|
|
fepriv->state = FESTATE_DISEQC;
|
|
|
|
fepriv->status = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FE_DISEQC_SEND_BURST:
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.diseqc_send_burst) {
|
|
|
|
err = fe->ops.diseqc_send_burst(fe, (fe_sec_mini_cmd_t) parg);
|
2005-04-16 22:20:36 +00:00
|
|
|
fepriv->state = FESTATE_DISEQC;
|
|
|
|
fepriv->status = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FE_SET_TONE:
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.set_tone) {
|
|
|
|
err = fe->ops.set_tone(fe, (fe_sec_tone_mode_t) parg);
|
2006-04-06 17:32:23 +00:00
|
|
|
fepriv->tone = (fe_sec_tone_mode_t) parg;
|
2005-04-16 22:20:36 +00:00
|
|
|
fepriv->state = FESTATE_DISEQC;
|
|
|
|
fepriv->status = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FE_SET_VOLTAGE:
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.set_voltage) {
|
|
|
|
err = fe->ops.set_voltage(fe, (fe_sec_voltage_t) parg);
|
2006-04-06 17:32:23 +00:00
|
|
|
fepriv->voltage = (fe_sec_voltage_t) parg;
|
2005-04-16 22:20:36 +00:00
|
|
|
fepriv->state = FESTATE_DISEQC;
|
|
|
|
fepriv->status = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FE_DISHNETWORK_SEND_LEGACY_CMD:
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.dishnetwork_send_legacy_command) {
|
|
|
|
err = fe->ops.dishnetwork_send_legacy_command(fe, (unsigned long) parg);
|
2005-04-16 22:20:36 +00:00
|
|
|
fepriv->state = FESTATE_DISEQC;
|
|
|
|
fepriv->status = 0;
|
2006-05-14 08:01:31 +00:00
|
|
|
} else if (fe->ops.set_voltage) {
|
2005-11-09 05:35:27 +00:00
|
|
|
/*
|
|
|
|
* NOTE: This is a fallback condition. Some frontends
|
|
|
|
* (stv0299 for instance) take longer than 8msec to
|
|
|
|
* respond to a set_voltage command. Those switches
|
|
|
|
* need custom routines to switch properly. For all
|
2010-05-06 12:30:25 +00:00
|
|
|
* other frontends, the following should work ok.
|
2005-11-09 05:35:27 +00:00
|
|
|
* Dish network legacy switches (as used by Dish500)
|
|
|
|
* are controlled by sending 9-bit command words
|
|
|
|
* spaced 8msec apart.
|
2011-03-31 01:57:33 +00:00
|
|
|
* the actual command word is switch/port dependent
|
2005-11-09 05:35:27 +00:00
|
|
|
* so it is up to the userspace application to send
|
|
|
|
* the right command.
|
|
|
|
* The command must always start with a '0' after
|
|
|
|
* initialization, so parg is 8 bits and does not
|
|
|
|
* include the initialization or start bit
|
|
|
|
*/
|
2008-09-03 20:11:54 +00:00
|
|
|
unsigned long swcmd = ((unsigned long) parg) << 1;
|
2005-11-09 05:35:27 +00:00
|
|
|
struct timeval nexttime;
|
|
|
|
struct timeval tv[10];
|
|
|
|
int i;
|
|
|
|
u8 last = 1;
|
|
|
|
if (dvb_frontend_debug)
|
2008-09-03 20:11:54 +00:00
|
|
|
printk("%s switch command: 0x%04lx\n", __func__, swcmd);
|
2005-11-09 05:35:27 +00:00
|
|
|
do_gettimeofday(&nexttime);
|
|
|
|
if (dvb_frontend_debug)
|
|
|
|
memcpy(&tv[0], &nexttime, sizeof(struct timeval));
|
|
|
|
/* before sending a command, initialize by sending
|
|
|
|
* a 32ms 18V to the switch
|
|
|
|
*/
|
2006-05-14 08:01:31 +00:00
|
|
|
fe->ops.set_voltage(fe, SEC_VOLTAGE_18);
|
2005-11-09 05:35:27 +00:00
|
|
|
dvb_frontend_sleep_until(&nexttime, 32000);
|
|
|
|
|
|
|
|
for (i = 0; i < 9; i++) {
|
|
|
|
if (dvb_frontend_debug)
|
|
|
|
do_gettimeofday(&tv[i + 1]);
|
2008-09-03 20:11:54 +00:00
|
|
|
if ((swcmd & 0x01) != last) {
|
2005-11-09 05:35:27 +00:00
|
|
|
/* set voltage to (last ? 13V : 18V) */
|
2006-05-14 08:01:31 +00:00
|
|
|
fe->ops.set_voltage(fe, (last) ? SEC_VOLTAGE_13 : SEC_VOLTAGE_18);
|
2005-11-09 05:35:27 +00:00
|
|
|
last = (last) ? 0 : 1;
|
|
|
|
}
|
2008-09-03 20:11:54 +00:00
|
|
|
swcmd = swcmd >> 1;
|
2005-11-09 05:35:27 +00:00
|
|
|
if (i != 8)
|
|
|
|
dvb_frontend_sleep_until(&nexttime, 8000);
|
|
|
|
}
|
|
|
|
if (dvb_frontend_debug) {
|
|
|
|
printk("%s(%d): switch delay (should be 32k followed by all 8k\n",
|
2008-04-09 02:20:00 +00:00
|
|
|
__func__, fe->dvb->num);
|
2005-11-09 05:35:27 +00:00
|
|
|
for (i = 1; i < 10; i++)
|
|
|
|
printk("%d: %d\n", i, timeval_usec_diff(tv[i-1] , tv[i]));
|
|
|
|
}
|
|
|
|
err = 0;
|
|
|
|
fepriv->state = FESTATE_DISEQC;
|
|
|
|
fepriv->status = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FE_DISEQC_RECV_SLAVE_REPLY:
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.diseqc_recv_slave_reply)
|
|
|
|
err = fe->ops.diseqc_recv_slave_reply(fe, (struct dvb_diseqc_slave_reply*) parg);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FE_ENABLE_HIGH_LNB_VOLTAGE:
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.enable_high_lnb_voltage)
|
|
|
|
err = fe->ops.enable_high_lnb_voltage(fe, (long) parg);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FE_SET_FRONTEND: {
|
2011-05-08 23:03:39 +00:00
|
|
|
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct dvb_frontend_tune_settings fetunesettings;
|
|
|
|
|
2011-05-08 23:03:39 +00:00
|
|
|
if (c->state == DTV_TUNE) {
|
2011-05-08 23:03:37 +00:00
|
|
|
if (dvb_frontend_check_parameters(fe, &fepriv->parameters_in) < 0) {
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
err = -EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (dvb_frontend_check_parameters(fe, parg) < 0) {
|
|
|
|
err = -EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
2007-07-24 00:00:36 +00:00
|
|
|
|
2011-05-08 23:03:37 +00:00
|
|
|
memcpy (&fepriv->parameters_in, parg,
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
sizeof (struct dvb_frontend_parameters));
|
2011-08-16 14:04:06 +00:00
|
|
|
dtv_property_cache_init(fe, c);
|
2011-05-08 23:03:41 +00:00
|
|
|
dtv_property_cache_sync(fe, c, &fepriv->parameters_in);
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-08-04 15:33:12 +00:00
|
|
|
/*
|
|
|
|
* Initialize output parameters to match the values given by
|
|
|
|
* the user. FE_SET_FRONTEND triggers an initial frontend event
|
|
|
|
* with status = 0, which copies output parameters to userspace.
|
|
|
|
*/
|
|
|
|
fepriv->parameters_out = fepriv->parameters_in;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
memset(&fetunesettings, 0, sizeof(struct dvb_frontend_tune_settings));
|
|
|
|
memcpy(&fetunesettings.parameters, parg,
|
|
|
|
sizeof (struct dvb_frontend_parameters));
|
|
|
|
|
|
|
|
/* force auto frequency inversion if requested */
|
|
|
|
if (dvb_force_auto_inversion) {
|
2011-05-08 23:03:37 +00:00
|
|
|
fepriv->parameters_in.inversion = INVERSION_AUTO;
|
2005-04-16 22:20:36 +00:00
|
|
|
fetunesettings.parameters.inversion = INVERSION_AUTO;
|
|
|
|
}
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.info.type == FE_OFDM) {
|
2007-02-17 18:23:03 +00:00
|
|
|
/* without hierarchical coding code_rate_LP is irrelevant,
|
2005-04-16 22:20:36 +00:00
|
|
|
* so we tolerate the otherwise invalid FEC_NONE setting */
|
2011-05-08 23:03:37 +00:00
|
|
|
if (fepriv->parameters_in.u.ofdm.hierarchy_information == HIERARCHY_NONE &&
|
|
|
|
fepriv->parameters_in.u.ofdm.code_rate_LP == FEC_NONE)
|
|
|
|
fepriv->parameters_in.u.ofdm.code_rate_LP = FEC_AUTO;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* get frontend-specific tuning settings */
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.get_tune_settings && (fe->ops.get_tune_settings(fe, &fetunesettings) == 0)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
fepriv->min_delay = (fetunesettings.min_delay_ms * HZ) / 1000;
|
|
|
|
fepriv->max_drift = fetunesettings.max_drift;
|
|
|
|
fepriv->step_size = fetunesettings.step_size;
|
|
|
|
} else {
|
|
|
|
/* default values */
|
2006-05-14 08:01:31 +00:00
|
|
|
switch(fe->ops.info.type) {
|
2005-04-16 22:20:36 +00:00
|
|
|
case FE_QPSK:
|
|
|
|
fepriv->min_delay = HZ/20;
|
2011-05-08 23:03:37 +00:00
|
|
|
fepriv->step_size = fepriv->parameters_in.u.qpsk.symbol_rate / 16000;
|
|
|
|
fepriv->max_drift = fepriv->parameters_in.u.qpsk.symbol_rate / 2000;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FE_QAM:
|
|
|
|
fepriv->min_delay = HZ/20;
|
|
|
|
fepriv->step_size = 0; /* no zigzag */
|
|
|
|
fepriv->max_drift = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FE_OFDM:
|
|
|
|
fepriv->min_delay = HZ/20;
|
2006-05-14 08:01:31 +00:00
|
|
|
fepriv->step_size = fe->ops.info.frequency_stepsize * 2;
|
|
|
|
fepriv->max_drift = (fe->ops.info.frequency_stepsize * 2) + 1;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
case FE_ATSC:
|
2006-06-21 13:27:00 +00:00
|
|
|
fepriv->min_delay = HZ/20;
|
|
|
|
fepriv->step_size = 0;
|
|
|
|
fepriv->max_drift = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (dvb_override_tune_delay > 0)
|
|
|
|
fepriv->min_delay = (dvb_override_tune_delay * HZ) / 1000;
|
|
|
|
|
|
|
|
fepriv->state = FESTATE_RETUNE;
|
2008-11-09 14:35:13 +00:00
|
|
|
|
|
|
|
/* Request the search algorithm to search */
|
|
|
|
fepriv->algo_status |= DVBFE_ALGO_SEARCH_AGAIN;
|
|
|
|
|
2011-08-04 15:33:14 +00:00
|
|
|
dvb_frontend_clear_events(fe);
|
2005-04-16 22:20:36 +00:00
|
|
|
dvb_frontend_add_event(fe, 0);
|
2011-08-04 15:33:13 +00:00
|
|
|
dvb_frontend_wakeup(fe);
|
2005-04-16 22:20:36 +00:00
|
|
|
fepriv->status = 0;
|
|
|
|
err = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case FE_GET_EVENT:
|
|
|
|
err = dvb_frontend_get_event (fe, parg, file->f_flags);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FE_GET_FRONTEND:
|
2006-05-14 08:01:31 +00:00
|
|
|
if (fe->ops.get_frontend) {
|
2011-05-08 23:03:40 +00:00
|
|
|
err = fe->ops.get_frontend(fe, &fepriv->parameters_out);
|
|
|
|
memcpy(parg, &fepriv->parameters_out, sizeof(struct dvb_frontend_parameters));
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
break;
|
2006-01-09 17:25:07 +00:00
|
|
|
|
|
|
|
case FE_SET_FRONTEND_TUNE_MODE:
|
2006-01-09 17:25:28 +00:00
|
|
|
fepriv->tune_mode_flags = (unsigned long) parg;
|
2006-06-29 16:16:04 +00:00
|
|
|
err = 0;
|
2006-01-09 17:25:07 +00:00
|
|
|
break;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
2009-05-23 21:00:59 +00:00
|
|
|
if (fe->dvb->fe_ioctl_override) {
|
|
|
|
cb_err = fe->dvb->fe_ioctl_override(fe, cmd, parg,
|
|
|
|
DVB_FE_IOCTL_POST);
|
|
|
|
if (cb_err < 0)
|
|
|
|
return cb_err;
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
V4L/DVB (8985): S2API: Added dvb frontend changes to support a newer tuning API
This is an experimental patch to add a new tuning mechanism for
dvb frontends. Rather than passing fixed structures across the
user/kernel boundary, which need to be revised for each new modulation
type (or feature the kernel developers want to add), this implements
a simpler message based approach, allowing fe commands to be broken
down into a series of small fixed size transactions, presented
in an array.
The goal is to avoid changing the user/kernel ABI in the future, by
simply creating new frontend commands (and sequencies of commands) that
help us add support for brand new demodulator, delivery system or
statistics related commmands.
known issues:
checkpatch voilations
feedback from various developers yet to be implemented, relating
to namespace conventions, variable length array passing conventions,
and generally some optimization.
This patch should support all existing tuning mechanisms through the
new API, as well as adding 8PSK, DVB-S2 NBC-QPSK and ISDB-T API support.
For testing and exercise purposes, see the latest tune.c tool
available from http://www.steventoth.net/linux/s2
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2008-09-04 04:12:25 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
static unsigned int dvb_frontend_poll(struct file *file, struct poll_table_struct *wait)
|
|
|
|
{
|
|
|
|
struct dvb_device *dvbdev = file->private_data;
|
|
|
|
struct dvb_frontend *fe = dvbdev->priv;
|
2005-05-17 04:54:24 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-04-09 02:20:00 +00:00
|
|
|
dprintk ("%s\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
poll_wait (file, &fepriv->events.wait_queue, wait);
|
|
|
|
|
|
|
|
if (fepriv->events.eventw != fepriv->events.eventr)
|
|
|
|
return (POLLIN | POLLRDNORM | POLLPRI);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dvb_frontend_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
|
|
|
struct dvb_device *dvbdev = file->private_data;
|
|
|
|
struct dvb_frontend *fe = dvbdev->priv;
|
2005-05-17 04:54:24 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2008-10-11 14:44:05 +00:00
|
|
|
struct dvb_adapter *adapter = fe->dvb;
|
2005-04-16 22:20:36 +00:00
|
|
|
int ret;
|
|
|
|
|
2008-04-09 02:20:00 +00:00
|
|
|
dprintk ("%s\n", __func__);
|
2010-05-05 18:59:20 +00:00
|
|
|
if (fepriv->exit == DVB_FE_DEVICE_REMOVED)
|
|
|
|
return -ENODEV;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-10-11 14:44:05 +00:00
|
|
|
if (adapter->mfe_shared) {
|
|
|
|
mutex_lock (&adapter->mfe_lock);
|
2008-10-15 16:37:59 +00:00
|
|
|
|
|
|
|
if (adapter->mfe_dvbdev == NULL)
|
|
|
|
adapter->mfe_dvbdev = dvbdev;
|
|
|
|
|
|
|
|
else if (adapter->mfe_dvbdev != dvbdev) {
|
|
|
|
struct dvb_device
|
|
|
|
*mfedev = adapter->mfe_dvbdev;
|
|
|
|
struct dvb_frontend
|
|
|
|
*mfe = mfedev->priv;
|
|
|
|
struct dvb_frontend_private
|
|
|
|
*mfepriv = mfe->frontend_priv;
|
|
|
|
int mferetry = (dvb_mfe_wait_time << 1);
|
|
|
|
|
|
|
|
mutex_unlock (&adapter->mfe_lock);
|
|
|
|
while (mferetry-- && (mfedev->users != -1 ||
|
|
|
|
mfepriv->thread != NULL)) {
|
|
|
|
if(msleep_interruptible(500)) {
|
|
|
|
if(signal_pending(current))
|
|
|
|
return -EINTR;
|
2008-10-11 14:44:05 +00:00
|
|
|
}
|
2008-10-15 16:37:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mutex_lock (&adapter->mfe_lock);
|
|
|
|
if(adapter->mfe_dvbdev != dvbdev) {
|
2008-10-11 14:44:05 +00:00
|
|
|
mfedev = adapter->mfe_dvbdev;
|
|
|
|
mfe = mfedev->priv;
|
|
|
|
mfepriv = mfe->frontend_priv;
|
2008-10-15 16:37:59 +00:00
|
|
|
if (mfedev->users != -1 ||
|
|
|
|
mfepriv->thread != NULL) {
|
|
|
|
mutex_unlock (&adapter->mfe_lock);
|
|
|
|
return -EBUSY;
|
2008-10-11 14:44:05 +00:00
|
|
|
}
|
2008-10-15 16:37:59 +00:00
|
|
|
adapter->mfe_dvbdev = dvbdev;
|
2008-10-11 14:44:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-25 15:00:23 +00:00
|
|
|
if (dvbdev->users == -1 && fe->ops.ts_bus_ctrl) {
|
|
|
|
if ((ret = fe->ops.ts_bus_ctrl(fe, 1)) < 0)
|
2008-10-11 14:44:05 +00:00
|
|
|
goto err0;
|
[media] dvb_frontend: fix race condition in stopping/starting frontend
Attached is a patch which addresses a race condition in the DVB core
related to closing/reopening the DVB frontend device in quick
succession. This is the reason that devices such as the HVR-1300,
HVR-3000, and HVR-4000 have been failing to scan properly under MythTV
and w_scan.
The gory details of the race are described in the patch.
Devin
There is a race condition exhibited when channel scanners such as w_scan and
MythTV quickly close and then reopen the frontend device node.
Under normal conditions, the behavior is as follows:
1. Application closes the device node
2. DVB frontend ioctl calls dvb_frontend_release which sets
fepriv->release_jiffies
3. DVB frontend thread *eventually* calls dvb_frontend_is_exiting() which
compares fepriv->release_jiffies, and shuts down the thread if timeout has
expired
4. Thread goes away
5. Application opens frontend device
6. DVB frontend ioctl() calls ts_bus_ctrl(1)
7. DVB frontend ioctl() creates new frontend thread, which calls
dvb_frontend_init(), which has demod driver init() routine setup initial
register state for demod chip.
8. Tuning request is issued.
The race occurs when the application in step 5 performs the new open() call
before the frontend thread is shutdown. In this case the ts_bus_ctrl() call
is made, which strobes the RESET pin on the demodulator, but the
dvb_frontend_init() function never gets called because the frontend thread
hasn't gone away yet. As a result, the initial register config for the demod
is *never* setup, causing subsequent tuning requests to fail.
If there is time between the close and open (enough for the dvb frontend
thread to be torn down), then in that case the new frontend thread is created
and thus the dvb_frontend_init() function does get called.
The fix is to set the flag which forces reinitialization if we did in fact
call ts_bus_ctrl().
This problem has been seen on the HVR-1300, HVR-3000, and HVR-4000, and is
likely occuring on other designs as well where ts_bus_ctrl() actually strobes
the reset pin on the demodulator.
Note that this patch should supercede any patches submitted for the
1300/3000/4000 which remove the code that removes GPIO code in
cx8802_dvb_advise_acquire(), which have been circulating by users for some
time now...
Canonical tracking this issue in Launchpad 439163:
Thanks to Jon Sayers from Hauppauge and Florent Audebert from Anevia S.A. for
providing hardware to test/debug with.
Signed-off-by: Devin Heitmueller <dheitmueller@kernellabs.com>
Cc: Jon Sayers <j.sayers@hauppauge.co.uk>
Cc: Florent Audebert <florent.audebert@anevia.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2011-07-05 00:55:01 +00:00
|
|
|
|
|
|
|
/* If we took control of the bus, we need to force
|
|
|
|
reinitialization. This is because many ts_bus_ctrl()
|
|
|
|
functions strobe the RESET pin on the demod, and if the
|
|
|
|
frontend thread already exists then the dvb_init() routine
|
|
|
|
won't get called (which is what usually does initial
|
|
|
|
register configuration). */
|
|
|
|
fepriv->reinitialise = 1;
|
2006-09-25 15:41:53 +00:00
|
|
|
}
|
|
|
|
|
2007-08-25 15:00:23 +00:00
|
|
|
if ((ret = dvb_generic_open (inode, file)) < 0)
|
|
|
|
goto err1;
|
2006-07-10 06:34:14 +00:00
|
|
|
|
2007-08-25 15:00:23 +00:00
|
|
|
if ((file->f_flags & O_ACCMODE) != O_RDONLY) {
|
2006-07-10 06:34:14 +00:00
|
|
|
/* normal tune mode when opened R/W */
|
|
|
|
fepriv->tune_mode_flags &= ~FE_TUNE_MODE_ONESHOT;
|
|
|
|
fepriv->tone = -1;
|
|
|
|
fepriv->voltage = -1;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
ret = dvb_frontend_start (fe);
|
|
|
|
if (ret)
|
2007-08-25 15:00:23 +00:00
|
|
|
goto err2;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* empty event queue */
|
|
|
|
fepriv->events.eventr = fepriv->events.eventw = 0;
|
|
|
|
}
|
|
|
|
|
2008-10-11 14:44:05 +00:00
|
|
|
if (adapter->mfe_shared)
|
|
|
|
mutex_unlock (&adapter->mfe_lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
return ret;
|
2007-08-25 15:00:23 +00:00
|
|
|
|
|
|
|
err2:
|
|
|
|
dvb_generic_release(inode, file);
|
|
|
|
err1:
|
|
|
|
if (dvbdev->users == -1 && fe->ops.ts_bus_ctrl)
|
|
|
|
fe->ops.ts_bus_ctrl(fe, 0);
|
2008-10-11 14:44:05 +00:00
|
|
|
err0:
|
|
|
|
if (adapter->mfe_shared)
|
|
|
|
mutex_unlock (&adapter->mfe_lock);
|
2007-08-25 15:00:23 +00:00
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int dvb_frontend_release(struct inode *inode, struct file *file)
|
|
|
|
{
|
|
|
|
struct dvb_device *dvbdev = file->private_data;
|
|
|
|
struct dvb_frontend *fe = dvbdev->priv;
|
2005-05-17 04:54:24 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2007-04-14 13:18:58 +00:00
|
|
|
int ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-04-09 02:20:00 +00:00
|
|
|
dprintk ("%s\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if ((file->f_flags & O_ACCMODE) != O_RDONLY)
|
|
|
|
fepriv->release_jiffies = jiffies;
|
|
|
|
|
2007-04-14 13:18:58 +00:00
|
|
|
ret = dvb_generic_release (inode, file);
|
|
|
|
|
2007-08-25 15:00:23 +00:00
|
|
|
if (dvbdev->users == -1) {
|
2010-05-05 18:59:20 +00:00
|
|
|
if (fepriv->exit != DVB_FE_NO_EXIT) {
|
2007-08-25 15:00:23 +00:00
|
|
|
fops_put(file->f_op);
|
|
|
|
file->f_op = NULL;
|
|
|
|
wake_up(&dvbdev->wait_queue);
|
|
|
|
}
|
|
|
|
if (fe->ops.ts_bus_ctrl)
|
|
|
|
fe->ops.ts_bus_ctrl(fe, 0);
|
2007-04-14 13:18:58 +00:00
|
|
|
}
|
2007-08-25 15:00:23 +00:00
|
|
|
|
2007-04-14 13:18:58 +00:00
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-01-11 09:12:43 +00:00
|
|
|
static const struct file_operations dvb_frontend_fops = {
|
2005-04-16 22:20:36 +00:00
|
|
|
.owner = THIS_MODULE,
|
2010-04-26 22:24:00 +00:00
|
|
|
.unlocked_ioctl = dvb_generic_ioctl,
|
2005-04-16 22:20:36 +00:00
|
|
|
.poll = dvb_frontend_poll,
|
|
|
|
.open = dvb_frontend_open,
|
llseek: automatically add .llseek fop
All file_operations should get a .llseek operation so we can make
nonseekable_open the default for future file operations without a
.llseek pointer.
The three cases that we can automatically detect are no_llseek, seq_lseek
and default_llseek. For cases where we can we can automatically prove that
the file offset is always ignored, we use noop_llseek, which maintains
the current behavior of not returning an error from a seek.
New drivers should normally not use noop_llseek but instead use no_llseek
and call nonseekable_open at open time. Existing drivers can be converted
to do the same when the maintainer knows for certain that no user code
relies on calling seek on the device file.
The generated code is often incorrectly indented and right now contains
comments that clarify for each added line why a specific variant was
chosen. In the version that gets submitted upstream, the comments will
be gone and I will manually fix the indentation, because there does not
seem to be a way to do that using coccinelle.
Some amount of new code is currently sitting in linux-next that should get
the same modifications, which I will do at the end of the merge window.
Many thanks to Julia Lawall for helping me learn to write a semantic
patch that does all this.
===== begin semantic patch =====
// This adds an llseek= method to all file operations,
// as a preparation for making no_llseek the default.
//
// The rules are
// - use no_llseek explicitly if we do nonseekable_open
// - use seq_lseek for sequential files
// - use default_llseek if we know we access f_pos
// - use noop_llseek if we know we don't access f_pos,
// but we still want to allow users to call lseek
//
@ open1 exists @
identifier nested_open;
@@
nested_open(...)
{
<+...
nonseekable_open(...)
...+>
}
@ open exists@
identifier open_f;
identifier i, f;
identifier open1.nested_open;
@@
int open_f(struct inode *i, struct file *f)
{
<+...
(
nonseekable_open(...)
|
nested_open(...)
)
...+>
}
@ read disable optional_qualifier exists @
identifier read_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
expression E;
identifier func;
@@
ssize_t read_f(struct file *f, char *p, size_t s, loff_t *off)
{
<+...
(
*off = E
|
*off += E
|
func(..., off, ...)
|
E = *off
)
...+>
}
@ read_no_fpos disable optional_qualifier exists @
identifier read_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
@@
ssize_t read_f(struct file *f, char *p, size_t s, loff_t *off)
{
... when != off
}
@ write @
identifier write_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
expression E;
identifier func;
@@
ssize_t write_f(struct file *f, const char *p, size_t s, loff_t *off)
{
<+...
(
*off = E
|
*off += E
|
func(..., off, ...)
|
E = *off
)
...+>
}
@ write_no_fpos @
identifier write_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
@@
ssize_t write_f(struct file *f, const char *p, size_t s, loff_t *off)
{
... when != off
}
@ fops0 @
identifier fops;
@@
struct file_operations fops = {
...
};
@ has_llseek depends on fops0 @
identifier fops0.fops;
identifier llseek_f;
@@
struct file_operations fops = {
...
.llseek = llseek_f,
...
};
@ has_read depends on fops0 @
identifier fops0.fops;
identifier read_f;
@@
struct file_operations fops = {
...
.read = read_f,
...
};
@ has_write depends on fops0 @
identifier fops0.fops;
identifier write_f;
@@
struct file_operations fops = {
...
.write = write_f,
...
};
@ has_open depends on fops0 @
identifier fops0.fops;
identifier open_f;
@@
struct file_operations fops = {
...
.open = open_f,
...
};
// use no_llseek if we call nonseekable_open
////////////////////////////////////////////
@ nonseekable1 depends on !has_llseek && has_open @
identifier fops0.fops;
identifier nso ~= "nonseekable_open";
@@
struct file_operations fops = {
... .open = nso, ...
+.llseek = no_llseek, /* nonseekable */
};
@ nonseekable2 depends on !has_llseek @
identifier fops0.fops;
identifier open.open_f;
@@
struct file_operations fops = {
... .open = open_f, ...
+.llseek = no_llseek, /* open uses nonseekable */
};
// use seq_lseek for sequential files
/////////////////////////////////////
@ seq depends on !has_llseek @
identifier fops0.fops;
identifier sr ~= "seq_read";
@@
struct file_operations fops = {
... .read = sr, ...
+.llseek = seq_lseek, /* we have seq_read */
};
// use default_llseek if there is a readdir
///////////////////////////////////////////
@ fops1 depends on !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier readdir_e;
@@
// any other fop is used that changes pos
struct file_operations fops = {
... .readdir = readdir_e, ...
+.llseek = default_llseek, /* readdir is present */
};
// use default_llseek if at least one of read/write touches f_pos
/////////////////////////////////////////////////////////////////
@ fops2 depends on !fops1 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier read.read_f;
@@
// read fops use offset
struct file_operations fops = {
... .read = read_f, ...
+.llseek = default_llseek, /* read accesses f_pos */
};
@ fops3 depends on !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier write.write_f;
@@
// write fops use offset
struct file_operations fops = {
... .write = write_f, ...
+ .llseek = default_llseek, /* write accesses f_pos */
};
// Use noop_llseek if neither read nor write accesses f_pos
///////////////////////////////////////////////////////////
@ fops4 depends on !fops1 && !fops2 && !fops3 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier read_no_fpos.read_f;
identifier write_no_fpos.write_f;
@@
// write fops use offset
struct file_operations fops = {
...
.write = write_f,
.read = read_f,
...
+.llseek = noop_llseek, /* read and write both use no f_pos */
};
@ depends on has_write && !has_read && !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier write_no_fpos.write_f;
@@
struct file_operations fops = {
... .write = write_f, ...
+.llseek = noop_llseek, /* write uses no f_pos */
};
@ depends on has_read && !has_write && !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier read_no_fpos.read_f;
@@
struct file_operations fops = {
... .read = read_f, ...
+.llseek = noop_llseek, /* read uses no f_pos */
};
@ depends on !has_read && !has_write && !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
@@
struct file_operations fops = {
...
+.llseek = noop_llseek, /* no read or write fn */
};
===== End semantic patch =====
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Julia Lawall <julia@diku.dk>
Cc: Christoph Hellwig <hch@infradead.org>
2010-08-15 16:52:59 +00:00
|
|
|
.release = dvb_frontend_release,
|
|
|
|
.llseek = noop_llseek,
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int dvb_register_frontend(struct dvb_adapter* dvb,
|
|
|
|
struct dvb_frontend* fe)
|
|
|
|
{
|
|
|
|
struct dvb_frontend_private *fepriv;
|
|
|
|
static const struct dvb_device dvbdev_template = {
|
|
|
|
.users = ~0,
|
|
|
|
.writers = 1,
|
|
|
|
.readers = (~0)-1,
|
|
|
|
.fops = &dvb_frontend_fops,
|
|
|
|
.kernel_ioctl = dvb_frontend_ioctl
|
|
|
|
};
|
|
|
|
|
2008-04-09 02:20:00 +00:00
|
|
|
dprintk ("%s\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-02-07 08:49:14 +00:00
|
|
|
if (mutex_lock_interruptible(&frontend_mutex))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -ERESTARTSYS;
|
|
|
|
|
2006-01-11 21:40:56 +00:00
|
|
|
fe->frontend_priv = kzalloc(sizeof(struct dvb_frontend_private), GFP_KERNEL);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (fe->frontend_priv == NULL) {
|
2006-02-07 08:49:14 +00:00
|
|
|
mutex_unlock(&frontend_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2005-05-17 04:54:24 +00:00
|
|
|
fepriv = fe->frontend_priv;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-09-07 14:33:27 +00:00
|
|
|
sema_init(&fepriv->sem, 1);
|
2005-04-16 22:20:36 +00:00
|
|
|
init_waitqueue_head (&fepriv->wait_queue);
|
|
|
|
init_waitqueue_head (&fepriv->events.wait_queue);
|
2007-07-30 17:58:10 +00:00
|
|
|
mutex_init(&fepriv->events.mtx);
|
2005-04-16 22:20:36 +00:00
|
|
|
fe->dvb = dvb;
|
|
|
|
fepriv->inversion = INVERSION_OFF;
|
|
|
|
|
2008-10-11 14:05:50 +00:00
|
|
|
printk ("DVB: registering adapter %i frontend %i (%s)...\n",
|
2005-04-16 22:20:36 +00:00
|
|
|
fe->dvb->num,
|
2008-10-11 14:05:50 +00:00
|
|
|
fe->id,
|
2006-05-14 08:01:31 +00:00
|
|
|
fe->ops.info.name);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
dvb_register_device (fe->dvb, &fepriv->dvbdev, &dvbdev_template,
|
|
|
|
fe, DVB_DEVICE_FRONTEND);
|
|
|
|
|
2006-02-07 08:49:14 +00:00
|
|
|
mutex_unlock(&frontend_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dvb_register_frontend);
|
|
|
|
|
|
|
|
int dvb_unregister_frontend(struct dvb_frontend* fe)
|
|
|
|
{
|
2005-05-17 04:54:24 +00:00
|
|
|
struct dvb_frontend_private *fepriv = fe->frontend_priv;
|
2008-04-09 02:20:00 +00:00
|
|
|
dprintk ("%s\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-04-14 13:19:18 +00:00
|
|
|
mutex_lock(&frontend_mutex);
|
2007-04-14 13:18:58 +00:00
|
|
|
dvb_frontend_stop (fe);
|
2007-04-14 13:19:18 +00:00
|
|
|
mutex_unlock(&frontend_mutex);
|
|
|
|
|
|
|
|
if (fepriv->dvbdev->users < -1)
|
|
|
|
wait_event(fepriv->dvbdev->wait_queue,
|
|
|
|
fepriv->dvbdev->users==-1);
|
|
|
|
|
2006-02-07 08:49:14 +00:00
|
|
|
mutex_lock(&frontend_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
dvb_unregister_device (fepriv->dvbdev);
|
2006-08-08 12:10:08 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* fe is invalid now */
|
|
|
|
kfree(fepriv);
|
2006-02-07 08:49:14 +00:00
|
|
|
mutex_unlock(&frontend_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dvb_unregister_frontend);
|
2006-08-08 12:10:09 +00:00
|
|
|
|
2008-04-30 00:38:46 +00:00
|
|
|
#ifdef CONFIG_MEDIA_ATTACH
|
2006-08-08 12:10:09 +00:00
|
|
|
void dvb_frontend_detach(struct dvb_frontend* fe)
|
|
|
|
{
|
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
if (fe->ops.release_sec) {
|
|
|
|
fe->ops.release_sec(fe);
|
|
|
|
symbol_put_addr(fe->ops.release_sec);
|
|
|
|
}
|
|
|
|
if (fe->ops.tuner_ops.release) {
|
|
|
|
fe->ops.tuner_ops.release(fe);
|
|
|
|
symbol_put_addr(fe->ops.tuner_ops.release);
|
|
|
|
}
|
2007-12-21 14:34:45 +00:00
|
|
|
if (fe->ops.analog_ops.release) {
|
|
|
|
fe->ops.analog_ops.release(fe);
|
|
|
|
symbol_put_addr(fe->ops.analog_ops.release);
|
|
|
|
}
|
2006-08-08 12:10:09 +00:00
|
|
|
ptr = (void*)fe->ops.release;
|
|
|
|
if (ptr) {
|
|
|
|
fe->ops.release(fe);
|
|
|
|
symbol_put_addr(ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
void dvb_frontend_detach(struct dvb_frontend* fe)
|
|
|
|
{
|
|
|
|
if (fe->ops.release_sec)
|
|
|
|
fe->ops.release_sec(fe);
|
|
|
|
if (fe->ops.tuner_ops.release)
|
|
|
|
fe->ops.tuner_ops.release(fe);
|
2007-12-21 14:34:45 +00:00
|
|
|
if (fe->ops.analog_ops.release)
|
|
|
|
fe->ops.analog_ops.release(fe);
|
2006-08-08 12:10:09 +00:00
|
|
|
if (fe->ops.release)
|
|
|
|
fe->ops.release(fe);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
EXPORT_SYMBOL(dvb_frontend_detach);
|