st_kim.c 23.0 KB
Newer Older
1 2 3 4
/*
 *  Shared Transport Line discipline driver Core
 *	Init Manager module responsible for GPIO control
 *	and firmware download
5 6
 *  Copyright (C) 2009-2010 Texas Instruments
 *  Author: Pavan Savoy <pavan_savoy@ti.com>
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 *
 *  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.
 *
 *  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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */

#define pr_fmt(fmt) "(stk) :" fmt
#include <linux/platform_device.h>
#include <linux/jiffies.h>
#include <linux/firmware.h>
#include <linux/delay.h>
#include <linux/wait.h>
#include <linux/gpio.h>
30 31
#include <linux/debugfs.h>
#include <linux/seq_file.h>
32
#include <linux/sched.h>
R
Randy Dunlap 已提交
33
#include <linux/sysfs.h>
34
#include <linux/tty.h>
35

36
#include <linux/skbuff.h>
37
#include <linux/ti_wilink_st.h>
38

39

40
#define MAX_ST_DEVICES	3	/* Imagine 1 on each UART for now */
41
static struct platform_device *st_kim_devices[MAX_ST_DEVICES];
42 43 44 45

/**********************************************************************/
/* internal functions */

46 47 48 49 50 51 52 53 54 55 56 57 58
/**
 * st_get_plat_device -
 *	function which returns the reference to the platform device
 *	requested by id. As of now only 1 such device exists (id=0)
 *	the context requesting for reference can get the id to be
 *	requested by a. The protocol driver which is registering or
 *	b. the tty device which is opened.
 */
static struct platform_device *st_get_plat_device(int id)
{
	return st_kim_devices[id];
}

59 60 61 62 63
/**
 * validate_firmware_response -
 *	function to return whether the firmware response was proper
 *	in case of error don't complete so that waiting for proper
 *	response times out
64
 */
65
void validate_firmware_response(struct kim_data_s *kim_gdata)
66
{
67
	struct sk_buff *skb = kim_gdata->rx_skb;
68 69 70 71 72 73 74 75 76 77 78 79 80
	if (unlikely(skb->data[5] != 0)) {
		pr_err("no proper response during fw download");
		pr_err("data6 %x", skb->data[5]);
		return;		/* keep waiting for the proper response */
	}
	/* becos of all the script being downloaded */
	complete_all(&kim_gdata->kim_rcvd);
	kfree_skb(skb);
}

/* check for data len received inside kim_int_recv
 * most often hit the last case to update state to waiting for data
 */
81
static inline int kim_check_data_len(struct kim_data_s *kim_gdata, int len)
82 83 84
{
	register int room = skb_tailroom(kim_gdata->rx_skb);

85
	pr_debug("len %d room %d", len, room);
86 87

	if (!len) {
88
		validate_firmware_response(kim_gdata);
89 90 91 92 93 94 95 96 97 98 99
	} else if (len > room) {
		/* Received packet's payload length is larger.
		 * We can't accommodate it in created skb.
		 */
		pr_err("Data length is too large len %d room %d", len,
			   room);
		kfree_skb(kim_gdata->rx_skb);
	} else {
		/* Packet header has non-zero payload length and
		 * we have enough space in created skb. Lets read
		 * payload data */
100
		kim_gdata->rx_state = ST_W4_DATA;
101 102 103 104 105 106 107 108 109 110 111 112 113
		kim_gdata->rx_count = len;
		return len;
	}

	/* Change ST LL state to continue to process next
	 * packet */
	kim_gdata->rx_state = ST_W4_PACKET_TYPE;
	kim_gdata->rx_skb = NULL;
	kim_gdata->rx_count = 0;

	return 0;
}

114 115 116 117 118
/**
 * kim_int_recv - receive function called during firmware download
 *	firmware download responses on different UART drivers
 *	have been observed to come in bursts of different
 *	tty_receive and hence the logic
119
 */
