smsdvb.c 10.9 KB
Newer Older
1 2 3
/*
 *  Driver for the Siano SMS10xx USB dongle
 *
4 5 6
 *  author: Anatoly Greenblat
 *
 *  Copyright (c), 2005-2008 Siano Mobile Silicon, Inc.
7 8
 *
 *  This program is free software; you can redistribute it and/or modify
9 10
 *  it under the terms of the GNU General Public License version 3 as
 *  published by the Free Software Foundation;
11
 *
12 13
 *  Software distributed under the License is distributed on an "AS IS"
 *  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
14
 *
15
 *  See the GNU General Public License for more details.
16 17 18 19 20 21
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

22 23 24 25
#include <linux/module.h>
#include <linux/init.h>

#include "smscoreapi.h"
26
#include "sms-cards.h"
27

28 29
DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);

30 31 32
struct list_head g_smsdvb_clients;
kmutex_t g_smsdvb_clientslock;

33
static int smsdvb_onresponse(void *context, struct smscore_buffer_t *cb)
34
{
35 36 37
	struct smsdvb_client_t *client = (struct smsdvb_client_t *) context;
	struct SmsMsgHdr_ST *phdr =
		(struct SmsMsgHdr_ST *)(((u8 *) cb->p) + cb->offset);
38

39
	switch (phdr->msgType) {
40 41
	case MSG_SMS_DVBT_BDA_DATA:
		dvb_dmx_swfilter(&client->demux, (u8 *)(phdr + 1),
42
				 cb->size - sizeof(struct SmsMsgHdr_ST));
43 44 45 46 47
		break;

	case MSG_SMS_RF_TUNE_RES:
		complete(&client->tune_done);
		break;
48

49 50
	case MSG_SMS_GET_STATISTICS_RES:
	{
51 52
		struct SmsMsgStatisticsInfo_ST *p =
			(struct SmsMsgStatisticsInfo_ST *)(phdr + 1);
53

54
		if (p->Stat.IsDemodLocked) {
55 56 57 58 59 60 61 62
			client->fe_status = FE_HAS_SIGNAL |
					    FE_HAS_CARRIER |
					    FE_HAS_VITERBI |
					    FE_HAS_SYNC |
					    FE_HAS_LOCK;

			client->fe_snr = p->Stat.SNR;
			client->fe_ber = p->Stat.BER;
63

64 65 66 67 68 69 70 71 72 73 74 75
			if (p->Stat.InBandPwr < -95)
				client->fe_signal_strength = 0;
			else if (p->Stat.InBandPwr > -29)
				client->fe_signal_strength = 100;
			else
				client->fe_signal_strength =
					(p->Stat.InBandPwr + 95) * 3 / 2;
		} else {
			client->fe_status = 0;
			client->fe_snr =
			client->fe_ber =
			client->fe_signal_strength = 0;
76
		}
77 78 79 80

		complete(&client->stat_done);
		break;
	} }
81 82 83 84 85 86

	smscore_putbuffer(client->coredev, cb);

	return 0;
}

87
static void smsdvb_unregister_client(struct smsdvb_client_t *client)
88
{
89
	/* must be called under clientslock */
90 91 92 93 94 95 96 97 98 99 100

	list_del(&client->entry);

	smscore_unregister_client(client->smsclient);
	dvb_unregister_frontend(&client->frontend);
	dvb_dmxdev_release(&client->dmxdev);
	dvb_dmx_release(&client->demux);
	dvb_unregister_adapter(&client->adapter);
	kfree(client);
}

101
static void smsdvb_onremove(void *context)
102 103 104
{
	kmutex_lock(&g_smsdvb_clientslock);

105
	smsdvb_unregister_client((struct smsdvb_client_t *) context);
106 107 108 109 110 111

	kmutex_unlock(&g_smsdvb_clientslock);
}

