si2157.c 9.8 KB
Newer Older
1
/*
C
CrazyCat 已提交
2
 * Silicon Labs Si2146/2147/2148/2157/2158 silicon tuner driver
3 4 5 6 7 8 9 10 11 12 13 14 15 16
 *
 * Copyright (C) 2014 Antti Palosaari <crope@iki.fi>
 *
 *    This program is free software; you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation; either version 2 of the License, or
 *    (at your option) any later version.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 */

17 18
#include "si2157_priv.h"

19 20
static const struct dvb_tuner_ops si2157_ops;

21
/* execute firmware command */
22
static int si2157_cmd_execute(struct i2c_client *client, struct si2157_cmd *cmd)
23
{
24
	struct si2157_dev *dev = i2c_get_clientdata(client);
25 26 27
	int ret;
	unsigned long timeout;

28
	mutex_lock(&dev->i2c_mutex);
29

30
	if (cmd->wlen) {
31
		/* write cmd and args for firmware */
32
		ret = i2c_master_send(client, cmd->args, cmd->wlen);
33 34
		if (ret < 0) {
			goto err_mutex_unlock;
35
		} else if (ret != cmd->wlen) {
36 37 38 39 40
			ret = -EREMOTEIO;
			goto err_mutex_unlock;
		}
	}

41 42 43 44 45
	if (cmd->rlen) {
		/* wait cmd execution terminate */
		#define TIMEOUT 80
		timeout = jiffies + msecs_to_jiffies(TIMEOUT);
		while (!time_after(jiffies, timeout)) {
46
			ret = i2c_master_recv(client, cmd->args, cmd->rlen);
47 48 49 50 51 52 53 54 55 56
			if (ret < 0) {
				goto err_mutex_unlock;
			} else if (ret != cmd->rlen) {
				ret = -EREMOTEIO;
				goto err_mutex_unlock;
			}

			/* firmware ready? */
			if ((cmd->args[0] >> 7) & 0x01)
				break;
57 58
		}

59
		dev_dbg(&client->dev, "cmd execution took %d ms\n",
60 61
				jiffies_to_msecs(jiffies) -
				(jiffies_to_msecs(timeout) - TIMEOUT));
62

63 64 65 66
		if (!((cmd->args[0] >> 7) & 0x01)) {
			ret = -ETIMEDOUT;
			goto err_mutex_unlock;
		}
67 68
	}

69 70
	mutex_unlock(&dev->i2c_mutex);
	return 0;
71

72
err_mutex_unlock:
73
	mutex_unlock(&dev->i2c_mutex);
74
	dev_dbg(&client->dev, "failed=%d\n", ret);
75 76 77 78 79
	return ret;
}

