smscoreapi.c 33.5 KB
Newer Older
1
/*
2 3 4 5 6
 *  Siano core API module
 *
 *  This file contains implementation for the interface to sms core component
 *
 *  author: Anatoly Greenblat
7
 *
8
 *  Copyright (c), 2005-2008 Siano Mobile Silicon, Inc.
9 10
 *
 *  This program is free software; you can redistribute it and/or modify
11 12
 *  it under the terms of the GNU General Public License version 3 as
 *  published by the Free Software Foundation;
13
 *
14 15
 *  Software distributed under the License is distributed on an "AS IS"
 *  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
16
 *
17
 *  See the GNU General Public License for more details.
18 19 20 21 22 23
 *
 *  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.
 */

24 25 26 27 28 29 30 31 32 33 34 35
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/dma-mapping.h>
#include <linux/delay.h>
#include <asm/io.h>

#include <linux/firmware.h>

#include "smscoreapi.h"

36 37 38
#define PERROR(fmt, args...)\
	printk(KERN_ERR "smscore error: line %d- %s(): " fmt, \
		__LINE__,  __func__, ## args)
39 40 41

#ifdef SMSCORE_DEBUG
#undef PWARNING
42 43 44
#  define PWARNING(fmt, args...) printk(KERN_INFO "smscore warning: " \
					"line %d- %s(): " fmt, \
					__LINE__, __func__, ## args)
45
#undef PDEBUG					/* undef it, just in case */
46 47
#  define PDEBUG(fmt, args...)   printk(KERN_INFO "smscore - %s(): " fmt, \
					__func__, ## args)
48 49 50 51 52
#else /*SMSCORE_DEBUG*/
#define PDEBUG(fmt, args...)
#define PWARNING(fmt, args...)
#endif

53
struct smscore_device_notifyee_t {
54 55
	struct list_head entry;
	hotplug_t hotplug;
56
};
57

58
struct smscore_idlist_t {
59 60 61
	struct list_head entry;
	int		id;
	int		data_type;
62
};
63

64
struct smscore_client_t {
65
	struct list_head entry;
66
	struct smscore_device_t *coredev;
67
	void			*context;
68
	struct list_head 	idlist;
69 70
	onresponse_t	onresponse_handler;
	onremove_t		onremove_handler;
71
};
72

73
struct smscore_device_t {
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
	struct list_head entry;

	struct list_head clients;
	struct list_head subclients;
	spinlock_t		clientslock;

	struct list_head buffers;
	spinlock_t		bufferslock;
	int				num_buffers;

	void			*common_buffer;
	int				common_buffer_size;
	dma_addr_t		common_buffer_phys;

	void			*context;
	struct device	*device;

	char			devpath[32];
	unsigned long	device_flags;

	setmode_t		setmode_handler;
	detectmode_t	detectmode_handler;
	sendrequest_t	sendrequest_handler;
	preload_t		preload_handler;
	postload_t		postload_handler;

	int				mode, modes_supported;

	struct completion version_ex_done, data_download_done, trigger_done;
	struct completion init_device_done, reload_start_done, resume_done;
104
};
105

106
struct smscore_registry_entry_t {
107 108 109
	struct list_head entry;
	char			devpath[32];
	int				mode;
110 111
	enum sms_device_type_st	type;
};
112 113 114 115 116 117 118 119 120

struct list_head g_smscore_notifyees;
struct list_head g_smscore_devices;
kmutex_t g_smscore_deviceslock;

struct list_head g_smscore_registry;
kmutex_t g_smscore_registrylock;

static int default_mode = 1;
121

122 123 124
module_param(default_mode, int, 0644);
MODULE_PARM_DESC(default_mode, "default firmware id (device mode)");

125
static struct smscore_registry_entry_t *smscore_find_registry(char *devpath)
126
{
127
	struct smscore_registry_entry_t *entry;
128 129 130
	struct list_head *next;

	kmutex_lock(&g_smscore_registrylock);
131 132 133
	for (next = g_smscore_registry.next;
	     next != &g_smscore_registry;
	     next = next->next) {
134
		entry = (struct smscore_registry_entry_t *) next;
135
		if (!strcmp(entry->devpath, devpath)) {
136
			kmutex_unlock(&g_smscore_registrylock);
137
			return entry;
138 139
		}
	}
140 141 142
	entry = (struct smscore_registry_entry_t *)
			kmalloc(sizeof(struct smscore_registry_entry_t),
				GFP_KERNEL);
143
	if (entry) {
144 145 146
		entry->mode = default_mode;
		strcpy(entry->devpath, devpath);
		list_add(&entry->entry, &g_smscore_registry);
147 148 149
	} else
		printk(KERN_ERR "%s failed to create smscore_registry.\n",
		       __func__);
150
	kmutex_unlock(&g_smscore_registrylock);
151 152
	return entry;
}
153

154
int smscore_registry_getmode(char *devpath)
155
{
156
	struct smscore_registry_entry_t *entry;
157

158 159
	entry = smscore_find_registry(devpath);
	if (entry)
160 161
		return entry->mode;
	else
162 163
		printk(KERN_ERR "%s No registry found.\n", __func__);

164 165 166
	return default_mode;
}

167
enum sms_device_type_st smscore_registry_gettype(char *devpath)
168
{
169
	struct smscore_registry_entry_t *entry;
170

171 172
	entry = smscore_find_registry(devpath);
	if (entry)
173 174
		return entry->type;
	else
175 176
		printk(KERN_ERR "%s No registry found.\n", __func__);

177 178
	return -1;
}
179

180 181
void smscore_registry_setmode(char *devpath, int mode)
{
182
	struct smscore_registry_entry_t *entry;
183

184 185 186
	entry = smscore_find_registry(devpath);
	if (entry)
		entry->mode = mode;
187
	else
188 189
		printk(KERN_ERR "%s No registry found.\n", __func__);
}
190

191
void smscore_registry_settype(char *devpath, enum sms_device_type_st type)
192
{
193
	struct smscore_registry_entry_t *entry;
194

195 196
	entry = smscore_find_registry(devpath);
	if (entry)
197 198
		entry->type = type;
	else
199
		printk(KERN_ERR "%s No registry found.\n", __func__);
200 201 202
}


203

204
void list_add_locked(struct list_head *new, struct list_head *head,
205
		     spinlock_t *lock)
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
{
	unsigned long flags;

	spin_lock_irqsave(lock, flags);

	list_add(new, head);

	spin_unlock_irqrestore(lock, flags);
}

/**
 * register a client callback that called when device plugged in/unplugged
 * NOTE: if devices exist callback is called immediately for each device
 *
 * @param hotplug callback
 *
 * @return 0 on success, <0 on error.
 */
int smscore_register_hotplug(hotplug_t hotplug)
{
226
	struct smscore_device_notifyee_t *notifyee;
227 228 229 230 231
	struct list_head *next, *first;
	int rc = 0;

	kmutex_lock(&g_smscore_deviceslock);

232 233
	notifyee = kmalloc(sizeof(struct smscore_device_notifyee_t),
			   GFP_KERNEL);
234 235
	if (notifyee) {
		/* now notify callback about existing devices */
236
		first = &g_smscore_devices;
237 238 239
		for (next = first->next;
		     next != first && !rc;
		     next = next->next) {
240 241
			struct smscore_device_t *coredev =
				(struct smscore_device_t *) next;
242 243 244
			rc = hotplug(coredev, coredev->device, 1);
		}

245
		if (rc >= 0) {
246 247
			notifyee->hotplug = hotplug;
			list_add(&notifyee->entry, &g_smscore_notifyees);
248
		} else
249
			kfree(notifyee);
250
	} else
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
		rc = -ENOMEM;

	kmutex_unlock(&g_smscore_deviceslock);

	return rc;
}

/**
 * unregister a client callback that called when device plugged in/unplugged
 *
 * @param hotplug callback
 *
 */
void smscore_unregister_hotplug(hotplug_t hotplug)
{
	struct list_head *next, *first;

	kmutex_lock(&g_smscore_deviceslock);

	first = &g_smscore_notifyees;

272
	for (next = first->next; next != first;) {
273 274
		struct smscore_device_notifyee_t *notifyee =
			(struct smscore_device_notifyee_t *) next;
275 276
		next = next->next;

277
		if (notifyee->hotplug == hotplug) {
278 279 280 281 282 283 284 285
			list_del(&notifyee->entry);
			kfree(notifyee);
		}
	}

	kmutex_unlock(&g_smscore_deviceslock);
}

286
void smscore_notify_clients(struct smscore_device_t *coredev)
287
{
288
	struct smscore_client_t *client;
289

290 291
	/* the client must call smscore_unregister_client from remove handler */
	while (!list_empty(&coredev->clients)) {
292
		client = (struct smscore_client_t *) coredev->clients.next;
293 294 295 296
		client->onremove_handler(client->context);
	}
}

297 298
int smscore_notify_callbacks(struct smscore_device_t *coredev,
			     struct device *device, int arrival)
299 300 301 302
{
	struct list_head *next, *first;
	int rc = 0;

303
	/* note: must be called under g_deviceslock */
304 305 306

	first = &g_smscore_notifyees;

307
	for (next = first->next; next != first; next = next->next) {
308
		rc = ((struct smscore_device_notifyee_t *) next)->
309
				hotplug(coredev, device, arrival);
310 311 312 313 314 315 316
		if (rc < 0)
			break;
	}

	return rc;
}

317
struct smscore_buffer_t *smscore_createbuffer(u8 *buffer, void *common_buffer,
318
				       dma_addr_t common_buffer_phys)
319
{
320 321
	struct smscore_buffer_t *cb =
		kmalloc(sizeof(struct smscore_buffer_t), GFP_KERNEL);
322
	if (!cb) {
323
		printk(KERN_INFO "%s kmalloc(...) failed\n", __func__);
324 325 326 327
		return NULL;
	}

	cb->p = buffer;
328
	cb->offset_in_common = buffer - (u8 *) common_buffer;
329 330 331 332 333 334
	cb->phys = common_buffer_phys + cb->offset_in_common;

	return cb;
}

/**
335 336
 * creates coredev object for a device, prepares buffers,
 * creates buffer mappings, notifies registered hotplugs about new device.
337
 *
338 339
 * @param params device pointer to struct with device specific parameters
 *               and handlers
340 341 342 343
 * @param coredev pointer to a value that receives created coredev object
 *
 * @return 0 on success, <0 on error.
 */
344 345
int smscore_register_device(struct smsdevice_params_t *params,
			    struct smscore_device_t **coredev)
346
{
347
	struct smscore_device_t *dev;
348 349
	u8 *buffer;

350
	dev = kzalloc(sizeof(struct smscore_device_t), GFP_KERNEL);
351
	if (!dev) {
352
		printk(KERN_INFO "%s kzalloc(...) failed\n", __func__);
353 354 355
		return -ENOMEM;
	}

356
	/* init list entry so it could be safe in smscore_unregister_device */
357 358
	INIT_LIST_HEAD(&dev->entry);

359
	/* init queues */
360 361 362
	INIT_LIST_HEAD(&dev->clients);
	INIT_LIST_HEAD(&dev->buffers);

363
	/* init locks */
364 365 366
	spin_lock_init(&dev->clientslock);
	spin_lock_init(&dev->bufferslock);

367
	/* init completion events */
368 369 370 371 372 373 374
	init_completion(&dev->version_ex_done);
	init_completion(&dev->data_download_done);
	init_completion(&dev->trigger_done);
	init_completion(&dev->init_device_done);
	init_completion(&dev->reload_start_done);
	init_completion(&dev->resume_done);

375
	/* alloc common buffer */
376
	dev->common_buffer_size = params->buffer_size * params->num_buffers;
377 378 379 380
	dev->common_buffer = dma_alloc_coherent(NULL, dev->common_buffer_size,
						&dev->common_buffer_phys,
						GFP_KERNEL | GFP_DMA);
	if (!dev->common_buffer) {
381 382 383 384
		smscore_unregister_device(dev);
		return -ENOMEM;
	}

385 386 387
	/* prepare dma buffers */
	for (buffer = dev->common_buffer;
	     dev->num_buffers < params->num_buffers;
388
	     dev->num_buffers++, buffer += params->buffer_size) {
389
		struct smscore_buffer_t *cb =
390 391
			smscore_createbuffer(buffer, dev->common_buffer,
					     dev->common_buffer_phys);
392
		if (!cb) {
393 394 395 396 397 398 399
			smscore_unregister_device(dev);
			return -ENOMEM;
		}

		smscore_putbuffer(dev, cb);
	}

400 401
	printk(KERN_INFO "%s allocated %d buffers\n",
	       __func__, dev->num_buffers);
402 403 404 405 406 407 408 409 410 411 412 413 414

	dev->mode = DEVICE_MODE_NONE;
	dev->context = params->context;
	dev->device = params->device;
	dev->setmode_handler = params->setmode_handler;
	dev->detectmode_handler = params->detectmode_handler;
	dev->sendrequest_handler = params->sendrequest_handler;
	dev->preload_handler = params->preload_handler;
	dev->postload_handler = params->postload_handler;

	dev->device_flags = params->flags;
	strcpy(dev->devpath, params->devpath);

415
	smscore_registry_settype(dev->devpath, params->device_type);
416

417
	/* add device to devices list */
418 419 420 421 422 423
	kmutex_lock(&g_smscore_deviceslock);
	list_add(&dev->entry, &g_smscore_devices);
	kmutex_unlock(&g_smscore_deviceslock);

	*coredev = dev;

424
	printk(KERN_INFO "%s device %p created\n", __func__, dev);
425 426 427 428 429 430 431

	return 0;
}

/**
 * sets initial device mode and notifies client hotplugs that device is ready
 *
432 433
 * @param coredev pointer to a coredev object returned by
 * 		  smscore_register_device
434 435 436
 *
 * @return 0 on success, <0 on error.
 */
437
int smscore_start_device(struct smscore_device_t *coredev)
438
{
439 440
	int rc = smscore_set_device_mode(
			coredev, smscore_registry_getmode(coredev->devpath));
441
	if (rc < 0) {
442 443
		printk(KERN_INFO "%s set device mode faile , rc %d\n",
		       __func__, rc);
444
		return rc;
445
	}
446 447 448 449 450

	kmutex_lock(&g_smscore_deviceslock);

	rc = smscore_notify_callbacks(coredev, coredev->device, 1);

451 452
	printk(KERN_INFO "%s device %p started, rc %d\n",
	       __func__, coredev, rc);
453 454 455 456 457 458

	kmutex_unlock(&g_smscore_deviceslock);

	return rc;
}

459
int smscore_sendrequest_and_wait(struct smscore_device_t *coredev, void *buffer,
460
				 size_t size, struct completion *completion)
461 462
{
	int rc = coredev->sendrequest_handler(coredev->context, buffer, size);
463 464 465
	if (rc < 0) {
		printk(KERN_INFO "%s sendrequest returned error %d\n",
		       __func__, rc);
466
		return rc;
467
	}
468

469 470 471
	return wait_for_completion_timeout(completion,
					   msecs_to_jiffies(10000)) ?
						0 : -ETIME;
472 473
}

474 475
int smscore_load_firmware_family2(struct smscore_device_t *coredev,
				  void *buffer, size_t size)
476
{
477 478
	struct SmsFirmware_ST *firmware = (struct SmsFirmware_ST *) buffer;
	struct SmsMsgHdr_ST *msg;
479
	u32 mem_address = firmware->StartAddress;
480
	u8 *payload = firmware->Payload;
481 482
	int rc = 0;

483 484 485
	printk(KERN_INFO "%s loading FW to addr 0x%x size %d\n",
	       __func__, mem_address, firmware->Length);
	if (coredev->preload_handler) {
486 487 488 489 490
		rc = coredev->preload_handler(coredev->context);
		if (rc < 0)
			return rc;
	}

491
	/* PAGE_SIZE buffer shall be enough and dma aligned */
492
	msg = kmalloc(PAGE_SIZE, GFP_KERNEL | GFP_DMA);
493 494 495
	if (!msg)
		return -ENOMEM;

496
	if (coredev->mode != DEVICE_MODE_NONE) {
497
		PDEBUG("Sending reload command\n");
498
		SMS_INIT_MSG(msg, MSG_SW_RELOAD_START_REQ,
499
			     sizeof(struct SmsMsgHdr_ST));
500 501 502
		rc = smscore_sendrequest_and_wait(coredev, msg,
						  msg->msgLength,
						  &coredev->reload_start_done);
503
		mem_address = *(u32 *) &payload[20];
504 505
	}

506
	while (size && rc >= 0) {
507 508
		struct SmsDataDownload_ST *DataMsg =
			(struct SmsDataDownload_ST *) msg;
509 510
		int payload_size = min((int) size, SMS_MAX_PAYLOAD_SIZE);

511
		SMS_INIT_MSG(msg, MSG_SMS_DATA_DOWNLOAD_REQ,
512
			     (u16)(sizeof(struct SmsMsgHdr_ST) +
513
				      sizeof(u32) + payload_size));
514 515 516 517

		DataMsg->MemAddr = mem_address;
		memcpy(DataMsg->Payload, payload, payload_size);

518 519
		if ((coredev->device_flags & SMS_ROM_NO_RESPONSE) &&
		    (coredev->mode == DEVICE_MODE_NONE))
520 521 522
			rc = coredev->sendrequest_handler(
				coredev->context, DataMsg,
				DataMsg->xMsgHeader.msgLength);
523
		else
524 525 526 527
			rc = smscore_sendrequest_and_wait(
				coredev, DataMsg,
				DataMsg->xMsgHeader.msgLength,
				&coredev->data_download_done);
528 529 530 531 532 533

		payload += payload_size;
		size -= payload_size;
		mem_address += payload_size;
	}

534 535
	if (rc >= 0) {
		if (coredev->mode == DEVICE_MODE_NONE) {
536 537
			struct SmsMsgData_ST *TriggerMsg =
				(struct SmsMsgData_ST *) msg;
538

539
			SMS_INIT_MSG(msg, MSG_SMS_SWDOWNLOAD_TRIGGER_REQ,
540
				     sizeof(struct SmsMsgHdr_ST) +
541
				     sizeof(u32) * 5);
542

543 544
			TriggerMsg->msgData[0] = firmware->StartAddress;
						/* Entry point */
545 546 547 548
			TriggerMsg->msgData[1] = 5; /* Priority */
			TriggerMsg->msgData[2] = 0x200; /* Stack size */
			TriggerMsg->msgData[3] = 0; /* Parameter */
			TriggerMsg->msgData[4] = 4; /* Task ID */
549

550
			if (coredev->device_flags & SMS_ROM_NO_RESPONSE) {
551 552 553
				rc = coredev->sendrequest_handler(
					coredev->context, TriggerMsg,
					TriggerMsg->xMsgHeader.msgLength);
554
				msleep(100);
555
			} else
556 557 558 559
				rc = smscore_sendrequest_and_wait(
					coredev, TriggerMsg,
					TriggerMsg->xMsgHeader.msgLength,
					&coredev->trigger_done);
560 561
		} else {
			SMS_INIT_MSG(msg, MSG_SW_RELOAD_EXEC_REQ,
562
				     sizeof(struct SmsMsgHdr_ST));
563

564 565
			rc = coredev->sendrequest_handler(coredev->context,
							  msg, msg->msgLength);
566
		}
567
		msleep(500);
568 569
	}

570
	printk(KERN_DEBUG "%s rc=%d, postload=%p \n", __func__, rc,
571
	       coredev->postload_handler);
572 573 574

	kfree(msg);

575
	return ((rc >= 0) && coredev->postload_handler) ?
576 577 578 579 580 581 582
		coredev->postload_handler(coredev->context) :
		rc;
}

/**
 * loads specified firmware into a buffer and calls device loadfirmware_handler
 *
583 584
 * @param coredev pointer to a coredev object returned by
 *                smscore_register_device
585 586 587 588 589
 * @param filename null-terminated string specifies firmware file name
 * @param loadfirmware_handler device handler that loads firmware
 *
 * @return 0 on success, <0 on error.
 */
590 591
int smscore_load_firmware_from_file(struct smscore_device_t *coredev,
				    char *filename,
592
				    loadfirmware_t loadfirmware_handler)
593 594 595 596
{
	int rc = -ENOENT;

	const struct firmware *fw;
597
	u8 *fw_buffer;
598

599 600
	if (loadfirmware_handler == NULL && !(coredev->device_flags &
					      SMS_DEVICE_FAMILY2))
601 602 603
		return -EINVAL;

	rc = request_firmware(&fw, filename, coredev->device);
604 605 606
	if (rc < 0) {
		printk(KERN_INFO "%s failed to open \"%s\"\n",
		       __func__, filename);
607 608
		return rc;
	}
609 610 611 612 613
	printk(KERN_INFO "%s read FW %s, size=%d\"\n", __func__,
	       filename, fw->size);
	fw_buffer = kmalloc(ALIGN(fw->size, SMS_ALLOC_ALIGNMENT),
			    GFP_KERNEL | GFP_DMA);
	if (fw_buffer) {
614 615 616
		memcpy(fw_buffer, fw->data, fw->size);

		rc = (coredev->device_flags & SMS_DEVICE_FAMILY2) ?
617 618 619 620 621
		      smscore_load_firmware_family2(coredev,
						    fw_buffer,
						    fw->size) :
		      loadfirmware_handler(coredev->context,
					   fw_buffer, fw->size);
622 623

		kfree(fw_buffer);
624 625 626
	} else {
		printk(KERN_INFO "%s failed to allocate firmware buffer\n",
		       __func__);
627 628 629 630 631 632 633 634
		rc = -ENOMEM;
	}

	release_firmware(fw);

	return rc;
}

635 636
int smscore_load_firmware_from_buffer(struct smscore_device_t *coredev,
				      u8 *buffer, int size, int new_mode)
637 638 639 640 641
{
	PERROR("Feature not implemented yet\n");
	return -EFAULT;
}

642
/**
643 644
 * notifies all clients registered with the device, notifies hotplugs,
 * frees all buffers and coredev object
645
 *
646 647
 * @param coredev pointer to a coredev object returned by
 *                smscore_register_device
648 649 650
 *
 * @return 0 on success, <0 on error.
 */
651
void smscore_unregister_device(struct smscore_device_t *coredev)
652
{
653
	struct smscore_buffer_t *cb;
654
	int num_buffers = 0;
655
	int retry = 0;
656 657 658 659 660 661

	kmutex_lock(&g_smscore_deviceslock);

	smscore_notify_clients(coredev);
	smscore_notify_callbacks(coredev, NULL, 0);

662 663
	/* at this point all buffers should be back
	 * onresponse must no longer be called */
664

665 666
	while (1) {
		while ((cb = smscore_getbuffer(coredev))) {
667
			kfree(cb);
668
			num_buffers++;
669 670 671
		}
		if (num_buffers == coredev->num_buffers)
			break;
672 673 674
		if (++retry > 10) {
			printk(KERN_INFO "%s exiting although "
			       "not all buffers released.\n", __func__);
675 676
			break;
		}
677

678 679
		printk(KERN_INFO "%s waiting for %d buffer(s)\n", __func__,
		       coredev->num_buffers - num_buffers);
680 681 682
		msleep(100);
	}

683
	printk(KERN_INFO "%s freed %d buffers\n", __func__, num_buffers);
684 685

	if (coredev->common_buffer)
686 687 688
		dma_free_coherent(NULL, coredev->common_buffer_size,
				  coredev->common_buffer,
				  coredev->common_buffer_phys);
689 690 691 692 693 694

	list_del(&coredev->entry);
	kfree(coredev);

	kmutex_unlock(&g_smscore_deviceslock);

695
	printk(KERN_INFO "%s device %p destroyed\n", __func__, coredev);
696 697
}

698
int smscore_detect_mode(struct smscore_device_t *coredev)
699
{
700
	void *buffer = kmalloc(sizeof(struct SmsMsgHdr_ST) + SMS_DMA_ALIGNMENT,
701
			       GFP_KERNEL | GFP_DMA);
702 703
	struct SmsMsgHdr_ST *msg =
		(struct SmsMsgHdr_ST *) SMS_ALIGN_ADDRESS(buffer);
704 705 706 707 708
	int rc;

	if (!buffer)
		return -ENOMEM;

709 710
	SMS_INIT_MSG(msg, MSG_SMS_GET_VERSION_EX_REQ,
		     sizeof(struct SmsMsgHdr_ST));
711

712 713 714
	rc = smscore_sendrequest_and_wait(coredev, msg, msg->msgLength,
					  &coredev->version_ex_done);
	if (rc == -ETIME) {
715 716
		printk(KERN_ERR "%s: MSG_SMS_GET_VERSION_EX_REQ "
		       "failed first try\n", __func__);
717

718 719
		if (wait_for_completion_timeout(&coredev->resume_done,
						msecs_to_jiffies(5000))) {
720 721 722
			rc = smscore_sendrequest_and_wait(
				coredev, msg, msg->msgLength,
				&coredev->version_ex_done);
723
			if (rc < 0)
724 725
				printk(KERN_ERR "%s: "
				       "MSG_SMS_GET_VERSION_EX_REQ failed "
726
				       "second try, rc %d\n", __func__, rc);
727
		} else
728 729 730 731 732 733 734 735
			rc = -ETIME;
	}

	kfree(buffer);

	return rc;
}

736
char *smscore_fw_lkup[][SMS_NUM_OF_DEVICE_TYPES] = {
737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753
	/*Stellar		NOVA A0		Nova B0		VEGA*/
	/*DVBT*/
	{"none", "dvb_nova_12mhz.inp", "dvb_nova_12mhz_b0.inp", "none"},
	/*DVBH*/
	{"none", "dvb_nova_12mhz.inp", "dvb_nova_12mhz_b0.inp", "none"},
	/*TDMB*/
	{"none", "tdmb_nova_12mhz.inp", "none", "none"},
	/*DABIP*/
	{"none", "none", "none", "none"},
	/*BDA*/
	{"none", "dvb_nova_12mhz.inp", "dvb_nova_12mhz_b0.inp", "none"},
	/*ISDBT*/
	{"none", "isdbt_nova_12mhz.inp", "dvb_nova_12mhz.inp", "none"},
	/*ISDBTBDA*/
	{"none", "isdbt_nova_12mhz.inp", "isdbt_nova_12mhz_b0.inp", "none"},
	/*CMMB*/
	{"none", "none", "none", "cmmb_vega_12mhz.inp"}
754 755
};

756

757 758 759 760
/**
 * calls device handler to change mode of operation
 * NOTE: stellar/usb may disconnect when changing mode
 *
761 762
 * @param coredev pointer to a coredev object returned by
 *                smscore_register_device
763 764 765 766
 * @param mode requested mode of operation
 *
 * @return 0 on success, <0 on error.
 */
767
int smscore_set_device_mode(struct smscore_device_t *coredev, int mode)
768 769 770
{
	void *buffer;
	int rc = 0;
771
	enum sms_device_type_st type;
772

773 774 775 776 777
	PDEBUG("set device mode to %d\n", mode);
	if (coredev->device_flags & SMS_DEVICE_FAMILY2) {
		if (mode < DEVICE_MODE_DVBT || mode > DEVICE_MODE_RAW_TUNER) {
			printk(KERN_INFO "%s invalid mode specified %d\n",
			       __func__, mode);
778 779 780
			return -EINVAL;
		}

781 782
		smscore_registry_setmode(coredev->devpath, mode);

783
		if (!(coredev->device_flags & SMS_DEVICE_NOT_READY)) {
784
			rc = smscore_detect_mode(coredev);
785 786 787
			if (rc < 0) {
				printk(KERN_INFO "%s mode detect failed %d\n",
				       __func__, rc);
788
				return rc;
789
			}
790
		}
791

792 793 794
		if (coredev->mode == mode) {
			printk(KERN_INFO "%s device mode %d already set\n",
			       __func__, mode);
795 796 797
			return 0;
		}

798 799
		if (!(coredev->modes_supported & (1 << mode))) {
			type = smscore_registry_gettype(coredev->devpath);
800 801
			rc = smscore_load_firmware_from_file(
				coredev, smscore_fw_lkup[mode][type], NULL);
802
			if (rc < 0) {
803 804
				printk(KERN_INFO "%s load firmware "
				       "failed %d\n", __func__, rc);
805
				return rc;
806 807
			}
		} else
808 809
			printk(KERN_INFO "%s mode %d supported by running "
			       "firmware\n", __func__, mode);
810

811 812
		buffer = kmalloc(sizeof(struct SmsMsgData_ST) +
				 SMS_DMA_ALIGNMENT, GFP_KERNEL | GFP_DMA);
813
		if (buffer) {
814 815 816
			struct SmsMsgData_ST *msg =
				(struct SmsMsgData_ST *)
					SMS_ALIGN_ADDRESS(buffer);
817

818
			SMS_INIT_MSG(&msg->xMsgHeader, MSG_SMS_INIT_DEVICE_REQ,
819
				     sizeof(struct SmsMsgData_ST));
820 821
			msg->msgData[0] = mode;

822 823 824
			rc = smscore_sendrequest_and_wait(
				coredev, msg, msg->xMsgHeader.msgLength,
				&coredev->init_device_done);
825 826

			kfree(buffer);
827
		} else {
828 829
			printk(KERN_INFO "%s Could not allocate buffer for "
			       "init device message.\n", __func__);
830
			rc = -ENOMEM;
831 832 833 834 835
		}
	} else {
		if (mode < DEVICE_MODE_DVBT || mode > DEVICE_MODE_DVBT_BDA) {
			printk(KERN_INFO "%s invalid mode specified %d\n",
			       __func__, mode);
836 837 838 839 840
			return -EINVAL;
		}

		smscore_registry_setmode(coredev->devpath, mode);

841
		if (coredev->detectmode_handler)
842 843
			coredev->detectmode_handler(coredev->context,
						    &coredev->mode);
844 845 846 847 848

		if (coredev->mode != mode && coredev->setmode_handler)
			rc = coredev->setmode_handler(coredev->context, mode);
	}

849
	if (rc >= 0) {
850 851 852 853
		coredev->mode = mode;
		coredev->device_flags &= ~SMS_DEVICE_NOT_READY;
	}

854 855
	if (rc != 0)
		printk(KERN_INFO "%s return error code %d.\n", __func__, rc);
856 857 858 859 860 861
	return rc;
}

/**
 * calls device handler to get current mode of operation
 *
862 863
 * @param coredev pointer to a coredev object returned by
 *                smscore_register_device
864 865 866
 *
 * @return current mode
 */
867
int smscore_get_device_mode(struct smscore_device_t *coredev)
868 869 870 871
{
	return coredev->mode;
}

872 873 874 875
/**
 * find client by response id & type within the clients list.
 * return client handle or NULL.
 *
876 877
 * @param coredev pointer to a coredev object returned by
 *                smscore_register_device
878
 * @param data_type client data type (SMS_DONT_CARE for all types)
879
 * @param id client id (SMS_DONT_CARE for all id)
880 881
 *
 */
882
struct smscore_client_t *smscore_find_client(struct smscore_device_t *coredev,
883
				      int data_type, int id)
884
{
885
	struct smscore_client_t *client = NULL;
886 887
	struct list_head *next, *first;
	unsigned long flags;
888
	struct list_head *firstid, *nextid;
889 890 891 892


	spin_lock_irqsave(&coredev->clientslock, flags);
	first = &coredev->clients;
893 894 895
	for (next = first->next;
	     (next != first) && !client;
	     next = next->next) {
896
		firstid = &((struct smscore_client_t *)next)->idlist;
897 898 899
		for (nextid = firstid->next;
		     nextid != firstid;
		     nextid = nextid->next) {
900 901 902 903
			if ((((struct smscore_idlist_t *)nextid)->id == id) &&
			    (((struct smscore_idlist_t *)nextid)->data_type == data_type ||
			    (((struct smscore_idlist_t *)nextid)->data_type == 0))) {
				client = (struct smscore_client_t *) next;
904 905
				break;
			}
906 907 908 909 910 911 912 913 914 915
		}
	}
	spin_unlock_irqrestore(&coredev->clientslock, flags);
	return client;
}

/**
 * find client by response id/type, call clients onresponse handler
 * return buffer to pool on error
 *
916 917
 * @param coredev pointer to a coredev object returned by
 *                smscore_register_device
918 919 920
 * @param cb pointer to response buffer descriptor
 *
 */
921 922
void smscore_onresponse(struct smscore_device_t *coredev,
			struct smscore_buffer_t *cb)
923
{
924 925 926
	struct SmsMsgHdr_ST *phdr =
		(struct SmsMsgHdr_ST *)((u8 *) cb->p + cb->offset);
	struct smscore_client_t *client =
927
		smscore_find_client(coredev, phdr->msgType, phdr->msgDstId);
928 929
	int rc = -EBUSY;

930 931
	static unsigned long last_sample_time; /* = 0; */
	static int data_total; /* = 0; */
932 933 934 935 936
	unsigned long time_now = jiffies_to_msecs(jiffies);

	if (!last_sample_time)
		last_sample_time = time_now;

937
	if (time_now - last_sample_time > 10000) {
938
		printk(KERN_DEBUG "\n%s data rate %d bytes/secs\n", __func__,
939 940
		       (int)((data_total * 1000) /
			     (time_now - last_sample_time)));
941 942 943 944 945 946

		last_sample_time = time_now;
		data_total = 0;
	}

	data_total += cb->size;
947 948
	/* If no client registered for type & id,
	 * check for control client where type is not registered */
949 950 951
	if (client)
		rc = client->onresponse_handler(client->context, cb);

952 953 954
	if (rc < 0) {
		switch (phdr->msgType) {
		case MSG_SMS_GET_VERSION_EX_RES:
955
		{
956 957
			struct SmsVersionRes_ST *ver =
				(struct SmsVersionRes_ST *) phdr;
958 959
			printk(KERN_DEBUG "%s: MSG_SMS_GET_VERSION_EX_RES "
			       "id %d prots 0x%x ver %d.%d\n", __func__,
960 961
			       ver->FirmwareId, ver->SupportedProtocols,
			       ver->RomVersionMajor, ver->RomVersionMinor);
962

963 964 965
			coredev->mode = ver->FirmwareId == 255 ?
				DEVICE_MODE_NONE : ver->FirmwareId;
			coredev->modes_supported = ver->SupportedProtocols;
966

967 968 969 970
			complete(&coredev->version_ex_done);
			break;
		}
		case MSG_SMS_INIT_DEVICE_RES:
971 972
			printk(KERN_DEBUG "%s: MSG_SMS_INIT_DEVICE_RES\n",
			       __func__);
973 974 975
			complete(&coredev->init_device_done);
			break;
		case MSG_SW_RELOAD_START_RES:
976 977
			printk(KERN_DEBUG "%s: MSG_SW_RELOAD_START_RES\n",
			       __func__);
978 979 980 981 982 983
			complete(&coredev->reload_start_done);
			break;
		case MSG_SMS_DATA_DOWNLOAD_RES:
			complete(&coredev->data_download_done);
			break;
		case MSG_SW_RELOAD_EXEC_RES:
984 985
			printk(KERN_DEBUG "%s: MSG_SW_RELOAD_EXEC_RES\n",
			       __func__);
986 987
			break;
		case MSG_SMS_SWDOWNLOAD_TRIGGER_RES:
988 989
			printk(KERN_DEBUG
			       "%s: MSG_SMS_SWDOWNLOAD_TRIGGER_RES\n",
990 991 992 993 994 995 996 997
			       __func__);
			complete(&coredev->trigger_done);
			break;
		case MSG_SMS_SLEEP_RESUME_COMP_IND:
			complete(&coredev->resume_done);
			break;
		default:
			break;
998 999 1000 1001 1002 1003 1004 1005
		}
		smscore_putbuffer(coredev, cb);
	}
}

/**
 * return pointer to next free buffer descriptor from core pool
 *
1006 1007
 * @param coredev pointer to a coredev object returned by
 *                smscore_register_device
1008 1009 1010
 *
 * @return pointer to descriptor on success, NULL on error.
 */
1011
struct smscore_buffer_t *smscore_getbuffer(struct smscore_device_t *coredev)
1012
{
1013
	struct smscore_buffer_t *cb = NULL;
1014 1015 1016 1017
	unsigned long flags;

	spin_lock_irqsave(&coredev->bufferslock, flags);

1018
	if (!list_empty(&coredev->buffers)) {
1019
		cb = (struct smscore_buffer_t *) coredev->buffers.next;
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
		list_del(&cb->entry);
	}

	spin_unlock_irqrestore(&coredev->bufferslock, flags);

	return cb;
}

/**
 * return buffer descriptor to a pool
 *
1031 1032
 * @param coredev pointer to a coredev object returned by
 *                smscore_register_device
1033 1034 1035
 * @param cb pointer buffer descriptor
 *
 */
1036 1037
void smscore_putbuffer(struct smscore_device_t *coredev,
		       struct smscore_buffer_t *cb)
1038 1039 1040 1041
{
	list_add_locked(&cb->entry, &coredev->buffers, &coredev->bufferslock);
}

1042 1043 1044
int smscore_validate_client(struct smscore_device_t *coredev,
			    struct smscore_client_t *client,
			    int data_type, int id)
1045
{
1046 1047
	struct smscore_idlist_t *listentry;
	struct smscore_client_t *registered_client;
1048

1049
	if (!client) {
1050 1051 1052 1053
		PERROR("bad parameter.\n");
		return -EFAULT;
	}
	registered_client = smscore_find_client(coredev, data_type, id);
1054
	if (registered_client == client)
1055
		return 0;
1056

1057
	if (registered_client) {
1058 1059 1060
		PERROR("The msg ID already registered to another client.\n");
		return -EEXIST;
	}
1061
	listentry = kzalloc(sizeof(struct smscore_idlist_t), GFP_KERNEL);
1062
	if (!listentry) {
1063
		PERROR("Can't allocate memory for client id.\n");
1064
		return -ENOMEM;
1065 1066 1067
	}
	listentry->id = id;
	listentry->data_type = data_type;
1068 1069
	list_add_locked(&listentry->entry, &client->idlist,
			&coredev->clientslock);
1070 1071 1072 1073 1074 1075 1076 1077 1078
	return 0;
}

/**
 * creates smsclient object, check that id is taken by another client
 *
 * @param coredev pointer to a coredev object from clients hotplug
 * @param initial_id all messages with this id would be sent to this client
 * @param data_type all messages of this type would be sent to this client
1079 1080
 * @param onresponse_handler client handler that is called to
 *                           process incoming messages
1081 1082 1083 1084 1085 1086
 * @param onremove_handler client handler that is called when device is removed
 * @param context client-specific context
 * @param client pointer to a value that receives created smsclient object
 *
 * @return 0 on success, <0 on error.
 */
1087 1088 1089
int smscore_register_client(struct smscore_device_t *coredev,
			    struct smsclient_params_t *params,
			    struct smscore_client_t **client)
1090
{
1091
	struct smscore_client_t *newclient;
1092 1093 1094
	/* check that no other channel with same parameters exists */
	if (smscore_find_client(coredev, params->data_type,
				params->initial_id)) {
1095
		PERROR("Client already exist.\n");
1096
		return -EEXIST;
1097
	}
1098

1099
	newclient = kzalloc(sizeof(struct smscore_client_t), GFP_KERNEL);
1100
	if (!newclient) {
1101 1102
		PERROR("Failed to allocate memory for client.\n");
		return -ENOMEM;
1103 1104
	}

1105
	INIT_LIST_HEAD(&newclient->idlist);
1106 1107 1108 1109
	newclient->coredev = coredev;
	newclient->onresponse_handler = params->onresponse_handler;
	newclient->onremove_handler = params->onremove_handler;
	newclient->context = params->context;
1110 1111 1112 1113
	list_add_locked(&newclient->entry, &coredev->clients,
			&coredev->clientslock);
	smscore_validate_client(coredev, newclient, params->data_type,
				params->initial_id);
1114
	*client = newclient;
1115 1116
	PDEBUG("%p %d %d\n", params->context, params->data_type,
	       params->initial_id);
1117 1118 1119 1120 1121 1122 1123

	return 0;
}

/**
 * frees smsclient object and all subclients associated with it
 *
1124 1125
 * @param client pointer to smsclient object returned by
 *               smscore_register_client
1126 1127
 *
 */
1128
void smscore_unregister_client(struct smscore_client_t *client)
1129
{
1130
	struct smscore_device_t *coredev = client->coredev;
1131 1132 1133 1134 1135
	unsigned long flags;

	spin_lock_irqsave(&coredev->clientslock, flags);


1136
	while (!list_empty(&client->idlist)) {
1137 1138
		struct smscore_idlist_t *identry =
			(struct smscore_idlist_t *) client->idlist.next;
1139 1140
		list_del(&identry->entry);
		kfree(identry);
1141 1142
	}

1143
	printk(KERN_INFO "%s %p\n", __func__, client->context);
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154

	list_del(&client->entry);
	kfree(client);

	spin_unlock_irqrestore(&coredev->clientslock, flags);
}

/**
 * verifies that source id is not taken by another client,
 * calls device handler to send requests to the device
 *
1155 1156
 * @param client pointer to smsclient object returned by
 *               smscore_register_client
1157 1158 1159 1160 1161
 * @param buffer pointer to a request buffer
 * @param size size (in bytes) of request buffer
 *
 * @return 0 on success, <0 on error.
 */
1162 1163
int smsclient_sendrequest(struct smscore_client_t *client,
			  void *buffer, size_t size)
1164
{
1165 1166
	struct smscore_device_t *coredev;
	struct SmsMsgHdr_ST *phdr = (struct SmsMsgHdr_ST *) buffer;
1167 1168
	int rc;

1169 1170
	if (client == NULL) {
		printk(KERN_ERR "%s Got NULL client\n", __func__);
1171 1172 1173 1174
		return -EINVAL;
	}

	coredev = client->coredev;
1175

1176 1177 1178
	/* check that no other channel with same id exists */
	if (coredev == NULL) {
		printk(KERN_ERR "%s Got NULL coredev\n", __func__);
1179 1180 1181
		return -EINVAL;
	}

1182 1183
	rc = smscore_validate_client(client->coredev, client, 0,
				     phdr->msgSrcId);
1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
	if (rc < 0)
		return rc;

	return coredev->sendrequest_handler(coredev->context, buffer, size);
}

/**
 * return the size of large (common) buffer
 *
 * @param coredev pointer to a coredev object from clients hotplug
 *
 * @return size (in bytes) of the buffer
 */
1197
int smscore_get_common_buffer_size(struct smscore_device_t *coredev)
1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
{
	return coredev->common_buffer_size;
}

/**
 * maps common buffer (if supported by platform)
 *
 * @param coredev pointer to a coredev object from clients hotplug
 * @param vma pointer to vma struct from mmap handler
 *
 * @return 0 on success, <0 on error.
 */
1210
int smscore_map_common_buffer(struct smscore_device_t *coredev,
1211
			       struct vm_area_struct *vma)
1212
{
1213 1214 1215
	unsigned long end = vma->vm_end,
		      start = vma->vm_start,
		      size = PAGE_ALIGN(coredev->common_buffer_size);
1216

1217 1218
	if (!(vma->vm_flags & (VM_READ | VM_SHARED)) ||
	     (vma->vm_flags & VM_WRITE)) {
1219
		printk(KERN_INFO "%s invalid vm flags\n", __func__);
1220 1221 1222
		return -EINVAL;
	}

1223 1224 1225
	if ((end - start) != size) {
		printk(KERN_INFO "%s invalid size %d expected %d\n",
		       __func__, (int)(end - start), (int) size);
1226 1227 1228
		return -EINVAL;
	}

1229 1230 1231
	if (remap_pfn_range(vma, start,
			    coredev->common_buffer_phys >> PAGE_SHIFT,
			    size, pgprot_noncached(vma->vm_page_prot)))
1232
	{
1233
		printk(KERN_INFO "%s remap_page_range failed\n", __func__);
1234 1235 1236 1237 1238 1239 1240 1241
		return -EAGAIN;
	}

	return 0;
}

int smscore_module_init(void)
{
1242
	int rc = 0;
1243 1244 1245 1246 1247 1248 1249 1250

	INIT_LIST_HEAD(&g_smscore_notifyees);
	INIT_LIST_HEAD(&g_smscore_devices);
	kmutex_init(&g_smscore_deviceslock);

	INIT_LIST_HEAD(&g_smscore_registry);
	kmutex_init(&g_smscore_registrylock);

1251 1252 1253 1254 1255 1256
	/* USB Register */
	rc = smsusb_register();

	/* DVB Register */
	rc = smsdvb_register();

1257
	printk(KERN_INFO "%s, rc %d\n", __func__, rc);
1258 1259 1260 1261 1262 1263

	return rc;
}

void smscore_module_exit(void)
{
1264

1265
	kmutex_lock(&g_smscore_deviceslock);
1266
	while (!list_empty(&g_smscore_notifyees)) {
1267 1268 1269
		struct smscore_device_notifyee_t *notifyee =
			(struct smscore_device_notifyee_t *)
				g_smscore_notifyees.next;
1270 1271 1272 1273 1274 1275 1276

		list_del(&notifyee->entry);
		kfree(notifyee);
	}
	kmutex_unlock(&g_smscore_deviceslock);

	kmutex_lock(&g_smscore_registrylock);
1277
	while (!list_empty(&g_smscore_registry)) {
1278 1279 1280
		struct smscore_registry_entry_t *entry =
			(struct smscore_registry_entry_t *)
				g_smscore_registry.next;
1281 1282 1283 1284 1285 1286

		list_del(&entry->entry);
		kfree(entry);
	}
	kmutex_unlock(&g_smscore_registrylock);

1287 1288 1289 1290 1291 1292
	/* DVB UnRegister */
	smsdvb_unregister();

	/* Unregister USB */
	smsusb_unregister();

1293
	printk(KERN_INFO "%s\n", __func__);
1294 1295 1296 1297 1298 1299
}

module_init(smscore_module_init);
module_exit(smscore_module_exit);

MODULE_DESCRIPTION("smscore");
1300
MODULE_AUTHOR("Siano Mobile Silicon,,, (doronc@siano-ms.com)");
1301
MODULE_LICENSE("GPL");