2007-07-30 23:49:04 +08:00
|
|
|
/*
|
|
|
|
* Linux-DVB Driver for DiBcom's DiB0070 base-band RF Tuner.
|
|
|
|
*
|
2009-08-04 00:43:40 +08:00
|
|
|
* Copyright (C) 2005-9 DiBcom (http://www.dibcom.fr/)
|
2007-07-30 23:49:04 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
2009-08-04 00:43:40 +08:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This code is more or less generated from another driver, please
|
|
|
|
* excuse some codingstyle oddities.
|
|
|
|
*
|
2007-07-30 23:49:04 +08:00
|
|
|
*/
|
2009-08-04 00:43:40 +08:00
|
|
|
|
2016-10-14 19:10:15 +08:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2007-07-30 23:49:04 +08:00
|
|
|
#include <linux/kernel.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2007-07-30 23:49:04 +08:00
|
|
|
#include <linux/i2c.h>
|
2011-08-03 23:08:21 +08:00
|
|
|
#include <linux/mutex.h>
|
2007-07-30 23:49:04 +08:00
|
|
|
|
|
|
|
#include "dvb_frontend.h"
|
|
|
|
|
|
|
|
#include "dib0070.h"
|
|
|
|
#include "dibx000_common.h"
|
|
|
|
|
|
|
|
static int debug;
|
|
|
|
module_param(debug, int, 0644);
|
|
|
|
MODULE_PARM_DESC(debug, "turn on debugging (default: 0)");
|
|
|
|
|
2016-10-14 19:10:15 +08:00
|
|
|
#define dprintk(fmt, arg...) do { \
|
|
|
|
if (debug) \
|
|
|
|
printk(KERN_DEBUG pr_fmt("%s: " fmt), \
|
|
|
|
__func__, ##arg); \
|
2009-08-04 00:43:40 +08:00
|
|
|
} while (0)
|
2007-07-30 23:49:04 +08:00
|
|
|
|
|
|
|
#define DIB0070_P1D 0x00
|
|
|
|
#define DIB0070_P1F 0x01
|
|
|
|
#define DIB0070_P1G 0x03
|
|
|
|
#define DIB0070S_P1A 0x02
|
|
|
|
|
|
|
|
struct dib0070_state {
|
|
|
|
struct i2c_adapter *i2c;
|
|
|
|
struct dvb_frontend *fe;
|
|
|
|
const struct dib0070_config *cfg;
|
|
|
|
u16 wbd_ff_offset;
|
|
|
|
u8 revision;
|
2009-08-04 00:43:40 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
enum frontend_tune_state tune_state;
|
|
|
|
u32 current_rf;
|
2009-08-04 00:43:40 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
/* for the captrim binary search */
|
2009-08-04 00:43:40 +08:00
|
|
|
s8 step;
|
|
|
|
u16 adc_diff;
|
|
|
|
|
|
|
|
s8 captrim;
|
|
|
|
s8 fcaptrim;
|
|
|
|
u16 lo4;
|
|
|
|
|
|
|
|
const struct dib0070_tuning *current_tune_table_index;
|
|
|
|
const struct dib0070_lna_match *lna_match;
|
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
u8 wbd_gain_current;
|
2009-08-04 00:43:40 +08:00
|
|
|
u16 wbd_offset_3_3[2];
|
2011-05-03 23:27:33 +08:00
|
|
|
|
|
|
|
/* for the I2C transfer */
|
|
|
|
struct i2c_msg msg[2];
|
|
|
|
u8 i2c_write_buffer[3];
|
|
|
|
u8 i2c_read_buffer[2];
|
2011-08-03 23:08:21 +08:00
|
|
|
struct mutex i2c_buffer_lock;
|
2007-07-30 23:49:04 +08:00
|
|
|
};
|
|
|
|
|
2011-08-03 23:08:21 +08:00
|
|
|
static u16 dib0070_read_reg(struct dib0070_state *state, u8 reg)
|
2007-07-30 23:49:04 +08:00
|
|
|
{
|
2011-08-03 23:08:21 +08:00
|
|
|
u16 ret;
|
|
|
|
|
|
|
|
if (mutex_lock_interruptible(&state->i2c_buffer_lock) < 0) {
|
2016-10-14 19:10:15 +08:00
|
|
|
dprintk("could not acquire lock\n");
|
2011-08-03 23:08:21 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-05-03 23:27:33 +08:00
|
|
|
state->i2c_write_buffer[0] = reg;
|
|
|
|
|
|
|
|
memset(state->msg, 0, 2 * sizeof(struct i2c_msg));
|
|
|
|
state->msg[0].addr = state->cfg->i2c_address;
|
|
|
|
state->msg[0].flags = 0;
|
|
|
|
state->msg[0].buf = state->i2c_write_buffer;
|
|
|
|
state->msg[0].len = 1;
|
|
|
|
state->msg[1].addr = state->cfg->i2c_address;
|
|
|
|
state->msg[1].flags = I2C_M_RD;
|
|
|
|
state->msg[1].buf = state->i2c_read_buffer;
|
|
|
|
state->msg[1].len = 2;
|
|
|
|
|
|
|
|
if (i2c_transfer(state->i2c, state->msg, 2) != 2) {
|
2016-10-14 19:10:15 +08:00
|
|
|
pr_warn("DiB0070 I2C read failed\n");
|
2011-08-03 23:08:21 +08:00
|
|
|
ret = 0;
|
|
|
|
} else
|
|
|
|
ret = (state->i2c_read_buffer[0] << 8)
|
|
|
|
| state->i2c_read_buffer[1];
|
|
|
|
|
|
|
|
mutex_unlock(&state->i2c_buffer_lock);
|
|
|
|
return ret;
|
2007-07-30 23:49:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int dib0070_write_reg(struct dib0070_state *state, u8 reg, u16 val)
|
|
|
|
{
|
2011-08-03 23:08:21 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (mutex_lock_interruptible(&state->i2c_buffer_lock) < 0) {
|
2016-10-14 19:10:15 +08:00
|
|
|
dprintk("could not acquire lock\n");
|
2011-08-03 23:08:21 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
2011-05-03 23:27:33 +08:00
|
|
|
state->i2c_write_buffer[0] = reg;
|
|
|
|
state->i2c_write_buffer[1] = val >> 8;
|
|
|
|
state->i2c_write_buffer[2] = val & 0xff;
|
|
|
|
|
|
|
|
memset(state->msg, 0, sizeof(struct i2c_msg));
|
|
|
|
state->msg[0].addr = state->cfg->i2c_address;
|
|
|
|
state->msg[0].flags = 0;
|
|
|
|
state->msg[0].buf = state->i2c_write_buffer;
|
|
|
|
state->msg[0].len = 3;
|
|
|
|
|
|
|
|
if (i2c_transfer(state->i2c, state->msg, 1) != 1) {
|
2016-10-14 19:10:15 +08:00
|
|
|
pr_warn("DiB0070 I2C write failed\n");
|
2011-08-03 23:08:21 +08:00
|
|
|
ret = -EREMOTEIO;
|
|
|
|
} else
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
mutex_unlock(&state->i2c_buffer_lock);
|
|
|
|
return ret;
|
2007-07-30 23:49:04 +08:00
|
|
|
}
|
|
|
|
|
2009-08-04 00:43:40 +08:00
|
|
|
#define HARD_RESET(state) do { \
|
|
|
|
state->cfg->sleep(state->fe, 0); \
|
|
|
|
if (state->cfg->reset) { \
|
|
|
|
state->cfg->reset(state->fe,1); msleep(10); \
|
|
|
|
state->cfg->reset(state->fe,0); msleep(10); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2011-12-23 05:19:55 +08:00
|
|
|
static int dib0070_set_bandwidth(struct dvb_frontend *fe)
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
{
|
|
|
|
struct dib0070_state *state = fe->tuner_priv;
|
|
|
|
u16 tmp = dib0070_read_reg(state, 0x02) & 0x3fff;
|
|
|
|
|
|
|
|
if (state->fe->dtv_property_cache.bandwidth_hz/1000 > 7000)
|
|
|
|
tmp |= (0 << 14);
|
|
|
|
else if (state->fe->dtv_property_cache.bandwidth_hz/1000 > 6000)
|
|
|
|
tmp |= (1 << 14);
|
|
|
|
else if (state->fe->dtv_property_cache.bandwidth_hz/1000 > 5000)
|
|
|
|
tmp |= (2 << 14);
|
|
|
|
else
|
|
|
|
tmp |= (3 << 14);
|
|
|
|
|
|
|
|
dib0070_write_reg(state, 0x02, tmp);
|
|
|
|
|
|
|
|
/* sharpen the BB filter in ISDB-T to have higher immunity to adjacent channels */
|
|
|
|
if (state->fe->dtv_property_cache.delivery_system == SYS_ISDBT) {
|
|
|
|
u16 value = dib0070_read_reg(state, 0x17);
|
|
|
|
|
|
|
|
dib0070_write_reg(state, 0x17, value & 0xfffc);
|
|
|
|
tmp = dib0070_read_reg(state, 0x01) & 0x01ff;
|
|
|
|
dib0070_write_reg(state, 0x01, tmp | (60 << 9));
|
|
|
|
|
|
|
|
dib0070_write_reg(state, 0x17, value);
|
|
|
|
}
|
2007-07-30 23:49:04 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-17 16:13:28 +08:00
|
|
|
static int dib0070_captrim(struct dib0070_state *state, enum frontend_tune_state *tune_state)
|
2007-07-30 23:49:04 +08:00
|
|
|
{
|
2009-08-04 00:43:40 +08:00
|
|
|
int8_t step_sign;
|
|
|
|
u16 adc;
|
|
|
|
int ret = 0;
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2009-08-04 00:43:40 +08:00
|
|
|
if (*tune_state == CT_TUNER_STEP_0) {
|
2009-08-17 16:13:28 +08:00
|
|
|
dib0070_write_reg(state, 0x0f, 0xed10);
|
2009-12-05 00:27:57 +08:00
|
|
|
dib0070_write_reg(state, 0x17, 0x0034);
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2009-08-17 16:13:28 +08:00
|
|
|
dib0070_write_reg(state, 0x18, 0x0032);
|
|
|
|
state->step = state->captrim = state->fcaptrim = 64;
|
|
|
|
state->adc_diff = 3000;
|
2009-08-04 00:43:40 +08:00
|
|
|
ret = 20;
|
2007-07-30 23:49:04 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
*tune_state = CT_TUNER_STEP_1;
|
2009-08-04 00:43:40 +08:00
|
|
|
} else if (*tune_state == CT_TUNER_STEP_1) {
|
2009-08-17 16:13:28 +08:00
|
|
|
state->step /= 2;
|
|
|
|
dib0070_write_reg(state, 0x14, state->lo4 | state->captrim);
|
2009-08-04 00:43:40 +08:00
|
|
|
ret = 15;
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2009-08-04 00:43:40 +08:00
|
|
|
*tune_state = CT_TUNER_STEP_2;
|
|
|
|
} else if (*tune_state == CT_TUNER_STEP_2) {
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2009-08-17 16:13:28 +08:00
|
|
|
adc = dib0070_read_reg(state, 0x19);
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2016-10-14 19:10:15 +08:00
|
|
|
dprintk("CAPTRIM=%hd; ADC = %hd (ADC) & %dmV\n", state->captrim, adc, (u32) adc*(u32)1800/(u32)1024);
|
2007-07-30 23:49:04 +08:00
|
|
|
|
|
|
|
if (adc >= 400) {
|
|
|
|
adc -= 400;
|
|
|
|
step_sign = -1;
|
|
|
|
} else {
|
|
|
|
adc = 400 - adc;
|
|
|
|
step_sign = 1;
|
|
|
|
}
|
|
|
|
|
2009-08-17 16:13:28 +08:00
|
|
|
if (adc < state->adc_diff) {
|
2016-10-14 19:10:15 +08:00
|
|
|
dprintk("CAPTRIM=%hd is closer to target (%hd/%hd)\n", state->captrim, adc, state->adc_diff);
|
2009-08-17 16:13:28 +08:00
|
|
|
state->adc_diff = adc;
|
|
|
|
state->fcaptrim = state->captrim;
|
2007-07-30 23:49:04 +08:00
|
|
|
}
|
2009-08-17 16:13:28 +08:00
|
|
|
state->captrim += (step_sign * state->step);
|
2009-08-04 00:43:40 +08:00
|
|
|
|
2009-08-17 16:13:28 +08:00
|
|
|
if (state->step >= 1)
|
2009-08-04 00:43:40 +08:00
|
|
|
*tune_state = CT_TUNER_STEP_1;
|
|
|
|
else
|
|
|
|
*tune_state = CT_TUNER_STEP_3;
|
|
|
|
|
|
|
|
} else if (*tune_state == CT_TUNER_STEP_3) {
|
2009-08-17 16:13:28 +08:00
|
|
|
dib0070_write_reg(state, 0x14, state->lo4 | state->fcaptrim);
|
|
|
|
dib0070_write_reg(state, 0x18, 0x07ff);
|
2009-08-04 00:43:40 +08:00
|
|
|
*tune_state = CT_TUNER_STEP_4;
|
|
|
|
}
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2009-08-04 00:43:40 +08:00
|
|
|
return ret;
|
2007-07-30 23:49:04 +08:00
|
|
|
}
|
|
|
|
|
2009-08-04 00:43:40 +08:00
|
|
|
static int dib0070_set_ctrl_lo5(struct dvb_frontend *fe, u8 vco_bias_trim, u8 hf_div_trim, u8 cp_current, u8 third_order_filt)
|
2007-07-30 23:49:04 +08:00
|
|
|
{
|
2009-08-04 00:43:40 +08:00
|
|
|
struct dib0070_state *state = fe->tuner_priv;
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
u16 lo5 = (third_order_filt << 14) | (0 << 13) | (1 << 12) | (3 << 9) | (cp_current << 6) | (hf_div_trim << 3) | (vco_bias_trim << 0);
|
|
|
|
|
2016-10-14 19:10:15 +08:00
|
|
|
dprintk("CTRL_LO5: 0x%x\n", lo5);
|
2009-08-04 00:43:40 +08:00
|
|
|
return dib0070_write_reg(state, 0x15, lo5);
|
|
|
|
}
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2009-08-17 16:13:28 +08:00
|
|
|
void dib0070_ctrl_agc_filter(struct dvb_frontend *fe, u8 open)
|
2009-08-04 00:43:40 +08:00
|
|
|
{
|
2009-08-17 16:13:28 +08:00
|
|
|
struct dib0070_state *state = fe->tuner_priv;
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2009-08-17 16:13:28 +08:00
|
|
|
if (open) {
|
|
|
|
dib0070_write_reg(state, 0x1b, 0xff00);
|
|
|
|
dib0070_write_reg(state, 0x1a, 0x0000);
|
|
|
|
} else {
|
|
|
|
dib0070_write_reg(state, 0x1b, 0x4112);
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
if (state->cfg->vga_filter != 0) {
|
|
|
|
dib0070_write_reg(state, 0x1a, state->cfg->vga_filter);
|
2016-10-14 19:10:15 +08:00
|
|
|
dprintk("vga filter register is set to %x\n", state->cfg->vga_filter);
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
} else
|
|
|
|
dib0070_write_reg(state, 0x1a, 0x0009);
|
2009-08-17 16:13:28 +08:00
|
|
|
}
|
|
|
|
}
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2009-08-17 16:13:28 +08:00
|
|
|
EXPORT_SYMBOL(dib0070_ctrl_agc_filter);
|
|
|
|
struct dib0070_tuning {
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
u32 max_freq; /* for every frequency less than or equal to that field: this information is correct */
|
|
|
|
u8 switch_trim;
|
|
|
|
u8 vco_band;
|
|
|
|
u8 hfdiv;
|
|
|
|
u8 vco_multi;
|
|
|
|
u8 presc;
|
|
|
|
u8 wbdmux;
|
|
|
|
u16 tuner_enable;
|
2009-08-04 00:43:40 +08:00
|
|
|
};
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2009-08-17 16:13:28 +08:00
|
|
|
struct dib0070_lna_match {
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
u32 max_freq; /* for every frequency less than or equal to that field: this information is correct */
|
|
|
|
u8 lna_band;
|
2009-08-04 00:43:40 +08:00
|
|
|
};
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2009-08-17 16:13:28 +08:00
|
|
|
static const struct dib0070_tuning dib0070s_tuning_table[] = {
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
{ 570000, 2, 1, 3, 6, 6, 2, 0x4000 | 0x0800 }, /* UHF */
|
|
|
|
{ 700000, 2, 0, 2, 4, 2, 2, 0x4000 | 0x0800 },
|
|
|
|
{ 863999, 2, 1, 2, 4, 2, 2, 0x4000 | 0x0800 },
|
|
|
|
{ 1500000, 0, 1, 1, 2, 2, 4, 0x2000 | 0x0400 }, /* LBAND */
|
|
|
|
{ 1600000, 0, 1, 1, 2, 2, 4, 0x2000 | 0x0400 },
|
|
|
|
{ 2000000, 0, 1, 1, 2, 2, 4, 0x2000 | 0x0400 },
|
|
|
|
{ 0xffffffff, 0, 0, 8, 1, 2, 1, 0x8000 | 0x1000 }, /* SBAND */
|
2009-08-17 16:13:28 +08:00
|
|
|
};
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2009-08-17 16:13:28 +08:00
|
|
|
static const struct dib0070_tuning dib0070_tuning_table[] = {
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
{ 115000, 1, 0, 7, 24, 2, 1, 0x8000 | 0x1000 }, /* FM below 92MHz cannot be tuned */
|
|
|
|
{ 179500, 1, 0, 3, 16, 2, 1, 0x8000 | 0x1000 }, /* VHF */
|
|
|
|
{ 189999, 1, 1, 3, 16, 2, 1, 0x8000 | 0x1000 },
|
|
|
|
{ 250000, 1, 0, 6, 12, 2, 1, 0x8000 | 0x1000 },
|
|
|
|
{ 569999, 2, 1, 5, 6, 2, 2, 0x4000 | 0x0800 }, /* UHF */
|
|
|
|
{ 699999, 2, 0, 1, 4, 2, 2, 0x4000 | 0x0800 },
|
|
|
|
{ 863999, 2, 1, 1, 4, 2, 2, 0x4000 | 0x0800 },
|
|
|
|
{ 0xffffffff, 0, 1, 0, 2, 2, 4, 0x2000 | 0x0400 }, /* LBAND or everything higher than UHF */
|
2009-08-04 00:43:40 +08:00
|
|
|
};
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2009-08-17 16:13:28 +08:00
|
|
|
static const struct dib0070_lna_match dib0070_lna_flip_chip[] = {
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
{ 180000, 0 }, /* VHF */
|
|
|
|
{ 188000, 1 },
|
|
|
|
{ 196400, 2 },
|
|
|
|
{ 250000, 3 },
|
|
|
|
{ 550000, 0 }, /* UHF */
|
|
|
|
{ 590000, 1 },
|
|
|
|
{ 666000, 3 },
|
|
|
|
{ 864000, 5 },
|
|
|
|
{ 1500000, 0 }, /* LBAND or everything higher than UHF */
|
|
|
|
{ 1600000, 1 },
|
|
|
|
{ 2000000, 3 },
|
|
|
|
{ 0xffffffff, 7 },
|
2009-08-17 16:13:28 +08:00
|
|
|
};
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2009-08-17 16:13:28 +08:00
|
|
|
static const struct dib0070_lna_match dib0070_lna[] = {
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
{ 180000, 0 }, /* VHF */
|
|
|
|
{ 188000, 1 },
|
|
|
|
{ 196400, 2 },
|
|
|
|
{ 250000, 3 },
|
|
|
|
{ 550000, 2 }, /* UHF */
|
|
|
|
{ 650000, 3 },
|
|
|
|
{ 750000, 5 },
|
|
|
|
{ 850000, 6 },
|
|
|
|
{ 864000, 7 },
|
|
|
|
{ 1500000, 0 }, /* LBAND or everything higher than UHF */
|
|
|
|
{ 1600000, 1 },
|
|
|
|
{ 2000000, 3 },
|
|
|
|
{ 0xffffffff, 7 },
|
2009-08-04 00:43:40 +08:00
|
|
|
};
|
2007-07-30 23:49:04 +08:00
|
|
|
|
2009-12-07 18:49:40 +08:00
|
|
|
#define LPF 100
|
2011-12-23 05:19:55 +08:00
|
|
|
static int dib0070_tune_digital(struct dvb_frontend *fe)
|
2009-08-04 00:43:40 +08:00
|
|
|
{
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
struct dib0070_state *state = fe->tuner_priv;
|
2009-08-04 00:43:40 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
const struct dib0070_tuning *tune;
|
|
|
|
const struct dib0070_lna_match *lna_match;
|
2009-08-04 00:43:40 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
enum frontend_tune_state *tune_state = &state->tune_state;
|
|
|
|
int ret = 10; /* 1ms is the default delay most of the time */
|
2009-08-17 16:13:28 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
u8 band = (u8)BAND_OF_FREQUENCY(fe->dtv_property_cache.frequency/1000);
|
|
|
|
u32 freq = fe->dtv_property_cache.frequency/1000 + (band == BAND_VHF ? state->cfg->freq_offset_khz_vhf : state->cfg->freq_offset_khz_uhf);
|
2009-08-17 16:13:28 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_SYS_ISDBT
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
if (state->fe->dtv_property_cache.delivery_system == SYS_ISDBT && state->fe->dtv_property_cache.isdbt_sb_mode == 1)
|
|
|
|
if (((state->fe->dtv_property_cache.isdbt_sb_segment_count % 2)
|
|
|
|
&& (state->fe->dtv_property_cache.isdbt_sb_segment_idx == ((state->fe->dtv_property_cache.isdbt_sb_segment_count / 2) + 1)))
|
|
|
|
|| (((state->fe->dtv_property_cache.isdbt_sb_segment_count % 2) == 0)
|
|
|
|
&& (state->fe->dtv_property_cache.isdbt_sb_segment_idx == (state->fe->dtv_property_cache.isdbt_sb_segment_count / 2)))
|
|
|
|
|| (((state->fe->dtv_property_cache.isdbt_sb_segment_count % 2) == 0)
|
|
|
|
&& (state->fe->dtv_property_cache.isdbt_sb_segment_idx == ((state->fe->dtv_property_cache.isdbt_sb_segment_count / 2) + 1))))
|
|
|
|
freq += 850;
|
2009-08-04 00:43:40 +08:00
|
|
|
#endif
|
2009-08-17 16:13:28 +08:00
|
|
|
if (state->current_rf != freq) {
|
2009-12-07 18:49:40 +08:00
|
|
|
|
|
|
|
switch (state->revision) {
|
|
|
|
case DIB0070S_P1A:
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
tune = dib0070s_tuning_table;
|
|
|
|
lna_match = dib0070_lna;
|
|
|
|
break;
|
2009-12-07 18:49:40 +08:00
|
|
|
default:
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
tune = dib0070_tuning_table;
|
|
|
|
if (state->cfg->flip_chip)
|
|
|
|
lna_match = dib0070_lna_flip_chip;
|
|
|
|
else
|
|
|
|
lna_match = dib0070_lna;
|
|
|
|
break;
|
2009-12-07 18:49:40 +08:00
|
|
|
}
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
while (freq > tune->max_freq) /* find the right one */
|
|
|
|
tune++;
|
|
|
|
while (freq > lna_match->max_freq) /* find the right one */
|
|
|
|
lna_match++;
|
2009-12-07 18:49:40 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
state->current_tune_table_index = tune;
|
|
|
|
state->lna_match = lna_match;
|
|
|
|
}
|
2009-12-07 18:49:40 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
if (*tune_state == CT_TUNER_START) {
|
2016-10-14 19:10:15 +08:00
|
|
|
dprintk("Tuning for Band: %hd (%d kHz)\n", band, freq);
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
if (state->current_rf != freq) {
|
|
|
|
u8 REFDIV;
|
|
|
|
u32 FBDiv, Rest, FREF, VCOF_kHz;
|
|
|
|
u8 Den;
|
|
|
|
|
|
|
|
state->current_rf = freq;
|
|
|
|
state->lo4 = (state->current_tune_table_index->vco_band << 11) | (state->current_tune_table_index->hfdiv << 7);
|
|
|
|
|
|
|
|
|
|
|
|
dib0070_write_reg(state, 0x17, 0x30);
|
|
|
|
|
|
|
|
|
|
|
|
VCOF_kHz = state->current_tune_table_index->vco_multi * freq * 2;
|
|
|
|
|
|
|
|
switch (band) {
|
|
|
|
case BAND_VHF:
|
|
|
|
REFDIV = (u8) ((state->cfg->clock_khz + 9999) / 10000);
|
|
|
|
break;
|
|
|
|
case BAND_FM:
|
|
|
|
REFDIV = (u8) ((state->cfg->clock_khz) / 1000);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
REFDIV = (u8) (state->cfg->clock_khz / 10000);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
FREF = state->cfg->clock_khz / REFDIV;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
switch (state->revision) {
|
|
|
|
case DIB0070S_P1A:
|
|
|
|
FBDiv = (VCOF_kHz / state->current_tune_table_index->presc / FREF);
|
|
|
|
Rest = (VCOF_kHz / state->current_tune_table_index->presc) - FBDiv * FREF;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DIB0070_P1G:
|
|
|
|
case DIB0070_P1F:
|
|
|
|
default:
|
|
|
|
FBDiv = (freq / (FREF / 2));
|
|
|
|
Rest = 2 * freq - FBDiv * FREF;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Rest < LPF)
|
|
|
|
Rest = 0;
|
|
|
|
else if (Rest < 2 * LPF)
|
|
|
|
Rest = 2 * LPF;
|
|
|
|
else if (Rest > (FREF - LPF)) {
|
|
|
|
Rest = 0;
|
|
|
|
FBDiv += 1;
|
|
|
|
} else if (Rest > (FREF - 2 * LPF))
|
|
|
|
Rest = FREF - 2 * LPF;
|
|
|
|
Rest = (Rest * 6528) / (FREF / 10);
|
|
|
|
|
|
|
|
Den = 1;
|
|
|
|
if (Rest > 0) {
|
|
|
|
state->lo4 |= (1 << 14) | (1 << 12);
|
|
|
|
Den = 255;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dib0070_write_reg(state, 0x11, (u16)FBDiv);
|
|
|
|
dib0070_write_reg(state, 0x12, (Den << 8) | REFDIV);
|
|
|
|
dib0070_write_reg(state, 0x13, (u16) Rest);
|
|
|
|
|
|
|
|
if (state->revision == DIB0070S_P1A) {
|
|
|
|
|
|
|
|
if (band == BAND_SBAND) {
|
|
|
|
dib0070_set_ctrl_lo5(fe, 2, 4, 3, 0);
|
|
|
|
dib0070_write_reg(state, 0x1d, 0xFFFF);
|
|
|
|
} else
|
|
|
|
dib0070_set_ctrl_lo5(fe, 5, 4, 3, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
dib0070_write_reg(state, 0x20,
|
|
|
|
0x0040 | 0x0020 | 0x0010 | 0x0008 | 0x0002 | 0x0001 | state->current_tune_table_index->tuner_enable);
|
|
|
|
|
2016-10-14 19:10:15 +08:00
|
|
|
dprintk("REFDIV: %hd, FREF: %d\n", REFDIV, FREF);
|
|
|
|
dprintk("FBDIV: %d, Rest: %d\n", FBDiv, Rest);
|
|
|
|
dprintk("Num: %hd, Den: %hd, SD: %hd\n", (u16) Rest, Den, (state->lo4 >> 12) & 0x1);
|
|
|
|
dprintk("HFDIV code: %hd\n", state->current_tune_table_index->hfdiv);
|
|
|
|
dprintk("VCO = %hd\n", state->current_tune_table_index->vco_band);
|
|
|
|
dprintk("VCOF: ((%hd*%d) << 1))\n", state->current_tune_table_index->vco_multi, freq);
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
|
|
|
|
*tune_state = CT_TUNER_STEP_0;
|
|
|
|
} else { /* we are already tuned to this frequency - the configuration is correct */
|
|
|
|
ret = 50; /* wakeup time */
|
|
|
|
*tune_state = CT_TUNER_STEP_5;
|
2009-12-07 18:49:40 +08:00
|
|
|
}
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
} else if ((*tune_state > CT_TUNER_START) && (*tune_state < CT_TUNER_STEP_4)) {
|
2009-12-07 18:49:40 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
ret = dib0070_captrim(state, tune_state);
|
2009-08-17 16:13:28 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
} else if (*tune_state == CT_TUNER_STEP_4) {
|
|
|
|
const struct dib0070_wbd_gain_cfg *tmp = state->cfg->wbd_gain;
|
|
|
|
if (tmp != NULL) {
|
|
|
|
while (freq/1000 > tmp->freq) /* find the right one */
|
|
|
|
tmp++;
|
2009-08-17 16:13:28 +08:00
|
|
|
dib0070_write_reg(state, 0x0f,
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
(0 << 15) | (1 << 14) | (3 << 12)
|
|
|
|
| (tmp->wbd_gain_val << 9) | (0 << 8) | (1 << 7)
|
|
|
|
| (state->current_tune_table_index->wbdmux << 0));
|
|
|
|
state->wbd_gain_current = tmp->wbd_gain_val;
|
|
|
|
} else {
|
|
|
|
dib0070_write_reg(state, 0x0f,
|
|
|
|
(0 << 15) | (1 << 14) | (3 << 12)
|
|
|
|
| (6 << 9) | (0 << 8) | (1 << 7)
|
|
|
|
| (state->current_tune_table_index->wbdmux << 0));
|
|
|
|
state->wbd_gain_current = 6;
|
|
|
|
}
|
2007-07-30 23:49:04 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
dib0070_write_reg(state, 0x06, 0x3fff);
|
2009-08-17 16:13:28 +08:00
|
|
|
dib0070_write_reg(state, 0x07,
|
|
|
|
(state->current_tune_table_index->switch_trim << 11) | (7 << 8) | (state->lna_match->lna_band << 3) | (3 << 0));
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
dib0070_write_reg(state, 0x08, (state->lna_match->lna_band << 10) | (3 << 7) | (127));
|
|
|
|
dib0070_write_reg(state, 0x0d, 0x0d80);
|
2009-08-04 00:43:40 +08:00
|
|
|
|
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
dib0070_write_reg(state, 0x18, 0x07ff);
|
|
|
|
dib0070_write_reg(state, 0x17, 0x0033);
|
2009-12-05 00:27:57 +08:00
|
|
|
|
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
*tune_state = CT_TUNER_STEP_5;
|
|
|
|
} else if (*tune_state == CT_TUNER_STEP_5) {
|
|
|
|
dib0070_set_bandwidth(fe);
|
|
|
|
*tune_state = CT_TUNER_STOP;
|
|
|
|
} else {
|
|
|
|
ret = FE_CALLBACK_TIME_NEVER; /* tuner finished, time to call again infinite */
|
|
|
|
}
|
|
|
|
return ret;
|
2009-08-04 00:43:40 +08:00
|
|
|
}
|
|
|
|
|
2009-12-05 00:27:57 +08:00
|
|
|
|
2011-12-24 23:24:33 +08:00
|
|
|
static int dib0070_tune(struct dvb_frontend *fe)
|
2009-08-04 00:43:40 +08:00
|
|
|
{
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
struct dib0070_state *state = fe->tuner_priv;
|
|
|
|
uint32_t ret;
|
2009-08-04 00:43:40 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
state->tune_state = CT_TUNER_START;
|
2009-08-04 00:43:40 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
do {
|
|
|
|
ret = dib0070_tune_digital(fe);
|
|
|
|
if (ret != FE_CALLBACK_TIME_NEVER)
|
|
|
|
msleep(ret/10);
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
} while (state->tune_state != CT_TUNER_STOP);
|
2009-08-04 00:43:40 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
return 0;
|
2007-07-30 23:49:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int dib0070_wakeup(struct dvb_frontend *fe)
|
|
|
|
{
|
2009-08-17 16:13:28 +08:00
|
|
|
struct dib0070_state *state = fe->tuner_priv;
|
|
|
|
if (state->cfg->sleep)
|
|
|
|
state->cfg->sleep(fe, 0);
|
2007-07-30 23:49:04 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dib0070_sleep(struct dvb_frontend *fe)
|
|
|
|
{
|
2009-08-17 16:13:28 +08:00
|
|
|
struct dib0070_state *state = fe->tuner_priv;
|
|
|
|
if (state->cfg->sleep)
|
|
|
|
state->cfg->sleep(fe, 1);
|
2007-07-30 23:49:04 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-12-05 00:27:57 +08:00
|
|
|
u8 dib0070_get_rf_output(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct dib0070_state *state = fe->tuner_priv;
|
|
|
|
return (dib0070_read_reg(state, 0x07) >> 11) & 0x3;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dib0070_get_rf_output);
|
2009-12-07 18:49:40 +08:00
|
|
|
|
2009-12-05 00:27:57 +08:00
|
|
|
int dib0070_set_rf_output(struct dvb_frontend *fe, u8 no)
|
|
|
|
{
|
|
|
|
struct dib0070_state *state = fe->tuner_priv;
|
|
|
|
u16 rxrf2 = dib0070_read_reg(state, 0x07) & 0xfe7ff;
|
2009-12-07 18:49:40 +08:00
|
|
|
if (no > 3)
|
|
|
|
no = 3;
|
|
|
|
if (no < 1)
|
|
|
|
no = 1;
|
2009-12-05 00:27:57 +08:00
|
|
|
return dib0070_write_reg(state, 0x07, rxrf2 | (no << 11));
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dib0070_set_rf_output);
|
2009-12-07 18:49:40 +08:00
|
|
|
|
2009-12-05 00:27:57 +08:00
|
|
|
static const u16 dib0070_p1f_defaults[] =
|
|
|
|
|
|
|
|
{
|
2007-07-30 23:49:04 +08:00
|
|
|
7, 0x02,
|
2009-12-05 00:27:57 +08:00
|
|
|
0x0008,
|
|
|
|
0x0000,
|
|
|
|
0x0000,
|
|
|
|
0x0000,
|
|
|
|
0x0000,
|
|
|
|
0x0002,
|
|
|
|
0x0100,
|
2007-07-30 23:49:04 +08:00
|
|
|
|
|
|
|
3, 0x0d,
|
2009-12-05 00:27:57 +08:00
|
|
|
0x0d80,
|
|
|
|
0x0001,
|
|
|
|
0x0000,
|
2007-07-30 23:49:04 +08:00
|
|
|
|
|
|
|
4, 0x11,
|
2009-12-05 00:27:57 +08:00
|
|
|
0x0000,
|
|
|
|
0x0103,
|
|
|
|
0x0000,
|
|
|
|
0x0000,
|
2007-07-30 23:49:04 +08:00
|
|
|
|
|
|
|
3, 0x16,
|
2009-12-05 00:27:57 +08:00
|
|
|
0x0004 | 0x0040,
|
|
|
|
0x0030,
|
|
|
|
0x07ff,
|
2007-07-30 23:49:04 +08:00
|
|
|
|
|
|
|
6, 0x1b,
|
2009-12-05 00:27:57 +08:00
|
|
|
0x4112,
|
|
|
|
0xff00,
|
|
|
|
0xc07f,
|
|
|
|
0x0000,
|
|
|
|
0x0180,
|
|
|
|
0x4000 | 0x0800 | 0x0040 | 0x0020 | 0x0010 | 0x0008 | 0x0002 | 0x0001,
|
2007-07-30 23:49:04 +08:00
|
|
|
|
|
|
|
0,
|
|
|
|
};
|
|
|
|
|
2009-08-04 00:43:40 +08:00
|
|
|
static u16 dib0070_read_wbd_offset(struct dib0070_state *state, u8 gain)
|
2007-07-30 23:49:04 +08:00
|
|
|
{
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
u16 tuner_en = dib0070_read_reg(state, 0x20);
|
|
|
|
u16 offset;
|
|
|
|
|
|
|
|
dib0070_write_reg(state, 0x18, 0x07ff);
|
|
|
|
dib0070_write_reg(state, 0x20, 0x0800 | 0x4000 | 0x0040 | 0x0020 | 0x0010 | 0x0008 | 0x0002 | 0x0001);
|
|
|
|
dib0070_write_reg(state, 0x0f, (1 << 14) | (2 << 12) | (gain << 9) | (1 << 8) | (1 << 7) | (0 << 0));
|
|
|
|
msleep(9);
|
|
|
|
offset = dib0070_read_reg(state, 0x19);
|
|
|
|
dib0070_write_reg(state, 0x20, tuner_en);
|
|
|
|
return offset;
|
2009-08-04 00:43:40 +08:00
|
|
|
}
|
2008-01-25 18:25:20 +08:00
|
|
|
|
2009-08-04 00:43:40 +08:00
|
|
|
static void dib0070_wbd_offset_calibration(struct dib0070_state *state)
|
|
|
|
{
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
u8 gain;
|
|
|
|
for (gain = 6; gain < 8; gain++) {
|
|
|
|
state->wbd_offset_3_3[gain - 6] = ((dib0070_read_wbd_offset(state, gain) * 8 * 18 / 33 + 1) / 2);
|
2016-10-14 19:10:15 +08:00
|
|
|
dprintk("Gain: %d, WBDOffset (3.3V) = %hd\n", gain, state->wbd_offset_3_3[gain-6]);
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
}
|
2007-07-30 23:49:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
u16 dib0070_wbd_offset(struct dvb_frontend *fe)
|
|
|
|
{
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
struct dib0070_state *state = fe->tuner_priv;
|
|
|
|
const struct dib0070_wbd_gain_cfg *tmp = state->cfg->wbd_gain;
|
|
|
|
u32 freq = fe->dtv_property_cache.frequency/1000;
|
|
|
|
|
|
|
|
if (tmp != NULL) {
|
|
|
|
while (freq/1000 > tmp->freq) /* find the right one */
|
|
|
|
tmp++;
|
|
|
|
state->wbd_gain_current = tmp->wbd_gain_val;
|
2009-08-17 16:13:28 +08:00
|
|
|
} else
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
state->wbd_gain_current = 6;
|
2009-08-17 16:13:28 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
return state->wbd_offset_3_3[state->wbd_gain_current - 6];
|
2007-07-30 23:49:04 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dib0070_wbd_offset);
|
2009-08-17 16:13:28 +08:00
|
|
|
|
2007-07-30 23:49:04 +08:00
|
|
|
#define pgm_read_word(w) (*w)
|
2009-08-04 00:43:40 +08:00
|
|
|
static int dib0070_reset(struct dvb_frontend *fe)
|
2007-07-30 23:49:04 +08:00
|
|
|
{
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
struct dib0070_state *state = fe->tuner_priv;
|
2007-07-30 23:49:04 +08:00
|
|
|
u16 l, r, *n;
|
|
|
|
|
|
|
|
HARD_RESET(state);
|
|
|
|
|
2009-12-05 00:27:57 +08:00
|
|
|
|
2007-07-30 23:49:04 +08:00
|
|
|
#ifndef FORCE_SBAND_TUNER
|
|
|
|
if ((dib0070_read_reg(state, 0x22) >> 9) & 0x1)
|
|
|
|
state->revision = (dib0070_read_reg(state, 0x1f) >> 8) & 0xff;
|
|
|
|
else
|
2009-08-04 00:43:40 +08:00
|
|
|
#else
|
|
|
|
#warning forcing SBAND
|
2007-07-30 23:49:04 +08:00
|
|
|
#endif
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
state->revision = DIB0070S_P1A;
|
2007-07-30 23:49:04 +08:00
|
|
|
|
|
|
|
/* P1F or not */
|
2016-10-14 19:10:15 +08:00
|
|
|
dprintk("Revision: %x\n", state->revision);
|
2007-07-30 23:49:04 +08:00
|
|
|
|
|
|
|
if (state->revision == DIB0070_P1D) {
|
2016-10-14 19:10:15 +08:00
|
|
|
dprintk("Error: this driver is not to be used meant for P1D or earlier\n");
|
2007-07-30 23:49:04 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
n = (u16 *) dib0070_p1f_defaults;
|
|
|
|
l = pgm_read_word(n++);
|
|
|
|
while (l) {
|
|
|
|
r = pgm_read_word(n++);
|
|
|
|
do {
|
2009-12-05 00:27:57 +08:00
|
|
|
dib0070_write_reg(state, (u8)r, pgm_read_word(n++));
|
2007-07-30 23:49:04 +08:00
|
|
|
r++;
|
|
|
|
} while (--l);
|
|
|
|
l = pgm_read_word(n++);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state->cfg->force_crystal_mode != 0)
|
|
|
|
r = state->cfg->force_crystal_mode;
|
|
|
|
else if (state->cfg->clock_khz >= 24000)
|
|
|
|
r = 1;
|
|
|
|
else
|
|
|
|
r = 2;
|
|
|
|
|
2009-12-05 00:27:57 +08:00
|
|
|
|
2007-07-30 23:49:04 +08:00
|
|
|
r |= state->cfg->osc_buffer_state << 3;
|
|
|
|
|
|
|
|
dib0070_write_reg(state, 0x10, r);
|
2009-08-04 00:43:40 +08:00
|
|
|
dib0070_write_reg(state, 0x1f, (1 << 8) | ((state->cfg->clock_pad_drive & 0xf) << 5));
|
2007-07-30 23:49:04 +08:00
|
|
|
|
|
|
|
if (state->cfg->invert_iq) {
|
|
|
|
r = dib0070_read_reg(state, 0x02) & 0xffdf;
|
|
|
|
dib0070_write_reg(state, 0x02, r | (1 << 5));
|
|
|
|
}
|
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
if (state->revision == DIB0070S_P1A)
|
|
|
|
dib0070_set_ctrl_lo5(fe, 2, 4, 3, 0);
|
|
|
|
else
|
|
|
|
dib0070_set_ctrl_lo5(fe, 5, 4, state->cfg->charge_pump,
|
|
|
|
state->cfg->enable_third_order_filter);
|
2007-07-30 23:49:04 +08:00
|
|
|
|
|
|
|
dib0070_write_reg(state, 0x01, (54 << 9) | 0xc8);
|
2009-08-04 00:43:40 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
dib0070_wbd_offset_calibration(state);
|
2009-08-04 00:43:40 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
return 0;
|
2009-12-05 00:27:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int dib0070_get_frequency(struct dvb_frontend *fe, u32 *frequency)
|
|
|
|
{
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
struct dib0070_state *state = fe->tuner_priv;
|
2009-12-05 00:27:57 +08:00
|
|
|
|
[media] dib0070: Fix indenting
The indentation on this driver were deadly broken. On lots
of places, it was using 4 spaces instead of tab to indent.
On other parts, it were using tabs.
Also, on several places, it were not even being properly aligned,
as reported by smatch:
drivers/media/dvb-frontends/dib0070.c:179 dib0070_set_bandwidth() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:198 dib0070_captrim() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:246 dib0070_set_ctrl_lo5() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:260 dib0070_ctrl_agc_filter() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:494 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:498 dib0070_tune_digital() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:655 dib0070_reset() warn: inconsistent indenting
drivers/media/dvb-frontends/dib0070.c:711 dib0070_reset() warn: curly braces intended?
drivers/media/dvb-frontends/dib0070.c:713 dib0070_reset() warn: inconsistent indenting
My first idea were to leave it as-is or to just touch the above.
However, this won't be fixing anything. So, as painful as it
is, let's fix indentation globally on the driver, and then
address the inconsistencies.
Hopefully, this driver doesn't have much patches, so it likely
won't conflict to any other patch during this merge window.
Besides the big size of this patch, no functional changes
were done.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015-04-29 23:23:49 +08:00
|
|
|
*frequency = 1000 * state->current_rf;
|
|
|
|
return 0;
|
2007-07-30 23:49:04 +08:00
|
|
|
}
|
|
|
|
|
2016-11-19 06:30:51 +08:00
|
|
|
static void dib0070_release(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
kfree(fe->tuner_priv);
|
|
|
|
fe->tuner_priv = NULL;
|
|
|
|
}
|
|
|
|
|
2009-08-04 00:43:40 +08:00
|
|
|
static const struct dvb_tuner_ops dib0070_ops = {
|
2007-07-30 23:49:04 +08:00
|
|
|
.info = {
|
2009-12-05 00:27:57 +08:00
|
|
|
.name = "DiBcom DiB0070",
|
|
|
|
.frequency_min = 45000000,
|
|
|
|
.frequency_max = 860000000,
|
|
|
|
.frequency_step = 1000,
|
|
|
|
},
|
2016-11-19 06:30:51 +08:00
|
|
|
.release = dib0070_release,
|
2009-12-05 00:27:57 +08:00
|
|
|
|
|
|
|
.init = dib0070_wakeup,
|
|
|
|
.sleep = dib0070_sleep,
|
|
|
|
.set_params = dib0070_tune,
|
|
|
|
|
|
|
|
.get_frequency = dib0070_get_frequency,
|
2009-08-17 16:13:28 +08:00
|
|
|
// .get_bandwidth = dib0070_get_bandwidth
|
2007-07-30 23:49:04 +08:00
|
|
|
};
|
|
|
|
|
2009-12-07 18:49:40 +08:00
|
|
|
struct dvb_frontend *dib0070_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, struct dib0070_config *cfg)
|
2007-07-30 23:49:04 +08:00
|
|
|
{
|
|
|
|
struct dib0070_state *state = kzalloc(sizeof(struct dib0070_state), GFP_KERNEL);
|
|
|
|
if (state == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
state->cfg = cfg;
|
|
|
|
state->i2c = i2c;
|
2009-12-05 00:27:57 +08:00
|
|
|
state->fe = fe;
|
2011-08-03 23:08:21 +08:00
|
|
|
mutex_init(&state->i2c_buffer_lock);
|
2007-07-30 23:49:04 +08:00
|
|
|
fe->tuner_priv = state;
|
|
|
|
|
2009-08-04 00:43:40 +08:00
|
|
|
if (dib0070_reset(fe) != 0)
|
2007-07-30 23:49:04 +08:00
|
|
|
goto free_mem;
|
|
|
|
|
2016-10-14 19:10:15 +08:00
|
|
|
pr_info("DiB0070: successfully identified\n");
|
2007-07-30 23:49:04 +08:00
|
|
|
memcpy(&fe->ops.tuner_ops, &dib0070_ops, sizeof(struct dvb_tuner_ops));
|
|
|
|
|
|
|
|
fe->tuner_priv = state;
|
|
|
|
return fe;
|
|
|
|
|
2009-12-05 00:27:57 +08:00
|
|
|
free_mem:
|
2007-07-30 23:49:04 +08:00
|
|
|
kfree(state);
|
|
|
|
fe->tuner_priv = NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dib0070_attach);
|
|
|
|
|
2016-01-24 22:56:58 +08:00
|
|
|
MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@posteo.de>");
|
2007-07-30 23:49:04 +08:00
|
|
|
MODULE_DESCRIPTION("Driver for the DiBcom 0070 base-band RF Tuner");
|
|
|
|
MODULE_LICENSE("GPL");
|