static int smsdvb_start_feed(struct dvb_demux_feed *feed)
{
112 113 114
	struct smsdvb_client_t *client =
		container_of(feed->demux, struct smsdvb_client_t, demux);
	struct SmsMsgData_ST PidMsg;
115

116
	sms_debug("add pid %d(%x)",
117
		  feed->pid, feed->pid);
118 119 120 121 122 123 124 125

	PidMsg.xMsgHeader.msgSrcId = DVBT_BDA_CONTROL_MSG_ID;
	PidMsg.xMsgHeader.msgDstId = HIF_TASK;
	PidMsg.xMsgHeader.msgFlags = 0;
	PidMsg.xMsgHeader.msgType  = MSG_SMS_ADD_PID_FILTER_REQ;
	PidMsg.xMsgHeader.msgLength = sizeof(PidMsg);
	PidMsg.msgData[0] = feed->pid;

126 127
	return smsclient_sendrequest(client->smsclient,
				     &PidMsg, sizeof(PidMsg));
128 129 130 131
}

static int smsdvb_stop_feed(struct dvb_demux_feed *feed)
{
132 133 134
	struct smsdvb_client_t *client =
		container_of(feed->demux, struct smsdvb_client_t, demux);
	struct SmsMsgData_ST PidMsg;
135

136
	sms_debug("remove pid %d(%x)",
137
		  feed->pid, feed->pid);
138 139 140 141 142 143 144 145

	PidMsg.xMsgHeader.msgSrcId = DVBT_BDA_CONTROL_MSG_ID;
	PidMsg.xMsgHeader.msgDstId = HIF_TASK;
	PidMsg.xMsgHeader.msgFlags = 0;
	PidMsg.xMsgHeader.msgType  = MSG_SMS_REMOVE_PID_FILTER_REQ;
	PidMsg.xMsgHeader.msgLength = sizeof(PidMsg);
	PidMsg.msgData[0] = feed->pid;

146 147
	return smsclient_sendrequest(client->smsclient,
				     &PidMsg, sizeof(PidMsg));
148 149
}

150
static int smsdvb_sendrequest_and_wait(struct smsdvb_client_t *client,
151 152
					void *buffer, size_t size,
					struct completion *completion)
153 154 155 156 157
{
	int rc = smsclient_sendrequest(client->smsclient, buffer, size);
	if (rc < 0)
		return rc;

158 159 160
	return wait_for_completion_timeout(completion,
					   msecs_to_jiffies(2000)) ?
						0 : -ETIME;
161 162
}

163
static int smsdvb_send_statistics_request(struct smsdvb_client_t *client)
164
{
165
	struct SmsMsgHdr_ST Msg = { MSG_SMS_GET_STATISTICS_REQ,
166
			     DVBT_BDA_CONTROL_MSG_ID,
167
			     HIF_TASK, sizeof(struct SmsMsgHdr_ST), 0 };
168 169
	return smsdvb_sendrequest_and_wait(client, &Msg, sizeof(Msg),
					   &client->stat_done);
170 171 172 173
}

static int smsdvb_read_status(struct dvb_frontend *fe, fe_status_t *stat)
{
174 175
	struct smsdvb_client_t *client =
		container_of(fe, struct smsdvb_client_t, frontend);
176 177 178 179 180 181 182 183 184 185
	int rc = smsdvb_send_statistics_request(client);

	if (!rc)
		*stat = client->fe_status;

	return rc;
}

static int smsdvb_read_ber(struct dvb_frontend *fe, u32 *ber)
{
186 187
	struct smsdvb_client_t *client =
		container_of(fe, struct smsdvb_client_t, frontend);
188 189 190 191 192 193 194 195 196 197
	int rc = smsdvb_send_statistics_request(client);

	if (!rc)
		*ber = client->fe_ber;

	return rc;
}

static int smsdvb_read_signal_strength(struct dvb_frontend *fe, u16 *strength)
{
198 199
	struct smsdvb_client_t *client =
		container_of(fe, struct smsdvb_client_t, frontend);
200 201 202 203 204 205 206 207 208 209
	int rc = smsdvb_send_statistics_request(client);

	if (!rc)
		*strength = client->fe_signal_strength;

	return rc;
}

static int smsdvb_read_snr(struct dvb_frontend *fe, u16 *snr)
{
210 211
	struct smsdvb_client_t *client =
		container_of(fe, struct smsdvb_client_t, frontend);
212 213 214 215 216 217 218 219
	int rc = smsdvb_send_statistics_request(client);

	if (!rc)
		*snr = client->fe_snr;

	return rc;
}