120 121
void kim_int_recv(struct kim_data_s *kim_gdata,
	const unsigned char *data, long count)
122
{
123 124
	const unsigned char *ptr;
	int len = 0, type = 0;
125
	unsigned char *plen;
126

127
	pr_debug("%s", __func__);
128
	/* Decode received bytes here */
129
	ptr = data;
130 131 132 133
	if (unlikely(ptr == NULL)) {
		pr_err(" received null from TTY ");
		return;
	}
134

135 136 137 138 139 140 141 142 143 144 145 146 147 148
	while (count) {
		if (kim_gdata->rx_count) {
			len = min_t(unsigned int, kim_gdata->rx_count, count);
			memcpy(skb_put(kim_gdata->rx_skb, len), ptr, len);
			kim_gdata->rx_count -= len;
			count -= len;
			ptr += len;

			if (kim_gdata->rx_count)
				continue;

			/* Check ST RX state machine , where are we? */
			switch (kim_gdata->rx_state) {
				/* Waiting for complete packet ? */
149
			case ST_W4_DATA:
150
				pr_debug("Complete pkt received");
151
				validate_firmware_response(kim_gdata);
152 153 154 155
				kim_gdata->rx_state = ST_W4_PACKET_TYPE;
				kim_gdata->rx_skb = NULL;
				continue;
				/* Waiting for Bluetooth event header ? */
156 157 158 159 160
			case ST_W4_HEADER:
				plen =
				(unsigned char *)&kim_gdata->rx_skb->data[1];
				pr_debug("event hdr: plen 0x%02x\n", *plen);
				kim_check_data_len(kim_gdata, *plen);
161 162 163 164 165
				continue;
			}	/* end of switch */
		}		/* end of if rx_state */
		switch (*ptr) {
			/* Bluetooth event packet? */
166 167 168 169
		case 0x04:
			kim_gdata->rx_state = ST_W4_HEADER;
			kim_gdata->rx_count = 2;
			type = *ptr;
170 171 172 173 174 175
			break;
		default:
			pr_info("unknown packet");
			ptr++;
			count--;
			continue;
176
		}
177 178 179
		ptr++;
		count--;
		kim_gdata->rx_skb =
180
			alloc_skb(1024+8, GFP_ATOMIC);
181 182 183 184 185
		if (!kim_gdata->rx_skb) {
			pr_err("can't allocate mem for new packet");
			kim_gdata->rx_state = ST_W4_PACKET_TYPE;
			kim_gdata->rx_count = 0;
			return;
186
		}
187 188 189 190
		skb_reserve(kim_gdata->rx_skb, 8);
		kim_gdata->rx_skb->cb[0] = 4;
		kim_gdata->rx_skb->cb[1] = 0;

191
	}
192 193 194
	return;
}

195
static long read_local_version(struct kim_data_s *kim_gdata, char *bts_scr_name)
196 197
{
	unsigned short version = 0, chip = 0, min_ver = 0, maj_ver = 0;
198
	const char read_ver_cmd[] = { 0x01, 0x01, 0x10, 0x00 };
199

200
	pr_debug("%s", __func__);
201 202 203 204

	INIT_COMPLETION(kim_gdata->kim_rcvd);
	if (4 != st_int_write(kim_gdata->core_data, read_ver_cmd, 4)) {
		pr_err("kim: couldn't write 4 bytes");
205
		return -EIO;
206 207 208 209 210
	}

	if (!wait_for_completion_timeout
	    (&kim_gdata->kim_rcvd, msecs_to_jiffies(CMD_RESP_TIME))) {
		pr_err(" waiting for ver info- timed out ");
211
		return -ETIMEDOUT;
212
	}
213
	INIT_COMPLETION(kim_gdata->kim_rcvd);
214 215

	version =
216 217
		MAKEWORD(kim_gdata->resp_buffer[13],
				kim_gdata->resp_buffer[14]);
218 219 220 221 222 223 224 225
	chip = (version & 0x7C00) >> 10;
	min_ver = (version & 0x007F);
	maj_ver = (version & 0x0380) >> 7;

	if (version & 0x8000)
		maj_ver |= 0x0008;

	sprintf(bts_scr_name, "TIInit_%d.%d.%d.bts", chip, maj_ver, min_ver);
226 227 228 229 230 231 232

	/* to be accessed later via sysfs entry */
	kim_gdata->version.full = version;
	kim_gdata->version.chip = chip;
	kim_gdata->version.maj_ver = maj_ver;
	kim_gdata->version.min_ver = min_ver;

233
	pr_info("%s", bts_scr_name);
234
	return 0;
235 236
}

