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