]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/media/video/cx25840/cx25840-core.c
[media] cx25840: Added g_std support to the video decoder driver
[mirror_ubuntu-artful-kernel.git] / drivers / media / video / cx25840 / cx25840-core.c
CommitLineData
bd985160
HV
1/* cx25840 - Conexant CX25840 audio/video decoder driver
2 *
3 * Copyright (C) 2004 Ulf Eklund
4 *
25985edc 5 * Based on the saa7115 driver and on the first version of Chris Kennedy's
bd985160
HV
6 * cx25840 driver.
7 *
8 * Changes by Tyler Trafford <tatrafford@comcast.net>
9 * - cleanup/rewrite for V4L2 API (2005)
10 *
11 * VBI support by Hans Verkuil <hverkuil@xs4all.nl>.
12 *
3e3bf277
CN
13 * NTSC sliced VBI support by Christopher Neufeld <television@cneufeld.ca>
14 * with additional fixes by Hans Verkuil <hverkuil@xs4all.nl>.
15 *
6d897616 16 * CX23885 support by Steven Toth <stoth@linuxtv.org>.
f234081b 17 *
52fd3dda
AW
18 * CX2388[578] IRQ handling, IO Pin mux configuration and other small fixes are
19 * Copyright (C) 2010 Andy Walls <awalls@md.metrocast.net>
20 *
74900b47
ST
21 * CX23888 DIF support for the HVR1850
22 * Copyright (C) 2011 Steven Toth <stoth@kernellabs.com>
23 *
bd985160
HV
24 * This program is free software; you can redistribute it and/or
25 * modify it under the terms of the GNU General Public License
26 * as published by the Free Software Foundation; either version 2
27 * of the License, or (at your option) any later version.
28 *
29 * This program is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 * GNU General Public License for more details.
33 *
34 * You should have received a copy of the GNU General Public License
35 * along with this program; if not, write to the Free Software
36 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
37 */
38
39
40#include <linux/kernel.h>
41#include <linux/module.h>
42#include <linux/slab.h>
43#include <linux/videodev2.h>
44#include <linux/i2c.h>
f61b48f7 45#include <linux/delay.h>
bd985160 46#include <media/v4l2-common.h>
3434eb7e 47#include <media/v4l2-chip-ident.h>
31bc09b5 48#include <media/cx25840.h>
bd985160 49
31bc09b5 50#include "cx25840-core.h"
bd985160
HV
51
52MODULE_DESCRIPTION("Conexant CX25840 audio/video decoder driver");
1f4b3365 53MODULE_AUTHOR("Ulf Eklund, Chris Kennedy, Hans Verkuil, Tyler Trafford");
bd985160
HV
54MODULE_LICENSE("GPL");
55
52fd3dda
AW
56#define CX25840_VID_INT_STAT_REG 0x410
57#define CX25840_VID_INT_STAT_BITS 0x0000ffff
58#define CX25840_VID_INT_MASK_BITS 0xffff0000
59#define CX25840_VID_INT_MASK_SHFT 16
60#define CX25840_VID_INT_MASK_REG 0x412
61
62#define CX23885_AUD_MC_INT_MASK_REG 0x80c
63#define CX23885_AUD_MC_INT_STAT_BITS 0xffff0000
64#define CX23885_AUD_MC_INT_CTRL_BITS 0x0000ffff
65#define CX23885_AUD_MC_INT_STAT_SHFT 16
66
67#define CX25840_AUD_INT_CTRL_REG 0x812
68#define CX25840_AUD_INT_STAT_REG 0x813
69
70#define CX23885_PIN_CTRL_IRQ_REG 0x123
71#define CX23885_PIN_CTRL_IRQ_IR_STAT 0x40
72#define CX23885_PIN_CTRL_IRQ_AUD_STAT 0x20
73#define CX23885_PIN_CTRL_IRQ_VID_STAT 0x10
74
75#define CX25840_IR_STATS_REG 0x210
76#define CX25840_IR_IRQEN_REG 0x214
77
fe0d3dff 78static int cx25840_debug;
bd985160 79
b5fc7144 80module_param_named(debug,cx25840_debug, int, 0644);
bd985160 81
fac9e899 82MODULE_PARM_DESC(debug, "Debugging messages [0=Off (default) 1=On]");
bd985160 83
bd985160
HV
84
85/* ----------------------------------------------------------------------- */
74900b47 86static void cx23885_std_setup(struct i2c_client *client);
bd985160
HV
87
88int cx25840_write(struct i2c_client *client, u16 addr, u8 value)
89{
90 u8 buffer[3];
91 buffer[0] = addr >> 8;
92 buffer[1] = addr & 0xff;
93 buffer[2] = value;
94 return i2c_master_send(client, buffer, 3);
95}
96
97int cx25840_write4(struct i2c_client *client, u16 addr, u32 value)
98{
99 u8 buffer[6];
100 buffer[0] = addr >> 8;
101 buffer[1] = addr & 0xff;
4a56eb3f
HV
102 buffer[2] = value & 0xff;
103 buffer[3] = (value >> 8) & 0xff;
104 buffer[4] = (value >> 16) & 0xff;
105 buffer[5] = value >> 24;
bd985160
HV
106 return i2c_master_send(client, buffer, 6);
107}
108
109u8 cx25840_read(struct i2c_client * client, u16 addr)
110{
5f272644
AW
111 struct i2c_msg msgs[2];
112 u8 tx_buf[2], rx_buf[1];
113
114 /* Write register address */
115 tx_buf[0] = addr >> 8;
116 tx_buf[1] = addr & 0xff;
117 msgs[0].addr = client->addr;
118 msgs[0].flags = 0;
119 msgs[0].len = 2;
120 msgs[0].buf = (char *) tx_buf;
121
122 /* Read data from register */
123 msgs[1].addr = client->addr;
124 msgs[1].flags = I2C_M_RD;
125 msgs[1].len = 1;
126 msgs[1].buf = (char *) rx_buf;
127
128 if (i2c_transfer(client->adapter, msgs, 2) < 2)
bd985160
HV
129 return 0;
130
5f272644 131 return rx_buf[0];
bd985160
HV
132}
133
134u32 cx25840_read4(struct i2c_client * client, u16 addr)
135{
5f272644
AW
136 struct i2c_msg msgs[2];
137 u8 tx_buf[2], rx_buf[4];
138
139 /* Write register address */
140 tx_buf[0] = addr >> 8;
141 tx_buf[1] = addr & 0xff;
142 msgs[0].addr = client->addr;
143 msgs[0].flags = 0;
144 msgs[0].len = 2;
145 msgs[0].buf = (char *) tx_buf;
146
147 /* Read data from registers */
148 msgs[1].addr = client->addr;
149 msgs[1].flags = I2C_M_RD;
150 msgs[1].len = 4;
151 msgs[1].buf = (char *) rx_buf;
152
153 if (i2c_transfer(client->adapter, msgs, 2) < 2)
bd985160
HV
154 return 0;
155
5f272644
AW
156 return (rx_buf[3] << 24) | (rx_buf[2] << 16) | (rx_buf[1] << 8) |
157 rx_buf[0];
bd985160
HV
158}
159
e2b8cf4c 160int cx25840_and_or(struct i2c_client *client, u16 addr, unsigned and_mask,
bd985160
HV
161 u8 or_value)
162{
163 return cx25840_write(client, addr,
164 (cx25840_read(client, addr) & and_mask) |
165 or_value);
166}
167
52fd3dda
AW
168int cx25840_and_or4(struct i2c_client *client, u16 addr, u32 and_mask,
169 u32 or_value)
170{
171 return cx25840_write4(client, addr,
172 (cx25840_read4(client, addr) & and_mask) |
173 or_value);
174}
175
bd985160
HV
176/* ----------------------------------------------------------------------- */
177
a8bbf12a
HV
178static int set_input(struct i2c_client *client, enum cx25840_video_input vid_input,
179 enum cx25840_audio_input aud_input);
bd985160
HV
180
181/* ----------------------------------------------------------------------- */
182
d06d5777
AW
183static int cx23885_s_io_pin_config(struct v4l2_subdev *sd, size_t n,
184 struct v4l2_subdev_io_pin_config *p)
185{
186 struct i2c_client *client = v4l2_get_subdevdata(sd);
187 int i;
188 u32 pin_ctrl;
189 u8 gpio_oe, gpio_data, strength;
190
191 pin_ctrl = cx25840_read4(client, 0x120);
192 gpio_oe = cx25840_read(client, 0x160);
193 gpio_data = cx25840_read(client, 0x164);
194
195 for (i = 0; i < n; i++) {
196 strength = p[i].strength;
197 if (strength > CX25840_PIN_DRIVE_FAST)
198 strength = CX25840_PIN_DRIVE_FAST;
199
200 switch (p[i].pin) {
201 case CX23885_PIN_IRQ_N_GPIO16:
202 if (p[i].function != CX23885_PAD_IRQ_N) {
203 /* GPIO16 */
204 pin_ctrl &= ~(0x1 << 25);
205 } else {
206 /* IRQ_N */
207 if (p[i].flags &
208 (V4L2_SUBDEV_IO_PIN_DISABLE |
209 V4L2_SUBDEV_IO_PIN_INPUT)) {
210 pin_ctrl &= ~(0x1 << 25);
211 } else {
212 pin_ctrl |= (0x1 << 25);
213 }
214 if (p[i].flags &
215 V4L2_SUBDEV_IO_PIN_ACTIVE_LOW) {
216 pin_ctrl &= ~(0x1 << 24);
217 } else {
218 pin_ctrl |= (0x1 << 24);
219 }
220 }
221 break;
222 case CX23885_PIN_IR_RX_GPIO19:
223 if (p[i].function != CX23885_PAD_GPIO19) {
224 /* IR_RX */
225 gpio_oe |= (0x1 << 0);
226 pin_ctrl &= ~(0x3 << 18);
227 pin_ctrl |= (strength << 18);
228 } else {
229 /* GPIO19 */
230 gpio_oe &= ~(0x1 << 0);
231 if (p[i].flags & V4L2_SUBDEV_IO_PIN_SET_VALUE) {
232 gpio_data &= ~(0x1 << 0);
233 gpio_data |= ((p[i].value & 0x1) << 0);
234 }
235 pin_ctrl &= ~(0x3 << 12);
236 pin_ctrl |= (strength << 12);
237 }
238 break;
239 case CX23885_PIN_IR_TX_GPIO20:
240 if (p[i].function != CX23885_PAD_GPIO20) {
241 /* IR_TX */
242 gpio_oe |= (0x1 << 1);
243 if (p[i].flags & V4L2_SUBDEV_IO_PIN_DISABLE)
244 pin_ctrl &= ~(0x1 << 10);
245 else
246 pin_ctrl |= (0x1 << 10);
247 pin_ctrl &= ~(0x3 << 18);
248 pin_ctrl |= (strength << 18);
249 } else {
250 /* GPIO20 */
251 gpio_oe &= ~(0x1 << 1);
252 if (p[i].flags & V4L2_SUBDEV_IO_PIN_SET_VALUE) {
253 gpio_data &= ~(0x1 << 1);
254 gpio_data |= ((p[i].value & 0x1) << 1);
255 }
256 pin_ctrl &= ~(0x3 << 12);
257 pin_ctrl |= (strength << 12);
258 }
259 break;
260 case CX23885_PIN_I2S_SDAT_GPIO21:
261 if (p[i].function != CX23885_PAD_GPIO21) {
262 /* I2S_SDAT */
263 /* TODO: Input or Output config */
264 gpio_oe |= (0x1 << 2);
265 pin_ctrl &= ~(0x3 << 22);
266 pin_ctrl |= (strength << 22);
267 } else {
268 /* GPIO21 */
269 gpio_oe &= ~(0x1 << 2);
270 if (p[i].flags & V4L2_SUBDEV_IO_PIN_SET_VALUE) {
271 gpio_data &= ~(0x1 << 2);
272 gpio_data |= ((p[i].value & 0x1) << 2);
273 }
274 pin_ctrl &= ~(0x3 << 12);
275 pin_ctrl |= (strength << 12);
276 }
277 break;
278 case CX23885_PIN_I2S_WCLK_GPIO22:
279 if (p[i].function != CX23885_PAD_GPIO22) {
280 /* I2S_WCLK */
281 /* TODO: Input or Output config */
282 gpio_oe |= (0x1 << 3);
283 pin_ctrl &= ~(0x3 << 22);
284 pin_ctrl |= (strength << 22);
285 } else {
286 /* GPIO22 */
287 gpio_oe &= ~(0x1 << 3);
288 if (p[i].flags & V4L2_SUBDEV_IO_PIN_SET_VALUE) {
289 gpio_data &= ~(0x1 << 3);
290 gpio_data |= ((p[i].value & 0x1) << 3);
291 }
292 pin_ctrl &= ~(0x3 << 12);
293 pin_ctrl |= (strength << 12);
294 }
295 break;
296 case CX23885_PIN_I2S_BCLK_GPIO23:
297 if (p[i].function != CX23885_PAD_GPIO23) {
298 /* I2S_BCLK */
299 /* TODO: Input or Output config */
300 gpio_oe |= (0x1 << 4);
301 pin_ctrl &= ~(0x3 << 22);
302 pin_ctrl |= (strength << 22);
303 } else {
304 /* GPIO23 */
305 gpio_oe &= ~(0x1 << 4);
306 if (p[i].flags & V4L2_SUBDEV_IO_PIN_SET_VALUE) {
307 gpio_data &= ~(0x1 << 4);
308 gpio_data |= ((p[i].value & 0x1) << 4);
309 }
310 pin_ctrl &= ~(0x3 << 12);
311 pin_ctrl |= (strength << 12);
312 }
313 break;
314 }
315 }
316
317 cx25840_write(client, 0x164, gpio_data);
318 cx25840_write(client, 0x160, gpio_oe);
319 cx25840_write4(client, 0x120, pin_ctrl);
320 return 0;
321}
322
323static int common_s_io_pin_config(struct v4l2_subdev *sd, size_t n,
324 struct v4l2_subdev_io_pin_config *pincfg)
325{
326 struct cx25840_state *state = to_state(sd);
327
328 if (is_cx2388x(state))
329 return cx23885_s_io_pin_config(sd, n, pincfg);
330 return 0;
331}
332
333/* ----------------------------------------------------------------------- */
334
d92c20e0 335static void init_dll1(struct i2c_client *client)
bd985160
HV
336{
337 /* This is the Hauppauge sequence used to
338 * initialize the Delay Lock Loop 1 (ADC DLL). */
339 cx25840_write(client, 0x159, 0x23);
340 cx25840_write(client, 0x15a, 0x87);
341 cx25840_write(client, 0x15b, 0x06);
38051450 342 udelay(10);
bd985160 343 cx25840_write(client, 0x159, 0xe1);
38051450 344 udelay(10);
bd985160
HV
345 cx25840_write(client, 0x15a, 0x86);
346 cx25840_write(client, 0x159, 0xe0);
347 cx25840_write(client, 0x159, 0xe1);
348 cx25840_write(client, 0x15b, 0x10);
349}
350
d92c20e0 351static void init_dll2(struct i2c_client *client)
bd985160
HV
352{
353 /* This is the Hauppauge sequence used to
354 * initialize the Delay Lock Loop 2 (ADC DLL). */
355 cx25840_write(client, 0x15d, 0xe3);
356 cx25840_write(client, 0x15e, 0x86);
357 cx25840_write(client, 0x15f, 0x06);
38051450 358 udelay(10);
bd985160
HV
359 cx25840_write(client, 0x15d, 0xe1);
360 cx25840_write(client, 0x15d, 0xe0);
361 cx25840_write(client, 0x15d, 0xe1);
362}
363
e2b8cf4c
HV
364static void cx25836_initialize(struct i2c_client *client)
365{
366 /* reset configuration is described on page 3-77 of the CX25836 datasheet */
367 /* 2. */
368 cx25840_and_or(client, 0x000, ~0x01, 0x01);
369 cx25840_and_or(client, 0x000, ~0x01, 0x00);
370 /* 3a. */
371 cx25840_and_or(client, 0x15a, ~0x70, 0x00);
372 /* 3b. */
373 cx25840_and_or(client, 0x15b, ~0x1e, 0x06);
374 /* 3c. */
375 cx25840_and_or(client, 0x159, ~0x02, 0x02);
376 /* 3d. */
38051450 377 udelay(10);
e2b8cf4c
HV
378 /* 3e. */
379 cx25840_and_or(client, 0x159, ~0x02, 0x00);
380 /* 3f. */
381 cx25840_and_or(client, 0x159, ~0xc0, 0xc0);
382 /* 3g. */
383 cx25840_and_or(client, 0x159, ~0x01, 0x00);
384 cx25840_and_or(client, 0x159, ~0x01, 0x01);
385 /* 3h. */
386 cx25840_and_or(client, 0x15b, ~0x1e, 0x10);
387}
388
21340ae0
HV
389static void cx25840_work_handler(struct work_struct *work)
390{
391 struct cx25840_state *state = container_of(work, struct cx25840_state, fw_work);
392 cx25840_loadfw(state->c);
393 wake_up(&state->fw_wait);
394}
395
89fc4eb9 396static void cx25840_initialize(struct i2c_client *client)
bd985160 397{
21340ae0 398 DEFINE_WAIT(wait);
9357b31c 399 struct cx25840_state *state = to_state(i2c_get_clientdata(client));
21340ae0 400 struct workqueue_struct *q;
bd985160
HV
401
402 /* datasheet startup in numbered steps, refer to page 3-77 */
403 /* 2. */
404 cx25840_and_or(client, 0x803, ~0x10, 0x00);
405 /* The default of this register should be 4, but I get 0 instead.
406 * Set this register to 4 manually. */
407 cx25840_write(client, 0x000, 0x04);
408 /* 3. */
409 init_dll1(client);
410 init_dll2(client);
411 cx25840_write(client, 0x136, 0x0a);
412 /* 4. */
413 cx25840_write(client, 0x13c, 0x01);
414 cx25840_write(client, 0x13c, 0x00);
415 /* 5. */
21340ae0
HV
416 /* Do the firmware load in a work handler to prevent.
417 Otherwise the kernel is blocked waiting for the
418 bit-banging i2c interface to finish uploading the
419 firmware. */
420 INIT_WORK(&state->fw_work, cx25840_work_handler);
421 init_waitqueue_head(&state->fw_wait);
422 q = create_singlethread_workqueue("cx25840_fw");
423 prepare_to_wait(&state->fw_wait, &wait, TASK_UNINTERRUPTIBLE);
424 queue_work(q, &state->fw_work);
425 schedule();
426 finish_wait(&state->fw_wait, &wait);
427 destroy_workqueue(q);
428
bd985160
HV
429 /* 6. */
430 cx25840_write(client, 0x115, 0x8c);
431 cx25840_write(client, 0x116, 0x07);
432 cx25840_write(client, 0x118, 0x02);
433 /* 7. */
434 cx25840_write(client, 0x4a5, 0x80);
435 cx25840_write(client, 0x4a5, 0x00);
436 cx25840_write(client, 0x402, 0x00);
437 /* 8. */
73dcddc5
HV
438 cx25840_and_or(client, 0x401, ~0x18, 0);
439 cx25840_and_or(client, 0x4a2, ~0x10, 0x10);
440 /* steps 8c and 8d are done in change_input() */
bd985160
HV
441 /* 10. */
442 cx25840_write(client, 0x8d3, 0x1f);
443 cx25840_write(client, 0x8e3, 0x03);
444
cb5aa1c6 445 cx25840_std_setup(client);
bd985160
HV
446
447 /* trial and error says these are needed to get audio */
448 cx25840_write(client, 0x914, 0xa0);
449 cx25840_write(client, 0x918, 0xa0);
450 cx25840_write(client, 0x919, 0x01);
451
25985edc 452 /* stereo preferred */
bd985160
HV
453 cx25840_write(client, 0x809, 0x04);
454 /* AC97 shift */
455 cx25840_write(client, 0x8cf, 0x0f);
456
a8bbf12a
HV
457 /* (re)set input */
458 set_input(client, state->vid_input, state->aud_input);
bd985160
HV
459
460 /* start microcontroller */
461 cx25840_and_or(client, 0x803, ~0x10, 0x10);
462}
463
f234081b
ST
464static void cx23885_initialize(struct i2c_client *client)
465{
466 DEFINE_WAIT(wait);
9357b31c 467 struct cx25840_state *state = to_state(i2c_get_clientdata(client));
f234081b
ST
468 struct workqueue_struct *q;
469
e283d780
AW
470 /*
471 * Come out of digital power down
472 * The CX23888, at least, needs this, otherwise registers aside from
473 * 0x0-0x2 can't be read or written.
474 */
475 cx25840_write(client, 0x000, 0);
476
f234081b
ST
477 /* Internal Reset */
478 cx25840_and_or(client, 0x102, ~0x01, 0x01);
479 cx25840_and_or(client, 0x102, ~0x01, 0x00);
480
481 /* Stop microcontroller */
482 cx25840_and_or(client, 0x803, ~0x10, 0x00);
483
484 /* DIF in reset? */
485 cx25840_write(client, 0x398, 0);
486
e283d780
AW
487 /*
488 * Trust the default xtal, no division
489 * '885: 28.636363... MHz
490 * '887: 25.000000 MHz
491 * '888: 50.000000 MHz
492 */
f234081b
ST
493 cx25840_write(client, 0x2, 0x76);
494
e283d780 495 /* Power up all the PLL's and DLL */
f234081b
ST
496 cx25840_write(client, 0x1, 0x40);
497
e283d780
AW
498 /* Sys PLL */
499 switch (state->id) {
500 case V4L2_IDENT_CX23888_AV:
501 /*
502 * 50.0 MHz * (0xb + 0xe8ba26/0x2000000)/4 = 5 * 28.636363 MHz
503 * 572.73 MHz before post divide
504 */
74900b47
ST
505 /* HVR1850 or 50MHz xtal */
506 cx25840_write(client, 0x2, 0x71);
507 cx25840_write4(client, 0x11c, 0x01d1744c);
508 cx25840_write4(client, 0x118, 0x00000416);
509 cx25840_write4(client, 0x404, 0x0010253e);
510 cx25840_write4(client, 0x42c, 0x42600000);
511 cx25840_write4(client, 0x44c, 0x161f1000);
e283d780
AW
512 break;
513 case V4L2_IDENT_CX23887_AV:
514 /*
515 * 25.0 MHz * (0x16 + 0x1d1744c/0x2000000)/4 = 5 * 28.636363 MHz
516 * 572.73 MHz before post divide
517 */
518 cx25840_write4(client, 0x11c, 0x01d1744c);
519 cx25840_write4(client, 0x118, 0x00000416);
520 break;
521 case V4L2_IDENT_CX23885_AV:
522 default:
523 /*
524 * 28.636363 MHz * (0x14 + 0x0/0x2000000)/4 = 5 * 28.636363 MHz
525 * 572.73 MHz before post divide
526 */
527 cx25840_write4(client, 0x11c, 0x00000000);
528 cx25840_write4(client, 0x118, 0x00000414);
529 break;
530 }
f234081b
ST
531
532 /* Disable DIF bypass */
533 cx25840_write4(client, 0x33c, 0x00000001);
534
535 /* DIF Src phase inc */
536 cx25840_write4(client, 0x340, 0x0df7df83);
537
e283d780
AW
538 /*
539 * Vid PLL
540 * Setup for a BT.656 pixel clock of 13.5 Mpixels/second
541 *
542 * 28.636363 MHz * (0xf + 0x02be2c9/0x2000000)/4 = 8 * 13.5 MHz
543 * 432.0 MHz before post divide
544 */
74900b47
ST
545
546 /* HVR1850 */
547 switch (state->id) {
548 case V4L2_IDENT_CX23888_AV:
549 /* 888/HVR1250 specific */
550 cx25840_write4(client, 0x10c, 0x13333333);
551 cx25840_write4(client, 0x108, 0x00000515);
552 break;
553 default:
554 cx25840_write4(client, 0x10c, 0x002be2c9);
555 cx25840_write4(client, 0x108, 0x0000040f);
556 }
f234081b
ST
557
558 /* Luma */
559 cx25840_write4(client, 0x414, 0x00107d12);
560
561 /* Chroma */
562 cx25840_write4(client, 0x420, 0x3d008282);
563
e283d780
AW
564 /*
565 * Aux PLL
566 * Initial setup for audio sample clock:
567 * 48 ksps, 16 bits/sample, x160 multiplier = 122.88 MHz
25985edc 568 * Initial I2S output/master clock(?):
e283d780
AW
569 * 48 ksps, 16 bits/sample, x16 multiplier = 12.288 MHz
570 */
571 switch (state->id) {
572 case V4L2_IDENT_CX23888_AV:
573 /*
574 * 50.0 MHz * (0x7 + 0x0bedfa4/0x2000000)/3 = 122.88 MHz
575 * 368.64 MHz before post divide
576 * 122.88 MHz / 0xa = 12.288 MHz
577 */
74900b47
ST
578 /* HVR1850 or 50MHz xtal */
579 cx25840_write4(client, 0x114, 0x017dbf48);
580 cx25840_write4(client, 0x110, 0x000a030e);
e283d780
AW
581 break;
582 case V4L2_IDENT_CX23887_AV:
583 /*
584 * 25.0 MHz * (0xe + 0x17dbf48/0x2000000)/3 = 122.88 MHz
585 * 368.64 MHz before post divide
586 * 122.88 MHz / 0xa = 12.288 MHz
587 */
588 cx25840_write4(client, 0x114, 0x017dbf48);
589 cx25840_write4(client, 0x110, 0x000a030e);
590 break;
591 case V4L2_IDENT_CX23885_AV:
592 default:
593 /*
594 * 28.636363 MHz * (0xc + 0x1bf0c9e/0x2000000)/3 = 122.88 MHz
595 * 368.64 MHz before post divide
596 * 122.88 MHz / 0xa = 12.288 MHz
597 */
598 cx25840_write4(client, 0x114, 0x01bf0c9e);
599 cx25840_write4(client, 0x110, 0x000a030c);
600 break;
601 };
f234081b
ST
602
603 /* ADC2 input select */
604 cx25840_write(client, 0x102, 0x10);
605
606 /* VIN1 & VIN5 */
607 cx25840_write(client, 0x103, 0x11);
608
609 /* Enable format auto detect */
610 cx25840_write(client, 0x400, 0);
611 /* Fast subchroma lock */
612 /* White crush, Chroma AGC & Chroma Killer enabled */
613 cx25840_write(client, 0x401, 0xe8);
614
615 /* Select AFE clock pad output source */
616 cx25840_write(client, 0x144, 0x05);
617
f3d6f633
ST
618 /* Drive GPIO2 direction and values for HVR1700
619 * where an onboard mux selects the output of demodulator
620 * vs the 417. Failure to set this results in no DTV.
621 * It's safe to set this across all Hauppauge boards
622 * currently, regardless of the board type.
623 */
624 cx25840_write(client, 0x160, 0x1d);
625 cx25840_write(client, 0x164, 0x00);
626
f234081b
ST
627 /* Do the firmware load in a work handler to prevent.
628 Otherwise the kernel is blocked waiting for the
629 bit-banging i2c interface to finish uploading the
630 firmware. */
631 INIT_WORK(&state->fw_work, cx25840_work_handler);
632 init_waitqueue_head(&state->fw_wait);
633 q = create_singlethread_workqueue("cx25840_fw");
634 prepare_to_wait(&state->fw_wait, &wait, TASK_UNINTERRUPTIBLE);
635 queue_work(q, &state->fw_work);
636 schedule();
637 finish_wait(&state->fw_wait, &wait);
638 destroy_workqueue(q);
639
74900b47
ST
640 /* Call the cx23885 specific std setup func, we no longer rely on
641 * the generic cx24840 func.
642 */
643 cx23885_std_setup(client);
f234081b
ST
644
645 /* (re)set input */
646 set_input(client, state->vid_input, state->aud_input);
647
648 /* start microcontroller */
649 cx25840_and_or(client, 0x803, ~0x10, 0x10);
52fd3dda
AW
650
651 /* Disable and clear video interrupts - we don't use them */
652 cx25840_write4(client, CX25840_VID_INT_STAT_REG, 0xffffffff);
653
654 /* Disable and clear audio interrupts - we don't use them */
655 cx25840_write(client, CX25840_AUD_INT_CTRL_REG, 0xff);
656 cx25840_write(client, CX25840_AUD_INT_STAT_REG, 0xff);
74900b47
ST
657
658 /* CC raw enable */
659 /* - VIP 1.1 control codes - 10bit, blue field enable.
660 * - enable raw data during vertical blanking.
661 * - enable ancillary Data insertion for 656 or VIP.
662 */
663 cx25840_write4(client, 0x404, 0x0010253e);
664
665 /* CC on - Undocumented Register */
666 cx25840_write(client, 0x42f, 0x66);
667
668 /* HVR-1250 / HVR1850 DIF related */
669 /* Power everything up */
670 cx25840_write4(client, 0x130, 0x0);
671
672 /* Undocumented */
673 cx25840_write4(client, 0x478, 0x6628021F);
674
675 /* AFE_CLK_OUT_CTRL - Select the clock output source as output */
676 cx25840_write4(client, 0x144, 0x5);
677
678 /* I2C_OUT_CTL - I2S output configuration as
679 * Master, Sony, Left justified, left sample on WS=1
680 */
681 cx25840_write4(client, 0x918, 0x1a0);
682
683 /* AFE_DIAG_CTRL1 */
684 cx25840_write4(client, 0x134, 0x000a1800);
685
686 /* AFE_DIAG_CTRL3 - Inverted Polarity for Audio and Video */
687 cx25840_write4(client, 0x13c, 0x00310000);
f234081b
ST
688}
689
bd985160
HV
690/* ----------------------------------------------------------------------- */
691
149783b5
SD
692static void cx231xx_initialize(struct i2c_client *client)
693{
694 DEFINE_WAIT(wait);
695 struct cx25840_state *state = to_state(i2c_get_clientdata(client));
696 struct workqueue_struct *q;
697
698 /* Internal Reset */
699 cx25840_and_or(client, 0x102, ~0x01, 0x01);
700 cx25840_and_or(client, 0x102, ~0x01, 0x00);
701
702 /* Stop microcontroller */
703 cx25840_and_or(client, 0x803, ~0x10, 0x00);
704
705 /* DIF in reset? */
706 cx25840_write(client, 0x398, 0);
707
708 /* Trust the default xtal, no division */
709 /* This changes for the cx23888 products */
710 cx25840_write(client, 0x2, 0x76);
711
712 /* Bring down the regulator for AUX clk */
713 cx25840_write(client, 0x1, 0x40);
714
715 /* Disable DIF bypass */
716 cx25840_write4(client, 0x33c, 0x00000001);
717
718 /* DIF Src phase inc */
719 cx25840_write4(client, 0x340, 0x0df7df83);
720
149783b5
SD
721 /* Luma */
722 cx25840_write4(client, 0x414, 0x00107d12);
723
724 /* Chroma */
725 cx25840_write4(client, 0x420, 0x3d008282);
726
149783b5
SD
727 /* ADC2 input select */
728 cx25840_write(client, 0x102, 0x10);
729
730 /* VIN1 & VIN5 */
731 cx25840_write(client, 0x103, 0x11);
732
733 /* Enable format auto detect */
734 cx25840_write(client, 0x400, 0);
735 /* Fast subchroma lock */
736 /* White crush, Chroma AGC & Chroma Killer enabled */
737 cx25840_write(client, 0x401, 0xe8);
738
149783b5
SD
739 /* Do the firmware load in a work handler to prevent.
740 Otherwise the kernel is blocked waiting for the
741 bit-banging i2c interface to finish uploading the
742 firmware. */
743 INIT_WORK(&state->fw_work, cx25840_work_handler);
744 init_waitqueue_head(&state->fw_wait);
745 q = create_singlethread_workqueue("cx25840_fw");
746 prepare_to_wait(&state->fw_wait, &wait, TASK_UNINTERRUPTIBLE);
747 queue_work(q, &state->fw_work);
748 schedule();
749 finish_wait(&state->fw_wait, &wait);
750 destroy_workqueue(q);
751
752 cx25840_std_setup(client);
753
754 /* (re)set input */
755 set_input(client, state->vid_input, state->aud_input);
756
757 /* start microcontroller */
758 cx25840_and_or(client, 0x803, ~0x10, 0x10);
99d38909
ST
759
760 /* CC raw enable */
761 cx25840_write(client, 0x404, 0x0b);
762
763 /* CC on */
764 cx25840_write(client, 0x42f, 0x66);
765 cx25840_write4(client, 0x474, 0x1e1e601a);
149783b5
SD
766}
767
768/* ----------------------------------------------------------------------- */
769
cb5aa1c6
HV
770void cx25840_std_setup(struct i2c_client *client)
771{
9357b31c 772 struct cx25840_state *state = to_state(i2c_get_clientdata(client));
cb5aa1c6
HV
773 v4l2_std_id std = state->std;
774 int hblank, hactive, burst, vblank, vactive, sc;
775 int vblank656, src_decimation;
776 int luma_lpf, uv_lpf, comb;
777 u32 pll_int, pll_frac, pll_post;
778
779 /* datasheet startup, step 8d */
780 if (std & ~V4L2_STD_NTSC)
781 cx25840_write(client, 0x49f, 0x11);
782 else
783 cx25840_write(client, 0x49f, 0x14);
784
785 if (std & V4L2_STD_625_50) {
786 hblank = 132;
787 hactive = 720;
788 burst = 93;
789 vblank = 36;
790 vactive = 580;
791 vblank656 = 40;
792 src_decimation = 0x21f;
793 luma_lpf = 2;
794
795 if (std & V4L2_STD_SECAM) {
796 uv_lpf = 0;
797 comb = 0;
798 sc = 0x0a425f;
799 } else if (std == V4L2_STD_PAL_Nc) {
800 uv_lpf = 1;
801 comb = 0x20;
802 sc = 556453;
803 } else {
804 uv_lpf = 1;
805 comb = 0x20;
806 sc = 688739;
807 }
808 } else {
809 hactive = 720;
810 hblank = 122;
811 vactive = 487;
812 luma_lpf = 1;
813 uv_lpf = 1;
814
815 src_decimation = 0x21f;
816 if (std == V4L2_STD_PAL_60) {
817 vblank = 26;
818 vblank656 = 26;
819 burst = 0x5b;
820 luma_lpf = 2;
821 comb = 0x20;
822 sc = 688739;
823 } else if (std == V4L2_STD_PAL_M) {
824 vblank = 20;
825 vblank656 = 24;
826 burst = 0x61;
827 comb = 0x20;
828 sc = 555452;
829 } else {
830 vblank = 26;
831 vblank656 = 26;
832 burst = 0x5b;
833 comb = 0x66;
834 sc = 556063;
835 }
836 }
837
838 /* DEBUG: Displays configured PLL frequency */
2a03f034 839 if (!is_cx231xx(state)) {
95b14fb2
MCC
840 pll_int = cx25840_read(client, 0x108);
841 pll_frac = cx25840_read4(client, 0x10c) & 0x1ffffff;
842 pll_post = cx25840_read(client, 0x109);
cb5aa1c6 843 v4l_dbg(1, cx25840_debug, client,
95b14fb2
MCC
844 "PLL regs = int: %u, frac: %u, post: %u\n",
845 pll_int, pll_frac, pll_post);
846
847 if (pll_post) {
848 int fin, fsc;
849 int pll = (28636363L * ((((u64)pll_int) << 25L) + pll_frac)) >> 25L;
850
851 pll /= pll_post;
852 v4l_dbg(1, cx25840_debug, client, "PLL = %d.%06d MHz\n",
853 pll / 1000000, pll % 1000000);
854 v4l_dbg(1, cx25840_debug, client, "PLL/8 = %d.%06d MHz\n",
855 pll / 8000000, (pll / 8) % 1000000);
856
857 fin = ((u64)src_decimation * pll) >> 12;
858 v4l_dbg(1, cx25840_debug, client,
859 "ADC Sampling freq = %d.%06d MHz\n",
860 fin / 1000000, fin % 1000000);
861
862 fsc = (((u64)sc) * pll) >> 24L;
863 v4l_dbg(1, cx25840_debug, client,
864 "Chroma sub-carrier freq = %d.%06d MHz\n",
865 fsc / 1000000, fsc % 1000000);
866
867 v4l_dbg(1, cx25840_debug, client, "hblank %i, hactive %i, "
868 "vblank %i, vactive %i, vblank656 %i, src_dec %i, "
869 "burst 0x%02x, luma_lpf %i, uv_lpf %i, comb 0x%02x, "
870 "sc 0x%06x\n",
871 hblank, hactive, vblank, vactive, vblank656,
872 src_decimation, burst, luma_lpf, uv_lpf, comb, sc);
873 }
cb5aa1c6
HV
874 }
875
876 /* Sets horizontal blanking delay and active lines */
877 cx25840_write(client, 0x470, hblank);
878 cx25840_write(client, 0x471,
879 0xff & (((hblank >> 8) & 0x3) | (hactive << 4)));
880 cx25840_write(client, 0x472, hactive >> 4);
881
882 /* Sets burst gate delay */
883 cx25840_write(client, 0x473, burst);
884
885 /* Sets vertical blanking delay and active duration */
886 cx25840_write(client, 0x474, vblank);
887 cx25840_write(client, 0x475,
888 0xff & (((vblank >> 8) & 0x3) | (vactive << 4)));
889 cx25840_write(client, 0x476, vactive >> 4);
890 cx25840_write(client, 0x477, vblank656);
891
892 /* Sets src decimation rate */
893 cx25840_write(client, 0x478, 0xff & src_decimation);
894 cx25840_write(client, 0x479, 0xff & (src_decimation >> 8));
895
896 /* Sets Luma and UV Low pass filters */
897 cx25840_write(client, 0x47a, luma_lpf << 6 | ((uv_lpf << 4) & 0x30));
898
899 /* Enables comb filters */
900 cx25840_write(client, 0x47b, comb);
901
902 /* Sets SC Step*/
903 cx25840_write(client, 0x47c, sc);
904 cx25840_write(client, 0x47d, 0xff & sc >> 8);
905 cx25840_write(client, 0x47e, 0xff & sc >> 16);
906
907 /* Sets VBI parameters */
908 if (std & V4L2_STD_625_50) {
909 cx25840_write(client, 0x47f, 0x01);
910 state->vbi_line_offset = 5;
911 } else {
912 cx25840_write(client, 0x47f, 0x00);
913 state->vbi_line_offset = 8;
914 }
915}
916
917/* ----------------------------------------------------------------------- */
918
bd985160
HV
919static void input_change(struct i2c_client *client)
920{
9357b31c 921 struct cx25840_state *state = to_state(i2c_get_clientdata(client));
081b496a 922 v4l2_std_id std = state->std;
bd985160 923
73dcddc5
HV
924 /* Follow step 8c and 8d of section 3.16 in the cx25840 datasheet */
925 if (std & V4L2_STD_SECAM) {
926 cx25840_write(client, 0x402, 0);
927 }
928 else {
929 cx25840_write(client, 0x402, 0x04);
930 cx25840_write(client, 0x49f, (std & V4L2_STD_NTSC) ? 0x14 : 0x11);
931 }
932 cx25840_and_or(client, 0x401, ~0x60, 0);
933 cx25840_and_or(client, 0x401, ~0x60, 0x60);
5af79f86
SB
934
935 /* Don't write into audio registers on cx2583x chips */
936 if (is_cx2583x(state))
937 return;
938
82677618 939 cx25840_and_or(client, 0x810, ~0x01, 1);
73dcddc5 940
39c4ad6a
HV
941 if (state->radio) {
942 cx25840_write(client, 0x808, 0xf9);
943 cx25840_write(client, 0x80b, 0x00);
944 }
945 else if (std & V4L2_STD_525_60) {
d97a11e0
HV
946 /* Certain Hauppauge PVR150 models have a hardware bug
947 that causes audio to drop out. For these models the
948 audio standard must be set explicitly.
949 To be precise: it affects cards with tuner models
950 85, 99 and 112 (model numbers from tveeprom). */
951 int hw_fix = state->pvr150_workaround;
952
953 if (std == V4L2_STD_NTSC_M_JP) {
f95006f8 954 /* Japan uses EIAJ audio standard */
d97a11e0
HV
955 cx25840_write(client, 0x808, hw_fix ? 0x2f : 0xf7);
956 } else if (std == V4L2_STD_NTSC_M_KR) {
957 /* South Korea uses A2 audio standard */
958 cx25840_write(client, 0x808, hw_fix ? 0x3f : 0xf8);
f95006f8
HV
959 } else {
960 /* Others use the BTSC audio standard */
d97a11e0 961 cx25840_write(client, 0x808, hw_fix ? 0x1f : 0xf6);
f95006f8 962 }
bd985160 963 cx25840_write(client, 0x80b, 0x00);
839e4a4a 964 } else if (std & V4L2_STD_PAL) {
3c3099d5 965 /* Autodetect audio standard and audio system */
839e4a4a 966 cx25840_write(client, 0x808, 0xff);
25985edc 967 /* Since system PAL-L is pretty much non-existent and
3c3099d5
AP
968 not used by any public broadcast network, force
969 6.5 MHz carrier to be interpreted as System DK,
970 this avoids DK audio detection instability */
971 cx25840_write(client, 0x80b, 0x00);
839e4a4a 972 } else if (std & V4L2_STD_SECAM) {
3c3099d5 973 /* Autodetect audio standard and audio system */
839e4a4a 974 cx25840_write(client, 0x808, 0xff);
3c3099d5
AP
975 /* If only one of SECAM-DK / SECAM-L is required, then force
976 6.5MHz carrier, else autodetect it */
977 if ((std & V4L2_STD_SECAM_DK) &&
978 !(std & (V4L2_STD_SECAM_L | V4L2_STD_SECAM_LC))) {
979 /* 6.5 MHz carrier to be interpreted as System DK */
980 cx25840_write(client, 0x80b, 0x00);
981 } else if (!(std & V4L2_STD_SECAM_DK) &&
982 (std & (V4L2_STD_SECAM_L | V4L2_STD_SECAM_LC))) {
983 /* 6.5 MHz carrier to be interpreted as System L */
984 cx25840_write(client, 0x80b, 0x08);
985 } else {
986 /* 6.5 MHz carrier to be autodetected */
987 cx25840_write(client, 0x80b, 0x10);
988 }
bd985160
HV
989 }
990
82677618 991 cx25840_and_or(client, 0x810, ~0x01, 0);
bd985160
HV
992}
993
a8bbf12a
HV
994static int set_input(struct i2c_client *client, enum cx25840_video_input vid_input,
995 enum cx25840_audio_input aud_input)
bd985160 996{
9357b31c 997 struct cx25840_state *state = to_state(i2c_get_clientdata(client));
a8bbf12a
HV
998 u8 is_composite = (vid_input >= CX25840_COMPOSITE1 &&
999 vid_input <= CX25840_COMPOSITE8);
fb29ab96
DW
1000 u8 is_component = (vid_input & CX25840_COMPONENT_ON) ==
1001 CX25840_COMPONENT_ON;
74900b47
ST
1002 u8 is_dif = (vid_input & CX25840_DIF_ON) ==
1003 CX25840_DIF_ON;
1004 u8 is_svideo = (vid_input & CX25840_SVIDEO_ON) ==
1005 CX25840_SVIDEO_ON;
fb29ab96
DW
1006 int luma = vid_input & 0xf0;
1007 int chroma = vid_input & 0xf00;
a8bbf12a 1008 u8 reg;
74900b47 1009 u32 val;
bd985160 1010
f234081b
ST
1011 v4l_dbg(1, cx25840_debug, client,
1012 "decoder set video input %d, audio input %d\n",
1013 vid_input, aud_input);
bd985160 1014
f234081b
ST
1015 if (vid_input >= CX25840_VIN1_CH1) {
1016 v4l_dbg(1, cx25840_debug, client, "vid_input 0x%x\n",
1017 vid_input);
1018 reg = vid_input & 0xff;
10e43d90
KK
1019 is_composite = !is_component &&
1020 ((vid_input & CX25840_SVIDEO_ON) != CX25840_SVIDEO_ON);
f234081b
ST
1021
1022 v4l_dbg(1, cx25840_debug, client, "mux cfg 0x%x comp=%d\n",
1023 reg, is_composite);
fb29ab96 1024 } else if (is_composite) {
a8bbf12a
HV
1025 reg = 0xf0 + (vid_input - CX25840_COMPOSITE1);
1026 } else {
a8bbf12a 1027 if ((vid_input & ~0xff0) ||
45270a15 1028 luma < CX25840_SVIDEO_LUMA1 || luma > CX25840_SVIDEO_LUMA8 ||
a8bbf12a 1029 chroma < CX25840_SVIDEO_CHROMA4 || chroma > CX25840_SVIDEO_CHROMA8) {
f234081b
ST
1030 v4l_err(client, "0x%04x is not a valid video input!\n",
1031 vid_input);
a8bbf12a 1032 return -EINVAL;
bd985160 1033 }
a8bbf12a
HV
1034 reg = 0xf0 + ((luma - CX25840_SVIDEO_LUMA1) >> 4);
1035 if (chroma >= CX25840_SVIDEO_CHROMA7) {
1036 reg &= 0x3f;
1037 reg |= (chroma - CX25840_SVIDEO_CHROMA7) >> 2;
bd985160 1038 } else {
a8bbf12a
HV
1039 reg &= 0xcf;
1040 reg |= (chroma - CX25840_SVIDEO_CHROMA4) >> 4;
bd985160 1041 }
a8bbf12a 1042 }
bd985160 1043
f234081b
ST
1044 /* The caller has previously prepared the correct routing
1045 * configuration in reg (for the cx23885) so we have no
1046 * need to attempt to flip bits for earlier av decoders.
1047 */
2a03f034 1048 if (!is_cx2388x(state) && !is_cx231xx(state)) {
f234081b
ST
1049 switch (aud_input) {
1050 case CX25840_AUDIO_SERIAL:
1051 /* do nothing, use serial audio input */
1052 break;
1053 case CX25840_AUDIO4: reg &= ~0x30; break;
1054 case CX25840_AUDIO5: reg &= ~0x30; reg |= 0x10; break;
1055 case CX25840_AUDIO6: reg &= ~0x30; reg |= 0x20; break;
1056 case CX25840_AUDIO7: reg &= ~0xc0; break;
1057 case CX25840_AUDIO8: reg &= ~0xc0; reg |= 0x40; break;
bd985160 1058
f234081b
ST
1059 default:
1060 v4l_err(client, "0x%04x is not a valid audio input!\n",
1061 aud_input);
1062 return -EINVAL;
1063 }
bd985160
HV
1064 }
1065
a8bbf12a 1066 cx25840_write(client, 0x103, reg);
f234081b 1067
fb29ab96
DW
1068 /* Set INPUT_MODE to Composite, S-Video or Component */
1069 if (is_component)
1070 cx25840_and_or(client, 0x401, ~0x6, 0x6);
1071 else
1072 cx25840_and_or(client, 0x401, ~0x6, is_composite ? 0 : 0x02);
f234081b 1073
74900b47
ST
1074 if (is_cx2388x(state)) {
1075
1076 /* Enable or disable the DIF for tuner use */
1077 if (is_dif) {
1078 cx25840_and_or(client, 0x102, ~0x80, 0x80);
1079
1080 /* Set of defaults for NTSC and PAL */
1081 cx25840_write4(client, 0x31c, 0xc2262600);
1082 cx25840_write4(client, 0x320, 0xc2262600);
1083
1084 /* 18271 IF - Nobody else yet uses a different
1085 * tuner with the DIF, so these are reasonable
1086 * assumptions (HVR1250 and HVR1850 specific).
1087 */
1088 cx25840_write4(client, 0x318, 0xda262600);
1089 cx25840_write4(client, 0x33c, 0x2a24c800);
1090 cx25840_write4(client, 0x104, 0x0704dd00);
1091 } else {
1092 cx25840_write4(client, 0x300, 0x015c28f5);
1093
1094 cx25840_and_or(client, 0x102, ~0x80, 0);
1095 cx25840_write4(client, 0x340, 0xdf7df83);
1096 cx25840_write4(client, 0x104, 0x0704dd80);
1097 cx25840_write4(client, 0x314, 0x22400600);
1098 cx25840_write4(client, 0x318, 0x40002600);
1099 cx25840_write4(client, 0x324, 0x40002600);
1100 cx25840_write4(client, 0x32c, 0x0250e620);
1101 cx25840_write4(client, 0x39c, 0x01FF0B00);
1102
1103 cx25840_write4(client, 0x410, 0xffff0dbf);
1104 cx25840_write4(client, 0x414, 0x00137d03);
1105 cx25840_write4(client, 0x418, 0x01008080);
1106 cx25840_write4(client, 0x41c, 0x00000000);
1107 cx25840_write4(client, 0x420, 0x001c3e0f);
1108 cx25840_write4(client, 0x42c, 0x42600000);
1109 cx25840_write4(client, 0x430, 0x0000039b);
1110 cx25840_write4(client, 0x438, 0x00000000);
1111
1112 cx25840_write4(client, 0x440, 0xF8E3E824);
1113 cx25840_write4(client, 0x444, 0x401040dc);
1114 cx25840_write4(client, 0x448, 0xcd3f02a0);
1115 cx25840_write4(client, 0x44c, 0x161f1000);
1116 cx25840_write4(client, 0x450, 0x00000802);
1117
1118 cx25840_write4(client, 0x91c, 0x01000000);
1119 cx25840_write4(client, 0x8e0, 0x03063870);
1120 cx25840_write4(client, 0x8d4, 0x7FFF0024);
1121 cx25840_write4(client, 0x8d0, 0x00063073);
1122
1123 cx25840_write4(client, 0x8c8, 0x00010000);
1124 cx25840_write4(client, 0x8cc, 0x00080023);
1125
1126 /* DIF BYPASS */
1127 cx25840_write4(client, 0x33c, 0x2a04c800);
1128 }
1129
1130 /* Reset the DIF */
1131 cx25840_write4(client, 0x398, 0);
1132 }
1133
2a03f034 1134 if (!is_cx2388x(state) && !is_cx231xx(state)) {
f234081b
ST
1135 /* Set CH_SEL_ADC2 to 1 if input comes from CH3 */
1136 cx25840_and_or(client, 0x102, ~0x2, (reg & 0x80) == 0 ? 2 : 0);
1137 /* Set DUAL_MODE_ADC2 to 1 if input comes from both CH2&CH3 */
1138 if ((reg & 0xc0) != 0xc0 && (reg & 0x30) != 0x30)
1139 cx25840_and_or(client, 0x102, ~0x4, 4);
1140 else
1141 cx25840_and_or(client, 0x102, ~0x4, 0);
1142 } else {
fb29ab96
DW
1143 /* Set DUAL_MODE_ADC2 to 1 if component*/
1144 cx25840_and_or(client, 0x102, ~0x4, is_component ? 0x4 : 0x0);
1145 if (is_composite) {
f234081b
ST
1146 /* ADC2 input select channel 2 */
1147 cx25840_and_or(client, 0x102, ~0x2, 0);
fb29ab96
DW
1148 } else if (!is_component) {
1149 /* S-Video */
1150 if (chroma >= CX25840_SVIDEO_CHROMA7) {
1151 /* ADC2 input select channel 3 */
1152 cx25840_and_or(client, 0x102, ~0x2, 2);
1153 } else {
1154 /* ADC2 input select channel 2 */
1155 cx25840_and_or(client, 0x102, ~0x2, 0);
1156 }
1157 }
74900b47
ST
1158
1159 /* cx23885 / SVIDEO */
1160 if (is_cx2388x(state) && is_svideo) {
1161#define AFE_CTRL (0x104)
1162#define MODE_CTRL (0x400)
1163 cx25840_and_or(client, 0x102, ~0x2, 0x2);
1164
1165 val = cx25840_read4(client, MODE_CTRL);
1166 val &= 0xFFFFF9FF;
1167
1168 /* YC */
1169 val |= 0x00000200;
1170 val &= ~0x2000;
1171 cx25840_write4(client, MODE_CTRL, val);
1172
1173 val = cx25840_read4(client, AFE_CTRL);
1174
1175 /* Chroma in select */
1176 val |= 0x00001000;
1177 val &= 0xfffffe7f;
1178 /* Clear VGA_SEL_CH2 and VGA_SEL_CH3 (bits 7 and 8).
1179 * This sets them to use video rather than audio.
1180 * Only one of the two will be in use.
1181 */
1182 cx25840_write4(client, AFE_CTRL, val);
1183 } else
1184 cx25840_and_or(client, 0x102, ~0x2, 0);
f234081b 1185 }
a8bbf12a
HV
1186
1187 state->vid_input = vid_input;
1188 state->aud_input = aud_input;
5af79f86
SB
1189 cx25840_audio_set_path(client);
1190 input_change(client);
f234081b 1191
2a03f034 1192 if (is_cx2388x(state)) {
f234081b
ST
1193 /* Audio channel 1 src : Parallel 1 */
1194 cx25840_write(client, 0x124, 0x03);
1195
1196 /* Select AFE clock pad output source */
1197 cx25840_write(client, 0x144, 0x05);
1198
1199 /* I2S_IN_CTL: I2S_IN_SONY_MODE, LEFT SAMPLE on WS=1 */
1200 cx25840_write(client, 0x914, 0xa0);
1201
149783b5
SD
1202 /* I2S_OUT_CTL:
1203 * I2S_IN_SONY_MODE, LEFT SAMPLE on WS=1
1204 * I2S_OUT_MASTER_MODE = Master
1205 */
1206 cx25840_write(client, 0x918, 0xa0);
1207 cx25840_write(client, 0x919, 0x01);
2a03f034 1208 } else if (is_cx231xx(state)) {
149783b5
SD
1209 /* Audio channel 1 src : Parallel 1 */
1210 cx25840_write(client, 0x124, 0x03);
1211
1212 /* I2S_IN_CTL: I2S_IN_SONY_MODE, LEFT SAMPLE on WS=1 */
1213 cx25840_write(client, 0x914, 0xa0);
1214
f234081b
ST
1215 /* I2S_OUT_CTL:
1216 * I2S_IN_SONY_MODE, LEFT SAMPLE on WS=1
1217 * I2S_OUT_MASTER_MODE = Master
1218 */
1219 cx25840_write(client, 0x918, 0xa0);
1220 cx25840_write(client, 0x919, 0x01);
2ccdd9a5
ST
1221 }
1222
52422e3c
ST
1223 if (is_cx2388x(state) && ((aud_input == CX25840_AUDIO7) ||
1224 (aud_input == CX25840_AUDIO6))) {
2ccdd9a5
ST
1225 /* Configure audio from LR1 or LR2 input */
1226 cx25840_write4(client, 0x910, 0);
1227 cx25840_write4(client, 0x8d0, 0x63073);
1228 } else
1229 if (is_cx2388x(state) && (aud_input == CX25840_AUDIO8)) {
1230 /* Configure audio from tuner/sif input */
1231 cx25840_write4(client, 0x910, 0x12b000c9);
1232 cx25840_write4(client, 0x8d0, 0x1f063870);
f234081b
ST
1233 }
1234
74900b47
ST
1235 if (is_cx2388x(state)) {
1236 /* HVR1850 */
1237 /* AUD_IO_CTRL - I2S Input, Parallel1*/
1238 /* - Channel 1 src - Parallel1 (Merlin out) */
1239 /* - Channel 2 src - Parallel2 (Merlin out) */
1240 /* - Channel 3 src - Parallel3 (Merlin AC97 out) */
1241 /* - I2S source and dir - Merlin, output */
1242 cx25840_write4(client, 0x124, 0x100);
1243
1244 if (!is_dif) {
1245 /* Stop microcontroller if we don't need it
1246 * to avoid audio popping on svideo/composite use.
1247 */
1248 cx25840_and_or(client, 0x803, ~0x10, 0x00);
1249 }
1250 }
1251
bd985160
HV
1252 return 0;
1253}
1254
1255/* ----------------------------------------------------------------------- */
1256
081b496a 1257static int set_v4lstd(struct i2c_client *client)
bd985160 1258{
9357b31c 1259 struct cx25840_state *state = to_state(i2c_get_clientdata(client));
081b496a
HV
1260 u8 fmt = 0; /* zero is autodetect */
1261 u8 pal_m = 0;
468a0a54
MCC
1262
1263 /* First tests should be against specific std */
081b496a
HV
1264 if (state->std == V4L2_STD_NTSC_M_JP) {
1265 fmt = 0x2;
1266 } else if (state->std == V4L2_STD_NTSC_443) {
1267 fmt = 0x3;
1268 } else if (state->std == V4L2_STD_PAL_M) {
1269 pal_m = 1;
1270 fmt = 0x5;
1271 } else if (state->std == V4L2_STD_PAL_N) {
1272 fmt = 0x6;
1273 } else if (state->std == V4L2_STD_PAL_Nc) {
1274 fmt = 0x7;
1275 } else if (state->std == V4L2_STD_PAL_60) {
1276 fmt = 0x8;
468a0a54
MCC
1277 } else {
1278 /* Then, test against generic ones */
081b496a
HV
1279 if (state->std & V4L2_STD_NTSC)
1280 fmt = 0x1;
1281 else if (state->std & V4L2_STD_PAL)
1282 fmt = 0x4;
1283 else if (state->std & V4L2_STD_SECAM)
1284 fmt = 0xc;
bd985160
HV
1285 }
1286
839e4a4a
MCC
1287 v4l_dbg(1, cx25840_debug, client, "changing video std to fmt %i\n",fmt);
1288
73dcddc5
HV
1289 /* Follow step 9 of section 3.16 in the cx25840 datasheet.
1290 Without this PAL may display a vertical ghosting effect.
1291 This happens for example with the Yuan MPC622. */
1292 if (fmt >= 4 && fmt < 8) {
1293 /* Set format to NTSC-M */
1294 cx25840_and_or(client, 0x400, ~0xf, 1);
1295 /* Turn off LCOMB */
1296 cx25840_and_or(client, 0x47b, ~6, 0);
1297 }
bd985160 1298 cx25840_and_or(client, 0x400, ~0xf, fmt);
081b496a 1299 cx25840_and_or(client, 0x403, ~0x3, pal_m);
74900b47
ST
1300 if (is_cx2388x(state))
1301 cx23885_std_setup(client);
1302 else
1303 cx25840_std_setup(client);
2a03f034 1304 if (!is_cx2583x(state))
081b496a 1305 input_change(client);
bd985160
HV
1306 return 0;
1307}
1308
bd985160
HV
1309/* ----------------------------------------------------------------------- */
1310
e34e658b 1311static int cx25840_s_ctrl(struct v4l2_ctrl *ctrl)
bd985160 1312{
e34e658b 1313 struct v4l2_subdev *sd = to_sd(ctrl);
9357b31c 1314 struct i2c_client *client = v4l2_get_subdevdata(sd);
bd985160
HV
1315
1316 switch (ctrl->id) {
bd985160 1317 case V4L2_CID_BRIGHTNESS:
e34e658b 1318 cx25840_write(client, 0x414, ctrl->val - 128);
bd985160
HV
1319 break;
1320
1321 case V4L2_CID_CONTRAST:
e34e658b 1322 cx25840_write(client, 0x415, ctrl->val << 1);
bd985160
HV
1323 break;
1324
1325 case V4L2_CID_SATURATION:
e34e658b
HV
1326 cx25840_write(client, 0x420, ctrl->val << 1);
1327 cx25840_write(client, 0x421, ctrl->val << 1);
bd985160
HV
1328 break;
1329
1330 case V4L2_CID_HUE:
e34e658b 1331 cx25840_write(client, 0x422, ctrl->val);
bd985160
HV
1332 break;
1333
bd985160
HV
1334 default:
1335 return -EINVAL;
1336 }
1337
1338 return 0;
1339}
1340
1341/* ----------------------------------------------------------------------- */
1342
96fd004f 1343static int cx25840_s_mbus_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_framefmt *fmt)
bd985160 1344{
9357b31c
HV
1345 struct cx25840_state *state = to_state(sd);
1346 struct i2c_client *client = v4l2_get_subdevdata(sd);
bd985160 1347 int HSC, VSC, Vsrc, Hsrc, filter, Vlines;
081b496a 1348 int is_50Hz = !(state->std & V4L2_STD_525_60);
bd985160 1349
96fd004f
HV
1350 if (fmt->code != V4L2_MBUS_FMT_FIXED)
1351 return -EINVAL;
bd985160 1352
96fd004f
HV
1353 fmt->field = V4L2_FIELD_INTERLACED;
1354 fmt->colorspace = V4L2_COLORSPACE_SMPTE170M;
bd985160 1355
96fd004f
HV
1356 Vsrc = (cx25840_read(client, 0x476) & 0x3f) << 4;
1357 Vsrc |= (cx25840_read(client, 0x475) & 0xf0) >> 4;
bd985160 1358
96fd004f
HV
1359 Hsrc = (cx25840_read(client, 0x472) & 0x3f) << 4;
1360 Hsrc |= (cx25840_read(client, 0x471) & 0xf0) >> 4;
bd985160 1361
96fd004f 1362 Vlines = fmt->height + (is_50Hz ? 4 : 7);
bd985160 1363
96fd004f
HV
1364 if ((fmt->width * 16 < Hsrc) || (Hsrc < fmt->width) ||
1365 (Vlines * 8 < Vsrc) || (Vsrc < Vlines)) {
1366 v4l_err(client, "%dx%d is not a valid size!\n",
1367 fmt->width, fmt->height);
1368 return -ERANGE;
1369 }
bd985160 1370
96fd004f
HV
1371 HSC = (Hsrc * (1 << 20)) / fmt->width - (1 << 20);
1372 VSC = (1 << 16) - (Vsrc * (1 << 9) / Vlines - (1 << 9));
1373 VSC &= 0x1fff;
1374
1375 if (fmt->width >= 385)
1376 filter = 0;
1377 else if (fmt->width > 192)
1378 filter = 1;
1379 else if (fmt->width > 96)
1380 filter = 2;
1381 else
1382 filter = 3;
1383
1384 v4l_dbg(1, cx25840_debug, client, "decoder set size %dx%d -> scale %ux%u\n",
1385 fmt->width, fmt->height, HSC, VSC);
1386
1387 /* HSCALE=HSC */
1388 cx25840_write(client, 0x418, HSC & 0xff);
1389 cx25840_write(client, 0x419, (HSC >> 8) & 0xff);
1390 cx25840_write(client, 0x41a, HSC >> 16);
1391 /* VSCALE=VSC */
1392 cx25840_write(client, 0x41c, VSC & 0xff);
1393 cx25840_write(client, 0x41d, VSC >> 8);
1394 /* VS_INTRLACE=1 VFILT=filter */
1395 cx25840_write(client, 0x41e, 0x8 | filter);
1396 return 0;
1397}
1398
bd985160
HV
1399/* ----------------------------------------------------------------------- */
1400
1a39275a
HV
1401static void log_video_status(struct i2c_client *client)
1402{
1403 static const char *const fmt_strs[] = {
1404 "0x0",
1405 "NTSC-M", "NTSC-J", "NTSC-4.43",
1406 "PAL-BDGHI", "PAL-M", "PAL-N", "PAL-Nc", "PAL-60",
1407 "0x9", "0xA", "0xB",
1408 "SECAM",
1409 "0xD", "0xE", "0xF"
1410 };
1411
9357b31c 1412 struct cx25840_state *state = to_state(i2c_get_clientdata(client));
1a39275a
HV
1413 u8 vidfmt_sel = cx25840_read(client, 0x400) & 0xf;
1414 u8 gen_stat1 = cx25840_read(client, 0x40d);
1415 u8 gen_stat2 = cx25840_read(client, 0x40e);
1416 int vid_input = state->vid_input;
1417
1418 v4l_info(client, "Video signal: %spresent\n",
1419 (gen_stat2 & 0x20) ? "" : "not ");
1420 v4l_info(client, "Detected format: %s\n",
1421 fmt_strs[gen_stat1 & 0xf]);
1422
1423 v4l_info(client, "Specified standard: %s\n",
1424 vidfmt_sel ? fmt_strs[vidfmt_sel] : "automatic detection");
1425
1426 if (vid_input >= CX25840_COMPOSITE1 &&
1427 vid_input <= CX25840_COMPOSITE8) {
1428 v4l_info(client, "Specified video input: Composite %d\n",
1429 vid_input - CX25840_COMPOSITE1 + 1);
1430 } else {
1431 v4l_info(client, "Specified video input: S-Video (Luma In%d, Chroma In%d)\n",
1432 (vid_input & 0xf0) >> 4, (vid_input & 0xf00) >> 8);
1433 }
1434
1435 v4l_info(client, "Specified audioclock freq: %d Hz\n", state->audclk_freq);
1436}
1437
1438/* ----------------------------------------------------------------------- */
1439
1440static void log_audio_status(struct i2c_client *client)
1441{
9357b31c 1442 struct cx25840_state *state = to_state(i2c_get_clientdata(client));
1a39275a
HV
1443 u8 download_ctl = cx25840_read(client, 0x803);
1444 u8 mod_det_stat0 = cx25840_read(client, 0x804);
1445 u8 mod_det_stat1 = cx25840_read(client, 0x805);
1446 u8 audio_config = cx25840_read(client, 0x808);
1447 u8 pref_mode = cx25840_read(client, 0x809);
1448 u8 afc0 = cx25840_read(client, 0x80b);
1449 u8 mute_ctl = cx25840_read(client, 0x8d3);
1450 int aud_input = state->aud_input;
1451 char *p;
1452
1453 switch (mod_det_stat0) {
1454 case 0x00: p = "mono"; break;
1455 case 0x01: p = "stereo"; break;
1456 case 0x02: p = "dual"; break;
1457 case 0x04: p = "tri"; break;
1458 case 0x10: p = "mono with SAP"; break;
1459 case 0x11: p = "stereo with SAP"; break;
1460 case 0x12: p = "dual with SAP"; break;
1461 case 0x14: p = "tri with SAP"; break;
1462 case 0xfe: p = "forced mode"; break;
1463 default: p = "not defined";
1464 }
1465 v4l_info(client, "Detected audio mode: %s\n", p);
1466
1467 switch (mod_det_stat1) {
1468 case 0x00: p = "not defined"; break;
1469 case 0x01: p = "EIAJ"; break;
1470 case 0x02: p = "A2-M"; break;
1471 case 0x03: p = "A2-BG"; break;
1472 case 0x04: p = "A2-DK1"; break;
1473 case 0x05: p = "A2-DK2"; break;
1474 case 0x06: p = "A2-DK3"; break;
1475 case 0x07: p = "A1 (6.0 MHz FM Mono)"; break;
1476 case 0x08: p = "AM-L"; break;
1477 case 0x09: p = "NICAM-BG"; break;
1478 case 0x0a: p = "NICAM-DK"; break;
1479 case 0x0b: p = "NICAM-I"; break;
1480 case 0x0c: p = "NICAM-L"; break;
1481 case 0x0d: p = "BTSC/EIAJ/A2-M Mono (4.5 MHz FMMono)"; break;
1482 case 0x0e: p = "IF FM Radio"; break;
1483 case 0x0f: p = "BTSC"; break;
1484 case 0x10: p = "high-deviation FM"; break;
1485 case 0x11: p = "very high-deviation FM"; break;
1486 case 0xfd: p = "unknown audio standard"; break;
1487 case 0xfe: p = "forced audio standard"; break;
1488 case 0xff: p = "no detected audio standard"; break;
1489 default: p = "not defined";
1490 }
1491 v4l_info(client, "Detected audio standard: %s\n", p);
1a39275a
HV
1492 v4l_info(client, "Audio microcontroller: %s\n",
1493 (download_ctl & 0x10) ?
1494 ((mute_ctl & 0x2) ? "detecting" : "running") : "stopped");
1495
1496 switch (audio_config >> 4) {
1497 case 0x00: p = "undefined"; break;
1498 case 0x01: p = "BTSC"; break;
1499 case 0x02: p = "EIAJ"; break;
1500 case 0x03: p = "A2-M"; break;
1501 case 0x04: p = "A2-BG"; break;
1502 case 0x05: p = "A2-DK1"; break;
1503 case 0x06: p = "A2-DK2"; break;
1504 case 0x07: p = "A2-DK3"; break;
1505 case 0x08: p = "A1 (6.0 MHz FM Mono)"; break;
1506 case 0x09: p = "AM-L"; break;
1507 case 0x0a: p = "NICAM-BG"; break;
1508 case 0x0b: p = "NICAM-DK"; break;
1509 case 0x0c: p = "NICAM-I"; break;
1510 case 0x0d: p = "NICAM-L"; break;
1511 case 0x0e: p = "FM radio"; break;
1512 case 0x0f: p = "automatic detection"; break;
1513 default: p = "undefined";
1514 }
1515 v4l_info(client, "Configured audio standard: %s\n", p);
1516
1517 if ((audio_config >> 4) < 0xF) {
1518 switch (audio_config & 0xF) {
1519 case 0x00: p = "MONO1 (LANGUAGE A/Mono L+R channel for BTSC, EIAJ, A2)"; break;
1520 case 0x01: p = "MONO2 (LANGUAGE B)"; break;
1521 case 0x02: p = "MONO3 (STEREO forced MONO)"; break;
1522 case 0x03: p = "MONO4 (NICAM ANALOG-Language C/Analog Fallback)"; break;
1523 case 0x04: p = "STEREO"; break;
1524 case 0x05: p = "DUAL1 (AB)"; break;
1525 case 0x06: p = "DUAL2 (AC) (FM)"; break;
1526 case 0x07: p = "DUAL3 (BC) (FM)"; break;
1527 case 0x08: p = "DUAL4 (AC) (AM)"; break;
1528 case 0x09: p = "DUAL5 (BC) (AM)"; break;
1529 case 0x0a: p = "SAP"; break;
1530 default: p = "undefined";
1531 }
1532 v4l_info(client, "Configured audio mode: %s\n", p);
1533 } else {
1534 switch (audio_config & 0xF) {
1535 case 0x00: p = "BG"; break;
1536 case 0x01: p = "DK1"; break;
1537 case 0x02: p = "DK2"; break;
1538 case 0x03: p = "DK3"; break;
1539 case 0x04: p = "I"; break;
1540 case 0x05: p = "L"; break;
1541 case 0x06: p = "BTSC"; break;
1542 case 0x07: p = "EIAJ"; break;
1543 case 0x08: p = "A2-M"; break;
1544 case 0x09: p = "FM Radio"; break;
1545 case 0x0f: p = "automatic standard and mode detection"; break;
1546 default: p = "undefined";
1547 }
1548 v4l_info(client, "Configured audio system: %s\n", p);
1549 }
1550
1551 if (aud_input) {
1552 v4l_info(client, "Specified audio input: Tuner (In%d)\n", aud_input);
1553 } else {
1554 v4l_info(client, "Specified audio input: External\n");
1555 }
1556
1557 switch (pref_mode & 0xf) {
1558 case 0: p = "mono/language A"; break;
1559 case 1: p = "language B"; break;
1560 case 2: p = "language C"; break;
1561 case 3: p = "analog fallback"; break;
1562 case 4: p = "stereo"; break;
1563 case 5: p = "language AC"; break;
1564 case 6: p = "language BC"; break;
1565 case 7: p = "language AB"; break;
1566 default: p = "undefined";
1567 }
1568 v4l_info(client, "Preferred audio mode: %s\n", p);
1569
1570 if ((audio_config & 0xf) == 0xf) {
1571 switch ((afc0 >> 3) & 0x3) {
1572 case 0: p = "system DK"; break;
1573 case 1: p = "system L"; break;
1574 case 2: p = "autodetect"; break;
1575 default: p = "undefined";
1576 }
1577 v4l_info(client, "Selected 65 MHz format: %s\n", p);
1578
1579 switch (afc0 & 0x7) {
1580 case 0: p = "chroma"; break;
1581 case 1: p = "BTSC"; break;
1582 case 2: p = "EIAJ"; break;
1583 case 3: p = "A2-M"; break;
1584 case 4: p = "autodetect"; break;
1585 default: p = "undefined";
1586 }
1587 v4l_info(client, "Selected 45 MHz format: %s\n", p);
1588 }
1589}
1590
1591/* ----------------------------------------------------------------------- */
1592
cc26b076 1593/* This load_fw operation must be called to load the driver's firmware.
6ca187ab
HV
1594 Without this the audio standard detection will fail and you will
1595 only get mono.
1596
1597 Since loading the firmware is often problematic when the driver is
1598 compiled into the kernel I recommend postponing calling this function
1599 until the first open of the video device. Another reason for
1600 postponing it is that loading this firmware takes a long time (seconds)
1601 due to the slow i2c bus speed. So it will speed up the boot process if
1602 you can avoid loading the fw as long as the video device isn't used. */
cc26b076 1603static int cx25840_load_fw(struct v4l2_subdev *sd)
bd985160 1604{
9357b31c
HV
1605 struct cx25840_state *state = to_state(sd);
1606 struct i2c_client *client = v4l2_get_subdevdata(sd);
c976bc82
HV
1607
1608 if (!state->is_initialized) {
cc26b076 1609 /* initialize and load firmware */
c976bc82 1610 state->is_initialized = 1;
2a03f034 1611 if (is_cx2583x(state))
c976bc82 1612 cx25836_initialize(client);
2a03f034 1613 else if (is_cx2388x(state))
f234081b 1614 cx23885_initialize(client);
2a03f034 1615 else if (is_cx231xx(state))
149783b5 1616 cx231xx_initialize(client);
c976bc82 1617 else
89fc4eb9 1618 cx25840_initialize(client);
c976bc82 1619 }
9357b31c
HV
1620 return 0;
1621}
c976bc82 1622
bd985160 1623#ifdef CONFIG_VIDEO_ADV_DEBUG
aecde8b5 1624static int cx25840_g_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
9357b31c
HV
1625{
1626 struct i2c_client *client = v4l2_get_subdevdata(sd);
f234081b 1627
aecde8b5 1628 if (!v4l2_chip_match_i2c_client(client, &reg->match))
9357b31c
HV
1629 return -EINVAL;
1630 if (!capable(CAP_SYS_ADMIN))
1631 return -EPERM;
aecde8b5 1632 reg->size = 1;
9357b31c
HV
1633 reg->val = cx25840_read(client, reg->reg & 0x0fff);
1634 return 0;
1635}
1636
aecde8b5 1637static int cx25840_s_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
9357b31c
HV
1638{
1639 struct i2c_client *client = v4l2_get_subdevdata(sd);
1640
aecde8b5 1641 if (!v4l2_chip_match_i2c_client(client, &reg->match))
9357b31c
HV
1642 return -EINVAL;
1643 if (!capable(CAP_SYS_ADMIN))
1644 return -EPERM;
1645 cx25840_write(client, reg->reg & 0x0fff, reg->val & 0xff);
1646 return 0;
1647}
bd985160
HV
1648#endif
1649
3ccc646b
AW
1650static int cx25840_s_audio_stream(struct v4l2_subdev *sd, int enable)
1651{
1652 struct cx25840_state *state = to_state(sd);
1653 struct i2c_client *client = v4l2_get_subdevdata(sd);
1654 u8 v;
1655
1656 if (is_cx2583x(state) || is_cx2388x(state) || is_cx231xx(state))
1657 return 0;
1658
1659 v4l_dbg(1, cx25840_debug, client, "%s audio output\n",
1660 enable ? "enable" : "disable");
1661
1662 if (enable) {
1663 v = cx25840_read(client, 0x115) | 0x80;
1664 cx25840_write(client, 0x115, v);
1665 v = cx25840_read(client, 0x116) | 0x03;
1666 cx25840_write(client, 0x116, v);
1667 } else {
1668 v = cx25840_read(client, 0x115) & ~(0x80);
1669 cx25840_write(client, 0x115, v);
1670 v = cx25840_read(client, 0x116) & ~(0x03);
1671 cx25840_write(client, 0x116, v);
1672 }
1673 return 0;
1674}
1675
9357b31c
HV
1676static int cx25840_s_stream(struct v4l2_subdev *sd, int enable)
1677{
1678 struct cx25840_state *state = to_state(sd);
1679 struct i2c_client *client = v4l2_get_subdevdata(sd);
3ccc646b 1680 u8 v;
bd985160 1681
3ccc646b 1682 v4l_dbg(1, cx25840_debug, client, "%s video output\n",
9357b31c
HV
1683 enable ? "enable" : "disable");
1684 if (enable) {
2a03f034 1685 if (is_cx2388x(state) || is_cx231xx(state)) {
3ccc646b 1686 v = cx25840_read(client, 0x421) | 0x0b;
f234081b
ST
1687 cx25840_write(client, 0x421, v);
1688 } else {
3ccc646b
AW
1689 v = cx25840_read(client, 0x115) | 0x0c;
1690 cx25840_write(client, 0x115, v);
1691 v = cx25840_read(client, 0x116) | 0x04;
1692 cx25840_write(client, 0x116, v);
f234081b 1693 }
9357b31c 1694 } else {
2a03f034 1695 if (is_cx2388x(state) || is_cx231xx(state)) {
3ccc646b 1696 v = cx25840_read(client, 0x421) & ~(0x0b);
f234081b
ST
1697 cx25840_write(client, 0x421, v);
1698 } else {
3ccc646b
AW
1699 v = cx25840_read(client, 0x115) & ~(0x0c);
1700 cx25840_write(client, 0x115, v);
1701 v = cx25840_read(client, 0x116) & ~(0x04);
1702 cx25840_write(client, 0x116, v);
f234081b 1703 }
9357b31c
HV
1704 }
1705 return 0;
1706}
bd985160 1707
51ada787
ST
1708/* Query the current detected video format */
1709static int cx25840_g_std(struct v4l2_subdev *sd, v4l2_std_id *std)
1710{
1711 struct i2c_client *client = v4l2_get_subdevdata(sd);
1712
1713 v4l2_std_id stds[] = {
1714 /* 0000 */ V4L2_STD_UNKNOWN,
1715
1716 /* 0001 */ V4L2_STD_NTSC_M,
1717 /* 0010 */ V4L2_STD_NTSC_M_JP,
1718 /* 0011 */ V4L2_STD_NTSC_443,
1719 /* 0100 */ V4L2_STD_PAL,
1720 /* 0101 */ V4L2_STD_PAL_M,
1721 /* 0110 */ V4L2_STD_PAL_N,
1722 /* 0111 */ V4L2_STD_PAL_Nc,
1723 /* 1000 */ V4L2_STD_PAL_60,
1724
1725 /* 1001 */ V4L2_STD_UNKNOWN,
1726 /* 1010 */ V4L2_STD_UNKNOWN,
1727 /* 1001 */ V4L2_STD_UNKNOWN,
1728 /* 1010 */ V4L2_STD_UNKNOWN,
1729 /* 1011 */ V4L2_STD_UNKNOWN,
1730 /* 1110 */ V4L2_STD_UNKNOWN,
1731 /* 1111 */ V4L2_STD_UNKNOWN
1732 };
1733
1734 u32 fmt = (cx25840_read4(client, 0x40c) >> 8) & 0xf;
1735 *std = stds[ fmt ];
1736
1737 v4l_dbg(1, cx25840_debug, client, "g_std fmt = %x, v4l2_std_id = 0x%x\n",
1738 fmt, (unsigned int)stds[ fmt ]);
1739
1740 return 0;
1741}
1742
9357b31c
HV
1743static int cx25840_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
1744{
1745 struct cx25840_state *state = to_state(sd);
1746 struct i2c_client *client = v4l2_get_subdevdata(sd);
d92c20e0 1747
9357b31c
HV
1748 if (state->radio == 0 && state->std == std)
1749 return 0;
1750 state->radio = 0;
1751 state->std = std;
1752 return set_v4lstd(client);
1753}
e2b8cf4c 1754
9357b31c
HV
1755static int cx25840_s_radio(struct v4l2_subdev *sd)
1756{
1757 struct cx25840_state *state = to_state(sd);
d92c20e0 1758
9357b31c
HV
1759 state->radio = 1;
1760 return 0;
1761}
bd985160 1762
5325b427
HV
1763static int cx25840_s_video_routing(struct v4l2_subdev *sd,
1764 u32 input, u32 output, u32 config)
9357b31c
HV
1765{
1766 struct cx25840_state *state = to_state(sd);
1767 struct i2c_client *client = v4l2_get_subdevdata(sd);
3faeeae4 1768
74900b47
ST
1769 if (is_cx2388x(state))
1770 cx23885_std_setup(client);
1771
5325b427 1772 return set_input(client, input, state->aud_input);
9357b31c 1773}
bd985160 1774
5325b427
HV
1775static int cx25840_s_audio_routing(struct v4l2_subdev *sd,
1776 u32 input, u32 output, u32 config)
9357b31c
HV
1777{
1778 struct cx25840_state *state = to_state(sd);
1779 struct i2c_client *client = v4l2_get_subdevdata(sd);
bd985160 1780
74900b47
ST
1781 if (is_cx2388x(state))
1782 cx23885_std_setup(client);
5325b427 1783 return set_input(client, state->vid_input, input);
9357b31c 1784}
bd985160 1785
9357b31c
HV
1786static int cx25840_s_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *freq)
1787{
9357b31c 1788 struct i2c_client *client = v4l2_get_subdevdata(sd);
a8bbf12a 1789
5af79f86 1790 input_change(client);
9357b31c
HV
1791 return 0;
1792}
a8bbf12a 1793
9357b31c
HV
1794static int cx25840_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1795{
1796 struct cx25840_state *state = to_state(sd);
1797 struct i2c_client *client = v4l2_get_subdevdata(sd);
1798 u8 vpres = cx25840_read(client, 0x40e) & 0x20;
1799 u8 mode;
1800 int val = 0;
bd985160 1801
9357b31c
HV
1802 if (state->radio)
1803 return 0;
bd985160 1804
9357b31c 1805 vt->signal = vpres ? 0xffff : 0x0;
2a03f034 1806 if (is_cx2583x(state))
9357b31c 1807 return 0;
3faeeae4 1808
9357b31c
HV
1809 vt->capability |=
1810 V4L2_TUNER_CAP_STEREO | V4L2_TUNER_CAP_LANG1 |
1811 V4L2_TUNER_CAP_LANG2 | V4L2_TUNER_CAP_SAP;
e2b8cf4c 1812
9357b31c 1813 mode = cx25840_read(client, 0x804);
bd985160 1814
9357b31c
HV
1815 /* get rxsubchans and audmode */
1816 if ((mode & 0xf) == 1)
1817 val |= V4L2_TUNER_SUB_STEREO;
1818 else
1819 val |= V4L2_TUNER_SUB_MONO;
bd985160 1820
9357b31c
HV
1821 if (mode == 2 || mode == 4)
1822 val = V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
bd985160 1823
9357b31c
HV
1824 if (mode & 0x10)
1825 val |= V4L2_TUNER_SUB_SAP;
bd985160 1826
9357b31c
HV
1827 vt->rxsubchans = val;
1828 vt->audmode = state->audmode;
1829 return 0;
1830}
bd985160 1831
9357b31c
HV
1832static int cx25840_s_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1833{
1834 struct cx25840_state *state = to_state(sd);
1835 struct i2c_client *client = v4l2_get_subdevdata(sd);
bd985160 1836
2a03f034 1837 if (state->radio || is_cx2583x(state))
9357b31c 1838 return 0;
8a4b275f 1839
9357b31c 1840 switch (vt->audmode) {
bd985160 1841 case V4L2_TUNER_MODE_MONO:
8a4b275f
HV
1842 /* mono -> mono
1843 stereo -> mono
1844 bilingual -> lang1 */
bd985160
HV
1845 cx25840_and_or(client, 0x809, ~0xf, 0x00);
1846 break;
301e22d6 1847 case V4L2_TUNER_MODE_STEREO:
8a4b275f
HV
1848 case V4L2_TUNER_MODE_LANG1:
1849 /* mono -> mono
1850 stereo -> stereo
1851 bilingual -> lang1 */
bd985160
HV
1852 cx25840_and_or(client, 0x809, ~0xf, 0x04);
1853 break;
301e22d6 1854 case V4L2_TUNER_MODE_LANG1_LANG2:
8a4b275f
HV
1855 /* mono -> mono
1856 stereo -> stereo
1857 bilingual -> lang1/lang2 */
1858 cx25840_and_or(client, 0x809, ~0xf, 0x07);
1859 break;
bd985160 1860 case V4L2_TUNER_MODE_LANG2:
8a4b275f 1861 /* mono -> mono
301e22d6 1862 stereo -> stereo
8a4b275f 1863 bilingual -> lang2 */
bd985160
HV
1864 cx25840_and_or(client, 0x809, ~0xf, 0x01);
1865 break;
8a4b275f
HV
1866 default:
1867 return -EINVAL;
9357b31c
HV
1868 }
1869 state->audmode = vt->audmode;
1870 return 0;
1871}
bd985160 1872
9357b31c
HV
1873static int cx25840_reset(struct v4l2_subdev *sd, u32 val)
1874{
1875 struct cx25840_state *state = to_state(sd);
1876 struct i2c_client *client = v4l2_get_subdevdata(sd);
bd985160 1877
2a03f034 1878 if (is_cx2583x(state))
9357b31c 1879 cx25836_initialize(client);
2a03f034 1880 else if (is_cx2388x(state))
9357b31c 1881 cx23885_initialize(client);
2a03f034 1882 else if (is_cx231xx(state))
149783b5 1883 cx231xx_initialize(client);
9357b31c
HV
1884 else
1885 cx25840_initialize(client);
1886 return 0;
1887}
bd985160 1888
aecde8b5 1889static int cx25840_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_dbg_chip_ident *chip)
9357b31c
HV
1890{
1891 struct cx25840_state *state = to_state(sd);
1892 struct i2c_client *client = v4l2_get_subdevdata(sd);
bd985160 1893
9357b31c
HV
1894 return v4l2_chip_ident_i2c_client(client, chip, state->id, state->rev);
1895}
bd985160 1896
9357b31c
HV
1897static int cx25840_log_status(struct v4l2_subdev *sd)
1898{
1899 struct cx25840_state *state = to_state(sd);
1900 struct i2c_client *client = v4l2_get_subdevdata(sd);
bd985160 1901
9357b31c 1902 log_video_status(client);
2a03f034 1903 if (!is_cx2583x(state))
9357b31c 1904 log_audio_status(client);
52fd3dda 1905 cx25840_ir_log_status(sd);
e34e658b 1906 v4l2_ctrl_handler_log_status(&state->hdl, sd->name);
3faeeae4 1907 return 0;
bd985160
HV
1908}
1909
52fd3dda
AW
1910static int cx23885_irq_handler(struct v4l2_subdev *sd, u32 status,
1911 bool *handled)
1912{
1913 struct cx25840_state *state = to_state(sd);
1914 struct i2c_client *c = v4l2_get_subdevdata(sd);
1915 u8 irq_stat, aud_stat, aud_en, ir_stat, ir_en;
1916 u32 vid_stat, aud_mc_stat;
1917 bool block_handled;
1918 int ret = 0;
1919
1920 irq_stat = cx25840_read(c, CX23885_PIN_CTRL_IRQ_REG);
1921 v4l_dbg(2, cx25840_debug, c, "AV Core IRQ status (entry): %s %s %s\n",
1922 irq_stat & CX23885_PIN_CTRL_IRQ_IR_STAT ? "ir" : " ",
1923 irq_stat & CX23885_PIN_CTRL_IRQ_AUD_STAT ? "aud" : " ",
1924 irq_stat & CX23885_PIN_CTRL_IRQ_VID_STAT ? "vid" : " ");
1925
1926 if ((is_cx23885(state) || is_cx23887(state))) {
1927 ir_stat = cx25840_read(c, CX25840_IR_STATS_REG);
1928 ir_en = cx25840_read(c, CX25840_IR_IRQEN_REG);
1929 v4l_dbg(2, cx25840_debug, c,
1930 "AV Core ir IRQ status: %#04x disables: %#04x\n",
1931 ir_stat, ir_en);
1932 if (irq_stat & CX23885_PIN_CTRL_IRQ_IR_STAT) {
1933 block_handled = false;
1934 ret = cx25840_ir_irq_handler(sd,
1935 status, &block_handled);
1936 if (block_handled)
1937 *handled = true;
1938 }
1939 }
1940
1941 aud_stat = cx25840_read(c, CX25840_AUD_INT_STAT_REG);
1942 aud_en = cx25840_read(c, CX25840_AUD_INT_CTRL_REG);
1943 v4l_dbg(2, cx25840_debug, c,
1944 "AV Core audio IRQ status: %#04x disables: %#04x\n",
1945 aud_stat, aud_en);
1946 aud_mc_stat = cx25840_read4(c, CX23885_AUD_MC_INT_MASK_REG);
1947 v4l_dbg(2, cx25840_debug, c,
1948 "AV Core audio MC IRQ status: %#06x enables: %#06x\n",
1949 aud_mc_stat >> CX23885_AUD_MC_INT_STAT_SHFT,
1950 aud_mc_stat & CX23885_AUD_MC_INT_CTRL_BITS);
1951 if (irq_stat & CX23885_PIN_CTRL_IRQ_AUD_STAT) {
1952 if (aud_stat) {
1953 cx25840_write(c, CX25840_AUD_INT_STAT_REG, aud_stat);
1954 *handled = true;
1955 }
1956 }
1957
1958 vid_stat = cx25840_read4(c, CX25840_VID_INT_STAT_REG);
1959 v4l_dbg(2, cx25840_debug, c,
1960 "AV Core video IRQ status: %#06x disables: %#06x\n",
1961 vid_stat & CX25840_VID_INT_STAT_BITS,
1962 vid_stat >> CX25840_VID_INT_MASK_SHFT);
1963 if (irq_stat & CX23885_PIN_CTRL_IRQ_VID_STAT) {
1964 if (vid_stat & CX25840_VID_INT_STAT_BITS) {
1965 cx25840_write4(c, CX25840_VID_INT_STAT_REG, vid_stat);
1966 *handled = true;
1967 }
1968 }
1969
1970 irq_stat = cx25840_read(c, CX23885_PIN_CTRL_IRQ_REG);
1971 v4l_dbg(2, cx25840_debug, c, "AV Core IRQ status (exit): %s %s %s\n",
1972 irq_stat & CX23885_PIN_CTRL_IRQ_IR_STAT ? "ir" : " ",
1973 irq_stat & CX23885_PIN_CTRL_IRQ_AUD_STAT ? "aud" : " ",
1974 irq_stat & CX23885_PIN_CTRL_IRQ_VID_STAT ? "vid" : " ");
1975
1976 return ret;
1977}
1978
1979static int cx25840_irq_handler(struct v4l2_subdev *sd, u32 status,
1980 bool *handled)
1981{
1982 struct cx25840_state *state = to_state(sd);
1983
1984 *handled = false;
1985
1986 /* Only support the CX2388[578] AV Core for now */
1987 if (is_cx2388x(state))
1988 return cx23885_irq_handler(sd, status, handled);
1989
1990 return -ENODEV;
1991}
1992
9357b31c
HV
1993/* ----------------------------------------------------------------------- */
1994
74900b47
ST
1995#define DIF_PLL_FREQ_WORD (0x300)
1996#define DIF_BPF_COEFF01 (0x348)
1997#define DIF_BPF_COEFF23 (0x34c)
1998#define DIF_BPF_COEFF45 (0x350)
1999#define DIF_BPF_COEFF67 (0x354)
2000#define DIF_BPF_COEFF89 (0x358)
2001#define DIF_BPF_COEFF1011 (0x35c)
2002#define DIF_BPF_COEFF1213 (0x360)
2003#define DIF_BPF_COEFF1415 (0x364)
2004#define DIF_BPF_COEFF1617 (0x368)
2005#define DIF_BPF_COEFF1819 (0x36c)
2006#define DIF_BPF_COEFF2021 (0x370)
2007#define DIF_BPF_COEFF2223 (0x374)
2008#define DIF_BPF_COEFF2425 (0x378)
2009#define DIF_BPF_COEFF2627 (0x37c)
2010#define DIF_BPF_COEFF2829 (0x380)
2011#define DIF_BPF_COEFF3031 (0x384)
2012#define DIF_BPF_COEFF3233 (0x388)
2013#define DIF_BPF_COEFF3435 (0x38c)
2014#define DIF_BPF_COEFF36 (0x390)
2015
2016void cx23885_dif_setup(struct i2c_client *client, u32 ifHz)
2017{
2018 u64 pll_freq;
2019 u32 pll_freq_word;
2020
2021 v4l_dbg(1, cx25840_debug, client, "%s(%d)\n", __func__, ifHz);
2022
2023 /* Assuming TV */
2024 /* Calculate the PLL frequency word based on the adjusted ifHz */
2025 pll_freq = ((u64)ifHz * 268435456) / 50000000;
2026 pll_freq_word = (u32)pll_freq;
2027
2028 cx25840_write4(client, DIF_PLL_FREQ_WORD, pll_freq_word);
2029
2030 /* Round down to the nearest 100KHz */
2031 ifHz = (ifHz / 100000) * 100000;
2032
2033 if (ifHz < 3000000)
2034 ifHz = 3000000;
2035
2036 if (ifHz > 16000000)
2037 ifHz = 16000000;
2038
2039 v4l_dbg(1, cx25840_debug, client, "%s(%d) again\n", __func__, ifHz);
2040
2041 switch (ifHz) {
2042 case 3000000:
2043 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000002);
2044 cx25840_write4(client, DIF_BPF_COEFF23, 0x00080012);
2045 cx25840_write4(client, DIF_BPF_COEFF45, 0x001e0024);
2046 cx25840_write4(client, DIF_BPF_COEFF67, 0x001bfff8);
2047 cx25840_write4(client, DIF_BPF_COEFF89, 0xffb4ff50);
2048 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfed8fe68);
2049 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe24fe34);
2050 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfebaffc7);
2051 cx25840_write4(client, DIF_BPF_COEFF1617, 0x014d031f);
2052 cx25840_write4(client, DIF_BPF_COEFF1819, 0x04f0065d);
2053 cx25840_write4(client, DIF_BPF_COEFF2021, 0x07010688);
2054 cx25840_write4(client, DIF_BPF_COEFF2223, 0x04c901d6);
2055 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfe00f9d3);
2056 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf600f342);
2057 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf235f337);
2058 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf64efb22);
2059 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0105070f);
2060 cx25840_write4(client, DIF_BPF_COEFF3435, 0x0c460fce);
2061 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2062 break;
2063
2064 case 3100000:
2065 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000001);
2066 cx25840_write4(client, DIF_BPF_COEFF23, 0x00070012);
2067 cx25840_write4(client, DIF_BPF_COEFF45, 0x00220032);
2068 cx25840_write4(client, DIF_BPF_COEFF67, 0x00370026);
2069 cx25840_write4(client, DIF_BPF_COEFF89, 0xfff0ff91);
2070 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff0efe7c);
2071 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe01fdcc);
2072 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfe0afedb);
2073 cx25840_write4(client, DIF_BPF_COEFF1617, 0x00440224);
2074 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0434060c);
2075 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0738074e);
2076 cx25840_write4(client, DIF_BPF_COEFF2223, 0x06090361);
2077 cx25840_write4(client, DIF_BPF_COEFF2425, 0xff99fb39);
2078 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf6fef3b6);
2079 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf21af2a5);
2080 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf573fa33);
2081 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0034067d);
2082 cx25840_write4(client, DIF_BPF_COEFF3435, 0x0bfb0fb9);
2083 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2084 break;
2085
2086 case 3200000:
2087 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000000);
2088 cx25840_write4(client, DIF_BPF_COEFF23, 0x0004000e);
2089 cx25840_write4(client, DIF_BPF_COEFF45, 0x00200038);
2090 cx25840_write4(client, DIF_BPF_COEFF67, 0x004c004f);
2091 cx25840_write4(client, DIF_BPF_COEFF89, 0x002fffdf);
2092 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff5cfeb6);
2093 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe0dfd92);
2094 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd7ffe03);
2095 cx25840_write4(client, DIF_BPF_COEFF1617, 0xff36010a);
2096 cx25840_write4(client, DIF_BPF_COEFF1819, 0x03410575);
2097 cx25840_write4(client, DIF_BPF_COEFF2021, 0x072607d2);
2098 cx25840_write4(client, DIF_BPF_COEFF2223, 0x071804d5);
2099 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0134fcb7);
2100 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf81ff451);
2101 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf223f22e);
2102 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf4a7f94b);
2103 cx25840_write4(client, DIF_BPF_COEFF3233, 0xff6405e8);
2104 cx25840_write4(client, DIF_BPF_COEFF3435, 0x0bae0fa4);
2105 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2106 break;
2107
2108 case 3300000:
2109 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000ffff);
2110 cx25840_write4(client, DIF_BPF_COEFF23, 0x00000008);
2111 cx25840_write4(client, DIF_BPF_COEFF45, 0x001a0036);
2112 cx25840_write4(client, DIF_BPF_COEFF67, 0x0056006d);
2113 cx25840_write4(client, DIF_BPF_COEFF89, 0x00670030);
2114 cx25840_write4(client, DIF_BPF_COEFF1011, 0xffbdff10);
2115 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe46fd8d);
2116 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd25fd4f);
2117 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfe35ffe0);
2118 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0224049f);
2119 cx25840_write4(client, DIF_BPF_COEFF2021, 0x06c9080e);
2120 cx25840_write4(client, DIF_BPF_COEFF2223, 0x07ef0627);
2121 cx25840_write4(client, DIF_BPF_COEFF2425, 0x02c9fe45);
2122 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf961f513);
2123 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf250f1d2);
2124 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf3ecf869);
2125 cx25840_write4(client, DIF_BPF_COEFF3233, 0xfe930552);
2126 cx25840_write4(client, DIF_BPF_COEFF3435, 0x0b5f0f8f);
2127 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2128 break;
2129
2130 case 3400000:
2131 cx25840_write4(client, DIF_BPF_COEFF01, 0xfffffffe);
2132 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffd0001);
2133 cx25840_write4(client, DIF_BPF_COEFF45, 0x000f002c);
2134 cx25840_write4(client, DIF_BPF_COEFF67, 0x0054007d);
2135 cx25840_write4(client, DIF_BPF_COEFF89, 0x0093007c);
2136 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0024ff82);
2137 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfea6fdbb);
2138 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd03fcca);
2139 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfd51feb9);
2140 cx25840_write4(client, DIF_BPF_COEFF1819, 0x00eb0392);
2141 cx25840_write4(client, DIF_BPF_COEFF2021, 0x06270802);
2142 cx25840_write4(client, DIF_BPF_COEFF2223, 0x08880750);
2143 cx25840_write4(client, DIF_BPF_COEFF2425, 0x044dffdb);
2144 cx25840_write4(client, DIF_BPF_COEFF2627, 0xfabdf5f8);
2145 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf2a0f193);
2146 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf342f78f);
2147 cx25840_write4(client, DIF_BPF_COEFF3233, 0xfdc404b9);
2148 cx25840_write4(client, DIF_BPF_COEFF3435, 0x0b0e0f78);
2149 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2150 break;
2151
2152 case 3500000:
2153 cx25840_write4(client, DIF_BPF_COEFF01, 0xfffffffd);
2154 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffafff9);
2155 cx25840_write4(client, DIF_BPF_COEFF45, 0x0002001b);
2156 cx25840_write4(client, DIF_BPF_COEFF67, 0x0046007d);
2157 cx25840_write4(client, DIF_BPF_COEFF89, 0x00ad00ba);
2158 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00870000);
2159 cx25840_write4(client, DIF_BPF_COEFF1213, 0xff26fe1a);
2160 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd1bfc7e);
2161 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc99fda4);
2162 cx25840_write4(client, DIF_BPF_COEFF1819, 0xffa5025c);
2163 cx25840_write4(client, DIF_BPF_COEFF2021, 0x054507ad);
2164 cx25840_write4(client, DIF_BPF_COEFF2223, 0x08dd0847);
2165 cx25840_write4(client, DIF_BPF_COEFF2425, 0x05b80172);
2166 cx25840_write4(client, DIF_BPF_COEFF2627, 0xfc2ef6ff);
2167 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf313f170);
2168 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf2abf6bd);
2169 cx25840_write4(client, DIF_BPF_COEFF3233, 0xfcf6041f);
2170 cx25840_write4(client, DIF_BPF_COEFF3435, 0x0abc0f61);
2171 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2172 break;
2173
2174 case 3600000:
2175 cx25840_write4(client, DIF_BPF_COEFF01, 0xfffffffd);
2176 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff8fff3);
2177 cx25840_write4(client, DIF_BPF_COEFF45, 0xfff50006);
2178 cx25840_write4(client, DIF_BPF_COEFF67, 0x002f006c);
2179 cx25840_write4(client, DIF_BPF_COEFF89, 0x00b200e3);
2180 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00dc007e);
2181 cx25840_write4(client, DIF_BPF_COEFF1213, 0xffb9fea0);
2182 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd6bfc71);
2183 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc17fcb1);
2184 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfe65010b);
2185 cx25840_write4(client, DIF_BPF_COEFF2021, 0x042d0713);
2186 cx25840_write4(client, DIF_BPF_COEFF2223, 0x08ec0906);
2187 cx25840_write4(client, DIF_BPF_COEFF2425, 0x07020302);
2188 cx25840_write4(client, DIF_BPF_COEFF2627, 0xfdaff823);
2189 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf3a7f16a);
2190 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf228f5f5);
2191 cx25840_write4(client, DIF_BPF_COEFF3233, 0xfc2a0384);
2192 cx25840_write4(client, DIF_BPF_COEFF3435, 0x0a670f4a);
2193 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2194 break;
2195
2196 case 3700000:
2197 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
2198 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff7ffef);
2199 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe9fff1);
2200 cx25840_write4(client, DIF_BPF_COEFF67, 0x0010004d);
2201 cx25840_write4(client, DIF_BPF_COEFF89, 0x00a100f2);
2202 cx25840_write4(client, DIF_BPF_COEFF1011, 0x011a00f0);
2203 cx25840_write4(client, DIF_BPF_COEFF1213, 0x0053ff44);
2204 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfdedfca2);
2205 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfbd3fbef);
2206 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfd39ffae);
2207 cx25840_write4(client, DIF_BPF_COEFF2021, 0x02ea0638);
2208 cx25840_write4(client, DIF_BPF_COEFF2223, 0x08b50987);
2209 cx25840_write4(client, DIF_BPF_COEFF2425, 0x08230483);
2210 cx25840_write4(client, DIF_BPF_COEFF2627, 0xff39f960);
2211 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf45bf180);
2212 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf1b8f537);
2213 cx25840_write4(client, DIF_BPF_COEFF3233, 0xfb6102e7);
2214 cx25840_write4(client, DIF_BPF_COEFF3435, 0x0a110f32);
2215 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2216 break;
2217
2218 case 3800000:
2219 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffe);
2220 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff9ffee);
2221 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe1ffdd);
2222 cx25840_write4(client, DIF_BPF_COEFF67, 0xfff00024);
2223 cx25840_write4(client, DIF_BPF_COEFF89, 0x007c00e5);
2224 cx25840_write4(client, DIF_BPF_COEFF1011, 0x013a014a);
2225 cx25840_write4(client, DIF_BPF_COEFF1213, 0x00e6fff8);
2226 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfe98fd0f);
2227 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfbd3fb67);
2228 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfc32fe54);
2229 cx25840_write4(client, DIF_BPF_COEFF2021, 0x01880525);
2230 cx25840_write4(client, DIF_BPF_COEFF2223, 0x083909c7);
2231 cx25840_write4(client, DIF_BPF_COEFF2425, 0x091505ee);
2232 cx25840_write4(client, DIF_BPF_COEFF2627, 0x00c7fab3);
2233 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf52df1b4);
2234 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf15df484);
2235 cx25840_write4(client, DIF_BPF_COEFF3233, 0xfa9b0249);
2236 cx25840_write4(client, DIF_BPF_COEFF3435, 0x09ba0f19);
2237 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2238 break;
2239
2240 case 3900000:
2241 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000000);
2242 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffbfff0);
2243 cx25840_write4(client, DIF_BPF_COEFF45, 0xffdeffcf);
2244 cx25840_write4(client, DIF_BPF_COEFF67, 0xffd1fff6);
2245 cx25840_write4(client, DIF_BPF_COEFF89, 0x004800be);
2246 cx25840_write4(client, DIF_BPF_COEFF1011, 0x01390184);
2247 cx25840_write4(client, DIF_BPF_COEFF1213, 0x016300ac);
2248 cx25840_write4(client, DIF_BPF_COEFF1415, 0xff5efdb1);
2249 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc17fb23);
2250 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfb5cfd0d);
2251 cx25840_write4(client, DIF_BPF_COEFF2021, 0x001703e4);
2252 cx25840_write4(client, DIF_BPF_COEFF2223, 0x077b09c4);
2253 cx25840_write4(client, DIF_BPF_COEFF2425, 0x09d2073c);
2254 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0251fc18);
2255 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf61cf203);
2256 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf118f3dc);
2257 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf9d801aa);
2258 cx25840_write4(client, DIF_BPF_COEFF3435, 0x09600eff);
2259 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2260 break;
2261
2262 case 4000000:
2263 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000001);
2264 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffefff4);
2265 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe1ffc8);
2266 cx25840_write4(client, DIF_BPF_COEFF67, 0xffbaffca);
2267 cx25840_write4(client, DIF_BPF_COEFF89, 0x000b0082);
2268 cx25840_write4(client, DIF_BPF_COEFF1011, 0x01170198);
2269 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01c10152);
2270 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0030fe7b);
2271 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc99fb24);
2272 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfac3fbe9);
2273 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfea5027f);
2274 cx25840_write4(client, DIF_BPF_COEFF2223, 0x0683097f);
2275 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0a560867);
2276 cx25840_write4(client, DIF_BPF_COEFF2627, 0x03d2fd89);
2277 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf723f26f);
2278 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf0e8f341);
2279 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf919010a);
2280 cx25840_write4(client, DIF_BPF_COEFF3435, 0x09060ee5);
2281 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2282 break;
2283
2284 case 4100000:
2285 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010002);
2286 cx25840_write4(client, DIF_BPF_COEFF23, 0x0002fffb);
2287 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe8ffca);
2288 cx25840_write4(client, DIF_BPF_COEFF67, 0xffacffa4);
2289 cx25840_write4(client, DIF_BPF_COEFF89, 0xffcd0036);
2290 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00d70184);
2291 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01f601dc);
2292 cx25840_write4(client, DIF_BPF_COEFF1415, 0x00ffff60);
2293 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfd51fb6d);
2294 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfa6efaf5);
2295 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfd410103);
2296 cx25840_write4(client, DIF_BPF_COEFF2223, 0x055708f9);
2297 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0a9e0969);
2298 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0543ff02);
2299 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf842f2f5);
2300 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf0cef2b2);
2301 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf85e006b);
2302 cx25840_write4(client, DIF_BPF_COEFF3435, 0x08aa0ecb);
2303 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2304 break;
2305
2306 case 4200000:
2307 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010003);
2308 cx25840_write4(client, DIF_BPF_COEFF23, 0x00050003);
2309 cx25840_write4(client, DIF_BPF_COEFF45, 0xfff3ffd3);
2310 cx25840_write4(client, DIF_BPF_COEFF67, 0xffaaff8b);
2311 cx25840_write4(client, DIF_BPF_COEFF89, 0xff95ffe5);
2312 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0080014a);
2313 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01fe023f);
2314 cx25840_write4(client, DIF_BPF_COEFF1415, 0x01ba0050);
2315 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfe35fbf8);
2316 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfa62fa3b);
2317 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfbf9ff7e);
2318 cx25840_write4(client, DIF_BPF_COEFF2223, 0x04010836);
2319 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0aa90a3d);
2320 cx25840_write4(client, DIF_BPF_COEFF2627, 0x069f007f);
2321 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf975f395);
2322 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf0cbf231);
2323 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf7a9ffcb);
2324 cx25840_write4(client, DIF_BPF_COEFF3435, 0x084c0eaf);
2325 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2326 break;
2327
2328 case 4300000:
2329 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010003);
2330 cx25840_write4(client, DIF_BPF_COEFF23, 0x0008000a);
2331 cx25840_write4(client, DIF_BPF_COEFF45, 0x0000ffe4);
2332 cx25840_write4(client, DIF_BPF_COEFF67, 0xffb4ff81);
2333 cx25840_write4(client, DIF_BPF_COEFF89, 0xff6aff96);
2334 cx25840_write4(client, DIF_BPF_COEFF1011, 0x001c00f0);
2335 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01d70271);
2336 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0254013b);
2337 cx25840_write4(client, DIF_BPF_COEFF1617, 0xff36fcbd);
2338 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfa9ff9c5);
2339 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfadbfdfe);
2340 cx25840_write4(client, DIF_BPF_COEFF2223, 0x028c073b);
2341 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0a750adf);
2342 cx25840_write4(client, DIF_BPF_COEFF2627, 0x07e101fa);
2343 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfab8f44e);
2344 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf0ddf1be);
2345 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf6f9ff2b);
2346 cx25840_write4(client, DIF_BPF_COEFF3435, 0x07ed0e94);
2347 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2348 break;
2349
2350 case 4400000:
2351 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
2352 cx25840_write4(client, DIF_BPF_COEFF23, 0x0009000f);
2353 cx25840_write4(client, DIF_BPF_COEFF45, 0x000efff8);
2354 cx25840_write4(client, DIF_BPF_COEFF67, 0xffc9ff87);
2355 cx25840_write4(client, DIF_BPF_COEFF89, 0xff52ff54);
2356 cx25840_write4(client, DIF_BPF_COEFF1011, 0xffb5007e);
2357 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01860270);
2358 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02c00210);
2359 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0044fdb2);
2360 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfb22f997);
2361 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf9f2fc90);
2362 cx25840_write4(client, DIF_BPF_COEFF2223, 0x0102060f);
2363 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0a050b4c);
2364 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0902036e);
2365 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfc0af51e);
2366 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf106f15a);
2367 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf64efe8b);
2368 cx25840_write4(client, DIF_BPF_COEFF3435, 0x078d0e77);
2369 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2370 break;
2371
2372 case 4500000:
2373 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000002);
2374 cx25840_write4(client, DIF_BPF_COEFF23, 0x00080012);
2375 cx25840_write4(client, DIF_BPF_COEFF45, 0x0019000e);
2376 cx25840_write4(client, DIF_BPF_COEFF67, 0xffe5ff9e);
2377 cx25840_write4(client, DIF_BPF_COEFF89, 0xff4fff25);
2378 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff560000);
2379 cx25840_write4(client, DIF_BPF_COEFF1213, 0x0112023b);
2380 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02f702c0);
2381 cx25840_write4(client, DIF_BPF_COEFF1617, 0x014dfec8);
2382 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfbe5f9b3);
2383 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf947fb41);
2384 cx25840_write4(client, DIF_BPF_COEFF2223, 0xff7004b9);
2385 cx25840_write4(client, DIF_BPF_COEFF2425, 0x095a0b81);
2386 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0a0004d8);
2387 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfd65f603);
2388 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf144f104);
2389 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf5aafdec);
2390 cx25840_write4(client, DIF_BPF_COEFF3435, 0x072b0e5a);
2391 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2392 break;
2393
2394 case 4600000:
2395 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000001);
2396 cx25840_write4(client, DIF_BPF_COEFF23, 0x00060012);
2397 cx25840_write4(client, DIF_BPF_COEFF45, 0x00200022);
2398 cx25840_write4(client, DIF_BPF_COEFF67, 0x0005ffc1);
2399 cx25840_write4(client, DIF_BPF_COEFF89, 0xff61ff10);
2400 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff09ff82);
2401 cx25840_write4(client, DIF_BPF_COEFF1213, 0x008601d7);
2402 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02f50340);
2403 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0241fff0);
2404 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfcddfa19);
2405 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf8e2fa1e);
2406 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfde30343);
2407 cx25840_write4(client, DIF_BPF_COEFF2425, 0x08790b7f);
2408 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0ad50631);
2409 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfec7f6fc);
2410 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf198f0bd);
2411 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf50dfd4e);
2412 cx25840_write4(client, DIF_BPF_COEFF3435, 0x06c90e3d);
2413 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2414 break;
2415
2416 case 4700000:
2417 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000ffff);
2418 cx25840_write4(client, DIF_BPF_COEFF23, 0x0003000f);
2419 cx25840_write4(client, DIF_BPF_COEFF45, 0x00220030);
2420 cx25840_write4(client, DIF_BPF_COEFF67, 0x0025ffed);
2421 cx25840_write4(client, DIF_BPF_COEFF89, 0xff87ff15);
2422 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfed6ff10);
2423 cx25840_write4(client, DIF_BPF_COEFF1213, 0xffed014c);
2424 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02b90386);
2425 cx25840_write4(client, DIF_BPF_COEFF1617, 0x03110119);
2426 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfdfefac4);
2427 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf8c6f92f);
2428 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfc6701b7);
2429 cx25840_write4(client, DIF_BPF_COEFF2425, 0x07670b44);
2430 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0b7e0776);
2431 cx25840_write4(client, DIF_BPF_COEFF2829, 0x002df807);
2432 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf200f086);
2433 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf477fcb1);
2434 cx25840_write4(client, DIF_BPF_COEFF3435, 0x06650e1e);
2435 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2436 break;
2437
2438 case 4800000:
2439 cx25840_write4(client, DIF_BPF_COEFF01, 0xfffffffe);
2440 cx25840_write4(client, DIF_BPF_COEFF23, 0xffff0009);
2441 cx25840_write4(client, DIF_BPF_COEFF45, 0x001e0038);
2442 cx25840_write4(client, DIF_BPF_COEFF67, 0x003f001b);
2443 cx25840_write4(client, DIF_BPF_COEFF89, 0xffbcff36);
2444 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfec2feb6);
2445 cx25840_write4(client, DIF_BPF_COEFF1213, 0xff5600a5);
2446 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0248038d);
2447 cx25840_write4(client, DIF_BPF_COEFF1617, 0x03b00232);
2448 cx25840_write4(client, DIF_BPF_COEFF1819, 0xff39fbab);
2449 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf8f4f87f);
2450 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfb060020);
2451 cx25840_write4(client, DIF_BPF_COEFF2425, 0x062a0ad2);
2452 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0bf908a3);
2453 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0192f922);
2454 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf27df05e);
2455 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf3e8fc14);
2456 cx25840_write4(client, DIF_BPF_COEFF3435, 0x06000e00);
2457 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2458 break;
2459
2460 case 4900000:
2461 cx25840_write4(client, DIF_BPF_COEFF01, 0xfffffffd);
2462 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffc0002);
2463 cx25840_write4(client, DIF_BPF_COEFF45, 0x00160037);
2464 cx25840_write4(client, DIF_BPF_COEFF67, 0x00510046);
2465 cx25840_write4(client, DIF_BPF_COEFF89, 0xfff9ff6d);
2466 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfed0fe7c);
2467 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfecefff0);
2468 cx25840_write4(client, DIF_BPF_COEFF1415, 0x01aa0356);
2469 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0413032b);
2470 cx25840_write4(client, DIF_BPF_COEFF1819, 0x007ffcc5);
2471 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf96cf812);
2472 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf9cefe87);
2473 cx25840_write4(client, DIF_BPF_COEFF2425, 0x04c90a2c);
2474 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0c4309b4);
2475 cx25840_write4(client, DIF_BPF_COEFF2829, 0x02f3fa4a);
2476 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf30ef046);
2477 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf361fb7a);
2478 cx25840_write4(client, DIF_BPF_COEFF3435, 0x059b0de0);
2479 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2480 break;
2481
2482 case 5000000:
2483 cx25840_write4(client, DIF_BPF_COEFF01, 0xfffffffd);
2484 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff9fffa);
2485 cx25840_write4(client, DIF_BPF_COEFF45, 0x000a002d);
2486 cx25840_write4(client, DIF_BPF_COEFF67, 0x00570067);
2487 cx25840_write4(client, DIF_BPF_COEFF89, 0x0037ffb5);
2488 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfefffe68);
2489 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe62ff3d);
2490 cx25840_write4(client, DIF_BPF_COEFF1415, 0x00ec02e3);
2491 cx25840_write4(client, DIF_BPF_COEFF1617, 0x043503f6);
2492 cx25840_write4(client, DIF_BPF_COEFF1819, 0x01befe05);
2493 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfa27f7ee);
2494 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf8c6fcf8);
2495 cx25840_write4(client, DIF_BPF_COEFF2425, 0x034c0954);
2496 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0c5c0aa4);
2497 cx25840_write4(client, DIF_BPF_COEFF2829, 0x044cfb7e);
2498 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf3b1f03f);
2499 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf2e2fae1);
2500 cx25840_write4(client, DIF_BPF_COEFF3435, 0x05340dc0);
2501 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2502 break;
2503
2504 case 5100000:
2505 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
2506 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff8fff4);
2507 cx25840_write4(client, DIF_BPF_COEFF45, 0xfffd001e);
2508 cx25840_write4(client, DIF_BPF_COEFF67, 0x0051007b);
2509 cx25840_write4(client, DIF_BPF_COEFF89, 0x006e0006);
2510 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff48fe7c);
2511 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe1bfe9a);
2512 cx25840_write4(client, DIF_BPF_COEFF1415, 0x001d023e);
2513 cx25840_write4(client, DIF_BPF_COEFF1617, 0x04130488);
2514 cx25840_write4(client, DIF_BPF_COEFF1819, 0x02e6ff5b);
2515 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfb1ef812);
2516 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf7f7fb7f);
2517 cx25840_write4(client, DIF_BPF_COEFF2425, 0x01bc084e);
2518 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0c430b72);
2519 cx25840_write4(client, DIF_BPF_COEFF2829, 0x059afcba);
2520 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf467f046);
2521 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf26cfa4a);
2522 cx25840_write4(client, DIF_BPF_COEFF3435, 0x04cd0da0);
2523 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2524 break;
2525
2526 case 5200000:
2527 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffe);
2528 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff8ffef);
2529 cx25840_write4(client, DIF_BPF_COEFF45, 0xfff00009);
2530 cx25840_write4(client, DIF_BPF_COEFF67, 0x003f007f);
2531 cx25840_write4(client, DIF_BPF_COEFF89, 0x00980056);
2532 cx25840_write4(client, DIF_BPF_COEFF1011, 0xffa5feb6);
2533 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe00fe15);
2534 cx25840_write4(client, DIF_BPF_COEFF1415, 0xff4b0170);
2535 cx25840_write4(client, DIF_BPF_COEFF1617, 0x03b004d7);
2536 cx25840_write4(client, DIF_BPF_COEFF1819, 0x03e800b9);
2537 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfc48f87f);
2538 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf768fa23);
2539 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0022071f);
2540 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0bf90c1b);
2541 cx25840_write4(client, DIF_BPF_COEFF2829, 0x06dafdfd);
2542 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf52df05e);
2543 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf1fef9b5);
2544 cx25840_write4(client, DIF_BPF_COEFF3435, 0x04640d7f);
2545 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2546 break;
2547
2548 case 5300000:
2549 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000ffff);
2550 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff9ffee);
2551 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe6fff3);
2552 cx25840_write4(client, DIF_BPF_COEFF67, 0x00250072);
2553 cx25840_write4(client, DIF_BPF_COEFF89, 0x00af009c);
2554 cx25840_write4(client, DIF_BPF_COEFF1011, 0x000cff10);
2555 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe13fdb8);
2556 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfe870089);
2557 cx25840_write4(client, DIF_BPF_COEFF1617, 0x031104e1);
2558 cx25840_write4(client, DIF_BPF_COEFF1819, 0x04b8020f);
2559 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfd98f92f);
2560 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf71df8f0);
2561 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfe8805ce);
2562 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0b7e0c9c);
2563 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0808ff44);
2564 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf603f086);
2565 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf19af922);
2566 cx25840_write4(client, DIF_BPF_COEFF3435, 0x03fb0d5e);
2567 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2568 break;
2569
2570 case 5400000:
2571 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000001);
2572 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffcffef);
2573 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe0ffe0);
2574 cx25840_write4(client, DIF_BPF_COEFF67, 0x00050056);
2575 cx25840_write4(client, DIF_BPF_COEFF89, 0x00b000d1);
2576 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0071ff82);
2577 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe53fd8c);
2578 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfddfff99);
2579 cx25840_write4(client, DIF_BPF_COEFF1617, 0x024104a3);
2580 cx25840_write4(client, DIF_BPF_COEFF1819, 0x054a034d);
2581 cx25840_write4(client, DIF_BPF_COEFF2021, 0xff01fa1e);
2582 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf717f7ed);
2583 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfcf50461);
2584 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0ad50cf4);
2585 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0921008d);
2586 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf6e7f0bd);
2587 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf13ff891);
2588 cx25840_write4(client, DIF_BPF_COEFF3435, 0x03920d3b);
2589 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2590 break;
2591
2592 case 5500000:
2593 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010002);
2594 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffffff3);
2595 cx25840_write4(client, DIF_BPF_COEFF45, 0xffdeffd1);
2596 cx25840_write4(client, DIF_BPF_COEFF67, 0xffe5002f);
2597 cx25840_write4(client, DIF_BPF_COEFF89, 0x009c00ed);
2598 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00cb0000);
2599 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfebafd94);
2600 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd61feb0);
2601 cx25840_write4(client, DIF_BPF_COEFF1617, 0x014d0422);
2602 cx25840_write4(client, DIF_BPF_COEFF1819, 0x05970464);
2603 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0074fb41);
2604 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf759f721);
2605 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfb7502de);
2606 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0a000d21);
2607 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0a2201d4);
2608 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf7d9f104);
2609 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf0edf804);
2610 cx25840_write4(client, DIF_BPF_COEFF3435, 0x03280d19);
2611 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2612 break;
2613
2614 case 5600000:
2615 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010003);
2616 cx25840_write4(client, DIF_BPF_COEFF23, 0x0003fffa);
2617 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe3ffc9);
2618 cx25840_write4(client, DIF_BPF_COEFF67, 0xffc90002);
2619 cx25840_write4(client, DIF_BPF_COEFF89, 0x007500ef);
2620 cx25840_write4(client, DIF_BPF_COEFF1011, 0x010e007e);
2621 cx25840_write4(client, DIF_BPF_COEFF1213, 0xff3dfdcf);
2622 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd16fddd);
2623 cx25840_write4(client, DIF_BPF_COEFF1617, 0x00440365);
2624 cx25840_write4(client, DIF_BPF_COEFF1819, 0x059b0548);
2625 cx25840_write4(client, DIF_BPF_COEFF2021, 0x01e3fc90);
2626 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf7dff691);
2627 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfa0f014d);
2628 cx25840_write4(client, DIF_BPF_COEFF2627, 0x09020d23);
2629 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0b0a0318);
2630 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf8d7f15a);
2631 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf0a5f779);
2632 cx25840_write4(client, DIF_BPF_COEFF3435, 0x02bd0cf6);
2633 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2634 break;
2635
2636 case 5700000:
2637 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010003);
2638 cx25840_write4(client, DIF_BPF_COEFF23, 0x00060001);
2639 cx25840_write4(client, DIF_BPF_COEFF45, 0xffecffc9);
2640 cx25840_write4(client, DIF_BPF_COEFF67, 0xffb4ffd4);
2641 cx25840_write4(client, DIF_BPF_COEFF89, 0x004000d5);
2642 cx25840_write4(client, DIF_BPF_COEFF1011, 0x013600f0);
2643 cx25840_write4(client, DIF_BPF_COEFF1213, 0xffd3fe39);
2644 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd04fd31);
2645 cx25840_write4(client, DIF_BPF_COEFF1617, 0xff360277);
2646 cx25840_write4(client, DIF_BPF_COEFF1819, 0x055605ef);
2647 cx25840_write4(client, DIF_BPF_COEFF2021, 0x033efdfe);
2648 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf8a5f642);
2649 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf8cbffb6);
2650 cx25840_write4(client, DIF_BPF_COEFF2627, 0x07e10cfb);
2651 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0bd50456);
2652 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf9dff1be);
2653 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf067f6f2);
2654 cx25840_write4(client, DIF_BPF_COEFF3435, 0x02520cd2);
2655 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2656 break;
2657
2658 case 5800000:
2659 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
2660 cx25840_write4(client, DIF_BPF_COEFF23, 0x00080009);
2661 cx25840_write4(client, DIF_BPF_COEFF45, 0xfff8ffd2);
2662 cx25840_write4(client, DIF_BPF_COEFF67, 0xffaaffac);
2663 cx25840_write4(client, DIF_BPF_COEFF89, 0x000200a3);
2664 cx25840_write4(client, DIF_BPF_COEFF1011, 0x013c014a);
2665 cx25840_write4(client, DIF_BPF_COEFF1213, 0x006dfec9);
2666 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd2bfcb7);
2667 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfe350165);
2668 cx25840_write4(client, DIF_BPF_COEFF1819, 0x04cb0651);
2669 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0477ff7e);
2670 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf9a5f635);
2671 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf7b1fe20);
2672 cx25840_write4(client, DIF_BPF_COEFF2627, 0x069f0ca8);
2673 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0c81058b);
2674 cx25840_write4(client, DIF_BPF_COEFF3031, 0xfaf0f231);
2675 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf033f66d);
2676 cx25840_write4(client, DIF_BPF_COEFF3435, 0x01e60cae);
2677 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2678 break;
2679
2680 case 5900000:
2681 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000002);
2682 cx25840_write4(client, DIF_BPF_COEFF23, 0x0009000e);
2683 cx25840_write4(client, DIF_BPF_COEFF45, 0x0005ffe1);
2684 cx25840_write4(client, DIF_BPF_COEFF67, 0xffacff90);
2685 cx25840_write4(client, DIF_BPF_COEFF89, 0xffc5005f);
2686 cx25840_write4(client, DIF_BPF_COEFF1011, 0x01210184);
2687 cx25840_write4(client, DIF_BPF_COEFF1213, 0x00fcff72);
2688 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd8afc77);
2689 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfd51003f);
2690 cx25840_write4(client, DIF_BPF_COEFF1819, 0x04020669);
2691 cx25840_write4(client, DIF_BPF_COEFF2021, 0x05830103);
2692 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfad7f66b);
2693 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf6c8fc93);
2694 cx25840_write4(client, DIF_BPF_COEFF2627, 0x05430c2b);
2695 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0d0d06b5);
2696 cx25840_write4(client, DIF_BPF_COEFF3031, 0xfc08f2b2);
2697 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf00af5ec);
2698 cx25840_write4(client, DIF_BPF_COEFF3435, 0x017b0c89);
2699 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2700 break;
2701
2702 case 6000000:
2703 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000001);
2704 cx25840_write4(client, DIF_BPF_COEFF23, 0x00070012);
2705 cx25840_write4(client, DIF_BPF_COEFF45, 0x0012fff5);
2706 cx25840_write4(client, DIF_BPF_COEFF67, 0xffbaff82);
2707 cx25840_write4(client, DIF_BPF_COEFF89, 0xff8e000f);
2708 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00e80198);
2709 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01750028);
2710 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfe18fc75);
2711 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc99ff15);
2712 cx25840_write4(client, DIF_BPF_COEFF1819, 0x03050636);
2713 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0656027f);
2714 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfc32f6e2);
2715 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf614fb17);
2716 cx25840_write4(client, DIF_BPF_COEFF2627, 0x03d20b87);
2717 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0d7707d2);
2718 cx25840_write4(client, DIF_BPF_COEFF3031, 0xfd26f341);
2719 cx25840_write4(client, DIF_BPF_COEFF3233, 0xefeaf56f);
2720 cx25840_write4(client, DIF_BPF_COEFF3435, 0x010f0c64);
2721 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2722 break;
2723
2724 case 6100000:
2725 cx25840_write4(client, DIF_BPF_COEFF01, 0xffff0000);
2726 cx25840_write4(client, DIF_BPF_COEFF23, 0x00050012);
2727 cx25840_write4(client, DIF_BPF_COEFF45, 0x001c000b);
2728 cx25840_write4(client, DIF_BPF_COEFF67, 0xffd1ff84);
2729 cx25840_write4(client, DIF_BPF_COEFF89, 0xff66ffbe);
2730 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00960184);
2731 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01cd00da);
2732 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfeccfcb2);
2733 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc17fdf9);
2734 cx25840_write4(client, DIF_BPF_COEFF1819, 0x01e005bc);
2735 cx25840_write4(client, DIF_BPF_COEFF2021, 0x06e703e4);
2736 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfdabf798);
2737 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf599f9b3);
2738 cx25840_write4(client, DIF_BPF_COEFF2627, 0x02510abd);
2739 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0dbf08df);
2740 cx25840_write4(client, DIF_BPF_COEFF3031, 0xfe48f3dc);
2741 cx25840_write4(client, DIF_BPF_COEFF3233, 0xefd5f4f6);
2742 cx25840_write4(client, DIF_BPF_COEFF3435, 0x00a20c3e);
2743 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2744 break;
2745
2746 case 6200000:
2747 cx25840_write4(client, DIF_BPF_COEFF01, 0xfffffffe);
2748 cx25840_write4(client, DIF_BPF_COEFF23, 0x0002000f);
2749 cx25840_write4(client, DIF_BPF_COEFF45, 0x0021001f);
2750 cx25840_write4(client, DIF_BPF_COEFF67, 0xfff0ff97);
2751 cx25840_write4(client, DIF_BPF_COEFF89, 0xff50ff74);
2752 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0034014a);
2753 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01fa0179);
2754 cx25840_write4(client, DIF_BPF_COEFF1415, 0xff97fd2a);
2755 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfbd3fcfa);
2756 cx25840_write4(client, DIF_BPF_COEFF1819, 0x00a304fe);
2757 cx25840_write4(client, DIF_BPF_COEFF2021, 0x07310525);
2758 cx25840_write4(client, DIF_BPF_COEFF2223, 0xff37f886);
2759 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf55cf86e);
2760 cx25840_write4(client, DIF_BPF_COEFF2627, 0x00c709d0);
2761 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0de209db);
2762 cx25840_write4(client, DIF_BPF_COEFF3031, 0xff6df484);
2763 cx25840_write4(client, DIF_BPF_COEFF3233, 0xefcbf481);
2764 cx25840_write4(client, DIF_BPF_COEFF3435, 0x00360c18);
2765 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2766 break;
2767
2768 case 6300000:
2769 cx25840_write4(client, DIF_BPF_COEFF01, 0xfffffffd);
2770 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffe000a);
2771 cx25840_write4(client, DIF_BPF_COEFF45, 0x0021002f);
2772 cx25840_write4(client, DIF_BPF_COEFF67, 0x0010ffb8);
2773 cx25840_write4(client, DIF_BPF_COEFF89, 0xff50ff3b);
2774 cx25840_write4(client, DIF_BPF_COEFF1011, 0xffcc00f0);
2775 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01fa01fa);
2776 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0069fdd4);
2777 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfbd3fc26);
2778 cx25840_write4(client, DIF_BPF_COEFF1819, 0xff5d0407);
2779 cx25840_write4(client, DIF_BPF_COEFF2021, 0x07310638);
2780 cx25840_write4(client, DIF_BPF_COEFF2223, 0x00c9f9a8);
2781 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf55cf74e);
2782 cx25840_write4(client, DIF_BPF_COEFF2627, 0xff3908c3);
2783 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0de20ac3);
2784 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0093f537);
2785 cx25840_write4(client, DIF_BPF_COEFF3233, 0xefcbf410);
2786 cx25840_write4(client, DIF_BPF_COEFF3435, 0xffca0bf2);
2787 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2788 break;
2789
2790 case 6400000:
2791 cx25840_write4(client, DIF_BPF_COEFF01, 0xfffffffd);
2792 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffb0003);
2793 cx25840_write4(client, DIF_BPF_COEFF45, 0x001c0037);
2794 cx25840_write4(client, DIF_BPF_COEFF67, 0x002fffe2);
2795 cx25840_write4(client, DIF_BPF_COEFF89, 0xff66ff17);
2796 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff6a007e);
2797 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01cd0251);
2798 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0134fea5);
2799 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc17fb8b);
2800 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfe2002e0);
2801 cx25840_write4(client, DIF_BPF_COEFF2021, 0x06e70713);
2802 cx25840_write4(client, DIF_BPF_COEFF2223, 0x0255faf5);
2803 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf599f658);
2804 cx25840_write4(client, DIF_BPF_COEFF2627, 0xfdaf0799);
2805 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0dbf0b96);
2806 cx25840_write4(client, DIF_BPF_COEFF3031, 0x01b8f5f5);
2807 cx25840_write4(client, DIF_BPF_COEFF3233, 0xefd5f3a3);
2808 cx25840_write4(client, DIF_BPF_COEFF3435, 0xff5e0bca);
2809 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2810 break;
2811
2812 case 6500000:
2813 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
2814 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff9fffb);
2815 cx25840_write4(client, DIF_BPF_COEFF45, 0x00120037);
2816 cx25840_write4(client, DIF_BPF_COEFF67, 0x00460010);
2817 cx25840_write4(client, DIF_BPF_COEFF89, 0xff8eff0f);
2818 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff180000);
2819 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01750276);
2820 cx25840_write4(client, DIF_BPF_COEFF1415, 0x01e8ff8d);
2821 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc99fb31);
2822 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfcfb0198);
2823 cx25840_write4(client, DIF_BPF_COEFF2021, 0x065607ad);
2824 cx25840_write4(client, DIF_BPF_COEFF2223, 0x03cefc64);
2825 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf614f592);
2826 cx25840_write4(client, DIF_BPF_COEFF2627, 0xfc2e0656);
2827 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0d770c52);
2828 cx25840_write4(client, DIF_BPF_COEFF3031, 0x02daf6bd);
2829 cx25840_write4(client, DIF_BPF_COEFF3233, 0xefeaf33b);
2830 cx25840_write4(client, DIF_BPF_COEFF3435, 0xfef10ba3);
2831 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2832 break;
2833
2834 case 6600000:
2835 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffe);
2836 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff7fff5);
2837 cx25840_write4(client, DIF_BPF_COEFF45, 0x0005002f);
2838 cx25840_write4(client, DIF_BPF_COEFF67, 0x0054003c);
2839 cx25840_write4(client, DIF_BPF_COEFF89, 0xffc5ff22);
2840 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfedfff82);
2841 cx25840_write4(client, DIF_BPF_COEFF1213, 0x00fc0267);
2842 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0276007e);
2843 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfd51fb1c);
2844 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfbfe003e);
2845 cx25840_write4(client, DIF_BPF_COEFF2021, 0x05830802);
2846 cx25840_write4(client, DIF_BPF_COEFF2223, 0x0529fdec);
2847 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf6c8f4fe);
2848 cx25840_write4(client, DIF_BPF_COEFF2627, 0xfabd04ff);
2849 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0d0d0cf6);
2850 cx25840_write4(client, DIF_BPF_COEFF3031, 0x03f8f78f);
2851 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf00af2d7);
2852 cx25840_write4(client, DIF_BPF_COEFF3435, 0xfe850b7b);
2853 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2854 break;
2855
2856 case 6700000:
2857 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000ffff);
2858 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff8fff0);
2859 cx25840_write4(client, DIF_BPF_COEFF45, 0xfff80020);
2860 cx25840_write4(client, DIF_BPF_COEFF67, 0x00560060);
2861 cx25840_write4(client, DIF_BPF_COEFF89, 0x0002ff4e);
2862 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfec4ff10);
2863 cx25840_write4(client, DIF_BPF_COEFF1213, 0x006d0225);
2864 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02d50166);
2865 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfe35fb4e);
2866 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfb35fee1);
2867 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0477080e);
2868 cx25840_write4(client, DIF_BPF_COEFF2223, 0x065bff82);
2869 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf7b1f4a0);
2870 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf9610397);
2871 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0c810d80);
2872 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0510f869);
2873 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf033f278);
2874 cx25840_write4(client, DIF_BPF_COEFF3435, 0xfe1a0b52);
2875 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2876 break;
2877
2878 case 6800000:
2879 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010000);
2880 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffaffee);
2881 cx25840_write4(client, DIF_BPF_COEFF45, 0xffec000c);
2882 cx25840_write4(client, DIF_BPF_COEFF67, 0x004c0078);
2883 cx25840_write4(client, DIF_BPF_COEFF89, 0x0040ff8e);
2884 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfecafeb6);
2885 cx25840_write4(client, DIF_BPF_COEFF1213, 0xffd301b6);
2886 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02fc0235);
2887 cx25840_write4(client, DIF_BPF_COEFF1617, 0xff36fbc5);
2888 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfaaafd90);
2889 cx25840_write4(client, DIF_BPF_COEFF2021, 0x033e07d2);
2890 cx25840_write4(client, DIF_BPF_COEFF2223, 0x075b011b);
2891 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf8cbf47a);
2892 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf81f0224);
2893 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0bd50def);
2894 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0621f94b);
2895 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf067f21e);
2896 cx25840_write4(client, DIF_BPF_COEFF3435, 0xfdae0b29);
2897 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2898 break;
2899
2900 case 6900000:
2901 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010001);
2902 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffdffef);
2903 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe3fff6);
2904 cx25840_write4(client, DIF_BPF_COEFF67, 0x0037007f);
2905 cx25840_write4(client, DIF_BPF_COEFF89, 0x0075ffdc);
2906 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfef2fe7c);
2907 cx25840_write4(client, DIF_BPF_COEFF1213, 0xff3d0122);
2908 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02ea02dd);
2909 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0044fc79);
2910 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfa65fc5d);
2911 cx25840_write4(client, DIF_BPF_COEFF2021, 0x01e3074e);
2912 cx25840_write4(client, DIF_BPF_COEFF2223, 0x082102ad);
2913 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfa0ff48c);
2914 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf6fe00a9);
2915 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0b0a0e43);
2916 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0729fa33);
2917 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf0a5f1c9);
2918 cx25840_write4(client, DIF_BPF_COEFF3435, 0xfd430b00);
2919 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2920 break;
2921
2922 case 7000000:
2923 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010002);
2924 cx25840_write4(client, DIF_BPF_COEFF23, 0x0001fff3);
2925 cx25840_write4(client, DIF_BPF_COEFF45, 0xffdeffe2);
2926 cx25840_write4(client, DIF_BPF_COEFF67, 0x001b0076);
2927 cx25840_write4(client, DIF_BPF_COEFF89, 0x009c002d);
2928 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff35fe68);
2929 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfeba0076);
2930 cx25840_write4(client, DIF_BPF_COEFF1415, 0x029f0352);
2931 cx25840_write4(client, DIF_BPF_COEFF1617, 0x014dfd60);
2932 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfa69fb53);
2933 cx25840_write4(client, DIF_BPF_COEFF2021, 0x00740688);
2934 cx25840_write4(client, DIF_BPF_COEFF2223, 0x08a7042d);
2935 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfb75f4d6);
2936 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf600ff2d);
2937 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0a220e7a);
2938 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0827fb22);
2939 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf0edf17a);
2940 cx25840_write4(client, DIF_BPF_COEFF3435, 0xfcd80ad6);
2941 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2942 break;
2943
2944 case 7100000:
2945 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
2946 cx25840_write4(client, DIF_BPF_COEFF23, 0x0004fff9);
2947 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe0ffd2);
2948 cx25840_write4(client, DIF_BPF_COEFF67, 0xfffb005e);
2949 cx25840_write4(client, DIF_BPF_COEFF89, 0x00b0007a);
2950 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff8ffe7c);
2951 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe53ffc1);
2952 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0221038c);
2953 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0241fe6e);
2954 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfab6fa80);
2955 cx25840_write4(client, DIF_BPF_COEFF2021, 0xff010587);
2956 cx25840_write4(client, DIF_BPF_COEFF2223, 0x08e90590);
2957 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfcf5f556);
2958 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf52bfdb3);
2959 cx25840_write4(client, DIF_BPF_COEFF2829, 0x09210e95);
2960 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0919fc15);
2961 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf13ff12f);
2962 cx25840_write4(client, DIF_BPF_COEFF3435, 0xfc6e0aab);
2963 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2964 break;
2965
2966 case 7200000:
2967 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
2968 cx25840_write4(client, DIF_BPF_COEFF23, 0x00070000);
2969 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe6ffc9);
2970 cx25840_write4(client, DIF_BPF_COEFF67, 0xffdb0039);
2971 cx25840_write4(client, DIF_BPF_COEFF89, 0x00af00b8);
2972 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfff4feb6);
2973 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe13ff10);
2974 cx25840_write4(client, DIF_BPF_COEFF1415, 0x01790388);
2975 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0311ff92);
2976 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfb48f9ed);
2977 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfd980453);
2978 cx25840_write4(client, DIF_BPF_COEFF2223, 0x08e306cd);
2979 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfe88f60a);
2980 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf482fc40);
2981 cx25840_write4(client, DIF_BPF_COEFF2829, 0x08080e93);
2982 cx25840_write4(client, DIF_BPF_COEFF3031, 0x09fdfd0c);
2983 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf19af0ea);
2984 cx25840_write4(client, DIF_BPF_COEFF3435, 0xfc050a81);
2985 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
2986 break;
2987
2988 case 7300000:
2989 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000002);
2990 cx25840_write4(client, DIF_BPF_COEFF23, 0x00080008);
2991 cx25840_write4(client, DIF_BPF_COEFF45, 0xfff0ffc9);
2992 cx25840_write4(client, DIF_BPF_COEFF67, 0xffc1000d);
2993 cx25840_write4(client, DIF_BPF_COEFF89, 0x009800e2);
2994 cx25840_write4(client, DIF_BPF_COEFF1011, 0x005bff10);
2995 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe00fe74);
2996 cx25840_write4(client, DIF_BPF_COEFF1415, 0x00b50345);
2997 cx25840_write4(client, DIF_BPF_COEFF1617, 0x03b000bc);
2998 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfc18f9a1);
2999 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfc4802f9);
3000 cx25840_write4(client, DIF_BPF_COEFF2223, 0x089807dc);
3001 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0022f6f0);
3002 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf407fada);
3003 cx25840_write4(client, DIF_BPF_COEFF2829, 0x06da0e74);
3004 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0ad3fe06);
3005 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf1fef0ab);
3006 cx25840_write4(client, DIF_BPF_COEFF3435, 0xfb9c0a55);
3007 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3008 break;
3009
3010 case 7400000:
3011 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000001);
3012 cx25840_write4(client, DIF_BPF_COEFF23, 0x0008000e);
3013 cx25840_write4(client, DIF_BPF_COEFF45, 0xfffdffd0);
3014 cx25840_write4(client, DIF_BPF_COEFF67, 0xffafffdf);
3015 cx25840_write4(client, DIF_BPF_COEFF89, 0x006e00f2);
3016 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00b8ff82);
3017 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe1bfdf8);
3018 cx25840_write4(client, DIF_BPF_COEFF1415, 0xffe302c8);
3019 cx25840_write4(client, DIF_BPF_COEFF1617, 0x041301dc);
3020 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfd1af99e);
3021 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfb1e0183);
3022 cx25840_write4(client, DIF_BPF_COEFF2223, 0x080908b5);
3023 cx25840_write4(client, DIF_BPF_COEFF2425, 0x01bcf801);
3024 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf3bdf985);
3025 cx25840_write4(client, DIF_BPF_COEFF2829, 0x059a0e38);
3026 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0b99ff03);
3027 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf26cf071);
3028 cx25840_write4(client, DIF_BPF_COEFF3435, 0xfb330a2a);
3029 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3030 break;
3031
3032 case 7500000:
3033 cx25840_write4(client, DIF_BPF_COEFF01, 0xffff0000);
3034 cx25840_write4(client, DIF_BPF_COEFF23, 0x00070011);
3035 cx25840_write4(client, DIF_BPF_COEFF45, 0x000affdf);
3036 cx25840_write4(client, DIF_BPF_COEFF67, 0xffa9ffb5);
3037 cx25840_write4(client, DIF_BPF_COEFF89, 0x003700e6);
3038 cx25840_write4(client, DIF_BPF_COEFF1011, 0x01010000);
3039 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe62fda8);
3040 cx25840_write4(client, DIF_BPF_COEFF1415, 0xff140219);
3041 cx25840_write4(client, DIF_BPF_COEFF1617, 0x043502e1);
3042 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfe42f9e6);
3043 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfa270000);
3044 cx25840_write4(client, DIF_BPF_COEFF2223, 0x073a0953);
3045 cx25840_write4(client, DIF_BPF_COEFF2425, 0x034cf939);
3046 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf3a4f845);
3047 cx25840_write4(client, DIF_BPF_COEFF2829, 0x044c0de1);
3048 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0c4f0000);
3049 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf2e2f03c);
3050 cx25840_write4(client, DIF_BPF_COEFF3435, 0xfacc09fe);
3051 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3052 break;
3053
3054 case 7600000:
3055 cx25840_write4(client, DIF_BPF_COEFF01, 0xffffffff);
3056 cx25840_write4(client, DIF_BPF_COEFF23, 0x00040012);
3057 cx25840_write4(client, DIF_BPF_COEFF45, 0x0016fff3);
3058 cx25840_write4(client, DIF_BPF_COEFF67, 0xffafff95);
3059 cx25840_write4(client, DIF_BPF_COEFF89, 0xfff900c0);
3060 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0130007e);
3061 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfecefd89);
3062 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfe560146);
3063 cx25840_write4(client, DIF_BPF_COEFF1617, 0x041303bc);
3064 cx25840_write4(client, DIF_BPF_COEFF1819, 0xff81fa76);
3065 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf96cfe7d);
3066 cx25840_write4(client, DIF_BPF_COEFF2223, 0x063209b1);
3067 cx25840_write4(client, DIF_BPF_COEFF2425, 0x04c9fa93);
3068 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf3bdf71e);
3069 cx25840_write4(client, DIF_BPF_COEFF2829, 0x02f30d6e);
3070 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0cf200fd);
3071 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf361f00e);
3072 cx25840_write4(client, DIF_BPF_COEFF3435, 0xfa6509d1);
3073 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3074 break;
3075
3076 case 7700000:
3077 cx25840_write4(client, DIF_BPF_COEFF01, 0xfffffffe);
3078 cx25840_write4(client, DIF_BPF_COEFF23, 0x00010010);
3079 cx25840_write4(client, DIF_BPF_COEFF45, 0x001e0008);
3080 cx25840_write4(client, DIF_BPF_COEFF67, 0xffc1ff84);
3081 cx25840_write4(client, DIF_BPF_COEFF89, 0xffbc0084);
3082 cx25840_write4(client, DIF_BPF_COEFF1011, 0x013e00f0);
3083 cx25840_write4(client, DIF_BPF_COEFF1213, 0xff56fd9f);
3084 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfdb8005c);
3085 cx25840_write4(client, DIF_BPF_COEFF1617, 0x03b00460);
3086 cx25840_write4(client, DIF_BPF_COEFF1819, 0x00c7fb45);
3087 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf8f4fd07);
3088 cx25840_write4(client, DIF_BPF_COEFF2223, 0x04fa09ce);
3089 cx25840_write4(client, DIF_BPF_COEFF2425, 0x062afc07);
3090 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf407f614);
3091 cx25840_write4(client, DIF_BPF_COEFF2829, 0x01920ce0);
3092 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0d8301fa);
3093 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf3e8efe5);
3094 cx25840_write4(client, DIF_BPF_COEFF3435, 0xfa0009a4);
3095 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3096 break;
3097
3098 case 7800000:
3099 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
3100 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffd000b);
3101 cx25840_write4(client, DIF_BPF_COEFF45, 0x0022001d);
3102 cx25840_write4(client, DIF_BPF_COEFF67, 0xffdbff82);
3103 cx25840_write4(client, DIF_BPF_COEFF89, 0xff870039);
3104 cx25840_write4(client, DIF_BPF_COEFF1011, 0x012a014a);
3105 cx25840_write4(client, DIF_BPF_COEFF1213, 0xffedfde7);
3106 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd47ff6b);
3107 cx25840_write4(client, DIF_BPF_COEFF1617, 0x031104c6);
3108 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0202fc4c);
3109 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf8c6fbad);
3110 cx25840_write4(client, DIF_BPF_COEFF2223, 0x039909a7);
3111 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0767fd8e);
3112 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf482f52b);
3113 cx25840_write4(client, DIF_BPF_COEFF2829, 0x002d0c39);
3114 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0e0002f4);
3115 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf477efc2);
3116 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf99b0977);
3117 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3118 break;
3119
3120 case 7900000:
3121 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
3122 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffa0004);
3123 cx25840_write4(client, DIF_BPF_COEFF45, 0x0020002d);
3124 cx25840_write4(client, DIF_BPF_COEFF67, 0xfffbff91);
3125 cx25840_write4(client, DIF_BPF_COEFF89, 0xff61ffe8);
3126 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00f70184);
3127 cx25840_write4(client, DIF_BPF_COEFF1213, 0x0086fe5c);
3128 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd0bfe85);
3129 cx25840_write4(client, DIF_BPF_COEFF1617, 0x024104e5);
3130 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0323fd7d);
3131 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf8e2fa79);
3132 cx25840_write4(client, DIF_BPF_COEFF2223, 0x021d093f);
3133 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0879ff22);
3134 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf52bf465);
3135 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfec70b79);
3136 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0e6803eb);
3137 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf50defa5);
3138 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf937094a);
3139 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3140 break;
3141
3142 case 8000000:
3143 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffe);
3144 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff8fffd);
3145 cx25840_write4(client, DIF_BPF_COEFF45, 0x00190036);
3146 cx25840_write4(client, DIF_BPF_COEFF67, 0x001bffaf);
3147 cx25840_write4(client, DIF_BPF_COEFF89, 0xff4fff99);
3148 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00aa0198);
3149 cx25840_write4(client, DIF_BPF_COEFF1213, 0x0112fef3);
3150 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd09fdb9);
3151 cx25840_write4(client, DIF_BPF_COEFF1617, 0x014d04be);
3152 cx25840_write4(client, DIF_BPF_COEFF1819, 0x041bfecc);
3153 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf947f978);
3154 cx25840_write4(client, DIF_BPF_COEFF2223, 0x00900897);
3155 cx25840_write4(client, DIF_BPF_COEFF2425, 0x095a00b9);
3156 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf600f3c5);
3157 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfd650aa3);
3158 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0ebc04de);
3159 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf5aaef8e);
3160 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf8d5091c);
3161 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3162 break;
3163
3164 case 8100000:
3165 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000ffff);
3166 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff7fff6);
3167 cx25840_write4(client, DIF_BPF_COEFF45, 0x000e0038);
3168 cx25840_write4(client, DIF_BPF_COEFF67, 0x0037ffd7);
3169 cx25840_write4(client, DIF_BPF_COEFF89, 0xff52ff56);
3170 cx25840_write4(client, DIF_BPF_COEFF1011, 0x004b0184);
3171 cx25840_write4(client, DIF_BPF_COEFF1213, 0x0186ffa1);
3172 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd40fd16);
3173 cx25840_write4(client, DIF_BPF_COEFF1617, 0x00440452);
3174 cx25840_write4(client, DIF_BPF_COEFF1819, 0x04de0029);
3175 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf9f2f8b2);
3176 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfefe07b5);
3177 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0a05024d);
3178 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf6fef34d);
3179 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfc0a09b8);
3180 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0efa05cd);
3181 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf64eef7d);
3182 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf87308ed);
3183 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3184 break;
3185
3186 case 8200000:
3187 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010000);
3188 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff8fff0);
3189 cx25840_write4(client, DIF_BPF_COEFF45, 0x00000031);
3190 cx25840_write4(client, DIF_BPF_COEFF67, 0x004c0005);
3191 cx25840_write4(client, DIF_BPF_COEFF89, 0xff6aff27);
3192 cx25840_write4(client, DIF_BPF_COEFF1011, 0xffe4014a);
3193 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01d70057);
3194 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfdacfca6);
3195 cx25840_write4(client, DIF_BPF_COEFF1617, 0xff3603a7);
3196 cx25840_write4(client, DIF_BPF_COEFF1819, 0x05610184);
3197 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfadbf82e);
3198 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfd74069f);
3199 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0a7503d6);
3200 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf81ff2ff);
3201 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfab808b9);
3202 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0f2306b5);
3203 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf6f9ef72);
3204 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf81308bf);
3205 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3206 break;
3207
3208 case 8300000:
3209 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010001);
3210 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffbffee);
3211 cx25840_write4(client, DIF_BPF_COEFF45, 0xfff30022);
3212 cx25840_write4(client, DIF_BPF_COEFF67, 0x00560032);
3213 cx25840_write4(client, DIF_BPF_COEFF89, 0xff95ff10);
3214 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff8000f0);
3215 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01fe0106);
3216 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfe46fc71);
3217 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfe3502c7);
3218 cx25840_write4(client, DIF_BPF_COEFF1819, 0x059e02ce);
3219 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfbf9f7f2);
3220 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfbff055b);
3221 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0aa9054c);
3222 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf961f2db);
3223 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf97507aa);
3224 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0f350797);
3225 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf7a9ef6d);
3226 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf7b40890);
3227 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3228 break;
3229
3230 case 8400000:
3231 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010002);
3232 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffeffee);
3233 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe8000f);
3234 cx25840_write4(client, DIF_BPF_COEFF67, 0x00540058);
3235 cx25840_write4(client, DIF_BPF_COEFF89, 0xffcdff14);
3236 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff29007e);
3237 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01f6019e);
3238 cx25840_write4(client, DIF_BPF_COEFF1415, 0xff01fc7c);
3239 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfd5101bf);
3240 cx25840_write4(client, DIF_BPF_COEFF1819, 0x059203f6);
3241 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfd41f7fe);
3242 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfaa903f3);
3243 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0a9e06a9);
3244 cx25840_write4(client, DIF_BPF_COEFF2627, 0xfabdf2e2);
3245 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf842068b);
3246 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0f320871);
3247 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf85eef6e);
3248 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf7560860);
3249 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3250 break;
3251
3252 case 8500000:
3253 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
3254 cx25840_write4(client, DIF_BPF_COEFF23, 0x0002fff2);
3255 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe1fff9);
3256 cx25840_write4(client, DIF_BPF_COEFF67, 0x00460073);
3257 cx25840_write4(client, DIF_BPF_COEFF89, 0x000bff34);
3258 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfee90000);
3259 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01c10215);
3260 cx25840_write4(client, DIF_BPF_COEFF1415, 0xffd0fcc5);
3261 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc99009d);
3262 cx25840_write4(client, DIF_BPF_COEFF1819, 0x053d04f1);
3263 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfea5f853);
3264 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf97d0270);
3265 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0a5607e4);
3266 cx25840_write4(client, DIF_BPF_COEFF2627, 0xfc2ef314);
3267 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf723055f);
3268 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0f180943);
3269 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf919ef75);
3270 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf6fa0830);
3271 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3272 break;
3273
3274 case 8600000:
3275 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
3276 cx25840_write4(client, DIF_BPF_COEFF23, 0x0005fff8);
3277 cx25840_write4(client, DIF_BPF_COEFF45, 0xffdeffe4);
3278 cx25840_write4(client, DIF_BPF_COEFF67, 0x002f007f);
3279 cx25840_write4(client, DIF_BPF_COEFF89, 0x0048ff6b);
3280 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfec7ff82);
3281 cx25840_write4(client, DIF_BPF_COEFF1213, 0x0163025f);
3282 cx25840_write4(client, DIF_BPF_COEFF1415, 0x00a2fd47);
3283 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc17ff73);
3284 cx25840_write4(client, DIF_BPF_COEFF1819, 0x04a405b2);
3285 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0017f8ed);
3286 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf88500dc);
3287 cx25840_write4(client, DIF_BPF_COEFF2425, 0x09d208f9);
3288 cx25840_write4(client, DIF_BPF_COEFF2627, 0xfdaff370);
3289 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf61c0429);
3290 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0ee80a0b);
3291 cx25840_write4(client, DIF_BPF_COEFF3233, 0xf9d8ef82);
3292 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf6a00800);
3293 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3294 break;
3295
3296 case 8700000:
3297 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
3298 cx25840_write4(client, DIF_BPF_COEFF23, 0x0007ffff);
3299 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe1ffd4);
3300 cx25840_write4(client, DIF_BPF_COEFF67, 0x0010007a);
3301 cx25840_write4(client, DIF_BPF_COEFF89, 0x007cffb2);
3302 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfec6ff10);
3303 cx25840_write4(client, DIF_BPF_COEFF1213, 0x00e60277);
3304 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0168fdf9);
3305 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfbd3fe50);
3306 cx25840_write4(client, DIF_BPF_COEFF1819, 0x03ce0631);
3307 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0188f9c8);
3308 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf7c7ff43);
3309 cx25840_write4(client, DIF_BPF_COEFF2425, 0x091509e3);
3310 cx25840_write4(client, DIF_BPF_COEFF2627, 0xff39f3f6);
3311 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf52d02ea);
3312 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0ea30ac9);
3313 cx25840_write4(client, DIF_BPF_COEFF3233, 0xfa9bef95);
3314 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf64607d0);
3315 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3316 break;
3317
3318 case 8800000:
3319 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000002);
3320 cx25840_write4(client, DIF_BPF_COEFF23, 0x00090007);
3321 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe9ffca);
3322 cx25840_write4(client, DIF_BPF_COEFF67, 0xfff00065);
3323 cx25840_write4(client, DIF_BPF_COEFF89, 0x00a10003);
3324 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfee6feb6);
3325 cx25840_write4(client, DIF_BPF_COEFF1213, 0x0053025b);
3326 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0213fed0);
3327 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfbd3fd46);
3328 cx25840_write4(client, DIF_BPF_COEFF1819, 0x02c70668);
3329 cx25840_write4(client, DIF_BPF_COEFF2021, 0x02eafadb);
3330 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf74bfdae);
3331 cx25840_write4(client, DIF_BPF_COEFF2425, 0x08230a9c);
3332 cx25840_write4(client, DIF_BPF_COEFF2627, 0x00c7f4a3);
3333 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf45b01a6);
3334 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0e480b7c);
3335 cx25840_write4(client, DIF_BPF_COEFF3233, 0xfb61efae);
3336 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf5ef079f);
3337 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3338 break;
3339
3340 case 8900000:
3341 cx25840_write4(client, DIF_BPF_COEFF01, 0xffff0000);
3342 cx25840_write4(client, DIF_BPF_COEFF23, 0x0008000d);
3343 cx25840_write4(client, DIF_BPF_COEFF45, 0xfff5ffc8);
3344 cx25840_write4(client, DIF_BPF_COEFF67, 0xffd10043);
3345 cx25840_write4(client, DIF_BPF_COEFF89, 0x00b20053);
3346 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff24fe7c);
3347 cx25840_write4(client, DIF_BPF_COEFF1213, 0xffb9020c);
3348 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0295ffbb);
3349 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc17fc64);
3350 cx25840_write4(client, DIF_BPF_COEFF1819, 0x019b0654);
3351 cx25840_write4(client, DIF_BPF_COEFF2021, 0x042dfc1c);
3352 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf714fc2a);
3353 cx25840_write4(client, DIF_BPF_COEFF2425, 0x07020b21);
3354 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0251f575);
3355 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf3a7005e);
3356 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0dd80c24);
3357 cx25840_write4(client, DIF_BPF_COEFF3233, 0xfc2aefcd);
3358 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf599076e);
3359 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3360 break;
3361
3362 case 9000000:
3363 cx25840_write4(client, DIF_BPF_COEFF01, 0xffffffff);
3364 cx25840_write4(client, DIF_BPF_COEFF23, 0x00060011);
3365 cx25840_write4(client, DIF_BPF_COEFF45, 0x0002ffcf);
3366 cx25840_write4(client, DIF_BPF_COEFF67, 0xffba0018);
3367 cx25840_write4(client, DIF_BPF_COEFF89, 0x00ad009a);
3368 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff79fe68);
3369 cx25840_write4(client, DIF_BPF_COEFF1213, 0xff260192);
3370 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02e500ab);
3371 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc99fbb6);
3372 cx25840_write4(client, DIF_BPF_COEFF1819, 0x005b05f7);
3373 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0545fd81);
3374 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf723fabf);
3375 cx25840_write4(client, DIF_BPF_COEFF2425, 0x05b80b70);
3376 cx25840_write4(client, DIF_BPF_COEFF2627, 0x03d2f669);
3377 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf313ff15);
3378 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0d550cbf);
3379 cx25840_write4(client, DIF_BPF_COEFF3233, 0xfcf6eff2);
3380 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf544073d);
3381 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3382 break;
3383
3384 case 9100000:
3385 cx25840_write4(client, DIF_BPF_COEFF01, 0xfffffffe);
3386 cx25840_write4(client, DIF_BPF_COEFF23, 0x00030012);
3387 cx25840_write4(client, DIF_BPF_COEFF45, 0x000fffdd);
3388 cx25840_write4(client, DIF_BPF_COEFF67, 0xffacffea);
3389 cx25840_write4(client, DIF_BPF_COEFF89, 0x009300cf);
3390 cx25840_write4(client, DIF_BPF_COEFF1011, 0xffdcfe7c);
3391 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfea600f7);
3392 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02fd0190);
3393 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfd51fb46);
3394 cx25840_write4(client, DIF_BPF_COEFF1819, 0xff150554);
3395 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0627fefd);
3396 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf778f978);
3397 cx25840_write4(client, DIF_BPF_COEFF2425, 0x044d0b87);
3398 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0543f77d);
3399 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf2a0fdcf);
3400 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0cbe0d4e);
3401 cx25840_write4(client, DIF_BPF_COEFF3233, 0xfdc4f01d);
3402 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf4f2070b);
3403 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3404 break;
3405
3406 case 9200000:
3407 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
3408 cx25840_write4(client, DIF_BPF_COEFF23, 0x00000010);
3409 cx25840_write4(client, DIF_BPF_COEFF45, 0x001afff0);
3410 cx25840_write4(client, DIF_BPF_COEFF67, 0xffaaffbf);
3411 cx25840_write4(client, DIF_BPF_COEFF89, 0x006700ed);
3412 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0043feb6);
3413 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe460047);
3414 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02db0258);
3415 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfe35fb1b);
3416 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfddc0473);
3417 cx25840_write4(client, DIF_BPF_COEFF2021, 0x06c90082);
3418 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf811f85e);
3419 cx25840_write4(client, DIF_BPF_COEFF2425, 0x02c90b66);
3420 cx25840_write4(client, DIF_BPF_COEFF2627, 0x069ff8ad);
3421 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf250fc8d);
3422 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0c140dcf);
3423 cx25840_write4(client, DIF_BPF_COEFF3233, 0xfe93f04d);
3424 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf4a106d9);
3425 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3426 break;
3427
3428 case 9300000:
3429 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
3430 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffc000c);
3431 cx25840_write4(client, DIF_BPF_COEFF45, 0x00200006);
3432 cx25840_write4(client, DIF_BPF_COEFF67, 0xffb4ff9c);
3433 cx25840_write4(client, DIF_BPF_COEFF89, 0x002f00ef);
3434 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00a4ff10);
3435 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe0dff92);
3436 cx25840_write4(client, DIF_BPF_COEFF1415, 0x028102f7);
3437 cx25840_write4(client, DIF_BPF_COEFF1617, 0xff36fb37);
3438 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfcbf035e);
3439 cx25840_write4(client, DIF_BPF_COEFF2021, 0x07260202);
3440 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf8e8f778);
3441 cx25840_write4(client, DIF_BPF_COEFF2425, 0x01340b0d);
3442 cx25840_write4(client, DIF_BPF_COEFF2627, 0x07e1f9f4);
3443 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf223fb51);
3444 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0b590e42);
3445 cx25840_write4(client, DIF_BPF_COEFF3233, 0xff64f083);
3446 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf45206a7);
3447 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3448 break;
3449
3450 case 9400000:
3451 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
3452 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff90005);
3453 cx25840_write4(client, DIF_BPF_COEFF45, 0x0022001a);
3454 cx25840_write4(client, DIF_BPF_COEFF67, 0xffc9ff86);
3455 cx25840_write4(client, DIF_BPF_COEFF89, 0xfff000d7);
3456 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00f2ff82);
3457 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe01fee5);
3458 cx25840_write4(client, DIF_BPF_COEFF1415, 0x01f60362);
3459 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0044fb99);
3460 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfbcc0222);
3461 cx25840_write4(client, DIF_BPF_COEFF2021, 0x07380370);
3462 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf9f7f6cc);
3463 cx25840_write4(client, DIF_BPF_COEFF2425, 0xff990a7e);
3464 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0902fb50);
3465 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf21afa1f);
3466 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0a8d0ea6);
3467 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0034f0bf);
3468 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf4050675);
3469 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3470 break;
3471
3472 case 9500000:
3473 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffe);
3474 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff8fffe);
3475 cx25840_write4(client, DIF_BPF_COEFF45, 0x001e002b);
3476 cx25840_write4(client, DIF_BPF_COEFF67, 0xffe5ff81);
3477 cx25840_write4(client, DIF_BPF_COEFF89, 0xffb400a5);
3478 cx25840_write4(client, DIF_BPF_COEFF1011, 0x01280000);
3479 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe24fe50);
3480 cx25840_write4(client, DIF_BPF_COEFF1415, 0x01460390);
3481 cx25840_write4(client, DIF_BPF_COEFF1617, 0x014dfc3a);
3482 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfb1000ce);
3483 cx25840_write4(client, DIF_BPF_COEFF2021, 0x070104bf);
3484 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfb37f65f);
3485 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfe0009bc);
3486 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0a00fcbb);
3487 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf235f8f8);
3488 cx25840_write4(client, DIF_BPF_COEFF3031, 0x09b20efc);
3489 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0105f101);
3490 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf3ba0642);
3491 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3492 break;
3493
3494 case 9600000:
3495 cx25840_write4(client, DIF_BPF_COEFF01, 0x0001ffff);
3496 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff8fff7);
3497 cx25840_write4(client, DIF_BPF_COEFF45, 0x00150036);
3498 cx25840_write4(client, DIF_BPF_COEFF67, 0x0005ff8c);
3499 cx25840_write4(client, DIF_BPF_COEFF89, 0xff810061);
3500 cx25840_write4(client, DIF_BPF_COEFF1011, 0x013d007e);
3501 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe71fddf);
3502 cx25840_write4(client, DIF_BPF_COEFF1415, 0x007c0380);
3503 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0241fd13);
3504 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfa94ff70);
3505 cx25840_write4(client, DIF_BPF_COEFF2021, 0x068005e2);
3506 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfc9bf633);
3507 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfc7308ca);
3508 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0ad5fe30);
3509 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf274f7e0);
3510 cx25840_write4(client, DIF_BPF_COEFF3031, 0x08c90f43);
3511 cx25840_write4(client, DIF_BPF_COEFF3233, 0x01d4f147);
3512 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf371060f);
3513 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3514 break;
3515
3516 case 9700000:
3517 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010001);
3518 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff9fff1);
3519 cx25840_write4(client, DIF_BPF_COEFF45, 0x00090038);
3520 cx25840_write4(client, DIF_BPF_COEFF67, 0x0025ffa7);
3521 cx25840_write4(client, DIF_BPF_COEFF89, 0xff5e0012);
3522 cx25840_write4(client, DIF_BPF_COEFF1011, 0x013200f0);
3523 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfee3fd9b);
3524 cx25840_write4(client, DIF_BPF_COEFF1415, 0xffaa0331);
3525 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0311fe15);
3526 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfa60fe18);
3527 cx25840_write4(client, DIF_BPF_COEFF2021, 0x05bd06d1);
3528 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfe1bf64a);
3529 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfafa07ae);
3530 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0b7effab);
3531 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf2d5f6d7);
3532 cx25840_write4(client, DIF_BPF_COEFF3031, 0x07d30f7a);
3533 cx25840_write4(client, DIF_BPF_COEFF3233, 0x02a3f194);
3534 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf32905dc);
3535 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3536 break;
3537
3538 case 9800000:
3539 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010002);
3540 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffcffee);
3541 cx25840_write4(client, DIF_BPF_COEFF45, 0xfffb0032);
3542 cx25840_write4(client, DIF_BPF_COEFF67, 0x003fffcd);
3543 cx25840_write4(client, DIF_BPF_COEFF89, 0xff4effc1);
3544 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0106014a);
3545 cx25840_write4(client, DIF_BPF_COEFF1213, 0xff6efd8a);
3546 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfedd02aa);
3547 cx25840_write4(client, DIF_BPF_COEFF1617, 0x03b0ff34);
3548 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfa74fcd7);
3549 cx25840_write4(client, DIF_BPF_COEFF2021, 0x04bf0781);
3550 cx25840_write4(client, DIF_BPF_COEFF2223, 0xffaaf6a3);
3551 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf99e066b);
3552 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0bf90128);
3553 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf359f5e1);
3554 cx25840_write4(client, DIF_BPF_COEFF3031, 0x06d20fa2);
3555 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0370f1e5);
3556 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf2e405a8);
3557 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3558 break;
3559
3560 case 9900000:
3561 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
3562 cx25840_write4(client, DIF_BPF_COEFF23, 0xffffffee);
3563 cx25840_write4(client, DIF_BPF_COEFF45, 0xffef0024);
3564 cx25840_write4(client, DIF_BPF_COEFF67, 0x0051fffa);
3565 cx25840_write4(client, DIF_BPF_COEFF89, 0xff54ff77);
3566 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00be0184);
3567 cx25840_write4(client, DIF_BPF_COEFF1213, 0x0006fdad);
3568 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfe2701f3);
3569 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0413005e);
3570 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfad1fbba);
3571 cx25840_write4(client, DIF_BPF_COEFF2021, 0x039007ee);
3572 cx25840_write4(client, DIF_BPF_COEFF2223, 0x013bf73d);
3573 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf868050a);
3574 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0c4302a1);
3575 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf3fdf4fe);
3576 cx25840_write4(client, DIF_BPF_COEFF3031, 0x05c70fba);
3577 cx25840_write4(client, DIF_BPF_COEFF3233, 0x043bf23c);
3578 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf2a10575);
3579 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3580 break;
3581
3582 case 10000000:
3583 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
3584 cx25840_write4(client, DIF_BPF_COEFF23, 0x0003fff1);
3585 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe50011);
3586 cx25840_write4(client, DIF_BPF_COEFF67, 0x00570027);
3587 cx25840_write4(client, DIF_BPF_COEFF89, 0xff70ff3c);
3588 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00620198);
3589 cx25840_write4(client, DIF_BPF_COEFF1213, 0x009efe01);
3590 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd95011a);
3591 cx25840_write4(client, DIF_BPF_COEFF1617, 0x04350183);
3592 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfb71fad0);
3593 cx25840_write4(client, DIF_BPF_COEFF2021, 0x023c0812);
3594 cx25840_write4(client, DIF_BPF_COEFF2223, 0x02c3f811);
3595 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf75e0390);
3596 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0c5c0411);
3597 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf4c1f432);
3598 cx25840_write4(client, DIF_BPF_COEFF3031, 0x04b30fc1);
3599 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0503f297);
3600 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf2610541);
3601 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3602 break;
3603
3604 case 10100000:
3605 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
3606 cx25840_write4(client, DIF_BPF_COEFF23, 0x0006fff7);
3607 cx25840_write4(client, DIF_BPF_COEFF45, 0xffdffffc);
3608 cx25840_write4(client, DIF_BPF_COEFF67, 0x00510050);
3609 cx25840_write4(client, DIF_BPF_COEFF89, 0xff9dff18);
3610 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfffc0184);
3611 cx25840_write4(client, DIF_BPF_COEFF1213, 0x0128fe80);
3612 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd32002e);
3613 cx25840_write4(client, DIF_BPF_COEFF1617, 0x04130292);
3614 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfc4dfa21);
3615 cx25840_write4(client, DIF_BPF_COEFF2021, 0x00d107ee);
3616 cx25840_write4(client, DIF_BPF_COEFF2223, 0x0435f91c);
3617 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf6850205);
3618 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0c430573);
3619 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf5a1f37d);
3620 cx25840_write4(client, DIF_BPF_COEFF3031, 0x03990fba);
3621 cx25840_write4(client, DIF_BPF_COEFF3233, 0x05c7f2f8);
3622 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf222050d);
3623 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3624 break;
3625
3626 case 10200000:
3627 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000002);
3628 cx25840_write4(client, DIF_BPF_COEFF23, 0x0008fffe);
3629 cx25840_write4(client, DIF_BPF_COEFF45, 0xffdfffe7);
3630 cx25840_write4(client, DIF_BPF_COEFF67, 0x003f006e);
3631 cx25840_write4(client, DIF_BPF_COEFF89, 0xffd6ff0f);
3632 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff96014a);
3633 cx25840_write4(client, DIF_BPF_COEFF1213, 0x0197ff1f);
3634 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd05ff3e);
3635 cx25840_write4(client, DIF_BPF_COEFF1617, 0x03b0037c);
3636 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfd59f9b7);
3637 cx25840_write4(client, DIF_BPF_COEFF2021, 0xff5d0781);
3638 cx25840_write4(client, DIF_BPF_COEFF2223, 0x0585fa56);
3639 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf5e4006f);
3640 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0bf906c4);
3641 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf69df2e0);
3642 cx25840_write4(client, DIF_BPF_COEFF3031, 0x02790fa2);
3643 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0688f35d);
3644 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf1e604d8);
3645 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3646 break;
3647
3648 case 10300000:
3649 cx25840_write4(client, DIF_BPF_COEFF01, 0xffff0001);
3650 cx25840_write4(client, DIF_BPF_COEFF23, 0x00090005);
3651 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe4ffd6);
3652 cx25840_write4(client, DIF_BPF_COEFF67, 0x0025007e);
3653 cx25840_write4(client, DIF_BPF_COEFF89, 0x0014ff20);
3654 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff3c00f0);
3655 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01e1ffd0);
3656 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd12fe5c);
3657 cx25840_write4(client, DIF_BPF_COEFF1617, 0x03110433);
3658 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfe88f996);
3659 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfdf106d1);
3660 cx25840_write4(client, DIF_BPF_COEFF2223, 0x06aafbb7);
3661 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf57efed8);
3662 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0b7e07ff);
3663 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf7b0f25e);
3664 cx25840_write4(client, DIF_BPF_COEFF3031, 0x01560f7a);
3665 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0745f3c7);
3666 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf1ac04a4);
3667 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3668 break;
3669
3670 case 10400000:
3671 cx25840_write4(client, DIF_BPF_COEFF01, 0xffffffff);
3672 cx25840_write4(client, DIF_BPF_COEFF23, 0x0008000c);
3673 cx25840_write4(client, DIF_BPF_COEFF45, 0xffedffcb);
3674 cx25840_write4(client, DIF_BPF_COEFF67, 0x0005007d);
3675 cx25840_write4(client, DIF_BPF_COEFF89, 0x0050ff4c);
3676 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfef6007e);
3677 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01ff0086);
3678 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd58fd97);
3679 cx25840_write4(client, DIF_BPF_COEFF1617, 0x024104ad);
3680 cx25840_write4(client, DIF_BPF_COEFF1819, 0xffcaf9c0);
3681 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfc9905e2);
3682 cx25840_write4(client, DIF_BPF_COEFF2223, 0x079afd35);
3683 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf555fd46);
3684 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0ad50920);
3685 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf8d9f1f6);
3686 cx25840_write4(client, DIF_BPF_COEFF3031, 0x00310f43);
3687 cx25840_write4(client, DIF_BPF_COEFF3233, 0x07fdf435);
3688 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf174046f);
3689 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3690 break;
3691
3692 case 10500000:
3693 cx25840_write4(client, DIF_BPF_COEFF01, 0xfffffffe);
3694 cx25840_write4(client, DIF_BPF_COEFF23, 0x00050011);
3695 cx25840_write4(client, DIF_BPF_COEFF45, 0xfffaffc8);
3696 cx25840_write4(client, DIF_BPF_COEFF67, 0xffe5006b);
3697 cx25840_write4(client, DIF_BPF_COEFF89, 0x0082ff8c);
3698 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfecc0000);
3699 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01f00130);
3700 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfdd2fcfc);
3701 cx25840_write4(client, DIF_BPF_COEFF1617, 0x014d04e3);
3702 cx25840_write4(client, DIF_BPF_COEFF1819, 0x010efa32);
3703 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfb6404bf);
3704 cx25840_write4(client, DIF_BPF_COEFF2223, 0x084efec5);
3705 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf569fbc2);
3706 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0a000a23);
3707 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfa15f1ab);
3708 cx25840_write4(client, DIF_BPF_COEFF3031, 0xff0b0efc);
3709 cx25840_write4(client, DIF_BPF_COEFF3233, 0x08b0f4a7);
3710 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf13f043a);
3711 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3712 break;
3713
3714 case 10600000:
3715 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
3716 cx25840_write4(client, DIF_BPF_COEFF23, 0x00020012);
3717 cx25840_write4(client, DIF_BPF_COEFF45, 0x0007ffcd);
3718 cx25840_write4(client, DIF_BPF_COEFF67, 0xffc9004c);
3719 cx25840_write4(client, DIF_BPF_COEFF89, 0x00a4ffd9);
3720 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfec3ff82);
3721 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01b401c1);
3722 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfe76fc97);
3723 cx25840_write4(client, DIF_BPF_COEFF1617, 0x004404d2);
3724 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0245fae8);
3725 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfa5f0370);
3726 cx25840_write4(client, DIF_BPF_COEFF2223, 0x08c1005f);
3727 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf5bcfa52);
3728 cx25840_write4(client, DIF_BPF_COEFF2627, 0x09020b04);
3729 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfb60f17b);
3730 cx25840_write4(client, DIF_BPF_COEFF3031, 0xfde70ea6);
3731 cx25840_write4(client, DIF_BPF_COEFF3233, 0x095df51e);
3732 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf10c0405);
3733 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3734 break;
3735
3736 case 10700000:
3737 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
3738 cx25840_write4(client, DIF_BPF_COEFF23, 0xffff0011);
3739 cx25840_write4(client, DIF_BPF_COEFF45, 0x0014ffdb);
3740 cx25840_write4(client, DIF_BPF_COEFF67, 0xffb40023);
3741 cx25840_write4(client, DIF_BPF_COEFF89, 0x00b2002a);
3742 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfedbff10);
3743 cx25840_write4(client, DIF_BPF_COEFF1213, 0x0150022d);
3744 cx25840_write4(client, DIF_BPF_COEFF1415, 0xff38fc6f);
3745 cx25840_write4(client, DIF_BPF_COEFF1617, 0xff36047b);
3746 cx25840_write4(client, DIF_BPF_COEFF1819, 0x035efbda);
3747 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf9940202);
3748 cx25840_write4(client, DIF_BPF_COEFF2223, 0x08ee01f5);
3749 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf649f8fe);
3750 cx25840_write4(client, DIF_BPF_COEFF2627, 0x07e10bc2);
3751 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfcb6f169);
3752 cx25840_write4(client, DIF_BPF_COEFF3031, 0xfcc60e42);
3753 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0a04f599);
3754 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf0db03d0);
3755 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3756 break;
3757
3758 case 10800000:
3759 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
3760 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffb000d);
3761 cx25840_write4(client, DIF_BPF_COEFF45, 0x001dffed);
3762 cx25840_write4(client, DIF_BPF_COEFF67, 0xffaafff5);
3763 cx25840_write4(client, DIF_BPF_COEFF89, 0x00aa0077);
3764 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff13feb6);
3765 cx25840_write4(client, DIF_BPF_COEFF1213, 0x00ce026b);
3766 cx25840_write4(client, DIF_BPF_COEFF1415, 0x000afc85);
3767 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfe3503e3);
3768 cx25840_write4(client, DIF_BPF_COEFF1819, 0x044cfcfb);
3769 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf90c0082);
3770 cx25840_write4(client, DIF_BPF_COEFF2223, 0x08d5037f);
3771 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf710f7cc);
3772 cx25840_write4(client, DIF_BPF_COEFF2627, 0x069f0c59);
3773 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfe16f173);
3774 cx25840_write4(client, DIF_BPF_COEFF3031, 0xfbaa0dcf);
3775 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0aa5f617);
3776 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf0ad039b);
3777 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3778 break;
3779
3780 case 10900000:
3781 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffe);
3782 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff90006);
3783 cx25840_write4(client, DIF_BPF_COEFF45, 0x00210003);
3784 cx25840_write4(client, DIF_BPF_COEFF67, 0xffacffc8);
3785 cx25840_write4(client, DIF_BPF_COEFF89, 0x008e00b6);
3786 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff63fe7c);
3787 cx25840_write4(client, DIF_BPF_COEFF1213, 0x003a0275);
3788 cx25840_write4(client, DIF_BPF_COEFF1415, 0x00dafcda);
3789 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfd510313);
3790 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0501fe40);
3791 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf8cbfefd);
3792 cx25840_write4(client, DIF_BPF_COEFF2223, 0x087604f0);
3793 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf80af6c2);
3794 cx25840_write4(client, DIF_BPF_COEFF2627, 0x05430cc8);
3795 cx25840_write4(client, DIF_BPF_COEFF2829, 0xff7af19a);
3796 cx25840_write4(client, DIF_BPF_COEFF3031, 0xfa940d4e);
3797 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0b3ff699);
3798 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf0810365);
3799 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3800 break;
3801
3802 case 11000000:
3803 cx25840_write4(client, DIF_BPF_COEFF01, 0x0001ffff);
3804 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff8ffff);
3805 cx25840_write4(client, DIF_BPF_COEFF45, 0x00210018);
3806 cx25840_write4(client, DIF_BPF_COEFF67, 0xffbaffa3);
3807 cx25840_write4(client, DIF_BPF_COEFF89, 0x006000e1);
3808 cx25840_write4(client, DIF_BPF_COEFF1011, 0xffc4fe68);
3809 cx25840_write4(client, DIF_BPF_COEFF1213, 0xffa0024b);
3810 cx25840_write4(client, DIF_BPF_COEFF1415, 0x019afd66);
3811 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc990216);
3812 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0575ff99);
3813 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf8d4fd81);
3814 cx25840_write4(client, DIF_BPF_COEFF2223, 0x07d40640);
3815 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf932f5e6);
3816 cx25840_write4(client, DIF_BPF_COEFF2627, 0x03d20d0d);
3817 cx25840_write4(client, DIF_BPF_COEFF2829, 0x00dff1de);
3818 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf9860cbf);
3819 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0bd1f71e);
3820 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf058032f);
3821 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3822 break;
3823
3824 case 11100000:
3825 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010000);
3826 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff8fff8);
3827 cx25840_write4(client, DIF_BPF_COEFF45, 0x001b0029);
3828 cx25840_write4(client, DIF_BPF_COEFF67, 0xffd1ff8a);
3829 cx25840_write4(client, DIF_BPF_COEFF89, 0x002600f2);
3830 cx25840_write4(client, DIF_BPF_COEFF1011, 0x002cfe7c);
3831 cx25840_write4(client, DIF_BPF_COEFF1213, 0xff0f01f0);
3832 cx25840_write4(client, DIF_BPF_COEFF1415, 0x023bfe20);
3833 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc1700fa);
3834 cx25840_write4(client, DIF_BPF_COEFF1819, 0x05a200f7);
3835 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf927fc1c);
3836 cx25840_write4(client, DIF_BPF_COEFF2223, 0x06f40765);
3837 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfa82f53b);
3838 cx25840_write4(client, DIF_BPF_COEFF2627, 0x02510d27);
3839 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0243f23d);
3840 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf8810c24);
3841 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0c5cf7a7);
3842 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf03102fa);
3843 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3844 break;
3845
3846 case 11200000:
3847 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010002);
3848 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffafff2);
3849 cx25840_write4(client, DIF_BPF_COEFF45, 0x00110035);
3850 cx25840_write4(client, DIF_BPF_COEFF67, 0xfff0ff81);
3851 cx25840_write4(client, DIF_BPF_COEFF89, 0xffe700e7);
3852 cx25840_write4(client, DIF_BPF_COEFF1011, 0x008ffeb6);
3853 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe94016d);
3854 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02b0fefb);
3855 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfbd3ffd1);
3856 cx25840_write4(client, DIF_BPF_COEFF1819, 0x05850249);
3857 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf9c1fadb);
3858 cx25840_write4(client, DIF_BPF_COEFF2223, 0x05de0858);
3859 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfbf2f4c4);
3860 cx25840_write4(client, DIF_BPF_COEFF2627, 0x00c70d17);
3861 cx25840_write4(client, DIF_BPF_COEFF2829, 0x03a0f2b8);
3862 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf7870b7c);
3863 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0cdff833);
3864 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf00d02c4);
3865 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3866 break;
3867
3868 case 11300000:
3869 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
3870 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffdffee);
3871 cx25840_write4(client, DIF_BPF_COEFF45, 0x00040038);
3872 cx25840_write4(client, DIF_BPF_COEFF67, 0x0010ff88);
3873 cx25840_write4(client, DIF_BPF_COEFF89, 0xffac00c2);
3874 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00e2ff10);
3875 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe3900cb);
3876 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02f1ffe9);
3877 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfbd3feaa);
3878 cx25840_write4(client, DIF_BPF_COEFF1819, 0x05210381);
3879 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfa9cf9c8);
3880 cx25840_write4(client, DIF_BPF_COEFF2223, 0x04990912);
3881 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfd7af484);
3882 cx25840_write4(client, DIF_BPF_COEFF2627, 0xff390cdb);
3883 cx25840_write4(client, DIF_BPF_COEFF2829, 0x04f4f34d);
3884 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf69a0ac9);
3885 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0d5af8c1);
3886 cx25840_write4(client, DIF_BPF_COEFF3435, 0xefec028e);
3887 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3888 break;
3889
3890 case 11400000:
3891 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
3892 cx25840_write4(client, DIF_BPF_COEFF23, 0x0000ffee);
3893 cx25840_write4(client, DIF_BPF_COEFF45, 0xfff60033);
3894 cx25840_write4(client, DIF_BPF_COEFF67, 0x002fff9f);
3895 cx25840_write4(client, DIF_BPF_COEFF89, 0xff7b0087);
3896 cx25840_write4(client, DIF_BPF_COEFF1011, 0x011eff82);
3897 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe080018);
3898 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02f900d8);
3899 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc17fd96);
3900 cx25840_write4(client, DIF_BPF_COEFF1819, 0x04790490);
3901 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfbadf8ed);
3902 cx25840_write4(client, DIF_BPF_COEFF2223, 0x032f098e);
3903 cx25840_write4(client, DIF_BPF_COEFF2425, 0xff10f47d);
3904 cx25840_write4(client, DIF_BPF_COEFF2627, 0xfdaf0c75);
3905 cx25840_write4(client, DIF_BPF_COEFF2829, 0x063cf3fc);
3906 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf5ba0a0b);
3907 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0dccf952);
3908 cx25840_write4(client, DIF_BPF_COEFF3435, 0xefcd0258);
3909 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3910 break;
3911
3912 case 11500000:
3913 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
3914 cx25840_write4(client, DIF_BPF_COEFF23, 0x0004fff1);
3915 cx25840_write4(client, DIF_BPF_COEFF45, 0xffea0026);
3916 cx25840_write4(client, DIF_BPF_COEFF67, 0x0046ffc3);
3917 cx25840_write4(client, DIF_BPF_COEFF89, 0xff5a003c);
3918 cx25840_write4(client, DIF_BPF_COEFF1011, 0x013b0000);
3919 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe04ff63);
3920 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02c801b8);
3921 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc99fca6);
3922 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0397056a);
3923 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfcecf853);
3924 cx25840_write4(client, DIF_BPF_COEFF2223, 0x01ad09c9);
3925 cx25840_write4(client, DIF_BPF_COEFF2425, 0x00acf4ad);
3926 cx25840_write4(client, DIF_BPF_COEFF2627, 0xfc2e0be7);
3927 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0773f4c2);
3928 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf4e90943);
3929 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0e35f9e6);
3930 cx25840_write4(client, DIF_BPF_COEFF3435, 0xefb10221);
3931 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3932 break;
3933
3934 case 11600000:
3935 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000002);
3936 cx25840_write4(client, DIF_BPF_COEFF23, 0x0007fff6);
3937 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe20014);
3938 cx25840_write4(client, DIF_BPF_COEFF67, 0x0054ffee);
3939 cx25840_write4(client, DIF_BPF_COEFF89, 0xff4effeb);
3940 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0137007e);
3941 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe2efebb);
3942 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0260027a);
3943 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfd51fbe6);
3944 cx25840_write4(client, DIF_BPF_COEFF1819, 0x02870605);
3945 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfe4af7fe);
3946 cx25840_write4(client, DIF_BPF_COEFF2223, 0x001d09c1);
3947 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0243f515);
3948 cx25840_write4(client, DIF_BPF_COEFF2627, 0xfabd0b32);
3949 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0897f59e);
3950 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf4280871);
3951 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0e95fa7c);
3952 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef9701eb);
3953 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3954 break;
3955
3956 case 11700000:
3957 cx25840_write4(client, DIF_BPF_COEFF01, 0xffff0001);
3958 cx25840_write4(client, DIF_BPF_COEFF23, 0x0008fffd);
3959 cx25840_write4(client, DIF_BPF_COEFF45, 0xffdeffff);
3960 cx25840_write4(client, DIF_BPF_COEFF67, 0x0056001d);
3961 cx25840_write4(client, DIF_BPF_COEFF89, 0xff57ff9c);
3962 cx25840_write4(client, DIF_BPF_COEFF1011, 0x011300f0);
3963 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe82fe2e);
3964 cx25840_write4(client, DIF_BPF_COEFF1415, 0x01ca0310);
3965 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfe35fb62);
3966 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0155065a);
3967 cx25840_write4(client, DIF_BPF_COEFF2021, 0xffbaf7f2);
3968 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfe8c0977);
3969 cx25840_write4(client, DIF_BPF_COEFF2425, 0x03cef5b2);
3970 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf9610a58);
3971 cx25840_write4(client, DIF_BPF_COEFF2829, 0x09a5f68f);
3972 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf3790797);
3973 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0eebfb14);
3974 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef8001b5);
3975 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3976 break;
3977
3978 case 11800000:
3979 cx25840_write4(client, DIF_BPF_COEFF01, 0xffff0000);
3980 cx25840_write4(client, DIF_BPF_COEFF23, 0x00080004);
3981 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe0ffe9);
3982 cx25840_write4(client, DIF_BPF_COEFF67, 0x004c0047);
3983 cx25840_write4(client, DIF_BPF_COEFF89, 0xff75ff58);
3984 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00d1014a);
3985 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfef9fdc8);
3986 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0111036f);
3987 cx25840_write4(client, DIF_BPF_COEFF1617, 0xff36fb21);
3988 cx25840_write4(client, DIF_BPF_COEFF1819, 0x00120665);
3989 cx25840_write4(client, DIF_BPF_COEFF2021, 0x012df82e);
3990 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfd0708ec);
3991 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0542f682);
3992 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf81f095c);
3993 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0a9af792);
3994 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf2db06b5);
3995 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0f38fbad);
3996 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef6c017e);
3997 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
3998 break;
3999
4000 case 11900000:
4001 cx25840_write4(client, DIF_BPF_COEFF01, 0xffffffff);
4002 cx25840_write4(client, DIF_BPF_COEFF23, 0x0007000b);
4003 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe7ffd8);
4004 cx25840_write4(client, DIF_BPF_COEFF67, 0x00370068);
4005 cx25840_write4(client, DIF_BPF_COEFF89, 0xffa4ff28);
4006 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00790184);
4007 cx25840_write4(client, DIF_BPF_COEFF1213, 0xff87fd91);
4008 cx25840_write4(client, DIF_BPF_COEFF1415, 0x00430392);
4009 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0044fb26);
4010 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfece0626);
4011 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0294f8b2);
4012 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfb990825);
4013 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0698f77f);
4014 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf6fe0842);
4015 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0b73f8a7);
4016 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf25105cd);
4017 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0f7bfc48);
4018 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef5a0148);
4019 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4020 break;
4021
4022 case 12000000:
4023 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffe);
4024 cx25840_write4(client, DIF_BPF_COEFF23, 0x00050010);
4025 cx25840_write4(client, DIF_BPF_COEFF45, 0xfff2ffcc);
4026 cx25840_write4(client, DIF_BPF_COEFF67, 0x001b007b);
4027 cx25840_write4(client, DIF_BPF_COEFF89, 0xffdfff10);
4028 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00140198);
4029 cx25840_write4(client, DIF_BPF_COEFF1213, 0x0020fd8e);
4030 cx25840_write4(client, DIF_BPF_COEFF1415, 0xff710375);
4031 cx25840_write4(client, DIF_BPF_COEFF1617, 0x014dfb73);
4032 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfd9a059f);
4033 cx25840_write4(client, DIF_BPF_COEFF2021, 0x03e0f978);
4034 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfa4e0726);
4035 cx25840_write4(client, DIF_BPF_COEFF2425, 0x07c8f8a7);
4036 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf600070c);
4037 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0c2ff9c9);
4038 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf1db04de);
4039 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0fb4fce5);
4040 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef4b0111);
4041 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4042 break;
4043
4044 case 12100000:
4045 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
4046 cx25840_write4(client, DIF_BPF_COEFF23, 0x00010012);
4047 cx25840_write4(client, DIF_BPF_COEFF45, 0xffffffc8);
4048 cx25840_write4(client, DIF_BPF_COEFF67, 0xfffb007e);
4049 cx25840_write4(client, DIF_BPF_COEFF89, 0x001dff14);
4050 cx25840_write4(client, DIF_BPF_COEFF1011, 0xffad0184);
4051 cx25840_write4(client, DIF_BPF_COEFF1213, 0x00b7fdbe);
4052 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfea9031b);
4053 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0241fc01);
4054 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfc8504d6);
4055 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0504fa79);
4056 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf93005f6);
4057 cx25840_write4(client, DIF_BPF_COEFF2425, 0x08caf9f2);
4058 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf52b05c0);
4059 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0ccbfaf9);
4060 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf17903eb);
4061 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0fe3fd83);
4062 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef3f00db);
4063 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4064 break;
4065
4066 case 12200000:
4067 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
4068 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffe0011);
4069 cx25840_write4(client, DIF_BPF_COEFF45, 0x000cffcc);
4070 cx25840_write4(client, DIF_BPF_COEFF67, 0xffdb0071);
4071 cx25840_write4(client, DIF_BPF_COEFF89, 0x0058ff32);
4072 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff4f014a);
4073 cx25840_write4(client, DIF_BPF_COEFF1213, 0x013cfe1f);
4074 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfdfb028a);
4075 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0311fcc9);
4076 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfb9d03d6);
4077 cx25840_write4(client, DIF_BPF_COEFF2021, 0x05f4fbad);
4078 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf848049d);
4079 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0999fb5b);
4080 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf4820461);
4081 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0d46fc32);
4082 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf12d02f4);
4083 cx25840_write4(client, DIF_BPF_COEFF3233, 0x1007fe21);
4084 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef3600a4);
4085 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4086 break;
4087
4088 case 12300000:
4089 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffe);
4090 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffa000e);
4091 cx25840_write4(client, DIF_BPF_COEFF45, 0x0017ffd9);
4092 cx25840_write4(client, DIF_BPF_COEFF67, 0xffc10055);
4093 cx25840_write4(client, DIF_BPF_COEFF89, 0x0088ff68);
4094 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff0400f0);
4095 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01a6fea7);
4096 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd7501cc);
4097 cx25840_write4(client, DIF_BPF_COEFF1617, 0x03b0fdc0);
4098 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfaef02a8);
4099 cx25840_write4(client, DIF_BPF_COEFF2021, 0x06a7fd07);
4100 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf79d0326);
4101 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0a31fcda);
4102 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf40702f3);
4103 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0d9ffd72);
4104 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf0f601fa);
4105 cx25840_write4(client, DIF_BPF_COEFF3233, 0x1021fec0);
4106 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef2f006d);
4107 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4108 break;
4109
4110 case 12400000:
4111 cx25840_write4(client, DIF_BPF_COEFF01, 0x0001ffff);
4112 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff80007);
4113 cx25840_write4(client, DIF_BPF_COEFF45, 0x001fffeb);
4114 cx25840_write4(client, DIF_BPF_COEFF67, 0xffaf002d);
4115 cx25840_write4(client, DIF_BPF_COEFF89, 0x00a8ffb0);
4116 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfed3007e);
4117 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01e9ff4c);
4118 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd2000ee);
4119 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0413fed8);
4120 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfa82015c);
4121 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0715fe7d);
4122 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf7340198);
4123 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0a8dfe69);
4124 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf3bd017c);
4125 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0dd5feb8);
4126 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf0d500fd);
4127 cx25840_write4(client, DIF_BPF_COEFF3233, 0x1031ff60);
4128 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef2b0037);
4129 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4130 break;
4131
4132 case 12500000:
4133 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010000);
4134 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff70000);
4135 cx25840_write4(client, DIF_BPF_COEFF45, 0x00220000);
4136 cx25840_write4(client, DIF_BPF_COEFF67, 0xffa90000);
4137 cx25840_write4(client, DIF_BPF_COEFF89, 0x00b30000);
4138 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfec20000);
4139 cx25840_write4(client, DIF_BPF_COEFF1213, 0x02000000);
4140 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd030000);
4141 cx25840_write4(client, DIF_BPF_COEFF1617, 0x04350000);
4142 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfa5e0000);
4143 cx25840_write4(client, DIF_BPF_COEFF2021, 0x073b0000);
4144 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf7110000);
4145 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0aac0000);
4146 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf3a40000);
4147 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0de70000);
4148 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf0c90000);
4149 cx25840_write4(client, DIF_BPF_COEFF3233, 0x10360000);
4150 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef290000);
4151 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4152 break;
4153
4154 case 12600000:
4155 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010001);
4156 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff8fff9);
4157 cx25840_write4(client, DIF_BPF_COEFF45, 0x001f0015);
4158 cx25840_write4(client, DIF_BPF_COEFF67, 0xffafffd3);
4159 cx25840_write4(client, DIF_BPF_COEFF89, 0x00a80050);
4160 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfed3ff82);
4161 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01e900b4);
4162 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd20ff12);
4163 cx25840_write4(client, DIF_BPF_COEFF1617, 0x04130128);
4164 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfa82fea4);
4165 cx25840_write4(client, DIF_BPF_COEFF2021, 0x07150183);
4166 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf734fe68);
4167 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0a8d0197);
4168 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf3bdfe84);
4169 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0dd50148);
4170 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf0d5ff03);
4171 cx25840_write4(client, DIF_BPF_COEFF3233, 0x103100a0);
4172 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef2bffc9);
4173 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4174 break;
4175
4176 case 12700000:
4177 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000002);
4178 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffafff2);
4179 cx25840_write4(client, DIF_BPF_COEFF45, 0x00170027);
4180 cx25840_write4(client, DIF_BPF_COEFF67, 0xffc1ffab);
4181 cx25840_write4(client, DIF_BPF_COEFF89, 0x00880098);
4182 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff04ff10);
4183 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01a60159);
4184 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd75fe34);
4185 cx25840_write4(client, DIF_BPF_COEFF1617, 0x03b00240);
4186 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfaeffd58);
4187 cx25840_write4(client, DIF_BPF_COEFF2021, 0x06a702f9);
4188 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf79dfcda);
4189 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0a310326);
4190 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf407fd0d);
4191 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0d9f028e);
4192 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf0f6fe06);
4193 cx25840_write4(client, DIF_BPF_COEFF3233, 0x10210140);
4194 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef2fff93);
4195 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4196 break;
4197
4198 case 12800000:
4199 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
4200 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffeffef);
4201 cx25840_write4(client, DIF_BPF_COEFF45, 0x000c0034);
4202 cx25840_write4(client, DIF_BPF_COEFF67, 0xffdbff8f);
4203 cx25840_write4(client, DIF_BPF_COEFF89, 0x005800ce);
4204 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff4ffeb6);
4205 cx25840_write4(client, DIF_BPF_COEFF1213, 0x013c01e1);
4206 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfdfbfd76);
4207 cx25840_write4(client, DIF_BPF_COEFF1617, 0x03110337);
4208 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfb9dfc2a);
4209 cx25840_write4(client, DIF_BPF_COEFF2021, 0x05f40453);
4210 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf848fb63);
4211 cx25840_write4(client, DIF_BPF_COEFF2425, 0x099904a5);
4212 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf482fb9f);
4213 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0d4603ce);
4214 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf12dfd0c);
4215 cx25840_write4(client, DIF_BPF_COEFF3233, 0x100701df);
4216 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef36ff5c);
4217 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4218 break;
4219
4220 case 12900000:
4221 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
4222 cx25840_write4(client, DIF_BPF_COEFF23, 0x0001ffee);
4223 cx25840_write4(client, DIF_BPF_COEFF45, 0xffff0038);
4224 cx25840_write4(client, DIF_BPF_COEFF67, 0xfffbff82);
4225 cx25840_write4(client, DIF_BPF_COEFF89, 0x001d00ec);
4226 cx25840_write4(client, DIF_BPF_COEFF1011, 0xffadfe7c);
4227 cx25840_write4(client, DIF_BPF_COEFF1213, 0x00b70242);
4228 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfea9fce5);
4229 cx25840_write4(client, DIF_BPF_COEFF1617, 0x024103ff);
4230 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfc85fb2a);
4231 cx25840_write4(client, DIF_BPF_COEFF2021, 0x05040587);
4232 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf930fa0a);
4233 cx25840_write4(client, DIF_BPF_COEFF2425, 0x08ca060e);
4234 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf52bfa40);
4235 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0ccb0507);
4236 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf179fc15);
4237 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0fe3027d);
4238 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef3fff25);
4239 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4240 break;
4241
4242 case 13000000:
4243 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000002);
4244 cx25840_write4(client, DIF_BPF_COEFF23, 0x0005fff0);
4245 cx25840_write4(client, DIF_BPF_COEFF45, 0xfff20034);
4246 cx25840_write4(client, DIF_BPF_COEFF67, 0x001bff85);
4247 cx25840_write4(client, DIF_BPF_COEFF89, 0xffdf00f0);
4248 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0014fe68);
4249 cx25840_write4(client, DIF_BPF_COEFF1213, 0x00200272);
4250 cx25840_write4(client, DIF_BPF_COEFF1415, 0xff71fc8b);
4251 cx25840_write4(client, DIF_BPF_COEFF1617, 0x014d048d);
4252 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfd9afa61);
4253 cx25840_write4(client, DIF_BPF_COEFF2021, 0x03e00688);
4254 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfa4ef8da);
4255 cx25840_write4(client, DIF_BPF_COEFF2425, 0x07c80759);
4256 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf600f8f4);
4257 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0c2f0637);
4258 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf1dbfb22);
4259 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0fb4031b);
4260 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef4bfeef);
4261 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4262 break;
4263
4264 case 13100000:
4265 cx25840_write4(client, DIF_BPF_COEFF01, 0xffff0001);
4266 cx25840_write4(client, DIF_BPF_COEFF23, 0x0007fff5);
4267 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe70028);
4268 cx25840_write4(client, DIF_BPF_COEFF67, 0x0037ff98);
4269 cx25840_write4(client, DIF_BPF_COEFF89, 0xffa400d8);
4270 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0079fe7c);
4271 cx25840_write4(client, DIF_BPF_COEFF1213, 0xff87026f);
4272 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0043fc6e);
4273 cx25840_write4(client, DIF_BPF_COEFF1617, 0x004404da);
4274 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfecef9da);
4275 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0294074e);
4276 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfb99f7db);
4277 cx25840_write4(client, DIF_BPF_COEFF2425, 0x06980881);
4278 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf6fef7be);
4279 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0b730759);
4280 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf251fa33);
4281 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0f7b03b8);
4282 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef5afeb8);
4283 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4284 break;
4285
4286 case 13200000:
4287 cx25840_write4(client, DIF_BPF_COEFF01, 0xffff0000);
4288 cx25840_write4(client, DIF_BPF_COEFF23, 0x0008fffc);
4289 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe00017);
4290 cx25840_write4(client, DIF_BPF_COEFF67, 0x004cffb9);
4291 cx25840_write4(client, DIF_BPF_COEFF89, 0xff7500a8);
4292 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00d1feb6);
4293 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfef90238);
4294 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0111fc91);
4295 cx25840_write4(client, DIF_BPF_COEFF1617, 0xff3604df);
4296 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0012f99b);
4297 cx25840_write4(client, DIF_BPF_COEFF2021, 0x012d07d2);
4298 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfd07f714);
4299 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0542097e);
4300 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf81ff6a4);
4301 cx25840_write4(client, DIF_BPF_COEFF2829, 0x0a9a086e);
4302 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf2dbf94b);
4303 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0f380453);
4304 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef6cfe82);
4305 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4306 break;
4307
4308 case 13300000:
4309 cx25840_write4(client, DIF_BPF_COEFF01, 0xffffffff);
4310 cx25840_write4(client, DIF_BPF_COEFF23, 0x00080003);
4311 cx25840_write4(client, DIF_BPF_COEFF45, 0xffde0001);
4312 cx25840_write4(client, DIF_BPF_COEFF67, 0x0056ffe3);
4313 cx25840_write4(client, DIF_BPF_COEFF89, 0xff570064);
4314 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0113ff10);
4315 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe8201d2);
4316 cx25840_write4(client, DIF_BPF_COEFF1415, 0x01cafcf0);
4317 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfe35049e);
4318 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0155f9a6);
4319 cx25840_write4(client, DIF_BPF_COEFF2021, 0xffba080e);
4320 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfe8cf689);
4321 cx25840_write4(client, DIF_BPF_COEFF2425, 0x03ce0a4e);
4322 cx25840_write4(client, DIF_BPF_COEFF2627, 0xf961f5a8);
4323 cx25840_write4(client, DIF_BPF_COEFF2829, 0x09a50971);
4324 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf379f869);
4325 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0eeb04ec);
4326 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef80fe4b);
4327 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4328 break;
4329
4330 case 13400000:
4331 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffe);
4332 cx25840_write4(client, DIF_BPF_COEFF23, 0x0007000a);
4333 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe2ffec);
4334 cx25840_write4(client, DIF_BPF_COEFF67, 0x00540012);
4335 cx25840_write4(client, DIF_BPF_COEFF89, 0xff4e0015);
4336 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0137ff82);
4337 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe2e0145);
4338 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0260fd86);
4339 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfd51041a);
4340 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0287f9fb);
4341 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfe4a0802);
4342 cx25840_write4(client, DIF_BPF_COEFF2223, 0x001df63f);
4343 cx25840_write4(client, DIF_BPF_COEFF2425, 0x02430aeb);
4344 cx25840_write4(client, DIF_BPF_COEFF2627, 0xfabdf4ce);
4345 cx25840_write4(client, DIF_BPF_COEFF2829, 0x08970a62);
4346 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf428f78f);
4347 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0e950584);
4348 cx25840_write4(client, DIF_BPF_COEFF3435, 0xef97fe15);
4349 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4350 break;
4351
4352 case 13500000:
4353 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
4354 cx25840_write4(client, DIF_BPF_COEFF23, 0x0004000f);
4355 cx25840_write4(client, DIF_BPF_COEFF45, 0xffeaffda);
4356 cx25840_write4(client, DIF_BPF_COEFF67, 0x0046003d);
4357 cx25840_write4(client, DIF_BPF_COEFF89, 0xff5affc4);
4358 cx25840_write4(client, DIF_BPF_COEFF1011, 0x013b0000);
4359 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe04009d);
4360 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02c8fe48);
4361 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc99035a);
4362 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0397fa96);
4363 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfcec07ad);
4364 cx25840_write4(client, DIF_BPF_COEFF2223, 0x01adf637);
4365 cx25840_write4(client, DIF_BPF_COEFF2425, 0x00ac0b53);
4366 cx25840_write4(client, DIF_BPF_COEFF2627, 0xfc2ef419);
4367 cx25840_write4(client, DIF_BPF_COEFF2829, 0x07730b3e);
4368 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf4e9f6bd);
4369 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0e35061a);
4370 cx25840_write4(client, DIF_BPF_COEFF3435, 0xefb1fddf);
4371 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4372 break;
4373
4374 case 13600000:
4375 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
4376 cx25840_write4(client, DIF_BPF_COEFF23, 0x00000012);
4377 cx25840_write4(client, DIF_BPF_COEFF45, 0xfff6ffcd);
4378 cx25840_write4(client, DIF_BPF_COEFF67, 0x002f0061);
4379 cx25840_write4(client, DIF_BPF_COEFF89, 0xff7bff79);
4380 cx25840_write4(client, DIF_BPF_COEFF1011, 0x011e007e);
4381 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe08ffe8);
4382 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02f9ff28);
4383 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc17026a);
4384 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0479fb70);
4385 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfbad0713);
4386 cx25840_write4(client, DIF_BPF_COEFF2223, 0x032ff672);
4387 cx25840_write4(client, DIF_BPF_COEFF2425, 0xff100b83);
4388 cx25840_write4(client, DIF_BPF_COEFF2627, 0xfdaff38b);
4389 cx25840_write4(client, DIF_BPF_COEFF2829, 0x063c0c04);
4390 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf5baf5f5);
4391 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0dcc06ae);
4392 cx25840_write4(client, DIF_BPF_COEFF3435, 0xefcdfda8);
4393 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4394 break;
4395
4396 case 13700000:
4397 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
4398 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffd0012);
4399 cx25840_write4(client, DIF_BPF_COEFF45, 0x0004ffc8);
4400 cx25840_write4(client, DIF_BPF_COEFF67, 0x00100078);
4401 cx25840_write4(client, DIF_BPF_COEFF89, 0xffacff3e);
4402 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00e200f0);
4403 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe39ff35);
4404 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02f10017);
4405 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfbd30156);
4406 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0521fc7f);
4407 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfa9c0638);
4408 cx25840_write4(client, DIF_BPF_COEFF2223, 0x0499f6ee);
4409 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfd7a0b7c);
4410 cx25840_write4(client, DIF_BPF_COEFF2627, 0xff39f325);
4411 cx25840_write4(client, DIF_BPF_COEFF2829, 0x04f40cb3);
4412 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf69af537);
4413 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0d5a073f);
4414 cx25840_write4(client, DIF_BPF_COEFF3435, 0xefecfd72);
4415 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4416 break;
4417
4418 case 13800000:
4419 cx25840_write4(client, DIF_BPF_COEFF01, 0x0001fffe);
4420 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffa000e);
4421 cx25840_write4(client, DIF_BPF_COEFF45, 0x0011ffcb);
4422 cx25840_write4(client, DIF_BPF_COEFF67, 0xfff0007f);
4423 cx25840_write4(client, DIF_BPF_COEFF89, 0xffe7ff19);
4424 cx25840_write4(client, DIF_BPF_COEFF1011, 0x008f014a);
4425 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe94fe93);
4426 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02b00105);
4427 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfbd3002f);
4428 cx25840_write4(client, DIF_BPF_COEFF1819, 0x0585fdb7);
4429 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf9c10525);
4430 cx25840_write4(client, DIF_BPF_COEFF2223, 0x05def7a8);
4431 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfbf20b3c);
4432 cx25840_write4(client, DIF_BPF_COEFF2627, 0x00c7f2e9);
4433 cx25840_write4(client, DIF_BPF_COEFF2829, 0x03a00d48);
4434 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf787f484);
4435 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0cdf07cd);
4436 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf00dfd3c);
4437 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4438 break;
4439
4440 case 13900000:
4441 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010000);
4442 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff80008);
4443 cx25840_write4(client, DIF_BPF_COEFF45, 0x001bffd7);
4444 cx25840_write4(client, DIF_BPF_COEFF67, 0xffd10076);
4445 cx25840_write4(client, DIF_BPF_COEFF89, 0x0026ff0e);
4446 cx25840_write4(client, DIF_BPF_COEFF1011, 0x002c0184);
4447 cx25840_write4(client, DIF_BPF_COEFF1213, 0xff0ffe10);
4448 cx25840_write4(client, DIF_BPF_COEFF1415, 0x023b01e0);
4449 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc17ff06);
4450 cx25840_write4(client, DIF_BPF_COEFF1819, 0x05a2ff09);
4451 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf92703e4);
4452 cx25840_write4(client, DIF_BPF_COEFF2223, 0x06f4f89b);
4453 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfa820ac5);
4454 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0251f2d9);
4455 cx25840_write4(client, DIF_BPF_COEFF2829, 0x02430dc3);
4456 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf881f3dc);
4457 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0c5c0859);
4458 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf031fd06);
4459 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4460 break;
4461
4462 case 14000000:
4463 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010001);
4464 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff80001);
4465 cx25840_write4(client, DIF_BPF_COEFF45, 0x0021ffe8);
4466 cx25840_write4(client, DIF_BPF_COEFF67, 0xffba005d);
4467 cx25840_write4(client, DIF_BPF_COEFF89, 0x0060ff1f);
4468 cx25840_write4(client, DIF_BPF_COEFF1011, 0xffc40198);
4469 cx25840_write4(client, DIF_BPF_COEFF1213, 0xffa0fdb5);
4470 cx25840_write4(client, DIF_BPF_COEFF1415, 0x019a029a);
4471 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc99fdea);
4472 cx25840_write4(client, DIF_BPF_COEFF1819, 0x05750067);
4473 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf8d4027f);
4474 cx25840_write4(client, DIF_BPF_COEFF2223, 0x07d4f9c0);
4475 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf9320a1a);
4476 cx25840_write4(client, DIF_BPF_COEFF2627, 0x03d2f2f3);
4477 cx25840_write4(client, DIF_BPF_COEFF2829, 0x00df0e22);
4478 cx25840_write4(client, DIF_BPF_COEFF3031, 0xf986f341);
4479 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0bd108e2);
4480 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf058fcd1);
4481 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4482 break;
4483
4484 case 14100000:
4485 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000002);
4486 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff9fffa);
4487 cx25840_write4(client, DIF_BPF_COEFF45, 0x0021fffd);
4488 cx25840_write4(client, DIF_BPF_COEFF67, 0xffac0038);
4489 cx25840_write4(client, DIF_BPF_COEFF89, 0x008eff4a);
4490 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff630184);
4491 cx25840_write4(client, DIF_BPF_COEFF1213, 0x003afd8b);
4492 cx25840_write4(client, DIF_BPF_COEFF1415, 0x00da0326);
4493 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfd51fced);
4494 cx25840_write4(client, DIF_BPF_COEFF1819, 0x050101c0);
4495 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf8cb0103);
4496 cx25840_write4(client, DIF_BPF_COEFF2223, 0x0876fb10);
4497 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf80a093e);
4498 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0543f338);
4499 cx25840_write4(client, DIF_BPF_COEFF2829, 0xff7a0e66);
4500 cx25840_write4(client, DIF_BPF_COEFF3031, 0xfa94f2b2);
4501 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0b3f0967);
4502 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf081fc9b);
4503 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4504 break;
4505
4506 case 14200000:
4507 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
4508 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffbfff3);
4509 cx25840_write4(client, DIF_BPF_COEFF45, 0x001d0013);
4510 cx25840_write4(client, DIF_BPF_COEFF67, 0xffaa000b);
4511 cx25840_write4(client, DIF_BPF_COEFF89, 0x00aaff89);
4512 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff13014a);
4513 cx25840_write4(client, DIF_BPF_COEFF1213, 0x00cefd95);
4514 cx25840_write4(client, DIF_BPF_COEFF1415, 0x000a037b);
4515 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfe35fc1d);
4516 cx25840_write4(client, DIF_BPF_COEFF1819, 0x044c0305);
4517 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf90cff7e);
4518 cx25840_write4(client, DIF_BPF_COEFF2223, 0x08d5fc81);
4519 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf7100834);
4520 cx25840_write4(client, DIF_BPF_COEFF2627, 0x069ff3a7);
4521 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfe160e8d);
4522 cx25840_write4(client, DIF_BPF_COEFF3031, 0xfbaaf231);
4523 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0aa509e9);
4524 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf0adfc65);
4525 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4526 break;
4527
4528 case 14300000:
4529 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
4530 cx25840_write4(client, DIF_BPF_COEFF23, 0xffffffef);
4531 cx25840_write4(client, DIF_BPF_COEFF45, 0x00140025);
4532 cx25840_write4(client, DIF_BPF_COEFF67, 0xffb4ffdd);
4533 cx25840_write4(client, DIF_BPF_COEFF89, 0x00b2ffd6);
4534 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfedb00f0);
4535 cx25840_write4(client, DIF_BPF_COEFF1213, 0x0150fdd3);
4536 cx25840_write4(client, DIF_BPF_COEFF1415, 0xff380391);
4537 cx25840_write4(client, DIF_BPF_COEFF1617, 0xff36fb85);
4538 cx25840_write4(client, DIF_BPF_COEFF1819, 0x035e0426);
4539 cx25840_write4(client, DIF_BPF_COEFF2021, 0xf994fdfe);
4540 cx25840_write4(client, DIF_BPF_COEFF2223, 0x08eefe0b);
4541 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf6490702);
4542 cx25840_write4(client, DIF_BPF_COEFF2627, 0x07e1f43e);
4543 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfcb60e97);
4544 cx25840_write4(client, DIF_BPF_COEFF3031, 0xfcc6f1be);
4545 cx25840_write4(client, DIF_BPF_COEFF3233, 0x0a040a67);
4546 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf0dbfc30);
4547 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4548 break;
4549
4550 case 14400000:
4551 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
4552 cx25840_write4(client, DIF_BPF_COEFF23, 0x0002ffee);
4553 cx25840_write4(client, DIF_BPF_COEFF45, 0x00070033);
4554 cx25840_write4(client, DIF_BPF_COEFF67, 0xffc9ffb4);
4555 cx25840_write4(client, DIF_BPF_COEFF89, 0x00a40027);
4556 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfec3007e);
4557 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01b4fe3f);
4558 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfe760369);
4559 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0044fb2e);
4560 cx25840_write4(client, DIF_BPF_COEFF1819, 0x02450518);
4561 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfa5ffc90);
4562 cx25840_write4(client, DIF_BPF_COEFF2223, 0x08c1ffa1);
4563 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf5bc05ae);
4564 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0902f4fc);
4565 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfb600e85);
4566 cx25840_write4(client, DIF_BPF_COEFF3031, 0xfde7f15a);
4567 cx25840_write4(client, DIF_BPF_COEFF3233, 0x095d0ae2);
4568 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf10cfbfb);
4569 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4570 break;
4571
4572 case 14500000:
4573 cx25840_write4(client, DIF_BPF_COEFF01, 0xffff0002);
4574 cx25840_write4(client, DIF_BPF_COEFF23, 0x0005ffef);
4575 cx25840_write4(client, DIF_BPF_COEFF45, 0xfffa0038);
4576 cx25840_write4(client, DIF_BPF_COEFF67, 0xffe5ff95);
4577 cx25840_write4(client, DIF_BPF_COEFF89, 0x00820074);
4578 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfecc0000);
4579 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01f0fed0);
4580 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfdd20304);
4581 cx25840_write4(client, DIF_BPF_COEFF1617, 0x014dfb1d);
4582 cx25840_write4(client, DIF_BPF_COEFF1819, 0x010e05ce);
4583 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfb64fb41);
4584 cx25840_write4(client, DIF_BPF_COEFF2223, 0x084e013b);
4585 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf569043e);
4586 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0a00f5dd);
4587 cx25840_write4(client, DIF_BPF_COEFF2829, 0xfa150e55);
4588 cx25840_write4(client, DIF_BPF_COEFF3031, 0xff0bf104);
4589 cx25840_write4(client, DIF_BPF_COEFF3233, 0x08b00b59);
4590 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf13ffbc6);
4591 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4592 break;
4593
4594 case 14600000:
4595 cx25840_write4(client, DIF_BPF_COEFF01, 0xffff0001);
4596 cx25840_write4(client, DIF_BPF_COEFF23, 0x0008fff4);
4597 cx25840_write4(client, DIF_BPF_COEFF45, 0xffed0035);
4598 cx25840_write4(client, DIF_BPF_COEFF67, 0x0005ff83);
4599 cx25840_write4(client, DIF_BPF_COEFF89, 0x005000b4);
4600 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfef6ff82);
4601 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01ffff7a);
4602 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd580269);
4603 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0241fb53);
4604 cx25840_write4(client, DIF_BPF_COEFF1819, 0xffca0640);
4605 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfc99fa1e);
4606 cx25840_write4(client, DIF_BPF_COEFF2223, 0x079a02cb);
4607 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf55502ba);
4608 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0ad5f6e0);
4609 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf8d90e0a);
4610 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0031f0bd);
4611 cx25840_write4(client, DIF_BPF_COEFF3233, 0x07fd0bcb);
4612 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf174fb91);
4613 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4614 break;
4615
4616 case 14700000:
4617 cx25840_write4(client, DIF_BPF_COEFF01, 0xffffffff);
4618 cx25840_write4(client, DIF_BPF_COEFF23, 0x0009fffb);
4619 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe4002a);
4620 cx25840_write4(client, DIF_BPF_COEFF67, 0x0025ff82);
4621 cx25840_write4(client, DIF_BPF_COEFF89, 0x001400e0);
4622 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff3cff10);
4623 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01e10030);
4624 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd1201a4);
4625 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0311fbcd);
4626 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfe88066a);
4627 cx25840_write4(client, DIF_BPF_COEFF2021, 0xfdf1f92f);
4628 cx25840_write4(client, DIF_BPF_COEFF2223, 0x06aa0449);
4629 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf57e0128);
4630 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0b7ef801);
4631 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf7b00da2);
4632 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0156f086);
4633 cx25840_write4(client, DIF_BPF_COEFF3233, 0x07450c39);
4634 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf1acfb5c);
4635 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4636 break;
4637
4638 case 14800000:
4639 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffe);
4640 cx25840_write4(client, DIF_BPF_COEFF23, 0x00080002);
4641 cx25840_write4(client, DIF_BPF_COEFF45, 0xffdf0019);
4642 cx25840_write4(client, DIF_BPF_COEFF67, 0x003fff92);
4643 cx25840_write4(client, DIF_BPF_COEFF89, 0xffd600f1);
4644 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff96feb6);
4645 cx25840_write4(client, DIF_BPF_COEFF1213, 0x019700e1);
4646 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd0500c2);
4647 cx25840_write4(client, DIF_BPF_COEFF1617, 0x03b0fc84);
4648 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfd590649);
4649 cx25840_write4(client, DIF_BPF_COEFF2021, 0xff5df87f);
4650 cx25840_write4(client, DIF_BPF_COEFF2223, 0x058505aa);
4651 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf5e4ff91);
4652 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0bf9f93c);
4653 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf69d0d20);
4654 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0279f05e);
4655 cx25840_write4(client, DIF_BPF_COEFF3233, 0x06880ca3);
4656 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf1e6fb28);
4657 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4658 break;
4659
4660 case 14900000:
4661 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
4662 cx25840_write4(client, DIF_BPF_COEFF23, 0x00060009);
4663 cx25840_write4(client, DIF_BPF_COEFF45, 0xffdf0004);
4664 cx25840_write4(client, DIF_BPF_COEFF67, 0x0051ffb0);
4665 cx25840_write4(client, DIF_BPF_COEFF89, 0xff9d00e8);
4666 cx25840_write4(client, DIF_BPF_COEFF1011, 0xfffcfe7c);
4667 cx25840_write4(client, DIF_BPF_COEFF1213, 0x01280180);
4668 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd32ffd2);
4669 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0413fd6e);
4670 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfc4d05df);
4671 cx25840_write4(client, DIF_BPF_COEFF2021, 0x00d1f812);
4672 cx25840_write4(client, DIF_BPF_COEFF2223, 0x043506e4);
4673 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf685fdfb);
4674 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0c43fa8d);
4675 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf5a10c83);
4676 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0399f046);
4677 cx25840_write4(client, DIF_BPF_COEFF3233, 0x05c70d08);
4678 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf222faf3);
4679 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4680 break;
4681
4682 case 15000000:
4683 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
4684 cx25840_write4(client, DIF_BPF_COEFF23, 0x0003000f);
4685 cx25840_write4(client, DIF_BPF_COEFF45, 0xffe5ffef);
4686 cx25840_write4(client, DIF_BPF_COEFF67, 0x0057ffd9);
4687 cx25840_write4(client, DIF_BPF_COEFF89, 0xff7000c4);
4688 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0062fe68);
4689 cx25840_write4(client, DIF_BPF_COEFF1213, 0x009e01ff);
4690 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfd95fee6);
4691 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0435fe7d);
4692 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfb710530);
4693 cx25840_write4(client, DIF_BPF_COEFF2021, 0x023cf7ee);
4694 cx25840_write4(client, DIF_BPF_COEFF2223, 0x02c307ef);
4695 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf75efc70);
4696 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0c5cfbef);
4697 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf4c10bce);
4698 cx25840_write4(client, DIF_BPF_COEFF3031, 0x04b3f03f);
4699 cx25840_write4(client, DIF_BPF_COEFF3233, 0x05030d69);
4700 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf261fabf);
4701 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4702 break;
4703
4704 case 15100000:
4705 cx25840_write4(client, DIF_BPF_COEFF01, 0x0000fffd);
4706 cx25840_write4(client, DIF_BPF_COEFF23, 0xffff0012);
4707 cx25840_write4(client, DIF_BPF_COEFF45, 0xffefffdc);
4708 cx25840_write4(client, DIF_BPF_COEFF67, 0x00510006);
4709 cx25840_write4(client, DIF_BPF_COEFF89, 0xff540089);
4710 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00befe7c);
4711 cx25840_write4(client, DIF_BPF_COEFF1213, 0x00060253);
4712 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfe27fe0d);
4713 cx25840_write4(client, DIF_BPF_COEFF1617, 0x0413ffa2);
4714 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfad10446);
4715 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0390f812);
4716 cx25840_write4(client, DIF_BPF_COEFF2223, 0x013b08c3);
4717 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf868faf6);
4718 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0c43fd5f);
4719 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf3fd0b02);
4720 cx25840_write4(client, DIF_BPF_COEFF3031, 0x05c7f046);
4721 cx25840_write4(client, DIF_BPF_COEFF3233, 0x043b0dc4);
4722 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf2a1fa8b);
4723 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4724 break;
4725
4726 case 15200000:
4727 cx25840_write4(client, DIF_BPF_COEFF01, 0x0001fffe);
4728 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffc0012);
4729 cx25840_write4(client, DIF_BPF_COEFF45, 0xfffbffce);
4730 cx25840_write4(client, DIF_BPF_COEFF67, 0x003f0033);
4731 cx25840_write4(client, DIF_BPF_COEFF89, 0xff4e003f);
4732 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0106feb6);
4733 cx25840_write4(client, DIF_BPF_COEFF1213, 0xff6e0276);
4734 cx25840_write4(client, DIF_BPF_COEFF1415, 0xfeddfd56);
4735 cx25840_write4(client, DIF_BPF_COEFF1617, 0x03b000cc);
4736 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfa740329);
4737 cx25840_write4(client, DIF_BPF_COEFF2021, 0x04bff87f);
4738 cx25840_write4(client, DIF_BPF_COEFF2223, 0xffaa095d);
4739 cx25840_write4(client, DIF_BPF_COEFF2425, 0xf99ef995);
4740 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0bf9fed8);
4741 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf3590a1f);
4742 cx25840_write4(client, DIF_BPF_COEFF3031, 0x06d2f05e);
4743 cx25840_write4(client, DIF_BPF_COEFF3233, 0x03700e1b);
4744 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf2e4fa58);
4745 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4746 break;
4747
4748 case 15300000:
4749 cx25840_write4(client, DIF_BPF_COEFF01, 0x0001ffff);
4750 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff9000f);
4751 cx25840_write4(client, DIF_BPF_COEFF45, 0x0009ffc8);
4752 cx25840_write4(client, DIF_BPF_COEFF67, 0x00250059);
4753 cx25840_write4(client, DIF_BPF_COEFF89, 0xff5effee);
4754 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0132ff10);
4755 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfee30265);
4756 cx25840_write4(client, DIF_BPF_COEFF1415, 0xffaafccf);
4757 cx25840_write4(client, DIF_BPF_COEFF1617, 0x031101eb);
4758 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfa6001e8);
4759 cx25840_write4(client, DIF_BPF_COEFF2021, 0x05bdf92f);
4760 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfe1b09b6);
4761 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfafaf852);
4762 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0b7e0055);
4763 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf2d50929);
4764 cx25840_write4(client, DIF_BPF_COEFF3031, 0x07d3f086);
4765 cx25840_write4(client, DIF_BPF_COEFF3233, 0x02a30e6c);
4766 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf329fa24);
4767 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4768 break;
4769
4770 case 15400000:
4771 cx25840_write4(client, DIF_BPF_COEFF01, 0x00010001);
4772 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff80009);
4773 cx25840_write4(client, DIF_BPF_COEFF45, 0x0015ffca);
4774 cx25840_write4(client, DIF_BPF_COEFF67, 0x00050074);
4775 cx25840_write4(client, DIF_BPF_COEFF89, 0xff81ff9f);
4776 cx25840_write4(client, DIF_BPF_COEFF1011, 0x013dff82);
4777 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe710221);
4778 cx25840_write4(client, DIF_BPF_COEFF1415, 0x007cfc80);
4779 cx25840_write4(client, DIF_BPF_COEFF1617, 0x024102ed);
4780 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfa940090);
4781 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0680fa1e);
4782 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfc9b09cd);
4783 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfc73f736);
4784 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0ad501d0);
4785 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf2740820);
4786 cx25840_write4(client, DIF_BPF_COEFF3031, 0x08c9f0bd);
4787 cx25840_write4(client, DIF_BPF_COEFF3233, 0x01d40eb9);
4788 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf371f9f1);
4789 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4790 break;
4791
4792 case 15500000:
4793 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000002);
4794 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff80002);
4795 cx25840_write4(client, DIF_BPF_COEFF45, 0x001effd5);
4796 cx25840_write4(client, DIF_BPF_COEFF67, 0xffe5007f);
4797 cx25840_write4(client, DIF_BPF_COEFF89, 0xffb4ff5b);
4798 cx25840_write4(client, DIF_BPF_COEFF1011, 0x01280000);
4799 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe2401b0);
4800 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0146fc70);
4801 cx25840_write4(client, DIF_BPF_COEFF1617, 0x014d03c6);
4802 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfb10ff32);
4803 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0701fb41);
4804 cx25840_write4(client, DIF_BPF_COEFF2223, 0xfb3709a1);
4805 cx25840_write4(client, DIF_BPF_COEFF2425, 0xfe00f644);
4806 cx25840_write4(client, DIF_BPF_COEFF2627, 0x0a000345);
4807 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf2350708);
4808 cx25840_write4(client, DIF_BPF_COEFF3031, 0x09b2f104);
4809 cx25840_write4(client, DIF_BPF_COEFF3233, 0x01050eff);
4810 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf3baf9be);
4811 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4812 break;
4813
4814 case 15600000:
4815 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
4816 cx25840_write4(client, DIF_BPF_COEFF23, 0xfff9fffb);
4817 cx25840_write4(client, DIF_BPF_COEFF45, 0x0022ffe6);
4818 cx25840_write4(client, DIF_BPF_COEFF67, 0xffc9007a);
4819 cx25840_write4(client, DIF_BPF_COEFF89, 0xfff0ff29);
4820 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00f2007e);
4821 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe01011b);
4822 cx25840_write4(client, DIF_BPF_COEFF1415, 0x01f6fc9e);
4823 cx25840_write4(client, DIF_BPF_COEFF1617, 0x00440467);
4824 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfbccfdde);
4825 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0738fc90);
4826 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf9f70934);
4827 cx25840_write4(client, DIF_BPF_COEFF2425, 0xff99f582);
4828 cx25840_write4(client, DIF_BPF_COEFF2627, 0x090204b0);
4829 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf21a05e1);
4830 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0a8df15a);
4831 cx25840_write4(client, DIF_BPF_COEFF3233, 0x00340f41);
4832 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf405f98b);
4833 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4834 break;
4835
4836 case 15700000:
4837 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
4838 cx25840_write4(client, DIF_BPF_COEFF23, 0xfffcfff4);
4839 cx25840_write4(client, DIF_BPF_COEFF45, 0x0020fffa);
4840 cx25840_write4(client, DIF_BPF_COEFF67, 0xffb40064);
4841 cx25840_write4(client, DIF_BPF_COEFF89, 0x002fff11);
4842 cx25840_write4(client, DIF_BPF_COEFF1011, 0x00a400f0);
4843 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe0d006e);
4844 cx25840_write4(client, DIF_BPF_COEFF1415, 0x0281fd09);
4845 cx25840_write4(client, DIF_BPF_COEFF1617, 0xff3604c9);
4846 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfcbffca2);
4847 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0726fdfe);
4848 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf8e80888);
4849 cx25840_write4(client, DIF_BPF_COEFF2425, 0x0134f4f3);
4850 cx25840_write4(client, DIF_BPF_COEFF2627, 0x07e1060c);
4851 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf22304af);
4852 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0b59f1be);
4853 cx25840_write4(client, DIF_BPF_COEFF3233, 0xff640f7d);
4854 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf452f959);
4855 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4856 break;
4857
4858 case 15800000:
4859 cx25840_write4(client, DIF_BPF_COEFF01, 0x00000003);
4860 cx25840_write4(client, DIF_BPF_COEFF23, 0x0000fff0);
4861 cx25840_write4(client, DIF_BPF_COEFF45, 0x001a0010);
4862 cx25840_write4(client, DIF_BPF_COEFF67, 0xffaa0041);
4863 cx25840_write4(client, DIF_BPF_COEFF89, 0x0067ff13);
4864 cx25840_write4(client, DIF_BPF_COEFF1011, 0x0043014a);
4865 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfe46ffb9);
4866 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02dbfda8);
4867 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfe3504e5);
4868 cx25840_write4(client, DIF_BPF_COEFF1819, 0xfddcfb8d);
4869 cx25840_write4(client, DIF_BPF_COEFF2021, 0x06c9ff7e);
4870 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf81107a2);
4871 cx25840_write4(client, DIF_BPF_COEFF2425, 0x02c9f49a);
4872 cx25840_write4(client, DIF_BPF_COEFF2627, 0x069f0753);
4873 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf2500373);
4874 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0c14f231);
4875 cx25840_write4(client, DIF_BPF_COEFF3233, 0xfe930fb3);
4876 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf4a1f927);
4877 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4878 break;
4879
4880 case 15900000:
4881 cx25840_write4(client, DIF_BPF_COEFF01, 0xffff0002);
4882 cx25840_write4(client, DIF_BPF_COEFF23, 0x0003ffee);
4883 cx25840_write4(client, DIF_BPF_COEFF45, 0x000f0023);
4884 cx25840_write4(client, DIF_BPF_COEFF67, 0xffac0016);
4885 cx25840_write4(client, DIF_BPF_COEFF89, 0x0093ff31);
4886 cx25840_write4(client, DIF_BPF_COEFF1011, 0xffdc0184);
4887 cx25840_write4(client, DIF_BPF_COEFF1213, 0xfea6ff09);
4888 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02fdfe70);
4889 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfd5104ba);
4890 cx25840_write4(client, DIF_BPF_COEFF1819, 0xff15faac);
4891 cx25840_write4(client, DIF_BPF_COEFF2021, 0x06270103);
4892 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf7780688);
4893 cx25840_write4(client, DIF_BPF_COEFF2425, 0x044df479);
4894 cx25840_write4(client, DIF_BPF_COEFF2627, 0x05430883);
4895 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf2a00231);
4896 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0cbef2b2);
4897 cx25840_write4(client, DIF_BPF_COEFF3233, 0xfdc40fe3);
4898 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf4f2f8f5);
4899 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4900 break;
4901
4902 case 16000000:
4903 cx25840_write4(client, DIF_BPF_COEFF01, 0xffff0001);
4904 cx25840_write4(client, DIF_BPF_COEFF23, 0x0006ffef);
4905 cx25840_write4(client, DIF_BPF_COEFF45, 0x00020031);
4906 cx25840_write4(client, DIF_BPF_COEFF67, 0xffbaffe8);
4907 cx25840_write4(client, DIF_BPF_COEFF89, 0x00adff66);
4908 cx25840_write4(client, DIF_BPF_COEFF1011, 0xff790198);
4909 cx25840_write4(client, DIF_BPF_COEFF1213, 0xff26fe6e);
4910 cx25840_write4(client, DIF_BPF_COEFF1415, 0x02e5ff55);
4911 cx25840_write4(client, DIF_BPF_COEFF1617, 0xfc99044a);
4912 cx25840_write4(client, DIF_BPF_COEFF1819, 0x005bfa09);
4913 cx25840_write4(client, DIF_BPF_COEFF2021, 0x0545027f);
4914 cx25840_write4(client, DIF_BPF_COEFF2223, 0xf7230541);
4915 cx25840_write4(client, DIF_BPF_COEFF2425, 0x05b8f490);
4916 cx25840_write4(client, DIF_BPF_COEFF2627, 0x03d20997);
4917 cx25840_write4(client, DIF_BPF_COEFF2829, 0xf31300eb);
4918 cx25840_write4(client, DIF_BPF_COEFF3031, 0x0d55f341);
4919 cx25840_write4(client, DIF_BPF_COEFF3233, 0xfcf6100e);
4920 cx25840_write4(client, DIF_BPF_COEFF3435, 0xf544f8c3);
4921 cx25840_write4(client, DIF_BPF_COEFF36, 0x110d0000);
4922 break;
4923 }
4924}
4925
4926static void cx23885_std_setup(struct i2c_client *client)
4927{
4928 struct cx25840_state *state = to_state(i2c_get_clientdata(client));
4929 v4l2_std_id std = state->std;
4930 u32 ifHz;
4931
4932 cx25840_write4(client, 0x478, 0x6628021F);
4933 cx25840_write4(client, 0x400, 0x0);
4934 cx25840_write4(client, 0x4b4, 0x20524030);
4935 cx25840_write4(client, 0x47c, 0x010a8263);
4936
4937 if (std & V4L2_STD_NTSC) {
4938 v4l_dbg(1, cx25840_debug, client, "%s() Selecting NTSC",
4939 __func__);
4940
4941 /* Horiz / vert timing */
4942 cx25840_write4(client, 0x428, 0x1e1e601a);
4943 cx25840_write4(client, 0x424, 0x5b2d007a);
4944
4945 /* DIF NTSC */
4946 cx25840_write4(client, 0x304, 0x6503bc0c);
4947 cx25840_write4(client, 0x308, 0xbd038c85);
4948 cx25840_write4(client, 0x30c, 0x1db4640a);
4949 cx25840_write4(client, 0x310, 0x00008800);
4950 cx25840_write4(client, 0x314, 0x44400400);
4951 cx25840_write4(client, 0x32c, 0x0c800800);
4952 cx25840_write4(client, 0x330, 0x27000100);
4953 cx25840_write4(client, 0x334, 0x1f296e1f);
4954 cx25840_write4(client, 0x338, 0x009f50c1);
4955 cx25840_write4(client, 0x340, 0x1befbf06);
4956 cx25840_write4(client, 0x344, 0x000035e8);
4957
4958 /* DIF I/F */
4959 ifHz = 5400000;
4960
4961 } else {
4962 v4l_dbg(1, cx25840_debug, client, "%s() Selecting PAL-BG",
4963 __func__);
4964
4965 /* Horiz / vert timing */
4966 cx25840_write4(client, 0x428, 0x28244024);
4967 cx25840_write4(client, 0x424, 0x5d2d0084);
4968
4969 /* DIF */
4970 cx25840_write4(client, 0x304, 0x6503bc0c);
4971 cx25840_write4(client, 0x308, 0xbd038c85);
4972 cx25840_write4(client, 0x30c, 0x1db4640a);
4973 cx25840_write4(client, 0x310, 0x00008800);
4974 cx25840_write4(client, 0x314, 0x44400600);
4975 cx25840_write4(client, 0x32c, 0x0c800800);
4976 cx25840_write4(client, 0x330, 0x27000100);
4977 cx25840_write4(client, 0x334, 0x213530ec);
4978 cx25840_write4(client, 0x338, 0x00a65ba8);
4979 cx25840_write4(client, 0x340, 0x1befbf06);
4980 cx25840_write4(client, 0x344, 0x000035e8);
4981
4982 /* DIF I/F */
4983 ifHz = 6000000;
4984 }
4985
4986 cx23885_dif_setup(client, ifHz);
4987
4988 /* Explicitly ensure the inputs are reconfigured after
4989 * a standard change.
4990 */
4991 set_input(client, state->vid_input, state->aud_input);
4992}
4993
4994/* ----------------------------------------------------------------------- */
4995
e34e658b
HV
4996static const struct v4l2_ctrl_ops cx25840_ctrl_ops = {
4997 .s_ctrl = cx25840_s_ctrl,
4998};
4999
9357b31c
HV
5000static const struct v4l2_subdev_core_ops cx25840_core_ops = {
5001 .log_status = cx25840_log_status,
5002 .g_chip_ident = cx25840_g_chip_ident,
e34e658b
HV
5003 .g_ctrl = v4l2_subdev_g_ctrl,
5004 .s_ctrl = v4l2_subdev_s_ctrl,
5005 .s_ext_ctrls = v4l2_subdev_s_ext_ctrls,
5006 .try_ext_ctrls = v4l2_subdev_try_ext_ctrls,
5007 .g_ext_ctrls = v4l2_subdev_g_ext_ctrls,
5008 .queryctrl = v4l2_subdev_queryctrl,
5009 .querymenu = v4l2_subdev_querymenu,
f41737ec 5010 .s_std = cx25840_s_std,
51ada787 5011 .g_std = cx25840_g_std,
9357b31c 5012 .reset = cx25840_reset,
cc26b076 5013 .load_fw = cx25840_load_fw,
d06d5777 5014 .s_io_pin_config = common_s_io_pin_config,
9357b31c
HV
5015#ifdef CONFIG_VIDEO_ADV_DEBUG
5016 .g_register = cx25840_g_register,
5017 .s_register = cx25840_s_register,
5018#endif
52fd3dda 5019 .interrupt_service_routine = cx25840_irq_handler,
9357b31c
HV
5020};
5021
5022static const struct v4l2_subdev_tuner_ops cx25840_tuner_ops = {
5023 .s_frequency = cx25840_s_frequency,
9357b31c
HV
5024 .s_radio = cx25840_s_radio,
5025 .g_tuner = cx25840_g_tuner,
5026 .s_tuner = cx25840_s_tuner,
5027};
5028
5029static const struct v4l2_subdev_audio_ops cx25840_audio_ops = {
5030 .s_clock_freq = cx25840_s_clock_freq,
5031 .s_routing = cx25840_s_audio_routing,
3ccc646b 5032 .s_stream = cx25840_s_audio_stream,
9357b31c
HV
5033};
5034
5035static const struct v4l2_subdev_video_ops cx25840_video_ops = {
5036 .s_routing = cx25840_s_video_routing,
96fd004f 5037 .s_mbus_fmt = cx25840_s_mbus_fmt,
9357b31c
HV
5038 .s_stream = cx25840_s_stream,
5039};
5040
32cd527f
HV
5041static const struct v4l2_subdev_vbi_ops cx25840_vbi_ops = {
5042 .decode_vbi_line = cx25840_decode_vbi_line,
5393db43
HV
5043 .s_raw_fmt = cx25840_s_raw_fmt,
5044 .s_sliced_fmt = cx25840_s_sliced_fmt,
5045 .g_sliced_fmt = cx25840_g_sliced_fmt,
32cd527f
HV
5046};
5047
9357b31c
HV
5048static const struct v4l2_subdev_ops cx25840_ops = {
5049 .core = &cx25840_core_ops,
5050 .tuner = &cx25840_tuner_ops,
5051 .audio = &cx25840_audio_ops,
5052 .video = &cx25840_video_ops,
32cd527f 5053 .vbi = &cx25840_vbi_ops,
52fd3dda 5054 .ir = &cx25840_ir_ops,
9357b31c
HV
5055};
5056
bd985160
HV
5057/* ----------------------------------------------------------------------- */
5058
c7dd1ecd
AW
5059static u32 get_cx2388x_ident(struct i2c_client *client)
5060{
5061 u32 ret;
5062
5063 /* Come out of digital power down */
5064 cx25840_write(client, 0x000, 0);
5065
8c2d7821
ST
5066 /* Detecting whether the part is cx23885/7/8 is more
5067 * difficult than it needs to be. No ID register. Instead we
5068 * probe certain registers indicated in the datasheets to look
5069 * for specific defaults that differ between the silicon designs. */
5070
5071 /* It's either 885/7 if the IR Tx Clk Divider register exists */
c7dd1ecd 5072 if (cx25840_read4(client, 0x204) & 0xffff) {
8c2d7821
ST
5073 /* CX23885 returns bogus repetitive byte values for the DIF,
5074 * which doesn't exist for it. (Ex. 8a8a8a8a or 31313131) */
5075 ret = cx25840_read4(client, 0x300);
5076 if (((ret & 0xffff0000) >> 16) == (ret & 0xffff)) {
5077 /* No DIF */
5078 ret = V4L2_IDENT_CX23885_AV;
5079 } else {
5080 /* CX23887 has a broken DIF, but the registers
25985edc 5081 * appear valid (but unused), good enough to detect. */
8c2d7821
ST
5082 ret = V4L2_IDENT_CX23887_AV;
5083 }
c7dd1ecd
AW
5084 } else if (cx25840_read4(client, 0x300) & 0x0fffffff) {
5085 /* DIF PLL Freq Word reg exists; chip must be a CX23888 */
5086 ret = V4L2_IDENT_CX23888_AV;
5087 } else {
8c2d7821 5088 v4l_err(client, "Unable to detect h/w, assuming cx23887\n");
c7dd1ecd
AW
5089 ret = V4L2_IDENT_CX23887_AV;
5090 }
5091
5092 /* Back into digital power down */
5093 cx25840_write(client, 0x000, 2);
5094 return ret;
5095}
5096
d2653e92
JD
5097static int cx25840_probe(struct i2c_client *client,
5098 const struct i2c_device_id *did)
bd985160 5099{
bd985160 5100 struct cx25840_state *state;
9357b31c 5101 struct v4l2_subdev *sd;
e34e658b 5102 int default_volume;
c7dd1ecd 5103 u32 id = V4L2_IDENT_NONE;
bd985160
HV
5104 u16 device_id;
5105
188f3457
HV
5106 /* Check if the adapter supports the needed features */
5107 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
5108 return -EIO;
5109
21340ae0 5110 v4l_dbg(1, cx25840_debug, client, "detecting cx25840 client on address 0x%x\n", client->addr << 1);
bd985160
HV
5111
5112 device_id = cx25840_read(client, 0x101) << 8;
5113 device_id |= cx25840_read(client, 0x100);
f234081b 5114 v4l_dbg(1, cx25840_debug, client, "device_id = 0x%04x\n", device_id);
bd985160
HV
5115
5116 /* The high byte of the device ID should be
e2b8cf4c
HV
5117 * 0x83 for the cx2583x and 0x84 for the cx2584x */
5118 if ((device_id & 0xff00) == 0x8300) {
5119 id = V4L2_IDENT_CX25836 + ((device_id >> 4) & 0xf) - 6;
c7dd1ecd 5120 } else if ((device_id & 0xff00) == 0x8400) {
e2b8cf4c 5121 id = V4L2_IDENT_CX25840 + ((device_id >> 4) & 0xf);
00ca7324 5122 } else if (device_id == 0x0000) {
c7dd1ecd 5123 id = get_cx2388x_ident(client);
149783b5 5124 } else if ((device_id & 0xfff0) == 0x5A30) {
c7dd1ecd
AW
5125 /* The CX23100 (0x5A3C = 23100) doesn't have an A/V decoder */
5126 id = V4L2_IDENT_CX2310X_AV;
5127 } else if ((device_id & 0xff) == (device_id >> 8)) {
5128 v4l_err(client,
5129 "likely a confused/unresponsive cx2388[578] A/V decoder"
5130 " found @ 0x%x (%s)\n",
5131 client->addr << 1, client->adapter->name);
5132 v4l_err(client, "A method to reset it from the cx25840 driver"
5133 " software is not known at this time\n");
5134 return -ENODEV;
5135 } else {
b5fc7144 5136 v4l_dbg(1, cx25840_debug, client, "cx25840 not found\n");
188f3457 5137 return -ENODEV;
bd985160
HV
5138 }
5139
21340ae0 5140 state = kzalloc(sizeof(struct cx25840_state), GFP_KERNEL);
9357b31c 5141 if (state == NULL)
21340ae0 5142 return -ENOMEM;
21340ae0 5143
9357b31c
HV
5144 sd = &state->sd;
5145 v4l2_i2c_subdev_init(sd, client, &cx25840_ops);
e34e658b 5146
c7dd1ecd
AW
5147 switch (id) {
5148 case V4L2_IDENT_CX23885_AV:
c7dd1ecd
AW
5149 v4l_info(client, "cx23885 A/V decoder found @ 0x%x (%s)\n",
5150 client->addr << 1, client->adapter->name);
5151 break;
5152 case V4L2_IDENT_CX23887_AV:
c7dd1ecd
AW
5153 v4l_info(client, "cx23887 A/V decoder found @ 0x%x (%s)\n",
5154 client->addr << 1, client->adapter->name);
5155 break;
5156 case V4L2_IDENT_CX23888_AV:
c7dd1ecd
AW
5157 v4l_info(client, "cx23888 A/V decoder found @ 0x%x (%s)\n",
5158 client->addr << 1, client->adapter->name);
5159 break;
5160 case V4L2_IDENT_CX2310X_AV:
c7dd1ecd
AW
5161 v4l_info(client, "cx%d A/V decoder found @ 0x%x (%s)\n",
5162 device_id, client->addr << 1, client->adapter->name);
5163 break;
5164 case V4L2_IDENT_CX25840:
5165 case V4L2_IDENT_CX25841:
5166 case V4L2_IDENT_CX25842:
5167 case V4L2_IDENT_CX25843:
5168 /* Note: revision '(device_id & 0x0f) == 2' was never built. The
5169 marking skips from 0x1 == 22 to 0x3 == 23. */
5170 v4l_info(client, "cx25%3x-2%x found @ 0x%x (%s)\n",
5171 (device_id & 0xfff0) >> 4,
5172 (device_id & 0x0f) < 3 ? (device_id & 0x0f) + 1
5173 : (device_id & 0x0f),
5174 client->addr << 1, client->adapter->name);
5175 break;
5176 case V4L2_IDENT_CX25836:
5177 case V4L2_IDENT_CX25837:
c7dd1ecd
AW
5178 default:
5179 v4l_info(client, "cx25%3x-%x found @ 0x%x (%s)\n",
5180 (device_id & 0xfff0) >> 4, device_id & 0x0f,
5181 client->addr << 1, client->adapter->name);
5182 break;
5183 }
bd985160 5184
21340ae0 5185 state->c = client;
a8bbf12a
HV
5186 state->vid_input = CX25840_COMPOSITE7;
5187 state->aud_input = CX25840_AUDIO8;
3578d3dd 5188 state->audclk_freq = 48000;
8a4b275f 5189 state->audmode = V4L2_TUNER_MODE_LANG1;
3e3bf277 5190 state->vbi_line_offset = 8;
e2b8cf4c 5191 state->id = id;
3434eb7e 5192 state->rev = device_id;
e34e658b
HV
5193 v4l2_ctrl_handler_init(&state->hdl, 9);
5194 v4l2_ctrl_new_std(&state->hdl, &cx25840_ctrl_ops,
5195 V4L2_CID_BRIGHTNESS, 0, 255, 1, 128);
5196 v4l2_ctrl_new_std(&state->hdl, &cx25840_ctrl_ops,
5197 V4L2_CID_CONTRAST, 0, 127, 1, 64);
5198 v4l2_ctrl_new_std(&state->hdl, &cx25840_ctrl_ops,
5199 V4L2_CID_SATURATION, 0, 127, 1, 64);
5200 v4l2_ctrl_new_std(&state->hdl, &cx25840_ctrl_ops,
5201 V4L2_CID_HUE, -128, 127, 1, 0);
5202 if (!is_cx2583x(state)) {
f23b7952
AW
5203 default_volume = cx25840_read(client, 0x8d4);
5204 /*
5205 * Enforce the legacy PVR-350/MSP3400 to PVR-150/CX25843 volume
5206 * scale mapping limits to avoid -ERANGE errors when
5207 * initializing the volume control
5208 */
5209 if (default_volume > 228) {
5210 /* Bottom out at -96 dB, v4l2 vol range 0x2e00-0x2fff */
5211 default_volume = 228;
5212 cx25840_write(client, 0x8d4, 228);
5213 }
5214 else if (default_volume < 20) {
5215 /* Top out at + 8 dB, v4l2 vol range 0xfe00-0xffff */
5216 default_volume = 20;
5217 cx25840_write(client, 0x8d4, 20);
5218 }
5219 default_volume = (((228 - default_volume) >> 1) + 23) << 9;
e34e658b
HV
5220
5221 state->volume = v4l2_ctrl_new_std(&state->hdl,
5222 &cx25840_audio_ctrl_ops, V4L2_CID_AUDIO_VOLUME,
fc00a1d9 5223 0, 65535, 65535 / 100, default_volume);
e34e658b
HV
5224 state->mute = v4l2_ctrl_new_std(&state->hdl,
5225 &cx25840_audio_ctrl_ops, V4L2_CID_AUDIO_MUTE,
5226 0, 1, 1, 0);
5227 v4l2_ctrl_new_std(&state->hdl, &cx25840_audio_ctrl_ops,
5228 V4L2_CID_AUDIO_BALANCE,
5229 0, 65535, 65535 / 100, 32768);
5230 v4l2_ctrl_new_std(&state->hdl, &cx25840_audio_ctrl_ops,
5231 V4L2_CID_AUDIO_BASS,
5232 0, 65535, 65535 / 100, 32768);
5233 v4l2_ctrl_new_std(&state->hdl, &cx25840_audio_ctrl_ops,
5234 V4L2_CID_AUDIO_TREBLE,
5235 0, 65535, 65535 / 100, 32768);
5236 }
5237 sd->ctrl_handler = &state->hdl;
5238 if (state->hdl.error) {
5239 int err = state->hdl.error;
5240
5241 v4l2_ctrl_handler_free(&state->hdl);
5242 kfree(state);
5243 return err;
5244 }
1e6406b8
SB
5245 if (!is_cx2583x(state))
5246 v4l2_ctrl_cluster(2, &state->volume);
e34e658b 5247 v4l2_ctrl_handler_setup(&state->hdl);
f234081b 5248
3c7c9370
HV
5249 if (client->dev.platform_data) {
5250 struct cx25840_platform_data *pdata = client->dev.platform_data;
5251
5252 state->pvr150_workaround = pdata->pvr150_workaround;
5253 }
5254
52fd3dda 5255 cx25840_ir_probe(sd);
bd985160
HV
5256 return 0;
5257}
5258
1a39275a 5259static int cx25840_remove(struct i2c_client *client)
bd985160 5260{
9357b31c 5261 struct v4l2_subdev *sd = i2c_get_clientdata(client);
e34e658b 5262 struct cx25840_state *state = to_state(sd);
9357b31c 5263
52fd3dda 5264 cx25840_ir_remove(sd);
9357b31c 5265 v4l2_device_unregister_subdev(sd);
e34e658b
HV
5266 v4l2_ctrl_handler_free(&state->hdl);
5267 kfree(state);
bd985160
HV
5268 return 0;
5269}
5270
af294867
JD
5271static const struct i2c_device_id cx25840_id[] = {
5272 { "cx25840", 0 },
5273 { }
5274};
5275MODULE_DEVICE_TABLE(i2c, cx25840_id);
5276
ad62cdfe
HV
5277static struct i2c_driver cx25840_driver = {
5278 .driver = {
5279 .owner = THIS_MODULE,
5280 .name = "cx25840",
5281 },
5282 .probe = cx25840_probe,
5283 .remove = cx25840_remove,
5284 .id_table = cx25840_id,
bd985160 5285};
ad62cdfe
HV
5286
5287static __init int init_cx25840(void)
5288{
5289 return i2c_add_driver(&cx25840_driver);
5290}
5291
5292static __exit void exit_cx25840(void)
5293{
5294 i2c_del_driver(&cx25840_driver);
5295}
5296
5297module_init(init_cx25840);
5298module_exit(exit_cx25840);