237 238 239 240 241 242 243 244 245 246 247 248
void skip_change_remote_baud(unsigned char **ptr, long *len)
{
	unsigned char *nxt_action, *cur_action;
	cur_action = *ptr;

	nxt_action = cur_action + sizeof(struct bts_action) +
		((struct bts_action *) cur_action)->size;

	if (((struct bts_action *) nxt_action)->type != ACTION_WAIT_EVENT) {
		pr_err("invalid action after change remote baud command");
	} else {
		*ptr = *ptr + sizeof(struct bts_action) +
249
			((struct bts_action *)cur_action)->size;
250
		*len = *len - (sizeof(struct bts_action) +
251
				((struct bts_action *)cur_action)->size);
252 253 254 255 256
		/* warn user on not commenting these in firmware */
		pr_warn("skipping the wait event of change remote baud");
	}
}

257 258 259 260
/**
 * download_firmware -
 *	internal function which parses through the .bts firmware
 *	script file intreprets SEND, DELAY actions only as of now
261
 */
262
static long download_firmware(struct kim_data_s *kim_gdata)
263
{
264
	long err = 0;
265
	long len = 0;
266 267
	unsigned char *ptr = NULL;
	unsigned char *action_ptr = NULL;
268
	unsigned char bts_scr_name[30] = { 0 };	/* 30 char long bts scr name? */
269 270 271
	int wr_room_space;
	int cmd_size;
	unsigned long timeout;
272

273
	err = read_local_version(kim_gdata, bts_scr_name);
274
	if (err != 0) {
275 276 277 278 279 280 281 282 283 284
		pr_err("kim: failed to read local ver");
		return err;
	}
	err =
	    request_firmware(&kim_gdata->fw_entry, bts_scr_name,
			     &kim_gdata->kim_pdev->dev);
	if (unlikely((err != 0) || (kim_gdata->fw_entry->data == NULL) ||
		     (kim_gdata->fw_entry->size == 0))) {
		pr_err(" request_firmware failed(errno %ld) for %s", err,
			   bts_scr_name);
285
		return -EINVAL;
286 287 288 289 290 291 292 293 294 295
	}
	ptr = (void *)kim_gdata->fw_entry->data;
	len = kim_gdata->fw_entry->size;
	/* bts_header to remove out magic number and
	 * version
	 */
	ptr += sizeof(struct bts_header);
	len -= sizeof(struct bts_header);

	while (len > 0 && ptr) {
296
		pr_debug(" action size %d, type %d ",
297 298 299 300 301
			   ((struct bts_action *)ptr)->size,
			   ((struct bts_action *)ptr)->type);

		switch (((struct bts_action *)ptr)->type) {
		case ACTION_SEND_COMMAND:	/* action send */
302
			pr_debug("S");
303 304 305 306 307 308
			action_ptr = &(((struct bts_action *)ptr)->data[0]);
			if (unlikely
			    (((struct hci_command *)action_ptr)->opcode ==
			     0xFF36)) {
				/* ignore remote change
				 * baud rate HCI VS command */
309
				pr_warn("change remote baud"
310
				    " rate command in firmware");
311
				skip_change_remote_baud(&ptr, &len);
312 313
				break;
			}
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
			/*
			 * Make sure we have enough free space in uart
			 * tx buffer to write current firmware command
			 */
			cmd_size = ((struct bts_action *)ptr)->size;
			timeout = jiffies + msecs_to_jiffies(CMD_WR_TIME);
			do {
				wr_room_space =
					st_get_uart_wr_room(kim_gdata->core_data);
				if (wr_room_space < 0) {
					pr_err("Unable to get free "
							"space info from uart tx buffer");
					release_firmware(kim_gdata->fw_entry);
					return wr_room_space;
				}
				mdelay(1); /* wait 1ms before checking room */
			} while ((wr_room_space < cmd_size) &&
					time_before(jiffies, timeout));

			/* Timeout happened ? */
			if (time_after_eq(jiffies, timeout)) {
				pr_err("Timeout while waiting for free "
						"free space in uart tx buffer");
				release_firmware(kim_gdata->fw_entry);
				return -ETIMEDOUT;
			}
340 341 342 343
			/* reinit completion before sending for the
			 * relevant wait
			 */
			INIT_COMPLETION(kim_gdata->kim_rcvd);
344

345 346 347 348 349
			/*
			 * Free space found in uart buffer, call st_int_write
			 * to send current firmware command to the uart tx
			 * buffer.
			 */
350 351 352 353 354
			err = st_int_write(kim_gdata->core_data,
			((struct bts_action_send *)action_ptr)->data,
					   ((struct bts_action *)ptr)->size);
			if (unlikely(err < 0)) {
				release_firmware(kim_gdata->fw_entry);
355
				return err;
356
			}
357 358 359 360 361 362 363 364 365 366 367 368 369
			/*
			 * Check number of bytes written to the uart tx buffer
			 * and requested command write size
			 */
			if (err != cmd_size) {
				pr_err("Number of bytes written to uart "
						"tx buffer are not matching with "
						"requested cmd write size");
				release_firmware(kim_gdata->fw_entry);
				return -EIO;
			}
			break;
		case ACTION_WAIT_EVENT:  /* wait */
370
			pr_debug("W");
371
			if (!wait_for_completion_timeout
372 373 374
					(&kim_gdata->kim_rcvd,
					 msecs_to_jiffies(CMD_RESP_TIME))) {
				pr_err("response timeout during fw download ");
375 376
				/* timed out */
				release_firmware(kim_gdata->fw_entry);
377
				return -ETIMEDOUT;
378
			}
379
			INIT_COMPLETION(kim_gdata->kim_rcvd);
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
			break;
		case ACTION_DELAY:	/* sleep */
			pr_info("sleep command in scr");
			action_ptr = &(((struct bts_action *)ptr)->data[0]);
			mdelay(((struct bts_action_delay *)action_ptr)->msec);
			break;
		}
		len =
		    len - (sizeof(struct bts_action) +
			   ((struct bts_action *)ptr)->size);
		ptr =
		    ptr + sizeof(struct bts_action) +
		    ((struct bts_action *)ptr)->size;
	}
	/* fw download complete */
	release_firmware(kim_gdata->fw_entry);
396
	return 0;
397 398 399 400 401 402 403 404 405 406 407
}

