2 * Shared Transport Line discipline driver Core
3 * Init Manager module responsible for GPIO control
4 * and firmware download
5 * Copyright (C) 2009-2010 Texas Instruments
6 * Author: Pavan Savoy <pavan_savoy@ti.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #define pr_fmt(fmt) "(stk) :" fmt
24 #include <linux/platform_device.h>
25 #include <linux/jiffies.h>
26 #include <linux/firmware.h>
27 #include <linux/delay.h>
28 #include <linux/wait.h>
29 #include <linux/gpio.h>
30 #include <linux/debugfs.h>
31 #include <linux/seq_file.h>
32 #include <linux/sched.h>
33 #include <linux/tty.h>
35 #include <linux/skbuff.h>
36 #include <linux/ti_wilink_st.h>
39 #define MAX_ST_DEVICES 3 /* Imagine 1 on each UART for now */
40 static struct platform_device
*st_kim_devices
[MAX_ST_DEVICES
];
42 /**********************************************************************/
43 /* internal functions */
46 * st_get_plat_device -
47 * function which returns the reference to the platform device
48 * requested by id. As of now only 1 such device exists (id=0)
49 * the context requesting for reference can get the id to be
50 * requested by a. The protocol driver which is registering or
51 * b. the tty device which is opened.
53 static struct platform_device
*st_get_plat_device(int id
)
55 return st_kim_devices
[id
];
59 * validate_firmware_response -
60 * function to return whether the firmware response was proper
61 * in case of error don't complete so that waiting for proper
64 void validate_firmware_response(struct kim_data_s
*kim_gdata
)
66 struct sk_buff
*skb
= kim_gdata
->rx_skb
;
67 if (unlikely(skb
->data
[5] != 0)) {
68 pr_err("no proper response during fw download");
69 pr_err("data6 %x", skb
->data
[5]);
70 return; /* keep waiting for the proper response */
72 /* becos of all the script being downloaded */
73 complete_all(&kim_gdata
->kim_rcvd
);
77 /* check for data len received inside kim_int_recv
78 * most often hit the last case to update state to waiting for data
80 static inline int kim_check_data_len(struct kim_data_s
*kim_gdata
, int len
)
82 register int room
= skb_tailroom(kim_gdata
->rx_skb
);
84 pr_debug("len %d room %d", len
, room
);
87 validate_firmware_response(kim_gdata
);
88 } else if (len
> room
) {
89 /* Received packet's payload length is larger.
90 * We can't accommodate it in created skb.
92 pr_err("Data length is too large len %d room %d", len
,
94 kfree_skb(kim_gdata
->rx_skb
);
96 /* Packet header has non-zero payload length and
97 * we have enough space in created skb. Lets read
99 kim_gdata
->rx_state
= ST_W4_DATA
;
100 kim_gdata
->rx_count
= len
;
104 /* Change ST LL state to continue to process next
106 kim_gdata
->rx_state
= ST_W4_PACKET_TYPE
;
107 kim_gdata
->rx_skb
= NULL
;
108 kim_gdata
->rx_count
= 0;
114 * kim_int_recv - receive function called during firmware download
115 * firmware download responses on different UART drivers
116 * have been observed to come in bursts of different
117 * tty_receive and hence the logic
119 void kim_int_recv(struct kim_data_s
*kim_gdata
,
120 const unsigned char *data
, long count
)
122 const unsigned char *ptr
;
123 int len
= 0, type
= 0;
126 pr_debug("%s", __func__
);
127 /* Decode received bytes here */
129 if (unlikely(ptr
== NULL
)) {
130 pr_err(" received null from TTY ");
135 if (kim_gdata
->rx_count
) {
136 len
= min_t(unsigned int, kim_gdata
->rx_count
, count
);
137 memcpy(skb_put(kim_gdata
->rx_skb
, len
), ptr
, len
);
138 kim_gdata
->rx_count
-= len
;
142 if (kim_gdata
->rx_count
)
145 /* Check ST RX state machine , where are we? */
146 switch (kim_gdata
->rx_state
) {
147 /* Waiting for complete packet ? */
149 pr_debug("Complete pkt received");
150 validate_firmware_response(kim_gdata
);
151 kim_gdata
->rx_state
= ST_W4_PACKET_TYPE
;
152 kim_gdata
->rx_skb
= NULL
;
154 /* Waiting for Bluetooth event header ? */
157 (unsigned char *)&kim_gdata
->rx_skb
->data
[1];
158 pr_debug("event hdr: plen 0x%02x\n", *plen
);
159 kim_check_data_len(kim_gdata
, *plen
);
161 } /* end of switch */
162 } /* end of if rx_state */
164 /* Bluetooth event packet? */
166 kim_gdata
->rx_state
= ST_W4_HEADER
;
167 kim_gdata
->rx_count
= 2;
171 pr_info("unknown packet");
179 alloc_skb(1024+8, GFP_ATOMIC
);
180 if (!kim_gdata
->rx_skb
) {
181 pr_err("can't allocate mem for new packet");
182 kim_gdata
->rx_state
= ST_W4_PACKET_TYPE
;
183 kim_gdata
->rx_count
= 0;
186 skb_reserve(kim_gdata
->rx_skb
, 8);
187 kim_gdata
->rx_skb
->cb
[0] = 4;
188 kim_gdata
->rx_skb
->cb
[1] = 0;
194 static long read_local_version(struct kim_data_s
*kim_gdata
, char *bts_scr_name
)
196 unsigned short version
= 0, chip
= 0, min_ver
= 0, maj_ver
= 0;
197 const char read_ver_cmd
[] = { 0x01, 0x01, 0x10, 0x00 };
199 pr_debug("%s", __func__
);
201 INIT_COMPLETION(kim_gdata
->kim_rcvd
);
202 if (4 != st_int_write(kim_gdata
->core_data
, read_ver_cmd
, 4)) {
203 pr_err("kim: couldn't write 4 bytes");
207 if (!wait_for_completion_timeout
208 (&kim_gdata
->kim_rcvd
, msecs_to_jiffies(CMD_RESP_TIME
))) {
209 pr_err(" waiting for ver info- timed out ");
214 MAKEWORD(kim_gdata
->resp_buffer
[13],
215 kim_gdata
->resp_buffer
[14]);
216 chip
= (version
& 0x7C00) >> 10;
217 min_ver
= (version
& 0x007F);
218 maj_ver
= (version
& 0x0380) >> 7;
220 if (version
& 0x8000)
223 sprintf(bts_scr_name
, "TIInit_%d.%d.%d.bts", chip
, maj_ver
, min_ver
);
225 /* to be accessed later via sysfs entry */
226 kim_gdata
->version
.full
= version
;
227 kim_gdata
->version
.chip
= chip
;
228 kim_gdata
->version
.maj_ver
= maj_ver
;
229 kim_gdata
->version
.min_ver
= min_ver
;
231 pr_info("%s", bts_scr_name
);
235 void skip_change_remote_baud(unsigned char **ptr
, long *len
)
237 unsigned char *nxt_action
, *cur_action
;
240 nxt_action
= cur_action
+ sizeof(struct bts_action
) +
241 ((struct bts_action
*) cur_action
)->size
;
243 if (((struct bts_action
*) nxt_action
)->type
!= ACTION_WAIT_EVENT
) {
244 pr_err("invalid action after change remote baud command");
246 *ptr
= *ptr
+ sizeof(struct bts_action
) +
247 ((struct bts_action
*)nxt_action
)->size
;
248 *len
= *len
- (sizeof(struct bts_action
) +
249 ((struct bts_action
*)nxt_action
)->size
);
250 /* warn user on not commenting these in firmware */
251 pr_warn("skipping the wait event of change remote baud");
256 * download_firmware -
257 * internal function which parses through the .bts firmware
258 * script file intreprets SEND, DELAY actions only as of now
260 static long download_firmware(struct kim_data_s
*kim_gdata
)
264 unsigned char *ptr
= NULL
;
265 unsigned char *action_ptr
= NULL
;
266 unsigned char bts_scr_name
[30] = { 0 }; /* 30 char long bts scr name? */
269 unsigned long timeout
;
271 err
= read_local_version(kim_gdata
, bts_scr_name
);
273 pr_err("kim: failed to read local ver");
277 request_firmware(&kim_gdata
->fw_entry
, bts_scr_name
,
278 &kim_gdata
->kim_pdev
->dev
);
279 if (unlikely((err
!= 0) || (kim_gdata
->fw_entry
->data
== NULL
) ||
280 (kim_gdata
->fw_entry
->size
== 0))) {
281 pr_err(" request_firmware failed(errno %ld) for %s", err
,
285 ptr
= (void *)kim_gdata
->fw_entry
->data
;
286 len
= kim_gdata
->fw_entry
->size
;
287 /* bts_header to remove out magic number and
290 ptr
+= sizeof(struct bts_header
);
291 len
-= sizeof(struct bts_header
);
293 while (len
> 0 && ptr
) {
294 pr_debug(" action size %d, type %d ",
295 ((struct bts_action
*)ptr
)->size
,
296 ((struct bts_action
*)ptr
)->type
);
298 switch (((struct bts_action
*)ptr
)->type
) {
299 case ACTION_SEND_COMMAND
: /* action send */
300 action_ptr
= &(((struct bts_action
*)ptr
)->data
[0]);
302 (((struct hci_command
*)action_ptr
)->opcode
==
304 /* ignore remote change
305 * baud rate HCI VS command */
306 pr_warn("change remote baud"
307 " rate command in firmware");
308 skip_change_remote_baud(&ptr
, &len
);
312 * Make sure we have enough free space in uart
313 * tx buffer to write current firmware command
315 cmd_size
= ((struct bts_action
*)ptr
)->size
;
316 timeout
= jiffies
+ msecs_to_jiffies(CMD_WR_TIME
);
319 st_get_uart_wr_room(kim_gdata
->core_data
);
320 if (wr_room_space
< 0) {
321 pr_err("Unable to get free "
322 "space info from uart tx buffer");
323 release_firmware(kim_gdata
->fw_entry
);
324 return wr_room_space
;
326 mdelay(1); /* wait 1ms before checking room */
327 } while ((wr_room_space
< cmd_size
) &&
328 time_before(jiffies
, timeout
));
330 /* Timeout happened ? */
331 if (time_after_eq(jiffies
, timeout
)) {
332 pr_err("Timeout while waiting for free "
333 "free space in uart tx buffer");
334 release_firmware(kim_gdata
->fw_entry
);
339 * Free space found in uart buffer, call st_int_write
340 * to send current firmware command to the uart tx
343 err
= st_int_write(kim_gdata
->core_data
,
344 ((struct bts_action_send
*)action_ptr
)->data
,
345 ((struct bts_action
*)ptr
)->size
);
346 if (unlikely(err
< 0)) {
347 release_firmware(kim_gdata
->fw_entry
);
351 * Check number of bytes written to the uart tx buffer
352 * and requested command write size
354 if (err
!= cmd_size
) {
355 pr_err("Number of bytes written to uart "
356 "tx buffer are not matching with "
357 "requested cmd write size");
358 release_firmware(kim_gdata
->fw_entry
);
362 case ACTION_WAIT_EVENT
: /* wait */
363 if (!wait_for_completion_timeout
364 (&kim_gdata
->kim_rcvd
,
365 msecs_to_jiffies(CMD_RESP_TIME
))) {
366 pr_err("response timeout during fw download ");
368 release_firmware(kim_gdata
->fw_entry
);
371 INIT_COMPLETION(kim_gdata
->kim_rcvd
);
373 case ACTION_DELAY
: /* sleep */
374 pr_info("sleep command in scr");
375 action_ptr
= &(((struct bts_action
*)ptr
)->data
[0]);
376 mdelay(((struct bts_action_delay
*)action_ptr
)->msec
);
380 len
- (sizeof(struct bts_action
) +
381 ((struct bts_action
*)ptr
)->size
);
383 ptr
+ sizeof(struct bts_action
) +
384 ((struct bts_action
*)ptr
)->size
;
386 /* fw download complete */
387 release_firmware(kim_gdata
->fw_entry
);
391 /**********************************************************************/
392 /* functions called from ST core */
393 /* called from ST Core, when REG_IN_PROGRESS (registration in progress)
395 * 1. response to read local version
396 * 2. during send/recv's of firmware download
398 void st_kim_recv(void *disc_data
, const unsigned char *data
, long count
)
400 struct st_data_s
*st_gdata
= (struct st_data_s
*)disc_data
;
401 struct kim_data_s
*kim_gdata
= st_gdata
->kim_data
;
403 /* copy to local buffer */
404 if (unlikely(data
[4] == 0x01 && data
[5] == 0x10 && data
[0] == 0x04)) {
405 /* must be the read_ver_cmd */
406 memcpy(kim_gdata
->resp_buffer
, data
, count
);
407 complete_all(&kim_gdata
->kim_rcvd
);
410 kim_int_recv(kim_gdata
, data
, count
);
411 /* either completes or times out */
416 /* to signal completion of line discipline installation
417 * called from ST Core, upon tty_open
419 void st_kim_complete(void *kim_data
)
421 struct kim_data_s
*kim_gdata
= (struct kim_data_s
*)kim_data
;
422 complete(&kim_gdata
->ldisc_installed
);
426 * st_kim_start - called from ST Core upon 1st registration
427 * This involves toggling the chip enable gpio, reading
428 * the firmware version from chip, forming the fw file name
429 * based on the chip version, requesting the fw, parsing it
430 * and perform download(send/recv).
432 long st_kim_start(void *kim_data
)
435 long retry
= POR_RETRY_COUNT
;
436 struct kim_data_s
*kim_gdata
= (struct kim_data_s
*)kim_data
;
438 pr_info(" %s", __func__
);
441 /* Configure BT nShutdown to HIGH state */
442 gpio_set_value(kim_gdata
->nshutdown
, GPIO_LOW
);
443 mdelay(5); /* FIXME: a proper toggle */
444 gpio_set_value(kim_gdata
->nshutdown
, GPIO_HIGH
);
446 /* re-initialize the completion */
447 INIT_COMPLETION(kim_gdata
->ldisc_installed
);
448 /* send notification to UIM */
449 kim_gdata
->ldisc_install
= 1;
450 pr_info("ldisc_install = 1");
451 sysfs_notify(&kim_gdata
->kim_pdev
->dev
.kobj
,
453 /* wait for ldisc to be installed */
454 err
= wait_for_completion_timeout(&kim_gdata
->ldisc_installed
,
455 msecs_to_jiffies(LDISC_TIME
));
456 if (!err
) { /* timeout */
457 pr_err("line disc installation timed out ");
458 kim_gdata
->ldisc_install
= 0;
459 pr_info("ldisc_install = 0");
460 sysfs_notify(&kim_gdata
->kim_pdev
->dev
.kobj
,
465 /* ldisc installed now */
466 pr_info(" line discipline installed ");
467 err
= download_firmware(kim_gdata
);
469 pr_err("download firmware failed");
470 kim_gdata
->ldisc_install
= 0;
471 pr_info("ldisc_install = 0");
472 sysfs_notify(&kim_gdata
->kim_pdev
->dev
.kobj
,
475 } else { /* on success don't retry */
484 * st_kim_stop - called from ST Core, on the last un-registration
485 * toggle low the chip enable gpio
487 long st_kim_stop(void *kim_data
)
490 struct kim_data_s
*kim_gdata
= (struct kim_data_s
*)kim_data
;
492 INIT_COMPLETION(kim_gdata
->ldisc_installed
);
494 /* Flush any pending characters in the driver and discipline. */
495 tty_ldisc_flush(kim_gdata
->core_data
->tty
);
496 tty_driver_flush_buffer(kim_gdata
->core_data
->tty
);
498 /* send uninstall notification to UIM */
499 pr_info("ldisc_install = 0");
500 kim_gdata
->ldisc_install
= 0;
501 sysfs_notify(&kim_gdata
->kim_pdev
->dev
.kobj
, NULL
, "install");
503 /* wait for ldisc to be un-installed */
504 err
= wait_for_completion_timeout(&kim_gdata
->ldisc_installed
,
505 msecs_to_jiffies(LDISC_TIME
));
506 if (!err
) { /* timeout */
507 pr_err(" timed out waiting for ldisc to be un-installed");
511 /* By default configure BT nShutdown to LOW state */
512 gpio_set_value(kim_gdata
->nshutdown
, GPIO_LOW
);
514 gpio_set_value(kim_gdata
->nshutdown
, GPIO_HIGH
);
516 gpio_set_value(kim_gdata
->nshutdown
, GPIO_LOW
);
520 /**********************************************************************/
521 /* functions called from subsystems */
522 /* called when debugfs entry is read from */
524 static int show_version(struct seq_file
*s
, void *unused
)
526 struct kim_data_s
*kim_gdata
= (struct kim_data_s
*)s
->private;
527 seq_printf(s
, "%04X %d.%d.%d\n", kim_gdata
->version
.full
,
528 kim_gdata
->version
.chip
, kim_gdata
->version
.maj_ver
,
529 kim_gdata
->version
.min_ver
);
533 static int show_list(struct seq_file
*s
, void *unused
)
535 struct kim_data_s
*kim_gdata
= (struct kim_data_s
*)s
->private;
536 kim_st_list_protocols(kim_gdata
->core_data
, s
);
540 static ssize_t
show_install(struct device
*dev
,
541 struct device_attribute
*attr
, char *buf
)
543 struct kim_data_s
*kim_data
= dev_get_drvdata(dev
);
544 return sprintf(buf
, "%d\n", kim_data
->ldisc_install
);
547 static ssize_t
show_dev_name(struct device
*dev
,
548 struct device_attribute
*attr
, char *buf
)
550 struct kim_data_s
*kim_data
= dev_get_drvdata(dev
);
551 return sprintf(buf
, "%s\n", kim_data
->dev_name
);
554 static ssize_t
show_baud_rate(struct device
*dev
,
555 struct device_attribute
*attr
, char *buf
)
557 struct kim_data_s
*kim_data
= dev_get_drvdata(dev
);
558 return sprintf(buf
, "%ld\n", kim_data
->baud_rate
);
561 static ssize_t
show_flow_cntrl(struct device
*dev
,
562 struct device_attribute
*attr
, char *buf
)
564 struct kim_data_s
*kim_data
= dev_get_drvdata(dev
);
565 return sprintf(buf
, "%d\n", kim_data
->flow_cntrl
);
568 /* structures specific for sysfs entries */
569 static struct kobj_attribute ldisc_install
=
570 __ATTR(install
, 0444, (void *)show_install
, NULL
);
572 static struct kobj_attribute uart_dev_name
=
573 __ATTR(dev_name
, 0444, (void *)show_dev_name
, NULL
);
575 static struct kobj_attribute uart_baud_rate
=
576 __ATTR(baud_rate
, 0444, (void *)show_baud_rate
, NULL
);
578 static struct kobj_attribute uart_flow_cntrl
=
579 __ATTR(flow_cntrl
, 0444, (void *)show_flow_cntrl
, NULL
);
581 static struct attribute
*uim_attrs
[] = {
584 &uart_baud_rate
.attr
,
585 &uart_flow_cntrl
.attr
,
589 static struct attribute_group uim_attr_grp
= {
594 * st_kim_ref - reference the core's data
595 * This references the per-ST platform device in the arch/xx/
597 * This would enable multiple such platform devices to exist
598 * on a given platform
600 void st_kim_ref(struct st_data_s
**core_data
, int id
)
602 struct platform_device
*pdev
;
603 struct kim_data_s
*kim_gdata
;
604 /* get kim_gdata reference from platform device */
605 pdev
= st_get_plat_device(id
);
606 kim_gdata
= dev_get_drvdata(&pdev
->dev
);
607 *core_data
= kim_gdata
->core_data
;
610 static int kim_version_open(struct inode
*i
, struct file
*f
)
612 return single_open(f
, show_version
, i
->i_private
);
615 static int kim_list_open(struct inode
*i
, struct file
*f
)
617 return single_open(f
, show_list
, i
->i_private
);
620 static const struct file_operations version_debugfs_fops
= {
622 .open
= kim_version_open
,
625 .release
= single_release
,
627 static const struct file_operations list_debugfs_fops
= {
629 .open
= kim_list_open
,
632 .release
= single_release
,
635 /**********************************************************************/
636 /* functions called from platform device driver subsystem
637 * need to have a relevant platform device entry in the platform's
641 struct dentry
*kim_debugfs_dir
;
642 static int kim_probe(struct platform_device
*pdev
)
645 struct kim_data_s
*kim_gdata
;
646 struct ti_st_plat_data
*pdata
= pdev
->dev
.platform_data
;
648 if ((pdev
->id
!= -1) && (pdev
->id
< MAX_ST_DEVICES
)) {
649 /* multiple devices could exist */
650 st_kim_devices
[pdev
->id
] = pdev
;
652 /* platform's sure about existance of 1 device */
653 st_kim_devices
[0] = pdev
;
656 kim_gdata
= kzalloc(sizeof(struct kim_data_s
), GFP_ATOMIC
);
658 pr_err("no mem to allocate");
661 dev_set_drvdata(&pdev
->dev
, kim_gdata
);
663 status
= st_core_init(&kim_gdata
->core_data
);
665 pr_err(" ST core init failed");
668 /* refer to itself */
669 kim_gdata
->core_data
->kim_data
= kim_gdata
;
671 /* Claim the chip enable nShutdown gpio from the system */
672 kim_gdata
->nshutdown
= pdata
->nshutdown_gpio
;
673 status
= gpio_request(kim_gdata
->nshutdown
, "kim");
674 if (unlikely(status
)) {
675 pr_err(" gpio %ld request failed ", kim_gdata
->nshutdown
);
679 /* Configure nShutdown GPIO as output=0 */
680 status
= gpio_direction_output(kim_gdata
->nshutdown
, 0);
681 if (unlikely(status
)) {
682 pr_err(" unable to configure gpio %ld", kim_gdata
->nshutdown
);
685 /* get reference of pdev for request_firmware
687 kim_gdata
->kim_pdev
= pdev
;
688 init_completion(&kim_gdata
->kim_rcvd
);
689 init_completion(&kim_gdata
->ldisc_installed
);
691 status
= sysfs_create_group(&pdev
->dev
.kobj
, &uim_attr_grp
);
693 pr_err("failed to create sysfs entries");
697 /* copying platform data */
698 strncpy(kim_gdata
->dev_name
, pdata
->dev_name
, UART_DEV_NAME_LEN
);
699 kim_gdata
->flow_cntrl
= pdata
->flow_cntrl
;
700 kim_gdata
->baud_rate
= pdata
->baud_rate
;
701 pr_info("sysfs entries created\n");
703 kim_debugfs_dir
= debugfs_create_dir("ti-st", NULL
);
704 if (IS_ERR(kim_debugfs_dir
)) {
705 pr_err(" debugfs entries creation failed ");
706 kim_debugfs_dir
= NULL
;
710 debugfs_create_file("version", S_IRUGO
, kim_debugfs_dir
,
711 kim_gdata
, &version_debugfs_fops
);
712 debugfs_create_file("protocols", S_IRUGO
, kim_debugfs_dir
,
713 kim_gdata
, &list_debugfs_fops
);
714 pr_info(" debugfs entries created ");
718 static int kim_remove(struct platform_device
*pdev
)
720 /* free the GPIOs requested */
721 struct ti_st_plat_data
*pdata
= pdev
->dev
.platform_data
;
722 struct kim_data_s
*kim_gdata
;
724 kim_gdata
= dev_get_drvdata(&pdev
->dev
);
726 /* Free the Bluetooth/FM/GPIO
727 * nShutdown gpio from the system
729 gpio_free(pdata
->nshutdown_gpio
);
730 pr_info("nshutdown GPIO Freed");
732 debugfs_remove_recursive(kim_debugfs_dir
);
733 sysfs_remove_group(&pdev
->dev
.kobj
, &uim_attr_grp
);
734 pr_info("sysfs entries removed");
736 kim_gdata
->kim_pdev
= NULL
;
737 st_core_exit(kim_gdata
->core_data
);
744 int kim_suspend(struct platform_device
*pdev
, pm_message_t state
)
746 struct ti_st_plat_data
*pdata
= pdev
->dev
.platform_data
;
749 return pdata
->suspend(pdev
, state
);
754 int kim_resume(struct platform_device
*pdev
)
756 struct ti_st_plat_data
*pdata
= pdev
->dev
.platform_data
;
759 return pdata
->resume(pdev
);
764 /**********************************************************************/
765 /* entry point for ST KIM module, called in from ST Core */
766 static struct platform_driver kim_platform_driver
= {
768 .remove
= kim_remove
,
769 .suspend
= kim_suspend
,
770 .resume
= kim_resume
,
773 .owner
= THIS_MODULE
,
777 static int __init
st_kim_init(void)
779 return platform_driver_register(&kim_platform_driver
);
782 static void __exit
st_kim_deinit(void)
784 platform_driver_unregister(&kim_platform_driver
);
788 module_init(st_kim_init
);
789 module_exit(st_kim_deinit
);
790 MODULE_AUTHOR("Pavan Savoy <pavan_savoy@ti.com>");
791 MODULE_DESCRIPTION("Shared Transport Driver for TI BT/FM/GPS combo chips ");
792 MODULE_LICENSE("GPL");