1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Afatech AF9035 DVB USB driver
5 * Copyright (C) 2009 Antti Palosaari <crope@iki.fi>
6 * Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
12 #include <linux/platform_device.h>
48 u8 seq
; /* packet sequence number */
58 u8 af9033_i2c_addr
[2];
60 struct af9033_config af9033_config
[2];
61 struct af9033_ops ops
;
62 #define AF9035_I2C_CLIENT_MAX 4
63 struct i2c_client
*i2c_client
[AF9035_I2C_CLIENT_MAX
];
64 struct i2c_adapter
*i2c_adapter_demod
;
65 struct platform_device
*platform_device_tuner
[2];
68 struct address_table
{
74 static const struct address_table it930x_addresses_table
[] = {
79 static const u32 clock_lut_af9035
[] = {
81 16384000, /* 16.38 MHz */
82 20480000, /* 20.48 MHz */
83 36000000, /* 36.00 MHz */
84 30000000, /* 30.00 MHz */
85 26000000, /* 26.00 MHz */
86 28000000, /* 28.00 MHz */
87 32000000, /* 32.00 MHz */
88 34000000, /* 34.00 MHz */
89 24000000, /* 24.00 MHz */
90 22000000, /* 22.00 MHz */
91 12000000, /* 12.00 MHz */
94 static const u32 clock_lut_it9135
[] = {
95 12000000, /* 12.00 MHz */
96 20480000, /* 20.48 MHz */
97 36000000, /* 36.00 MHz */
98 30000000, /* 30.00 MHz */
99 26000000, /* 26.00 MHz */
100 28000000, /* 28.00 MHz */
101 32000000, /* 32.00 MHz */
102 34000000, /* 34.00 MHz */
103 24000000, /* 24.00 MHz */
104 22000000, /* 22.00 MHz */
107 #define AF9035_FIRMWARE_AF9035 "dvb-usb-af9035-02.fw"
108 #define AF9035_FIRMWARE_IT9135_V1 "dvb-usb-it9135-01.fw"
109 #define AF9035_FIRMWARE_IT9135_V2 "dvb-usb-it9135-02.fw"
110 #define AF9035_FIRMWARE_IT9303 "dvb-usb-it9303-01.fw"
113 * eeprom is memory mapped as read only. Writing that memory mapped address
114 * will not corrupt eeprom.
120 * 5 DCA + PIP (AF9035 only)
123 * Values 0, 3 and 5 are seen to this day. 0 for single TS and 3/5 for dual TS.
126 #define EEPROM_BASE_AF9035 0x42f5
127 #define EEPROM_BASE_IT9135 0x4994
128 #define EEPROM_SHIFT 0x10
130 #define EEPROM_IR_MODE 0x18
131 #define EEPROM_TS_MODE 0x31
132 #define EEPROM_2ND_DEMOD_ADDR 0x32
133 #define EEPROM_IR_TYPE 0x34
134 #define EEPROM_1_IF_L 0x38
135 #define EEPROM_1_IF_H 0x39
136 #define EEPROM_1_TUNER_ID 0x3c
137 #define EEPROM_2_IF_L 0x48
138 #define EEPROM_2_IF_H 0x49
139 #define EEPROM_2_TUNER_ID 0x4c
142 #define CMD_MEM_RD 0x00
143 #define CMD_MEM_WR 0x01
144 #define CMD_I2C_RD 0x02
145 #define CMD_I2C_WR 0x03
146 #define CMD_IR_GET 0x18
147 #define CMD_FW_DL 0x21
148 #define CMD_FW_QUERYINFO 0x22
149 #define CMD_FW_BOOT 0x23
150 #define CMD_FW_DL_BEGIN 0x24
151 #define CMD_FW_DL_END 0x25
152 #define CMD_FW_SCATTER_WR 0x29
153 #define CMD_GENERIC_I2C_RD 0x2a
154 #define CMD_GENERIC_I2C_WR 0x2b