/**********************************************************************/
/* functions called from ST core */
/* called from ST Core, when REG_IN_PROGRESS (registration in progress)
 * can be because of
 * 1. response to read local version
 * 2. during send/recv's of firmware download
 */
void st_kim_recv(void *disc_data, const unsigned char *data, long count)
{
408 409 410
	struct st_data_s	*st_gdata = (struct st_data_s *)disc_data;
	struct kim_data_s	*kim_gdata = st_gdata->kim_data;

411 412 413 414 415 416 417
	/* copy to local buffer */
	if (unlikely(data[4] == 0x01 && data[5] == 0x10 && data[0] == 0x04)) {
		/* must be the read_ver_cmd */
		memcpy(kim_gdata->resp_buffer, data, count);
		complete_all(&kim_gdata->kim_rcvd);
		return;
	} else {
418
		kim_int_recv(kim_gdata, data, count);
419 420 421 422 423 424 425 426
		/* either completes or times out */
	}
	return;
}

/* to signal completion of line discipline installation
 * called from ST Core, upon tty_open
 */
427
void st_kim_complete(void *kim_data)
428
{
429
	struct kim_data_s	*kim_gdata = (struct kim_data_s *)kim_data;
430 431 432
	complete(&kim_gdata->ldisc_installed);
}