220 221
static int smsdvb_get_tune_settings(struct dvb_frontend *fe,
				    struct dvb_frontend_tune_settings *tune)
222
{
223
	sms_debug("");
224 225 226 227 228 229 230

	tune->min_delay_ms = 400;
	tune->step_size = 250000;
	tune->max_drift = 0;
	return 0;
}

231 232
static int smsdvb_set_frontend(struct dvb_frontend *fe,
			       struct dvb_frontend_parameters *fep)
233
{
234 235
	struct smsdvb_client_t *client =
		container_of(fe, struct smsdvb_client_t, frontend);
236

237 238
	struct {
		struct SmsMsgHdr_ST	Msg;
239
		u32		Data[3];
240 241 242 243 244 245 246 247 248 249
	} Msg;

	Msg.Msg.msgSrcId  = DVBT_BDA_CONTROL_MSG_ID;
	Msg.Msg.msgDstId  = HIF_TASK;
	Msg.Msg.msgFlags  = 0;
	Msg.Msg.msgType   = MSG_SMS_RF_TUNE_REQ;
	Msg.Msg.msgLength = sizeof(Msg);
	Msg.Data[0] = fep->frequency;
	Msg.Data[2] = 12000000;

250
	sms_debug("freq %d band %d",
251
		  fep->frequency, fep->u.ofdm.bandwidth);
252

253 254 255 256 257 258
	switch (fep->u.ofdm.bandwidth) {
	case BANDWIDTH_8_MHZ: Msg.Data[1] = BW_8_MHZ; break;
	case BANDWIDTH_7_MHZ: Msg.Data[1] = BW_7_MHZ; break;
	case BANDWIDTH_6_MHZ: Msg.Data[1] = BW_6_MHZ; break;
	case BANDWIDTH_AUTO: return -EOPNOTSUPP;
	default: return -EINVAL;
259 260
	}

261 262
	return smsdvb_sendrequest_and_wait(client, &Msg, sizeof(Msg),
					   &client->tune_done);
263 264
}

265 266
static int smsdvb_get_frontend(struct dvb_frontend *fe,
			       struct dvb_frontend_parameters *fep)
267
{
268 269
	struct smsdvb_client_t *client =
		container_of(fe, struct smsdvb_client_t, frontend);
270

271
	sms_debug("");
272

273
	/* todo: */
274 275
	memcpy(fep, &client->fe_params,
	       sizeof(struct dvb_frontend_parameters));
276 277 278 279 280
	return 0;
}

static void smsdvb_release(struct dvb_frontend *fe)
{
281
	/* do nothing */
282 283 284 285
}

static struct dvb_frontend_ops smsdvb_fe_ops = {
	.info = {
286
		.name			= "Siano Mobile Digital SMS1xxx",
287
		.type			= FE_OFDM,
288 289 290 291
		.frequency_min		= 44250000,
		.frequency_max		= 867250000,
		.frequency_stepsize	= 250000,
		.caps = FE_CAN_INVERSION_AUTO |
292 293 294 295 296 297 298
			FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 |
			FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 | FE_CAN_FEC_AUTO |
			FE_CAN_QPSK | FE_CAN_QAM_16 | FE_CAN_QAM_64 |
			FE_CAN_QAM_AUTO | FE_CAN_TRANSMISSION_MODE_AUTO |
			FE_CAN_GUARD_INTERVAL_AUTO |
			FE_CAN_RECOVER |
			FE_CAN_HIERARCHY_AUTO,
299 300 301 302 303 304 305 306 307 308 309 310 311 312
	},

	.release = smsdvb_release,

	.set_frontend = smsdvb_set_frontend,
	.get_frontend = smsdvb_get_frontend,
	.get_tune_settings = smsdvb_get_tune_settings,

	.read_status = smsdvb_read_status,
	.read_ber = smsdvb_read_ber,
	.read_signal_strength = smsdvb_read_signal_strength,
	.read_snr = smsdvb_read_snr,
};

313 314
static int smsdvb_hotplug(struct smscore_device_t *coredev,
			  struct device *device, int arrival)