static int si2157_init(struct dvb_frontend *fe)
{
80 81
	struct i2c_client *client = fe->tuner_priv;
	struct si2157_dev *dev = i2c_get_clientdata(client);
82
	int ret, len, remaining;
83
	struct si2157_cmd cmd;
84
	const struct firmware *fw;
85
	u8 *fw_file;
86
	unsigned int chip_id;
87

88
	dev_dbg(&client->dev, "\n");
89

90
	if (dev->fw_loaded)
91 92 93
		goto warm;

	/* power up */
94
	if (dev->chiptype == SI2157_CHIPTYPE_SI2146) {
95 96 97 98 99 100
		memcpy(cmd.args, "\xc0\x05\x01\x00\x00\x0b\x00\x00\x01", 9);
		cmd.wlen = 9;
	} else {
		memcpy(cmd.args, "\xc0\x00\x0c\x00\x00\x01\x01\x01\x01\x01\x01\x02\x00\x00\x01", 15);
		cmd.wlen = 15;
	}
101
	cmd.rlen = 1;
102
	ret = si2157_cmd_execute(client, &cmd);
103 104 105 106 107 108 109
	if (ret)
		goto err;

	/* query chip revision */
	memcpy(cmd.args, "\x02", 1);
	cmd.wlen = 1;
	cmd.rlen = 13;
110
	ret = si2157_cmd_execute(client, &cmd);
111 112 113
	if (ret)
		goto err;

114 115 116 117
	chip_id = cmd.args[1] << 24 | cmd.args[2] << 16 | cmd.args[3] << 8 |
			cmd.args[4] << 0;

	#define SI2158_A20 ('A' << 24 | 58 << 16 | '2' << 8 | '0' << 0)
C
CrazyCat 已提交
118
	#define SI2148_A20 ('A' << 24 | 48 << 16 | '2' << 8 | '0' << 0)
119
	#define SI2157_A30 ('A' << 24 | 57 << 16 | '3' << 8 | '0' << 0)
120
	#define SI2147_A30 ('A' << 24 | 47 << 16 | '3' << 8 | '0' << 0)
121
	#define SI2146_A10 ('A' << 24 | 46 << 16 | '1' << 8 | '0' << 0)
122 123 124

	switch (chip_id) {
	case SI2158_A20:
C
CrazyCat 已提交
125
	case SI2148_A20:
126 127 128
		fw_file = SI2158_A20_FIRMWARE;
		break;
	case SI2157_A30:
129
	case SI2147_A30:
130
	case SI2146_A10:
131 132
		goto skip_fw_download;
	default:
133
		dev_err(&client->dev, "unknown chip version Si21%d-%c%c%c\n",
O
Olli Salonen 已提交
134
				cmd.args[2], cmd.args[1],
135 136 137 138
				cmd.args[3], cmd.args[4]);
		ret = -EINVAL;
		goto err;
	}
139

140
	/* cold state - try to download firmware */
141
	dev_info(&client->dev, "found a '%s' in cold state\n",
O
Olli Salonen 已提交
142
			si2157_ops.info.name);
143

144
	/* request the firmware, this will block and timeout */
145
	ret = request_firmware(&fw, fw_file, &client->dev);
146
	if (ret) {
147
		dev_err(&client->dev, "firmware file '%s' not found\n",
O
Olli Salonen 已提交
148
				fw_file);
149 150
		goto err;
	}
151

152 153
	/* firmware should be n chunks of 17 bytes */
	if (fw->size % 17 != 0) {
154
		dev_err(&client->dev, "firmware file '%s' is invalid\n",
O
Olli Salonen 已提交
155
				fw_file);
156
		ret = -EINVAL;
157
		goto err_release_firmware;
158
	}
159

160
	dev_info(&client->dev, "downloading firmware from file '%s'\n",
O
Olli Salonen 已提交
161
			fw_file);
162

163 164 165 166 167
	for (remaining = fw->size; remaining > 0; remaining -= 17) {
		len = fw->data[fw->size - remaining];
		memcpy(cmd.args, &fw->data[(fw->size - remaining) + 1], len);
		cmd.wlen = len;
		cmd.rlen = 1;
168
		ret = si2157_cmd_execute(client, &cmd);
169
		if (ret) {
170
			dev_err(&client->dev, "firmware download failed %d\n",
O
Olli Salonen 已提交
171
					ret);
172
			goto err_release_firmware;
173 174 175
		}
	}

176 177 178
	release_firmware(fw);

skip_fw_download:
179 180 181 182
	/* reboot the tuner with new firmware? */
	memcpy(cmd.args, "\x01\x01", 2);
	cmd.wlen = 2;
	cmd.rlen = 1;
183
	ret = si2157_cmd_execute(client, &cmd);
184 185 186
	if (ret)
		goto err;

187 188 189 190 191 192 193 194 195 196 197
	/* query firmware version */
	memcpy(cmd.args, "\x11", 1);
	cmd.wlen = 1;
	cmd.rlen = 10;
	ret = si2157_cmd_execute(client, &cmd);
	if (ret)
		goto err;

	dev_info(&client->dev, "firmware version: %c.%c.%d\n",
			cmd.args[6], cmd.args[7], cmd.args[8]);

198
	dev->fw_loaded = true;
199

200
warm:
201
	dev->active = true;
202
	return 0;
203

204
err_release_firmware:
205
	release_firmware(fw);
206
err:
207
	dev_dbg(&client->dev, "failed=%d\n", ret);
208
	return ret;
209 210 211 212
}