433 434 435 436 437 438 439
/**
 * st_kim_start - called from ST Core upon 1st registration
 *	This involves toggling the chip enable gpio, reading
 *	the firmware version from chip, forming the fw file name
 *	based on the chip version, requesting the fw, parsing it
 *	and perform download(send/recv).
 */
440
long st_kim_start(void *kim_data)
441
{
442
	long err = 0;
443
	long retry = POR_RETRY_COUNT;
444
	struct ti_st_plat_data	*pdata;
445 446
	struct kim_data_s	*kim_gdata = (struct kim_data_s *)kim_data;

447
	pr_info(" %s", __func__);
448
	pdata = kim_gdata->kim_pdev->dev.platform_data;
449 450

	do {
451 452 453 454
		/* platform specific enabling code here */
		if (pdata->chip_enable)
			pdata->chip_enable(kim_gdata);

455
		/* Configure BT nShutdown to HIGH state */
456
		gpio_set_value(kim_gdata->nshutdown, GPIO_LOW);
457
		mdelay(5);	/* FIXME: a proper toggle */
458
		gpio_set_value(kim_gdata->nshutdown, GPIO_HIGH);
459 460 461
		mdelay(100);
		/* re-initialize the completion */
		INIT_COMPLETION(kim_gdata->ldisc_installed);
462 463 464 465 466
		/* send notification to UIM */
		kim_gdata->ldisc_install = 1;
		pr_info("ldisc_install = 1");
		sysfs_notify(&kim_gdata->kim_pdev->dev.kobj,
				NULL, "install");
467 468 469 470 471
		/* wait for ldisc to be installed */
		err = wait_for_completion_timeout(&kim_gdata->ldisc_installed,
				msecs_to_jiffies(LDISC_TIME));
		if (!err) {	/* timeout */
			pr_err("line disc installation timed out ");
472 473 474 475
			kim_gdata->ldisc_install = 0;
			pr_info("ldisc_install = 0");
			sysfs_notify(&kim_gdata->kim_pdev->dev.kobj,
					NULL, "install");
476 477 478 479 480 481
			/* the following wait is never going to be completed,
			 * since the ldisc was never installed, hence serving
			 * as a mdelay of LDISC_TIME msecs */
			err = wait_for_completion_timeout
				(&kim_gdata->ldisc_installed,
				 msecs_to_jiffies(LDISC_TIME));
482
			err = -ETIMEDOUT;
483 484 485 486
			continue;
		} else {
			/* ldisc installed now */
			pr_info(" line discipline installed ");
487
			err = download_firmware(kim_gdata);
488
			if (err != 0) {
489
				pr_err("download firmware failed");
490 491 492 493
				kim_gdata->ldisc_install = 0;
				pr_info("ldisc_install = 0");
				sysfs_notify(&kim_gdata->kim_pdev->dev.kobj,
						NULL, "install");
494 495 496 497 498 499 500
				/* this wait might be completed, though in the
				 * tty_close() since the ldisc is already
				 * installed */
				err = wait_for_completion_timeout
					(&kim_gdata->ldisc_installed,
					 msecs_to_jiffies(LDISC_TIME));
				err = -EINVAL;
501 502 503 504 505 506 507 508 509
				continue;
			} else {	/* on success don't retry */
				break;
			}
		}
	} while (retry--);
	return err;
}