315
{
316 317
	struct smsclient_params_t params;
	struct smsdvb_client_t *client;
318 319
	int rc;

320
	/* device removal handled by onremove callback */
321 322 323
	if (!arrival)
		return 0;

324
	if (smscore_get_device_mode(coredev) != 4) {
325 326
		sms_err("SMS Device mode is not set for "
			"DVB operation.");
327
		return 0;
328 329
	}

330
	client = kzalloc(sizeof(struct smsdvb_client_t), GFP_KERNEL);
331
	if (!client) {
332
		sms_err("kmalloc() failed");
333 334 335
		return -ENOMEM;
	}

336
	/* register dvb adapter */
337 338 339
	rc = dvb_register_adapter(&client->adapter,
				  sms_get_board(
					smscore_get_board_id(coredev))->name,
340 341
				  THIS_MODULE, device, adapter_nr);
	if (rc < 0) {
342
		sms_err("dvb_register_adapter() failed %d", rc);
343 344 345
		goto adapter_error;
	}

346
	/* init dvb demux */
347
	client->demux.dmx.capabilities = DMX_TS_FILTERING;
348
	client->demux.filternum = 32; /* todo: nova ??? */
349 350 351 352 353
	client->demux.feednum = 32;
	client->demux.start_feed = smsdvb_start_feed;
	client->demux.stop_feed = smsdvb_stop_feed;

	rc = dvb_dmx_init(&client->demux);
354
	if (rc < 0) {
355
		sms_err("dvb_dmx_init failed %d", rc);
356 357 358
		goto dvbdmx_error;
	}

359
	/* init dmxdev */
360 361 362 363 364
	client->dmxdev.filternum = 32;
	client->dmxdev.demux = &client->demux.dmx;
	client->dmxdev.capabilities = 0;

	rc = dvb_dmxdev_init(&client->dmxdev, &client->adapter);
365
	if (rc < 0) {
366
		sms_err("dvb_dmxdev_init failed %d", rc);
367 368 369
		goto dmxdev_error;
	}

370
	/* init and register frontend */
371 372
	memcpy(&client->frontend.ops, &smsdvb_fe_ops,
	       sizeof(struct dvb_frontend_ops));
373 374

	rc = dvb_register_frontend(&client->adapter, &client->frontend);
375
	if (rc < 0) {
376
		sms_err("frontend registration failed %d", rc);
377 378 379
		goto frontend_error;
	}

380
	params.initial_id = 1;
381 382 383 384 385 386
	params.data_type = MSG_SMS_DVBT_BDA_DATA;
	params.onresponse_handler = smsdvb_onresponse;
	params.onremove_handler = smsdvb_onremove;
	params.context = client;

	rc = smscore_register_client(coredev, &params, &client->smsclient);
387
	if (rc < 0) {
388
		sms_err("smscore_register_client() failed %d", rc);
389 390 391 392 393 394 395 396 397 398 399 400 401 402
		goto client_error;
	}

	client->coredev = coredev;

	init_completion(&client->tune_done);
	init_completion(&client->stat_done);

	kmutex_lock(&g_smsdvb_clientslock);

	list_add(&client->entry, &g_smsdvb_clients);

	kmutex_unlock(&g_smsdvb_clientslock);

403
	sms_info("success");
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423

	return 0;

client_error:
	dvb_unregister_frontend(&client->frontend);

frontend_error:
	dvb_dmxdev_release(&client->dmxdev);

dmxdev_error:
	dvb_dmx_release(&client->demux);

dvbdmx_error:
	dvb_unregister_adapter(&client->adapter);

adapter_error:
	kfree(client);
	return rc;
}

424 425 426 427 428 429 430 431 432
int smsdvb_register(void)
{
	int rc;

	INIT_LIST_HEAD(&g_smsdvb_clients);
	kmutex_init(&g_smsdvb_clientslock);

	rc = smscore_register_hotplug(smsdvb_hotplug);

433
	sms_debug("");
434 435 436 437 438 439 440 441 442 443 444

	return rc;
}

void smsdvb_unregister(void)
{
	smscore_unregister_hotplug(smsdvb_hotplug);

	kmutex_lock(&g_smsdvb_clientslock);

	while (!list_empty(&g_smsdvb_clients))
445
	       smsdvb_unregister_client(
446
			(struct smsdvb_client_t *) g_smsdvb_clients.next);
447 448 449

	kmutex_unlock(&g_smsdvb_clientslock);
}