2 * Afatech AF9035 DVB USB driver
4 * Copyright (C) 2009 Antti Palosaari <crope@iki.fi>
5 * Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
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.
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 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
33 #include "tuner_it913x.h"
58 u8 seq
; /* packet sequence number */
64 struct af9033_config af9033_config
[2];
66 struct af9033_ops ops
;
69 static const u32 clock_lut_af9035
[] = {
71 16384000, /* 16.38 MHz */
72 20480000, /* 20.48 MHz */
73 36000000, /* 36.00 MHz */
74 30000000, /* 30.00 MHz */
75 26000000, /* 26.00 MHz */
76 28000000, /* 28.00 MHz */
77 32000000, /* 32.00 MHz */
78 34000000, /* 34.00 MHz */
79 24000000, /* 24.00 MHz */
80 22000000, /* 22.00 MHz */
81 12000000, /* 12.00 MHz */
84 static const u32 clock_lut_it9135
[] = {
85 12000000, /* 12.00 MHz */
86 20480000, /* 20.48 MHz */
87 36000000, /* 36.00 MHz */
88 30000000, /* 30.00 MHz */
89 26000000, /* 26.00 MHz */
90 28000000, /* 28.00 MHz */
91 32000000, /* 32.00 MHz */
92 34000000, /* 34.00 MHz */
93 24000000, /* 24.00 MHz */
94 22000000, /* 22.00 MHz */
97 #define AF9035_FIRMWARE_AF9035 "dvb-usb-af9035-02.fw"
98 #define AF9035_FIRMWARE_IT9135_V1 "dvb-usb-it9135-01.fw"
99 #define AF9035_FIRMWARE_IT9135_V2 "dvb-usb-it9135-02.fw"
102 * eeprom is memory mapped as read only. Writing that memory mapped address
103 * will not corrupt eeprom.
111 * Values 0 and 3 are seen to this day. 0 for single TS and 3 for dual TS.
114 #define EEPROM_BASE_AF9035 0x42fd
115 #define EEPROM_BASE_IT9135 0x499c
116 #define EEPROM_SHIFT 0x10
118 #define EEPROM_IR_MODE 0x10
119 #define EEPROM_TS_MODE 0x29
120 #define EEPROM_2ND_DEMOD_ADDR 0x2a
121 #define EEPROM_IR_TYPE 0x2c
122 #define EEPROM_1_IF_L 0x30
123 #define EEPROM_1_IF_H 0x31
124 #define EEPROM_1_TUNER_ID 0x34
125 #define EEPROM_2_IF_L 0x40
126 #define EEPROM_2_IF_H 0x41
127 #define EEPROM_2_TUNER_ID 0x44
130 #define CMD_MEM_RD 0x00
131 #define CMD_MEM_WR 0x01
132 #define CMD_I2C_RD 0x02
133 #define CMD_I2C_WR 0x03
134 #define CMD_IR_GET 0x18
135 #define CMD_FW_DL 0x21
136 #define CMD_FW_QUERYINFO 0x22
137 #define CMD_FW_BOOT 0x23
138 #define CMD_FW_DL_BEGIN 0x24
139 #define CMD_FW_DL_END 0x25
140 #define CMD_FW_SCATTER_WR 0x29