510 511 512 513
/**
 * st_kim_stop - called from ST Core, on the last un-registration
 *	toggle low the chip enable gpio
 */
514
long st_kim_stop(void *kim_data)
515
{
516
	long err = 0;
517
	struct kim_data_s	*kim_gdata = (struct kim_data_s *)kim_data;
518 519
	struct ti_st_plat_data	*pdata =
		kim_gdata->kim_pdev->dev.platform_data;
520 521

	INIT_COMPLETION(kim_gdata->ldisc_installed);
522 523 524 525 526 527 528 529 530

	/* Flush any pending characters in the driver and discipline. */
	tty_ldisc_flush(kim_gdata->core_data->tty);
	tty_driver_flush_buffer(kim_gdata->core_data->tty);

	/* send uninstall notification to UIM */
	pr_info("ldisc_install = 0");
	kim_gdata->ldisc_install = 0;
	sysfs_notify(&kim_gdata->kim_pdev->dev.kobj, NULL, "install");
531 532 533 534 535 536

	/* wait for ldisc to be un-installed */
	err = wait_for_completion_timeout(&kim_gdata->ldisc_installed,
			msecs_to_jiffies(LDISC_TIME));
	if (!err) {		/* timeout */
		pr_err(" timed out waiting for ldisc to be un-installed");
537
		return -ETIMEDOUT;
538 539 540
	}

	/* By default configure BT nShutdown to LOW state */
541
	gpio_set_value(kim_gdata->nshutdown, GPIO_LOW);
542
	mdelay(1);
543
	gpio_set_value(kim_gdata->nshutdown, GPIO_HIGH);
544
	mdelay(1);
545
	gpio_set_value(kim_gdata->nshutdown, GPIO_LOW);
546 547 548 549

	/* platform specific disable */
	if (pdata->chip_disable)
		pdata->chip_disable(kim_gdata);
550 551 552 553 554
	return err;
}

/**********************************************************************/
/* functions called from subsystems */
555
/* called when debugfs entry is read from */
556

557
static int show_version(struct seq_file *s, void *unused)
558
{
559 560
	struct kim_data_s *kim_gdata = (struct kim_data_s *)s->private;
	seq_printf(s, "%04X %d.%d.%d\n", kim_gdata->version.full,
561 562
			kim_gdata->version.chip, kim_gdata->version.maj_ver,
			kim_gdata->version.min_ver);
563
	return 0;
564 565
}

566
static int show_list(struct seq_file *s, void *unused)
567
{
568 569 570
	struct kim_data_s *kim_gdata = (struct kim_data_s *)s->private;
	kim_st_list_protocols(kim_gdata->core_data, s);
	return 0;
571 572
}

573 574
static ssize_t show_install(struct device *dev,
		struct device_attribute *attr, char *buf)
575
{
576 577 578
	struct kim_data_s *kim_data = dev_get_drvdata(dev);
	return sprintf(buf, "%d\n", kim_data->ldisc_install);
}
579

580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
static ssize_t show_dev_name(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	struct kim_data_s *kim_data = dev_get_drvdata(dev);
	return sprintf(buf, "%s\n", kim_data->dev_name);
}

static ssize_t show_baud_rate(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	struct kim_data_s *kim_data = dev_get_drvdata(dev);
	return sprintf(buf, "%ld\n", kim_data->baud_rate);
}

static ssize_t show_flow_cntrl(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	struct kim_data_s *kim_data = dev_get_drvdata(dev);
	return sprintf(buf, "%d\n", kim_data->flow_cntrl);
599 600
}

601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
/* structures specific for sysfs entries */
static struct kobj_attribute ldisc_install =
__ATTR(install, 0444, (void *)show_install, NULL);

static struct kobj_attribute uart_dev_name =
__ATTR(dev_name, 0444, (void *)show_dev_name, NULL);

static struct kobj_attribute uart_baud_rate =
__ATTR(baud_rate, 0444, (void *)show_baud_rate, NULL);

