2 * FCI FC2580 silicon tuner driver
4 * Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include <media/v4l2-ctrls.h>
26 #include <media/v4l2-subdev.h>
27 #include <linux/regmap.h>
28 #include <linux/math64.h>
30 struct fc2580_reg_val
{
35 static const struct fc2580_reg_val fc2580_init_reg_vals
[] = {
60 static const struct fc2580_pll fc2580_pll_lut
[] = {
62 { 400000000, 12, 0x80}, /* .......... 4800000000 */
63 {1000000000, 4, 0x00}, /* 1600000000 4000000000 */
64 {0xffffffff, 2, 0x40}, /* 2000000000 .......... */
67 struct fc2580_if_filter
{
73 static const struct fc2580_if_filter fc2580_if_filter_lut
[] = {
74 { 6000000, 0x18, 0x00},
75 { 7000000, 0x18, 0x80},
76 { 8000000, 0x18, 0x80},
77 {0xffffffff, 0x18, 0x80},
80 struct fc2580_freq_regs
{
108 /* XXX: 0xff is used for don't-care! */
109 static const struct fc2580_freq_regs fc2580_freq_regs_lut
[] = {
111 0xff, 0x77, 0x33, 0x40, 0xff, 0xff, 0xff, 0x09, 0xff, 0x8c,
112 0x50, 0x0f, 0x07, 0x00, 0x15, 0x03, 0x05, 0x10, 0x12, 0x08,
113 0x0a, 0x78, 0x32, 0x54},
115 0xf0, 0x77, 0x53, 0x60, 0xff, 0xff, 0x9f, 0x09, 0xff, 0x8c,
116 0x50, 0x13, 0x07, 0x06, 0x15, 0x06, 0x08, 0x10, 0x12, 0x0b,
117 0x0c, 0x78, 0x32, 0x14},
119 0xf0, 0x77, 0x53, 0x60, 0xff, 0xff, 0x9f, 0x09, 0xff, 0x8c,
120 0x50, 0x15, 0x03, 0x03, 0x15, 0x03, 0x05, 0x0c, 0x0e, 0x0b,
121 0x0c, 0x78, 0x32, 0x14},
123 0xf0, 0x77, 0x53, 0x60, 0xff, 0xff, 0x8f, 0x09, 0xff, 0x8c,
124 0x50, 0x15, 0x07, 0x06, 0x15, 0x07, 0x09, 0x10, 0x12, 0x0b,
125 0x0c, 0x78, 0x32, 0x14},
127 0xff, 0xff, 0xff, 0xff, 0x70, 0x37, 0xe7, 0x09, 0x20, 0x8c,
128 0x50, 0x0f, 0x0f, 0x00, 0x13, 0x00, 0x02, 0x0c, 0x0e, 0x08,
129 0x0a, 0xa0, 0x50, 0x14},
134 struct i2c_client
*client
;
135 struct regmap
*regmap
;
136 struct v4l2_subdev subdev
;
138 unsigned int f_frequency
;
139 unsigned int f_bandwidth
;
142 struct v4l2_ctrl_handler hdl
;
143 struct v4l2_ctrl
*bandwidth_auto
;
144 struct v4l2_ctrl
*bandwidth
;