static int si2157_sleep(struct dvb_frontend *fe)
{
213 214
	struct i2c_client *client = fe->tuner_priv;
	struct si2157_dev *dev = i2c_get_clientdata(client);
215 216
	int ret;
	struct si2157_cmd cmd;
217

218
	dev_dbg(&client->dev, "\n");
219

220
	dev->active = false;
221

222 223 224 225
	/* standby */
	memcpy(cmd.args, "\x16\x00", 2);
	cmd.wlen = 2;
	cmd.rlen = 1;
226
	ret = si2157_cmd_execute(client, &cmd);
227 228 229
	if (ret)
		goto err;

230
	return 0;
231
err:
232
	dev_dbg(&client->dev, "failed=%d\n", ret);
233
	return ret;
234 235 236 237
}

static int si2157_set_params(struct dvb_frontend *fe)
{
238 239
	struct i2c_client *client = fe->tuner_priv;
	struct si2157_dev *dev = i2c_get_clientdata(client);
240 241 242
	struct dtv_frontend_properties *c = &fe->dtv_property_cache;
	int ret;
	struct si2157_cmd cmd;
243
	u8 bandwidth, delivery_system;
244

245
	dev_dbg(&client->dev,
O
Olli Salonen 已提交
246
			"delivery_system=%d frequency=%u bandwidth_hz=%u\n",
247
			c->delivery_system, c->frequency, c->bandwidth_hz);
248

249
	if (!dev->active) {
250 251 252 253
		ret = -EAGAIN;
		goto err;
	}

254 255 256 257 258 259 260 261 262 263
	if (c->bandwidth_hz <= 6000000)
		bandwidth = 0x06;
	else if (c->bandwidth_hz <= 7000000)
		bandwidth = 0x07;
	else if (c->bandwidth_hz <= 8000000)
		bandwidth = 0x08;
	else
		bandwidth = 0x0f;

	switch (c->delivery_system) {
264 265 266
	case SYS_ATSC:
			delivery_system = 0x00;
			break;
267 268 269
	case SYS_DVBC_ANNEX_B:
			delivery_system = 0x10;
			break;
270 271 272 273 274 275 276 277 278 279 280 281 282 283
	case SYS_DVBT:
	case SYS_DVBT2: /* it seems DVB-T and DVB-T2 both are 0x20 here */
			delivery_system = 0x20;
			break;
	case SYS_DVBC_ANNEX_A:
			delivery_system = 0x30;
			break;
	default:
			ret = -EINVAL;
			goto err;
	}

	memcpy(cmd.args, "\x14\x00\x03\x07\x00\x00", 6);
	cmd.args[4] = delivery_system | bandwidth;
284
	if (dev->inversion)
285
		cmd.args[5] = 0x01;
286
	cmd.wlen = 6;
287
	cmd.rlen = 4;
288
	ret = si2157_cmd_execute(client, &cmd);
289 290 291
	if (ret)
		goto err;

292
	if (dev->chiptype == SI2157_CHIPTYPE_SI2146)
293 294 295
		memcpy(cmd.args, "\x14\x00\x02\x07\x00\x01", 6);
	else
		memcpy(cmd.args, "\x14\x00\x02\x07\x01\x00", 6);
296 297
	cmd.wlen = 6;
	cmd.rlen = 4;
298
	ret = si2157_cmd_execute(client, &cmd);
299 300 301
	if (ret)
		goto err;

302
	/* set frequency */
303
	memcpy(cmd.args, "\x41\x00\x00\x00\x00\x00\x00\x00", 8);
304 305 306 307
	cmd.args[4] = (c->frequency >>  0) & 0xff;
	cmd.args[5] = (c->frequency >>  8) & 0xff;
	cmd.args[6] = (c->frequency >> 16) & 0xff;
	cmd.args[7] = (c->frequency >> 24) & 0xff;
308 309
	cmd.wlen = 8;
	cmd.rlen = 1;
310
	ret = si2157_cmd_execute(client, &cmd);
311 312 313 314 315
	if (ret)
		goto err;

	return 0;
err:
316
	dev_dbg(&client->dev, "failed=%d\n", ret);
317 318 319
	return ret;
}