static struct kobj_attribute uart_flow_cntrl =
__ATTR(flow_cntrl, 0444, (void *)show_flow_cntrl, NULL);

static struct attribute *uim_attrs[] = {
	&ldisc_install.attr,
	&uart_dev_name.attr,
	&uart_baud_rate.attr,
	&uart_flow_cntrl.attr,
	NULL,
};

static struct attribute_group uim_attr_grp = {
	.attrs = uim_attrs,
};

626 627 628 629 630 631 632
/**
 * st_kim_ref - reference the core's data
 *	This references the per-ST platform device in the arch/xx/
 *	board-xx.c file.
 *	This would enable multiple such platform devices to exist
 *	on a given platform
 */
633
void st_kim_ref(struct st_data_s **core_data, int id)
634
{
635 636 637
	struct platform_device	*pdev;
	struct kim_data_s	*kim_gdata;
	/* get kim_gdata reference from platform device */
638
	pdev = st_get_plat_device(id);
639 640 641 642
	if (!pdev) {
		*core_data = NULL;
		return;
	}
643
	kim_gdata = dev_get_drvdata(&pdev->dev);
644 645 646
	*core_data = kim_gdata->core_data;
}

647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
static int kim_version_open(struct inode *i, struct file *f)
{
	return single_open(f, show_version, i->i_private);
}

static int kim_list_open(struct inode *i, struct file *f)
{
	return single_open(f, show_list, i->i_private);
}

static const struct file_operations version_debugfs_fops = {
	/* version info */
	.open = kim_version_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
};
static const struct file_operations list_debugfs_fops = {
	/* protocols info */
	.open = kim_list_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
};

672 673 674 675 676 677
/**********************************************************************/
/* functions called from platform device driver subsystem
 * need to have a relevant platform device entry in the platform's
 * board-*.c file
 */

678
struct dentry *kim_debugfs_dir;
679 680 681
static int kim_probe(struct platform_device *pdev)
{
	long status;
682
	struct kim_data_s	*kim_gdata;
683
	struct ti_st_plat_data	*pdata = pdev->dev.platform_data;
684

685 686 687 688
	if ((pdev->id != -1) && (pdev->id < MAX_ST_DEVICES)) {
		/* multiple devices could exist */
		st_kim_devices[pdev->id] = pdev;
	} else {
L
Lucas De Marchi 已提交
689
		/* platform's sure about existence of 1 device */
690 691 692
		st_kim_devices[0] = pdev;
	}

693 694 695 696 697 698
	kim_gdata = kzalloc(sizeof(struct kim_data_s), GFP_ATOMIC);
	if (!kim_gdata) {
		pr_err("no mem to allocate");
		return -ENOMEM;
	}
	dev_set_drvdata(&pdev->dev, kim_gdata);
699 700 701 702

	status = st_core_init(&kim_gdata->core_data);
	if (status != 0) {
		pr_err(" ST core init failed");
703
		return -EIO;
704
	}
705 706
	/* refer to itself */
	kim_gdata->core_data->kim_data = kim_gdata;
707

708 709 710 711 712 713
	/* Claim the chip enable nShutdown gpio from the system */
	kim_gdata->nshutdown = pdata->nshutdown_gpio;
	status = gpio_request(kim_gdata->nshutdown, "kim");
	if (unlikely(status)) {
		pr_err(" gpio %ld request failed ", kim_gdata->nshutdown);
		return status;
714 715
	}

716 717 718 719 720
	/* Configure nShutdown GPIO as output=0 */
	status = gpio_direction_output(kim_gdata->nshutdown, 0);
	if (unlikely(status)) {
		pr_err(" unable to configure gpio %ld", kim_gdata->nshutdown);
		return status;
721 722 723 724 725 726
	}
	/* get reference of pdev for request_firmware
	 */
	kim_gdata->kim_pdev = pdev;
	init_completion(&kim_gdata->kim_rcvd);
	init_completion(&kim_gdata->ldisc_installed);
N
Naveen Jain 已提交
727

728 729 730 731
	status = sysfs_create_group(&pdev->dev.kobj, &uim_attr_grp);
	if (status) {
		pr_err("failed to create sysfs entries");
		return status;
732
	}
733

734 735 736 737 738 739
	/* copying platform data */
	strncpy(kim_gdata->dev_name, pdata->dev_name, UART_DEV_NAME_LEN);
	kim_gdata->flow_cntrl = pdata->flow_cntrl;
	kim_gdata->baud_rate = pdata->baud_rate;
	pr_info("sysfs entries created\n");

740 741 742 743
	kim_debugfs_dir = debugfs_create_dir("ti-st", NULL);
	if (IS_ERR(kim_debugfs_dir)) {
		pr_err(" debugfs entries creation failed ");
		kim_debugfs_dir = NULL;
744
		return -EIO;
745
	}
746 747 748 749 750 751

	debugfs_create_file("version", S_IRUGO, kim_debugfs_dir,
				kim_gdata, &version_debugfs_fops);
	debugfs_create_file("protocols", S_IRUGO, kim_debugfs_dir,
				kim_gdata, &list_debugfs_fops);
	pr_info(" debugfs entries created ");
752
	return 0;
753 754 755 756
}

