blob: a8f2edb92b6055c105ad8ea797b1cbcf51412495 [file] [log] [blame]
Antti Palosaariba92ae02014-04-14 21:51:32 -03001/*
Olli Salonen073f3842014-11-24 03:57:33 -03002 * Silicon Labs Si2146/2147/2157/2158 silicon tuner driver
Antti Palosaariba92ae02014-04-14 21:51:32 -03003 *
4 * Copyright (C) 2014 Antti Palosaari <crope@iki.fi>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
Antti Palosaari930a8732014-04-10 21:58:10 -030017#include "si2157_priv.h"
18
Olli Salonen1b923732014-07-13 10:52:20 -030019static const struct dvb_tuner_ops si2157_ops;
20
Antti Palosaari930a8732014-04-10 21:58:10 -030021/* execute firmware command */
22static int si2157_cmd_execute(struct si2157 *s, struct si2157_cmd *cmd)
23{
24 int ret;
Antti Palosaari930a8732014-04-10 21:58:10 -030025 unsigned long timeout;
26
27 mutex_lock(&s->i2c_mutex);
28
Antti Palosaarie6b43802014-07-10 06:02:53 -030029 if (cmd->wlen) {
Antti Palosaari930a8732014-04-10 21:58:10 -030030 /* write cmd and args for firmware */
Antti Palosaarie6b43802014-07-10 06:02:53 -030031 ret = i2c_master_send(s->client, cmd->args, cmd->wlen);
Antti Palosaari930a8732014-04-10 21:58:10 -030032 if (ret < 0) {
33 goto err_mutex_unlock;
Antti Palosaarie6b43802014-07-10 06:02:53 -030034 } else if (ret != cmd->wlen) {
Antti Palosaari930a8732014-04-10 21:58:10 -030035 ret = -EREMOTEIO;
36 goto err_mutex_unlock;
37 }
38 }
39
Antti Palosaarie6b43802014-07-10 06:02:53 -030040 if (cmd->rlen) {
41 /* wait cmd execution terminate */
42 #define TIMEOUT 80
43 timeout = jiffies + msecs_to_jiffies(TIMEOUT);
44 while (!time_after(jiffies, timeout)) {
45 ret = i2c_master_recv(s->client, cmd->args, cmd->rlen);
46 if (ret < 0) {
47 goto err_mutex_unlock;
48 } else if (ret != cmd->rlen) {
49 ret = -EREMOTEIO;
50 goto err_mutex_unlock;
51 }
52
53 /* firmware ready? */
54 if ((cmd->args[0] >> 7) & 0x01)
55 break;
Antti Palosaari930a8732014-04-10 21:58:10 -030056 }
57
Olli Salonen67d01132014-08-05 09:03:54 -030058 dev_dbg(&s->client->dev, "cmd execution took %d ms\n",
Antti Palosaarie6b43802014-07-10 06:02:53 -030059 jiffies_to_msecs(jiffies) -
60 (jiffies_to_msecs(timeout) - TIMEOUT));
61
62 if (!((cmd->args[0] >> 7) & 0x01)) {
63 ret = -ETIMEDOUT;
64 goto err_mutex_unlock;
65 }
Antti Palosaari930a8732014-04-10 21:58:10 -030066 }
67
Antti Palosaarie6b43802014-07-10 06:02:53 -030068 ret = 0;
Antti Palosaari930a8732014-04-10 21:58:10 -030069
70err_mutex_unlock:
71 mutex_unlock(&s->i2c_mutex);
72 if (ret)
73 goto err;
74
75 return 0;
76err:
Olli Salonen67d01132014-08-05 09:03:54 -030077 dev_dbg(&s->client->dev, "failed=%d\n", ret);
Antti Palosaari930a8732014-04-10 21:58:10 -030078 return ret;
79}
80
81static int si2157_init(struct dvb_frontend *fe)
82{
83 struct si2157 *s = fe->tuner_priv;
Antti Palosaari7d6bc602014-07-13 20:05:28 -030084 int ret, len, remaining;
Olli Salonenb1541212014-07-13 10:52:19 -030085 struct si2157_cmd cmd;
Olli Salonen1b923732014-07-13 10:52:20 -030086 const struct firmware *fw = NULL;
87 u8 *fw_file;
Antti Palosaari7d6bc602014-07-13 20:05:28 -030088 unsigned int chip_id;
Antti Palosaari930a8732014-04-10 21:58:10 -030089
Olli Salonen67d01132014-08-05 09:03:54 -030090 dev_dbg(&s->client->dev, "\n");
Antti Palosaari930a8732014-04-10 21:58:10 -030091
Olli Salonen4cbf6ed2014-08-25 15:07:03 -030092 if (s->fw_loaded)
93 goto warm;
94
95 /* power up */
Olli Salonen073f3842014-11-24 03:57:33 -030096 if (s->chiptype == SI2157_CHIPTYPE_SI2146) {
97 memcpy(cmd.args, "\xc0\x05\x01\x00\x00\x0b\x00\x00\x01", 9);
98 cmd.wlen = 9;
99 } else {
100 memcpy(cmd.args, "\xc0\x00\x0c\x00\x00\x01\x01\x01\x01\x01\x01\x02\x00\x00\x01", 15);
101 cmd.wlen = 15;
102 }
Olli Salonenb1541212014-07-13 10:52:19 -0300103 cmd.rlen = 1;
104 ret = si2157_cmd_execute(s, &cmd);
105 if (ret)
106 goto err;
107
108 /* query chip revision */
109 memcpy(cmd.args, "\x02", 1);
110 cmd.wlen = 1;
111 cmd.rlen = 13;
112 ret = si2157_cmd_execute(s, &cmd);
113 if (ret)
114 goto err;
115
Antti Palosaari7d6bc602014-07-13 20:05:28 -0300116 chip_id = cmd.args[1] << 24 | cmd.args[2] << 16 | cmd.args[3] << 8 |
117 cmd.args[4] << 0;
Olli Salonen1b923732014-07-13 10:52:20 -0300118
Antti Palosaari7d6bc602014-07-13 20:05:28 -0300119 #define SI2158_A20 ('A' << 24 | 58 << 16 | '2' << 8 | '0' << 0)
120 #define SI2157_A30 ('A' << 24 | 57 << 16 | '3' << 8 | '0' << 0)
Olli Salonend87a5052014-09-11 17:01:38 -0300121 #define SI2147_A30 ('A' << 24 | 47 << 16 | '3' << 8 | '0' << 0)
Olli Salonen073f3842014-11-24 03:57:33 -0300122 #define SI2146_A10 ('A' << 24 | 46 << 16 | '1' << 8 | '0' << 0)
Olli Salonen1b923732014-07-13 10:52:20 -0300123
Antti Palosaari7d6bc602014-07-13 20:05:28 -0300124 switch (chip_id) {
125 case SI2158_A20:
126 fw_file = SI2158_A20_FIRMWARE;
127 break;
128 case SI2157_A30:
Olli Salonend87a5052014-09-11 17:01:38 -0300129 case SI2147_A30:
Olli Salonen073f3842014-11-24 03:57:33 -0300130 case SI2146_A10:
Antti Palosaari7d6bc602014-07-13 20:05:28 -0300131 goto skip_fw_download;
132 break;
133 default:
134 dev_err(&s->client->dev,
Olli Salonen67d01132014-08-05 09:03:54 -0300135 "unknown chip version Si21%d-%c%c%c\n",
136 cmd.args[2], cmd.args[1],
Antti Palosaari7d6bc602014-07-13 20:05:28 -0300137 cmd.args[3], cmd.args[4]);
138 ret = -EINVAL;
139 goto err;
Olli Salonen1b923732014-07-13 10:52:20 -0300140 }
141
Antti Palosaari7d6bc602014-07-13 20:05:28 -0300142 /* cold state - try to download firmware */
Olli Salonen67d01132014-08-05 09:03:54 -0300143 dev_info(&s->client->dev, "found a '%s' in cold state\n",
144 si2157_ops.info.name);
Antti Palosaari7d6bc602014-07-13 20:05:28 -0300145
146 /* request the firmware, this will block and timeout */
147 ret = request_firmware(&fw, fw_file, &s->client->dev);
148 if (ret) {
Olli Salonen67d01132014-08-05 09:03:54 -0300149 dev_err(&s->client->dev, "firmware file '%s' not found\n",
150 fw_file);
Antti Palosaari7d6bc602014-07-13 20:05:28 -0300151 goto err;
152 }
153
154 /* firmware should be n chunks of 17 bytes */
155 if (fw->size % 17 != 0) {
Olli Salonen67d01132014-08-05 09:03:54 -0300156 dev_err(&s->client->dev, "firmware file '%s' is invalid\n",
157 fw_file);
Antti Palosaari7d6bc602014-07-13 20:05:28 -0300158 ret = -EINVAL;
159 goto err;
160 }
161
Olli Salonen67d01132014-08-05 09:03:54 -0300162 dev_info(&s->client->dev, "downloading firmware from file '%s'\n",
163 fw_file);
Antti Palosaari7d6bc602014-07-13 20:05:28 -0300164
165 for (remaining = fw->size; remaining > 0; remaining -= 17) {
166 len = fw->data[fw->size - remaining];
167 memcpy(cmd.args, &fw->data[(fw->size - remaining) + 1], len);
168 cmd.wlen = len;
169 cmd.rlen = 1;
170 ret = si2157_cmd_execute(s, &cmd);
171 if (ret) {
172 dev_err(&s->client->dev,
Olli Salonen67d01132014-08-05 09:03:54 -0300173 "firmware download failed=%d\n",
174 ret);
Antti Palosaari7d6bc602014-07-13 20:05:28 -0300175 goto err;
176 }
177 }
178
179 release_firmware(fw);
180 fw = NULL;
181
182skip_fw_download:
Olli Salonenb1541212014-07-13 10:52:19 -0300183 /* reboot the tuner with new firmware? */
184 memcpy(cmd.args, "\x01\x01", 2);
185 cmd.wlen = 2;
186 cmd.rlen = 1;
187 ret = si2157_cmd_execute(s, &cmd);
188 if (ret)
189 goto err;
190
Olli Salonen4cbf6ed2014-08-25 15:07:03 -0300191 s->fw_loaded = true;
Antti Palosaari930a8732014-04-10 21:58:10 -0300192
Olli Salonen4cbf6ed2014-08-25 15:07:03 -0300193warm:
194 s->active = true;
Antti Palosaari930a8732014-04-10 21:58:10 -0300195 return 0;
Olli Salonen4cbf6ed2014-08-25 15:07:03 -0300196
Olli Salonenb1541212014-07-13 10:52:19 -0300197err:
Antti Palosaari7d6bc602014-07-13 20:05:28 -0300198 if (fw)
199 release_firmware(fw);
200
Olli Salonen67d01132014-08-05 09:03:54 -0300201 dev_dbg(&s->client->dev, "failed=%d\n", ret);
Olli Salonenb1541212014-07-13 10:52:19 -0300202 return ret;
Antti Palosaari930a8732014-04-10 21:58:10 -0300203}
204
205static int si2157_sleep(struct dvb_frontend *fe)
206{
207 struct si2157 *s = fe->tuner_priv;
Antti Palosaaria83d7d12014-07-09 18:37:30 -0300208 int ret;
209 struct si2157_cmd cmd;
Antti Palosaari930a8732014-04-10 21:58:10 -0300210
Olli Salonen67d01132014-08-05 09:03:54 -0300211 dev_dbg(&s->client->dev, "\n");
Antti Palosaari930a8732014-04-10 21:58:10 -0300212
213 s->active = false;
214
Olli Salonen0e382332014-08-25 15:07:02 -0300215 /* standby */
216 memcpy(cmd.args, "\x16\x00", 2);
217 cmd.wlen = 2;
218 cmd.rlen = 1;
Antti Palosaaria83d7d12014-07-09 18:37:30 -0300219 ret = si2157_cmd_execute(s, &cmd);
220 if (ret)
221 goto err;
222
Antti Palosaari930a8732014-04-10 21:58:10 -0300223 return 0;
Antti Palosaaria83d7d12014-07-09 18:37:30 -0300224err:
Olli Salonen67d01132014-08-05 09:03:54 -0300225 dev_dbg(&s->client->dev, "failed=%d\n", ret);
Antti Palosaaria83d7d12014-07-09 18:37:30 -0300226 return ret;
Antti Palosaari930a8732014-04-10 21:58:10 -0300227}
228
229static int si2157_set_params(struct dvb_frontend *fe)
230{
231 struct si2157 *s = fe->tuner_priv;
232 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
233 int ret;
234 struct si2157_cmd cmd;
Olli Salonena1dad502014-07-13 10:52:21 -0300235 u8 bandwidth, delivery_system;
Antti Palosaari930a8732014-04-10 21:58:10 -0300236
237 dev_dbg(&s->client->dev,
Olli Salonen67d01132014-08-05 09:03:54 -0300238 "delivery_system=%d frequency=%u bandwidth_hz=%u\n",
239 c->delivery_system, c->frequency,
Antti Palosaari930a8732014-04-10 21:58:10 -0300240 c->bandwidth_hz);
241
242 if (!s->active) {
243 ret = -EAGAIN;
244 goto err;
245 }
246
Olli Salonena1dad502014-07-13 10:52:21 -0300247 if (c->bandwidth_hz <= 6000000)
248 bandwidth = 0x06;
249 else if (c->bandwidth_hz <= 7000000)
250 bandwidth = 0x07;
251 else if (c->bandwidth_hz <= 8000000)
252 bandwidth = 0x08;
253 else
254 bandwidth = 0x0f;
255
256 switch (c->delivery_system) {
Olli Salonen5cd62db2014-08-17 02:24:49 -0300257 case SYS_ATSC:
258 delivery_system = 0x00;
259 break;
Olli Salonen0d1165f2014-10-30 07:43:16 -0300260 case SYS_DVBC_ANNEX_B:
261 delivery_system = 0x10;
262 break;
Olli Salonena1dad502014-07-13 10:52:21 -0300263 case SYS_DVBT:
264 case SYS_DVBT2: /* it seems DVB-T and DVB-T2 both are 0x20 here */
265 delivery_system = 0x20;
266 break;
267 case SYS_DVBC_ANNEX_A:
268 delivery_system = 0x30;
269 break;
270 default:
271 ret = -EINVAL;
272 goto err;
273 }
274
275 memcpy(cmd.args, "\x14\x00\x03\x07\x00\x00", 6);
276 cmd.args[4] = delivery_system | bandwidth;
Matthias Schwarzott05024ef2014-07-15 16:34:36 -0300277 if (s->inversion)
278 cmd.args[5] = 0x01;
Olli Salonena1dad502014-07-13 10:52:21 -0300279 cmd.wlen = 6;
Olli Salonend87a5052014-09-11 17:01:38 -0300280 cmd.rlen = 4;
281 ret = si2157_cmd_execute(s, &cmd);
282 if (ret)
283 goto err;
284
Olli Salonen073f3842014-11-24 03:57:33 -0300285 if (s->chiptype == SI2157_CHIPTYPE_SI2146)
286 memcpy(cmd.args, "\x14\x00\x02\x07\x00\x01", 6);
287 else
288 memcpy(cmd.args, "\x14\x00\x02\x07\x01\x00", 6);
Olli Salonend87a5052014-09-11 17:01:38 -0300289 cmd.wlen = 6;
290 cmd.rlen = 4;
Olli Salonena1dad502014-07-13 10:52:21 -0300291 ret = si2157_cmd_execute(s, &cmd);
292 if (ret)
293 goto err;
294
Antti Palosaari930a8732014-04-10 21:58:10 -0300295 /* set frequency */
Olli Salonenb1541212014-07-13 10:52:19 -0300296 memcpy(cmd.args, "\x41\x00\x00\x00\x00\x00\x00\x00", 8);
Antti Palosaari930a8732014-04-10 21:58:10 -0300297 cmd.args[4] = (c->frequency >> 0) & 0xff;
298 cmd.args[5] = (c->frequency >> 8) & 0xff;
299 cmd.args[6] = (c->frequency >> 16) & 0xff;
300 cmd.args[7] = (c->frequency >> 24) & 0xff;
Antti Palosaarie6b43802014-07-10 06:02:53 -0300301 cmd.wlen = 8;
302 cmd.rlen = 1;
Antti Palosaari930a8732014-04-10 21:58:10 -0300303 ret = si2157_cmd_execute(s, &cmd);
304 if (ret)
305 goto err;
306
307 return 0;
308err:
Olli Salonen67d01132014-08-05 09:03:54 -0300309 dev_dbg(&s->client->dev, "failed=%d\n", ret);
Antti Palosaari930a8732014-04-10 21:58:10 -0300310 return ret;
311}
312
Matthias Schwarzott11405402014-07-15 04:58:40 -0300313static int si2157_get_if_frequency(struct dvb_frontend *fe, u32 *frequency)
314{
315 *frequency = 5000000; /* default value of property 0x0706 */
316 return 0;
317}
318
Olli Salonen6cc8a352014-07-18 02:41:12 -0300319static const struct dvb_tuner_ops si2157_ops = {
Antti Palosaari930a8732014-04-10 21:58:10 -0300320 .info = {
Olli Salonen073f3842014-11-24 03:57:33 -0300321 .name = "Silicon Labs Si2146/2147/2157/2158",
Antti Palosaariae4c8912014-04-12 01:53:51 -0300322 .frequency_min = 110000000,
Antti Palosaari930a8732014-04-10 21:58:10 -0300323 .frequency_max = 862000000,
324 },
325
326 .init = si2157_init,
327 .sleep = si2157_sleep,
328 .set_params = si2157_set_params,
Matthias Schwarzott11405402014-07-15 04:58:40 -0300329 .get_if_frequency = si2157_get_if_frequency,
Antti Palosaari930a8732014-04-10 21:58:10 -0300330};
331
332static int si2157_probe(struct i2c_client *client,
333 const struct i2c_device_id *id)
334{
335 struct si2157_config *cfg = client->dev.platform_data;
336 struct dvb_frontend *fe = cfg->fe;
337 struct si2157 *s;
338 struct si2157_cmd cmd;
339 int ret;
340
341 s = kzalloc(sizeof(struct si2157), GFP_KERNEL);
342 if (!s) {
343 ret = -ENOMEM;
Olli Salonen67d01132014-08-05 09:03:54 -0300344 dev_err(&client->dev, "kzalloc() failed\n");
Antti Palosaari930a8732014-04-10 21:58:10 -0300345 goto err;
346 }
347
348 s->client = client;
349 s->fe = cfg->fe;
Matthias Schwarzott05024ef2014-07-15 16:34:36 -0300350 s->inversion = cfg->inversion;
Olli Salonen4cbf6ed2014-08-25 15:07:03 -0300351 s->fw_loaded = false;
Olli Salonen073f3842014-11-24 03:57:33 -0300352 s->chiptype = (u8)id->driver_data;
Antti Palosaari930a8732014-04-10 21:58:10 -0300353 mutex_init(&s->i2c_mutex);
354
355 /* check if the tuner is there */
Antti Palosaarie6b43802014-07-10 06:02:53 -0300356 cmd.wlen = 0;
357 cmd.rlen = 1;
Antti Palosaari930a8732014-04-10 21:58:10 -0300358 ret = si2157_cmd_execute(s, &cmd);
359 if (ret)
360 goto err;
361
362 fe->tuner_priv = s;
Olli Salonen6cc8a352014-07-18 02:41:12 -0300363 memcpy(&fe->ops.tuner_ops, &si2157_ops,
Antti Palosaari930a8732014-04-10 21:58:10 -0300364 sizeof(struct dvb_tuner_ops));
365
366 i2c_set_clientdata(client, s);
367
368 dev_info(&s->client->dev,
Olli Salonen073f3842014-11-24 03:57:33 -0300369 "Silicon Labs %s successfully attached\n",
370 s->chiptype == SI2157_CHIPTYPE_SI2146 ?
371 "Si2146" : "Si2147/2157/2158");
372
Antti Palosaari930a8732014-04-10 21:58:10 -0300373 return 0;
374err:
Olli Salonen67d01132014-08-05 09:03:54 -0300375 dev_dbg(&client->dev, "failed=%d\n", ret);
Antti Palosaari930a8732014-04-10 21:58:10 -0300376 kfree(s);
377
378 return ret;
379}
380
381static int si2157_remove(struct i2c_client *client)
382{
383 struct si2157 *s = i2c_get_clientdata(client);
384 struct dvb_frontend *fe = s->fe;
385
Olli Salonen67d01132014-08-05 09:03:54 -0300386 dev_dbg(&client->dev, "\n");
Antti Palosaari930a8732014-04-10 21:58:10 -0300387
388 memset(&fe->ops.tuner_ops, 0, sizeof(struct dvb_tuner_ops));
389 fe->tuner_priv = NULL;
390 kfree(s);
391
392 return 0;
393}
394
395static const struct i2c_device_id si2157_id[] = {
396 {"si2157", 0},
Olli Salonen073f3842014-11-24 03:57:33 -0300397 {"si2146", 1},
Antti Palosaari930a8732014-04-10 21:58:10 -0300398 {}
399};
400MODULE_DEVICE_TABLE(i2c, si2157_id);
401
402static struct i2c_driver si2157_driver = {
403 .driver = {
404 .owner = THIS_MODULE,
405 .name = "si2157",
406 },
407 .probe = si2157_probe,
408 .remove = si2157_remove,
409 .id_table = si2157_id,
410};
411
412module_i2c_driver(si2157_driver);
413
Olli Salonen073f3842014-11-24 03:57:33 -0300414MODULE_DESCRIPTION("Silicon Labs Si2146/2147/2157/2158 silicon tuner driver");
Antti Palosaari930a8732014-04-10 21:58:10 -0300415MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>");
416MODULE_LICENSE("GPL");
Antti Palosaaribac53a22014-07-13 16:13:49 -0300417MODULE_FIRMWARE(SI2158_A20_FIRMWARE);