320 321 322 323 324 325
static int si2157_get_if_frequency(struct dvb_frontend *fe, u32 *frequency)
{
	*frequency = 5000000; /* default value of property 0x0706 */
	return 0;
}

326
static const struct dvb_tuner_ops si2157_ops = {
327
	.info = {
C
CrazyCat 已提交
328
		.name           = "Silicon Labs Si2146/2147/2148/2157/2158",
329
		.frequency_min  = 110000000,
330 331 332 333 334 335
		.frequency_max  = 862000000,
	},

	.init = si2157_init,
	.sleep = si2157_sleep,
	.set_params = si2157_set_params,
336
	.get_if_frequency = si2157_get_if_frequency,
337 338 339 340 341 342 343
};

static int si2157_probe(struct i2c_client *client,
		const struct i2c_device_id *id)
{
	struct si2157_config *cfg = client->dev.platform_data;
	struct dvb_frontend *fe = cfg->fe;
344
	struct si2157_dev *dev;
345 346 347
	struct si2157_cmd cmd;
	int ret;

348 349
	dev = kzalloc(sizeof(*dev), GFP_KERNEL);
	if (!dev) {
350
		ret = -ENOMEM;
O
Olli Salonen 已提交
351
		dev_err(&client->dev, "kzalloc() failed\n");
352 353 354
		goto err;
	}

355
	i2c_set_clientdata(client, dev);
356 357 358 359 360
	dev->fe = cfg->fe;
	dev->inversion = cfg->inversion;
	dev->fw_loaded = false;
	dev->chiptype = (u8)id->driver_data;
	mutex_init(&dev->i2c_mutex);
361 362

	/* check if the tuner is there */
363 364
	cmd.wlen = 0;
	cmd.rlen = 1;
365
	ret = si2157_cmd_execute(client, &cmd);
366
	if (ret)
367
		goto err_kfree;
368

369
	memcpy(&fe->ops.tuner_ops, &si2157_ops, sizeof(struct dvb_tuner_ops));
370
	fe->tuner_priv = client;
371

372
	dev_info(&client->dev, "Silicon Labs %s successfully attached\n",
373
			dev->chiptype == SI2157_CHIPTYPE_SI2146 ?
C
CrazyCat 已提交
374
			"Si2146" : "Si2147/2148/2157/2158");
375

376
	return 0;
377 378 379

err_kfree:
	kfree(dev);
380
err:
O
Olli Salonen 已提交
381
	dev_dbg(&client->dev, "failed=%d\n", ret);
382 383 384 385 386
	return ret;
}

static int si2157_remove(struct i2c_client *client)
{
387 388
	struct si2157_dev *dev = i2c_get_clientdata(client);
	struct dvb_frontend *fe = dev->fe;
389

O
Olli Salonen 已提交
390
	dev_dbg(&client->dev, "\n");
391 392 393

	memset(&fe->ops.tuner_ops, 0, sizeof(struct dvb_tuner_ops));
	fe->tuner_priv = NULL;
394
	kfree(dev);
395 396 397 398

	return 0;
}

399 400 401
static const struct i2c_device_id si2157_id_table[] = {
	{"si2157", SI2157_CHIPTYPE_SI2157},
	{"si2146", SI2157_CHIPTYPE_SI2146},
402 403
	{}
};
404
MODULE_DEVICE_TABLE(i2c, si2157_id_table);
405 406 407 408 409 410 411 412

static struct i2c_driver si2157_driver = {
	.driver = {
		.owner	= THIS_MODULE,
		.name	= "si2157",
	},
	.probe		= si2157_probe,
	.remove		= si2157_remove,
413
	.id_table	= si2157_id_table,
414 415 416 417
};

module_i2c_driver(si2157_driver);

C
CrazyCat 已提交
418
MODULE_DESCRIPTION("Silicon Labs Si2146/2147/2148/2157/2158 silicon tuner driver");
419 420
MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>");
MODULE_LICENSE("GPL");
421
MODULE_FIRMWARE(SI2158_A20_FIRMWARE);