static int kim_remove(struct platform_device *pdev)
{
757 758
	/* free the GPIOs requested */
	struct ti_st_plat_data	*pdata = pdev->dev.platform_data;
759 760 761
	struct kim_data_s	*kim_gdata;

	kim_gdata = dev_get_drvdata(&pdev->dev);
762

763 764 765 766 767
	/* Free the Bluetooth/FM/GPIO
	 * nShutdown gpio from the system
	 */
	gpio_free(pdata->nshutdown_gpio);
	pr_info("nshutdown GPIO Freed");
768

769
	debugfs_remove_recursive(kim_debugfs_dir);
770
	sysfs_remove_group(&pdev->dev.kobj, &uim_attr_grp);
771 772
	pr_info("sysfs entries removed");

773 774
	kim_gdata->kim_pdev = NULL;
	st_core_exit(kim_gdata->core_data);
775 776 777

	kfree(kim_gdata);
	kim_gdata = NULL;
778
	return 0;
779 780
}

781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800
int kim_suspend(struct platform_device *pdev, pm_message_t state)
{
	struct ti_st_plat_data	*pdata = pdev->dev.platform_data;

	if (pdata->suspend)
		return pdata->suspend(pdev, state);

	return -EOPNOTSUPP;
}

int kim_resume(struct platform_device *pdev)
{
	struct ti_st_plat_data	*pdata = pdev->dev.platform_data;

	if (pdata->resume)
		return pdata->resume(pdev);

	return -EOPNOTSUPP;
}

801 802
/**********************************************************************/
/* entry point for ST KIM module, called in from ST Core */
803 804 805 806 807 808 809 810 811 812
static struct platform_driver kim_platform_driver = {
	.probe = kim_probe,
	.remove = kim_remove,
	.suspend = kim_suspend,
	.resume = kim_resume,
	.driver = {
		.name = "kim",
		.owner = THIS_MODULE,
	},
};
813 814 815

static int __init st_kim_init(void)
{
816
	return platform_driver_register(&kim_platform_driver);
817 818 819 820 821 822 823 824 825 826 827 828 829
}

static void __exit st_kim_deinit(void)
{
	platform_driver_unregister(&kim_platform_driver);
}


module_init(st_kim_init);
module_exit(st_kim_deinit);
MODULE_AUTHOR("Pavan Savoy <pavan_savoy@ti.com>");
MODULE_DESCRIPTION("Shared Transport Driver for TI BT/FM/GPS combo chips ");
MODULE_LICENSE("GPL");