blob: 781c98ecf5b6cfec650031684a0a0ff96a7d3740 [file] [log] [blame]
Antti Palosaari88b38be2013-01-07 09:37:30 -03001/*
2 * ITE Tech IT9137 silicon tuner driver
3 *
4 * Copyright (C) 2011 Malcolm Priestley (tvboxspy@gmail.com)
5 * IT9137 Copyright (C) ITE Tech Inc.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 *
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.=
21 */
22
23#ifndef IT913X_PRIV_H
24#define IT913X_PRIV_H
25
Antti Palosaaric2ba9722014-08-26 00:08:16 -030026#include "it913x.h"
Antti Palosaaric0d300a2013-02-28 20:14:38 -030027#include "af9033.h"
Antti Palosaari88b38be2013-01-07 09:37:30 -030028
Antti Palosaari88b38be2013-01-07 09:37:30 -030029#define PRO_LINK 0x0
30#define PRO_DMOD 0x1
Antti Palosaari88b38be2013-01-07 09:37:30 -030031#define TRIGGER_OFSM 0x0000
32
Antti Palosaari88b38be2013-01-07 09:37:30 -030033struct it913xset { u32 pro;
34 u32 address;
35 u8 reg[15];
36 u8 count;
37};
38
Antti Palosaari9e0a9762014-08-09 13:39:16 -030039/* Tuner setting scripts for IT9135 AX */
40static struct it913xset it9135ax_tuner_off[] = {
41 {PRO_DMOD, 0xec40, {0x00}, 0x01}, /* Power Down Tuner */
42 {PRO_DMOD, 0xec02, {0x3f}, 0x01},
43 {PRO_DMOD, 0xec03, {0x1f}, 0x01},
44 {PRO_DMOD, 0xec04, {0x3f}, 0x01},
45 {PRO_DMOD, 0xec05, {0x3f}, 0x01},
46 {PRO_DMOD, 0xec3f, {0x01}, 0x01},
47 {0xff, 0x0000, {0x00}, 0x00}, /* Terminating Entry */
48};
49
Antti Palosaari88b38be2013-01-07 09:37:30 -030050/* Tuner setting scripts (still keeping it9137) */
51static struct it913xset it9137_tuner_off[] = {
Antti Palosaari88b38be2013-01-07 09:37:30 -030052 {PRO_DMOD, 0xec40, {0x00}, 0x01}, /* Power Down Tuner */
53 {PRO_DMOD, 0xec02, {0x3f, 0x1f, 0x3f, 0x3f}, 0x04},
54 {PRO_DMOD, 0xec06, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
55 0x00, 0x00, 0x00, 0x00}, 0x0c},
56 {PRO_DMOD, 0xec12, {0x00, 0x00, 0x00, 0x00}, 0x04},
57 {PRO_DMOD, 0xec17, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
58 0x00}, 0x09},
59 {PRO_DMOD, 0xec22, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
60 0x00, 0x00}, 0x0a},
61 {PRO_DMOD, 0xec20, {0x00}, 0x01},
62 {PRO_DMOD, 0xec3f, {0x01}, 0x01},
63 {0xff, 0x0000, {0x00}, 0x00}, /* Terminating Entry */
64};
65
66static struct it913xset set_it9135_template[] = {
67 {PRO_DMOD, 0xee06, {0x00}, 0x01},
68 {PRO_DMOD, 0xec56, {0x00}, 0x01},
69 {PRO_DMOD, 0xec4c, {0x00}, 0x01},
70 {PRO_DMOD, 0xec4d, {0x00}, 0x01},
71 {PRO_DMOD, 0xec4e, {0x00}, 0x01},
72 {PRO_DMOD, 0x011e, {0x00}, 0x01}, /* Older Devices */
73 {PRO_DMOD, 0x011f, {0x00}, 0x01},
74 {0xff, 0x0000, {0x00}, 0x00}, /* Terminating Entry */
75};
76
77static struct it913xset set_it9137_template[] = {
78 {PRO_DMOD, 0xee06, {0x00}, 0x01},
79 {PRO_DMOD, 0xec56, {0x00}, 0x01},
80 {PRO_DMOD, 0xec4c, {0x00}, 0x01},
81 {PRO_DMOD, 0xec4d, {0x00}, 0x01},
82 {PRO_DMOD, 0xec4e, {0x00}, 0x01},
83 {PRO_DMOD, 0xec4f, {0x00}, 0x01},
84 {PRO_DMOD, 0xec50, {0x00}, 0x01},
85 {0xff, 0x0000, {0x00}, 0x00}, /* Terminating Entry */
86};
87
88#endif