blob: 21c2337bad68476f1618b9e91e6c4d103c20a64a [file] [log] [blame]
Pavan Savoyd0088ce2010-04-08 13:16:54 -05001/*
2 * Shared Transport Line discipline driver Core
3 * Init Manager module responsible for GPIO control
4 * and firmware download
Pavan Savoya0cc2f32010-10-06 12:18:14 -04005 * Copyright (C) 2009-2010 Texas Instruments
6 * Author: Pavan Savoy <pavan_savoy@ti.com>
Pavan Savoyd0088ce2010-04-08 13:16:54 -05007 *
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.
11 *
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.
16 *
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
20 *
21 */
22
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>
Pavan Savoyc1afac12010-07-28 02:25:59 -050030#include <linux/debugfs.h>
31#include <linux/seq_file.h>
Pavan Savoyd0088ce2010-04-08 13:16:54 -050032#include <linux/sched.h>
Randy Dunlap773d6792011-04-26 09:18:51 -070033#include <linux/sysfs.h>
Pavan Savoyec60d0a2011-02-04 02:23:10 -060034#include <linux/tty.h>
Pavan Savoyd0088ce2010-04-08 13:16:54 -050035
Pavan Savoy5c88b022011-02-04 02:23:09 -060036#include <linux/skbuff.h>
Pavan Savoye5558672010-09-30 16:13:30 -040037#include <linux/ti_wilink_st.h>
Paul Gortmakereb12a672011-07-03 15:14:56 -040038#include <linux/module.h>
Pavan Savoy83ef41f2010-09-17 12:06:11 -040039
Pavan Savoyd0088ce2010-04-08 13:16:54 -050040
Pavan Savoydbd3a872010-08-19 14:08:51 -040041#define MAX_ST_DEVICES 3 /* Imagine 1 on each UART for now */
Pavan Savoy73f12e82010-10-12 16:27:38 -040042static struct platform_device *st_kim_devices[MAX_ST_DEVICES];
Pavan Savoyd0088ce2010-04-08 13:16:54 -050043
44/**********************************************************************/
45/* internal functions */
46
Pavan Savoy36b5aee2010-07-22 05:32:06 -050047/**
Pavan Savoydbd3a872010-08-19 14:08:51 -040048 * st_get_plat_device -
49 * function which returns the reference to the platform device
50 * requested by id. As of now only 1 such device exists (id=0)
51 * the context requesting for reference can get the id to be
52 * requested by a. The protocol driver which is registering or
53 * b. the tty device which is opened.
54 */
55static struct platform_device *st_get_plat_device(int id)
56{
57 return st_kim_devices[id];
58}
59
60/**
Pavan Savoy36b5aee2010-07-22 05:32:06 -050061 * validate_firmware_response -
62 * function to return whether the firmware response was proper
63 * in case of error don't complete so that waiting for proper
64 * response times out
Pavan Savoyd0088ce2010-04-08 13:16:54 -050065 */
Pavan Savoy27712b32012-08-03 14:49:40 -050066static void validate_firmware_response(struct kim_data_s *kim_gdata)
Pavan Savoyd0088ce2010-04-08 13:16:54 -050067{
Pavan Savoy38d9df42010-07-08 08:55:17 -050068 struct sk_buff *skb = kim_gdata->rx_skb;
Pavan Savoy8565adb2012-08-03 14:49:43 -050069 if (!skb)
70 return;
71
72 /* these magic numbers are the position in the response buffer which
73 * allows us to distinguish whether the response is for the read
74 * version info. command
75 */
76 if (skb->data[2] == 0x01 && skb->data[3] == 0x01 &&
77 skb->data[4] == 0x10 && skb->data[5] == 0x00) {
78 /* fw version response */
79 memcpy(kim_gdata->resp_buffer,
80 kim_gdata->rx_skb->data,
81 kim_gdata->rx_skb->len);
82 complete_all(&kim_gdata->kim_rcvd);
83 kim_gdata->rx_state = ST_W4_PACKET_TYPE;
84 kim_gdata->rx_skb = NULL;
85 kim_gdata->rx_count = 0;
86 } else if (unlikely(skb->data[5] != 0)) {
Pavan Savoyd0088ce2010-04-08 13:16:54 -050087 pr_err("no proper response during fw download");
88 pr_err("data6 %x", skb->data[5]);
Pavan Savoy76ff0e62011-08-10 10:18:36 -050089 kfree_skb(skb);
Pavan Savoyd0088ce2010-04-08 13:16:54 -050090 return; /* keep waiting for the proper response */
91 }
92 /* becos of all the script being downloaded */
93 complete_all(&kim_gdata->kim_rcvd);
94 kfree_skb(skb);
95}
96
97/* check for data len received inside kim_int_recv
98 * most often hit the last case to update state to waiting for data
99 */
Pavan Savoy38d9df42010-07-08 08:55:17 -0500100static inline int kim_check_data_len(struct kim_data_s *kim_gdata, int len)
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500101{
102 register int room = skb_tailroom(kim_gdata->rx_skb);
103
Pavan Savoye6d9e642010-07-22 05:32:05 -0500104 pr_debug("len %d room %d", len, room);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500105
106 if (!len) {
Pavan Savoy38d9df42010-07-08 08:55:17 -0500107 validate_firmware_response(kim_gdata);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500108 } else if (len > room) {
109 /* Received packet's payload length is larger.
110 * We can't accommodate it in created skb.
111 */
112 pr_err("Data length is too large len %d room %d", len,
113 room);
114 kfree_skb(kim_gdata->rx_skb);
115 } else {
116 /* Packet header has non-zero payload length and
117 * we have enough space in created skb. Lets read
118 * payload data */
Pavan Savoy5c88b022011-02-04 02:23:09 -0600119 kim_gdata->rx_state = ST_W4_DATA;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500120 kim_gdata->rx_count = len;
121 return len;
122 }
123
124 /* Change ST LL state to continue to process next
125 * packet */
126 kim_gdata->rx_state = ST_W4_PACKET_TYPE;
127 kim_gdata->rx_skb = NULL;
128 kim_gdata->rx_count = 0;
129
130 return 0;
131}
132
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500133/**
134 * kim_int_recv - receive function called during firmware download
135 * firmware download responses on different UART drivers
136 * have been observed to come in bursts of different
137 * tty_receive and hence the logic
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500138 */
Pavan Savoy27712b32012-08-03 14:49:40 -0500139static void kim_int_recv(struct kim_data_s *kim_gdata,
Pavan Savoy38d9df42010-07-08 08:55:17 -0500140 const unsigned char *data, long count)
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500141{
Pavan Savoy73f12e82010-10-12 16:27:38 -0400142 const unsigned char *ptr;
Pavan Savoy73f12e82010-10-12 16:27:38 -0400143 int len = 0, type = 0;
Pavan Savoy5c88b022011-02-04 02:23:09 -0600144 unsigned char *plen;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500145
Pavan Savoye6d9e642010-07-22 05:32:05 -0500146 pr_debug("%s", __func__);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500147 /* Decode received bytes here */
Pavan Savoy73f12e82010-10-12 16:27:38 -0400148 ptr = data;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500149 if (unlikely(ptr == NULL)) {
150 pr_err(" received null from TTY ");
151 return;
152 }
Pavan Savoy73f12e82010-10-12 16:27:38 -0400153
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500154 while (count) {
155 if (kim_gdata->rx_count) {
156 len = min_t(unsigned int, kim_gdata->rx_count, count);
157 memcpy(skb_put(kim_gdata->rx_skb, len), ptr, len);
158 kim_gdata->rx_count -= len;
159 count -= len;
160 ptr += len;
161
162 if (kim_gdata->rx_count)
163 continue;
164
165 /* Check ST RX state machine , where are we? */
166 switch (kim_gdata->rx_state) {
167 /* Waiting for complete packet ? */
Pavan Savoy5c88b022011-02-04 02:23:09 -0600168 case ST_W4_DATA:
Pavan Savoye6d9e642010-07-22 05:32:05 -0500169 pr_debug("Complete pkt received");
Pavan Savoy38d9df42010-07-08 08:55:17 -0500170 validate_firmware_response(kim_gdata);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500171 kim_gdata->rx_state = ST_W4_PACKET_TYPE;
172 kim_gdata->rx_skb = NULL;
173 continue;
174 /* Waiting for Bluetooth event header ? */
Pavan Savoy5c88b022011-02-04 02:23:09 -0600175 case ST_W4_HEADER:
176 plen =
177 (unsigned char *)&kim_gdata->rx_skb->data[1];
178 pr_debug("event hdr: plen 0x%02x\n", *plen);
179 kim_check_data_len(kim_gdata, *plen);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500180 continue;
181 } /* end of switch */
182 } /* end of if rx_state */
183 switch (*ptr) {
184 /* Bluetooth event packet? */
Pavan Savoy5c88b022011-02-04 02:23:09 -0600185 case 0x04:
186 kim_gdata->rx_state = ST_W4_HEADER;
187 kim_gdata->rx_count = 2;
188 type = *ptr;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500189 break;
190 default:
191 pr_info("unknown packet");
192 ptr++;
193 count--;
194 continue;
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500195 }
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500196 ptr++;
197 count--;
198 kim_gdata->rx_skb =
Pavan Savoy5c88b022011-02-04 02:23:09 -0600199 alloc_skb(1024+8, GFP_ATOMIC);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500200 if (!kim_gdata->rx_skb) {
201 pr_err("can't allocate mem for new packet");
202 kim_gdata->rx_state = ST_W4_PACKET_TYPE;
203 kim_gdata->rx_count = 0;
204 return;
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500205 }
Pavan Savoy5c88b022011-02-04 02:23:09 -0600206 skb_reserve(kim_gdata->rx_skb, 8);
207 kim_gdata->rx_skb->cb[0] = 4;
208 kim_gdata->rx_skb->cb[1] = 0;
209
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500210 }
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500211 return;
212}
213
Pavan Savoy38d9df42010-07-08 08:55:17 -0500214static long read_local_version(struct kim_data_s *kim_gdata, char *bts_scr_name)
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500215{
216 unsigned short version = 0, chip = 0, min_ver = 0, maj_ver = 0;
Pavan Savoy73f12e82010-10-12 16:27:38 -0400217 const char read_ver_cmd[] = { 0x01, 0x01, 0x10, 0x00 };
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500218
Pavan Savoye6d9e642010-07-22 05:32:05 -0500219 pr_debug("%s", __func__);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500220
Wolfram Sang16735d02013-11-14 14:32:02 -0800221 reinit_completion(&kim_gdata->kim_rcvd);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500222 if (4 != st_int_write(kim_gdata->core_data, read_ver_cmd, 4)) {
223 pr_err("kim: couldn't write 4 bytes");
Pavan Savoy70442662011-02-04 02:23:11 -0600224 return -EIO;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500225 }
226
Pavan Savoy53702352012-08-03 14:49:42 -0500227 if (!wait_for_completion_interruptible_timeout(
228 &kim_gdata->kim_rcvd, msecs_to_jiffies(CMD_RESP_TIME))) {
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500229 pr_err(" waiting for ver info- timed out ");
Pavan Savoy70442662011-02-04 02:23:11 -0600230 return -ETIMEDOUT;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500231 }
Wolfram Sang16735d02013-11-14 14:32:02 -0800232 reinit_completion(&kim_gdata->kim_rcvd);
Pavan Savoy8565adb2012-08-03 14:49:43 -0500233 /* the positions 12 & 13 in the response buffer provide with the
234 * chip, major & minor numbers
235 */
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500236
237 version =
Pavan Savoy8565adb2012-08-03 14:49:43 -0500238 MAKEWORD(kim_gdata->resp_buffer[12],
239 kim_gdata->resp_buffer[13]);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500240 chip = (version & 0x7C00) >> 10;
241 min_ver = (version & 0x007F);
242 maj_ver = (version & 0x0380) >> 7;
243
244 if (version & 0x8000)
245 maj_ver |= 0x0008;
246
Enric Balletbo i Serra4dcc2ab2014-07-22 13:08:38 +0200247 sprintf(bts_scr_name, "ti-connectivity/TIInit_%d.%d.%d.bts",
248 chip, maj_ver, min_ver);
Naveen Jaine2a53282010-06-09 03:45:33 -0500249
250 /* to be accessed later via sysfs entry */
251 kim_gdata->version.full = version;
252 kim_gdata->version.chip = chip;
253 kim_gdata->version.maj_ver = maj_ver;
254 kim_gdata->version.min_ver = min_ver;
255
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500256 pr_info("%s", bts_scr_name);
Pavan Savoy320920c2010-07-14 08:21:12 -0500257 return 0;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500258}
259
Pavan Savoy27712b32012-08-03 14:49:40 -0500260static void skip_change_remote_baud(unsigned char **ptr, long *len)
Pavan Savoyef04d122011-02-04 02:23:13 -0600261{
262 unsigned char *nxt_action, *cur_action;
263 cur_action = *ptr;
264
265 nxt_action = cur_action + sizeof(struct bts_action) +
266 ((struct bts_action *) cur_action)->size;
267
268 if (((struct bts_action *) nxt_action)->type != ACTION_WAIT_EVENT) {
269 pr_err("invalid action after change remote baud command");
270 } else {
271 *ptr = *ptr + sizeof(struct bts_action) +
Shahar Lev9d031d92011-05-23 11:36:11 +0300272 ((struct bts_action *)cur_action)->size;
Pavan Savoyef04d122011-02-04 02:23:13 -0600273 *len = *len - (sizeof(struct bts_action) +
Shahar Lev9d031d92011-05-23 11:36:11 +0300274 ((struct bts_action *)cur_action)->size);
Pavan Savoyef04d122011-02-04 02:23:13 -0600275 /* warn user on not commenting these in firmware */
276 pr_warn("skipping the wait event of change remote baud");
277 }
278}
279
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500280/**
281 * download_firmware -
282 * internal function which parses through the .bts firmware
283 * script file intreprets SEND, DELAY actions only as of now
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500284 */
Pavan Savoy38d9df42010-07-08 08:55:17 -0500285static long download_firmware(struct kim_data_s *kim_gdata)
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500286{
Pavan Savoy320920c2010-07-14 08:21:12 -0500287 long err = 0;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500288 long len = 0;
Pavan Savoy73f12e82010-10-12 16:27:38 -0400289 unsigned char *ptr = NULL;
290 unsigned char *action_ptr = NULL;
Enric Balletbo i Serra4dcc2ab2014-07-22 13:08:38 +0200291 unsigned char bts_scr_name[40] = { 0 }; /* 40 char long bts scr name? */
Pavan Savoyef04d122011-02-04 02:23:13 -0600292 int wr_room_space;
293 int cmd_size;
294 unsigned long timeout;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500295
Pavan Savoy38d9df42010-07-08 08:55:17 -0500296 err = read_local_version(kim_gdata, bts_scr_name);
Pavan Savoy320920c2010-07-14 08:21:12 -0500297 if (err != 0) {
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500298 pr_err("kim: failed to read local ver");
299 return err;
300 }
301 err =
302 request_firmware(&kim_gdata->fw_entry, bts_scr_name,
303 &kim_gdata->kim_pdev->dev);
304 if (unlikely((err != 0) || (kim_gdata->fw_entry->data == NULL) ||
305 (kim_gdata->fw_entry->size == 0))) {
306 pr_err(" request_firmware failed(errno %ld) for %s", err,
307 bts_scr_name);
Pavan Savoy70442662011-02-04 02:23:11 -0600308 return -EINVAL;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500309 }
310 ptr = (void *)kim_gdata->fw_entry->data;
311 len = kim_gdata->fw_entry->size;
312 /* bts_header to remove out magic number and
313 * version
314 */
315 ptr += sizeof(struct bts_header);
316 len -= sizeof(struct bts_header);
317
318 while (len > 0 && ptr) {
Pavan Savoye6d9e642010-07-22 05:32:05 -0500319 pr_debug(" action size %d, type %d ",
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500320 ((struct bts_action *)ptr)->size,
321 ((struct bts_action *)ptr)->type);
322
323 switch (((struct bts_action *)ptr)->type) {
324 case ACTION_SEND_COMMAND: /* action send */
Pavan Savoy2f81a022011-08-10 10:18:34 -0500325 pr_debug("S");
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500326 action_ptr = &(((struct bts_action *)ptr)->data[0]);
327 if (unlikely
328 (((struct hci_command *)action_ptr)->opcode ==
329 0xFF36)) {
330 /* ignore remote change
331 * baud rate HCI VS command */
Pavan Savoyef04d122011-02-04 02:23:13 -0600332 pr_warn("change remote baud"
Pavan Savoye6d9e642010-07-22 05:32:05 -0500333 " rate command in firmware");
Pavan Savoyef04d122011-02-04 02:23:13 -0600334 skip_change_remote_baud(&ptr, &len);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500335 break;
336 }
Pavan Savoyef04d122011-02-04 02:23:13 -0600337 /*
338 * Make sure we have enough free space in uart
339 * tx buffer to write current firmware command
340 */
341 cmd_size = ((struct bts_action *)ptr)->size;
342 timeout = jiffies + msecs_to_jiffies(CMD_WR_TIME);
343 do {
344 wr_room_space =
345 st_get_uart_wr_room(kim_gdata->core_data);
346 if (wr_room_space < 0) {
347 pr_err("Unable to get free "
348 "space info from uart tx buffer");
349 release_firmware(kim_gdata->fw_entry);
350 return wr_room_space;
351 }
352 mdelay(1); /* wait 1ms before checking room */
353 } while ((wr_room_space < cmd_size) &&
354 time_before(jiffies, timeout));
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500355
Pavan Savoyef04d122011-02-04 02:23:13 -0600356 /* Timeout happened ? */
357 if (time_after_eq(jiffies, timeout)) {
358 pr_err("Timeout while waiting for free "
359 "free space in uart tx buffer");
360 release_firmware(kim_gdata->fw_entry);
361 return -ETIMEDOUT;
362 }
Pavan Savoy2f81a022011-08-10 10:18:34 -0500363 /* reinit completion before sending for the
364 * relevant wait
365 */
Wolfram Sang16735d02013-11-14 14:32:02 -0800366 reinit_completion(&kim_gdata->kim_rcvd);
Pavan Savoyef04d122011-02-04 02:23:13 -0600367
368 /*
369 * Free space found in uart buffer, call st_int_write
370 * to send current firmware command to the uart tx
371 * buffer.
372 */
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500373 err = st_int_write(kim_gdata->core_data,
374 ((struct bts_action_send *)action_ptr)->data,
375 ((struct bts_action *)ptr)->size);
376 if (unlikely(err < 0)) {
377 release_firmware(kim_gdata->fw_entry);
Pavan Savoy70442662011-02-04 02:23:11 -0600378 return err;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500379 }
Pavan Savoyef04d122011-02-04 02:23:13 -0600380 /*
381 * Check number of bytes written to the uart tx buffer
382 * and requested command write size
383 */
384 if (err != cmd_size) {
385 pr_err("Number of bytes written to uart "
386 "tx buffer are not matching with "
387 "requested cmd write size");
388 release_firmware(kim_gdata->fw_entry);
389 return -EIO;
390 }
391 break;
392 case ACTION_WAIT_EVENT: /* wait */
Pavan Savoy2f81a022011-08-10 10:18:34 -0500393 pr_debug("W");
Pavan Savoy53702352012-08-03 14:49:42 -0500394 if (!wait_for_completion_interruptible_timeout(
395 &kim_gdata->kim_rcvd,
396 msecs_to_jiffies(CMD_RESP_TIME))) {
Pavan Savoyef04d122011-02-04 02:23:13 -0600397 pr_err("response timeout during fw download ");
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500398 /* timed out */
399 release_firmware(kim_gdata->fw_entry);
Pavan Savoy70442662011-02-04 02:23:11 -0600400 return -ETIMEDOUT;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500401 }
Wolfram Sang16735d02013-11-14 14:32:02 -0800402 reinit_completion(&kim_gdata->kim_rcvd);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500403 break;
404 case ACTION_DELAY: /* sleep */
405 pr_info("sleep command in scr");
406 action_ptr = &(((struct bts_action *)ptr)->data[0]);
407 mdelay(((struct bts_action_delay *)action_ptr)->msec);
408 break;
409 }
410 len =
411 len - (sizeof(struct bts_action) +
412 ((struct bts_action *)ptr)->size);
413 ptr =
414 ptr + sizeof(struct bts_action) +
415 ((struct bts_action *)ptr)->size;
416 }
417 /* fw download complete */
418 release_firmware(kim_gdata->fw_entry);
Pavan Savoy320920c2010-07-14 08:21:12 -0500419 return 0;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500420}
421
422/**********************************************************************/
423/* functions called from ST core */
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500424/* called from ST Core, when REG_IN_PROGRESS (registration in progress)
425 * can be because of
426 * 1. response to read local version
427 * 2. during send/recv's of firmware download
428 */
429void st_kim_recv(void *disc_data, const unsigned char *data, long count)
430{
Pavan Savoy38d9df42010-07-08 08:55:17 -0500431 struct st_data_s *st_gdata = (struct st_data_s *)disc_data;
432 struct kim_data_s *kim_gdata = st_gdata->kim_data;
433
Pavan Savoy8565adb2012-08-03 14:49:43 -0500434 /* proceed to gather all data and distinguish read fw version response
435 * from other fw responses when data gathering is complete
436 */
437 kim_int_recv(kim_gdata, data, count);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500438 return;
439}
440
441/* to signal completion of line discipline installation
442 * called from ST Core, upon tty_open
443 */
Pavan Savoy38d9df42010-07-08 08:55:17 -0500444void st_kim_complete(void *kim_data)
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500445{
Pavan Savoy38d9df42010-07-08 08:55:17 -0500446 struct kim_data_s *kim_gdata = (struct kim_data_s *)kim_data;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500447 complete(&kim_gdata->ldisc_installed);
448}
449
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500450/**
451 * st_kim_start - called from ST Core upon 1st registration
452 * This involves toggling the chip enable gpio, reading
453 * the firmware version from chip, forming the fw file name
454 * based on the chip version, requesting the fw, parsing it
455 * and perform download(send/recv).
456 */
Pavan Savoy38d9df42010-07-08 08:55:17 -0500457long st_kim_start(void *kim_data)
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500458{
Pavan Savoy320920c2010-07-14 08:21:12 -0500459 long err = 0;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500460 long retry = POR_RETRY_COUNT;
Pavan Savoy0d7c5f22011-08-10 10:18:31 -0500461 struct ti_st_plat_data *pdata;
Pavan Savoy38d9df42010-07-08 08:55:17 -0500462 struct kim_data_s *kim_gdata = (struct kim_data_s *)kim_data;
463
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500464 pr_info(" %s", __func__);
Pavan Savoy0d7c5f22011-08-10 10:18:31 -0500465 pdata = kim_gdata->kim_pdev->dev.platform_data;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500466
467 do {
Pavan Savoy0d7c5f22011-08-10 10:18:31 -0500468 /* platform specific enabling code here */
469 if (pdata->chip_enable)
470 pdata->chip_enable(kim_gdata);
471
Luciano Coelhoa7e2ca12013-01-21 13:12:42 +0200472 /* Configure BT nShutdown to HIGH state */
473 gpio_set_value(kim_gdata->nshutdown, GPIO_LOW);
474 mdelay(5); /* FIXME: a proper toggle */
475 gpio_set_value(kim_gdata->nshutdown, GPIO_HIGH);
476 mdelay(100);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500477 /* re-initialize the completion */
Wolfram Sang16735d02013-11-14 14:32:02 -0800478 reinit_completion(&kim_gdata->ldisc_installed);
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600479 /* send notification to UIM */
480 kim_gdata->ldisc_install = 1;
481 pr_info("ldisc_install = 1");
482 sysfs_notify(&kim_gdata->kim_pdev->dev.kobj,
483 NULL, "install");
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500484 /* wait for ldisc to be installed */
Pavan Savoy53702352012-08-03 14:49:42 -0500485 err = wait_for_completion_interruptible_timeout(
486 &kim_gdata->ldisc_installed, msecs_to_jiffies(LDISC_TIME));
Pavan Savoy18ccecf2011-12-15 10:38:21 -0600487 if (!err) {
488 /* ldisc installation timeout,
489 * flush uart, power cycle BT_EN */
490 pr_err("ldisc installation timeout");
491 err = st_kim_stop(kim_gdata);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500492 continue;
493 } else {
494 /* ldisc installed now */
Pavan Savoy18ccecf2011-12-15 10:38:21 -0600495 pr_info("line discipline installed");
Pavan Savoy38d9df42010-07-08 08:55:17 -0500496 err = download_firmware(kim_gdata);
Pavan Savoy320920c2010-07-14 08:21:12 -0500497 if (err != 0) {
Pavan Savoy18ccecf2011-12-15 10:38:21 -0600498 /* ldisc installed but fw download failed,
499 * flush uart & power cycle BT_EN */
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500500 pr_err("download firmware failed");
Pavan Savoy18ccecf2011-12-15 10:38:21 -0600501 err = st_kim_stop(kim_gdata);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500502 continue;
503 } else { /* on success don't retry */
504 break;
505 }
506 }
507 } while (retry--);
508 return err;
509}
510
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500511/**
Pavan Savoy18ccecf2011-12-15 10:38:21 -0600512 * st_kim_stop - stop communication with chip.
513 * This can be called from ST Core/KIM, on the-
514 * (a) last un-register when chip need not be powered there-after,
515 * (b) upon failure to either install ldisc or download firmware.
516 * The function is responsible to (a) notify UIM about un-installation,
517 * (b) flush UART if the ldisc was installed.
Luciano Coelhoa7e2ca12013-01-21 13:12:42 +0200518 * (c) reset BT_EN - pull down nshutdown at the end.
519 * (d) invoke platform's chip disabling routine.
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500520 */
Pavan Savoy38d9df42010-07-08 08:55:17 -0500521long st_kim_stop(void *kim_data)
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500522{
Pavan Savoy320920c2010-07-14 08:21:12 -0500523 long err = 0;
Pavan Savoy38d9df42010-07-08 08:55:17 -0500524 struct kim_data_s *kim_gdata = (struct kim_data_s *)kim_data;
Pavan Savoy0d7c5f22011-08-10 10:18:31 -0500525 struct ti_st_plat_data *pdata =
526 kim_gdata->kim_pdev->dev.platform_data;
Pavan Savoy18ccecf2011-12-15 10:38:21 -0600527 struct tty_struct *tty = kim_gdata->core_data->tty;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500528
Wolfram Sang16735d02013-11-14 14:32:02 -0800529 reinit_completion(&kim_gdata->ldisc_installed);
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600530
Pavan Savoy18ccecf2011-12-15 10:38:21 -0600531 if (tty) { /* can be called before ldisc is installed */
532 /* Flush any pending characters in the driver and discipline. */
533 tty_ldisc_flush(tty);
534 tty_driver_flush_buffer(tty);
Pavan Savoy18ccecf2011-12-15 10:38:21 -0600535 }
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600536
537 /* send uninstall notification to UIM */
538 pr_info("ldisc_install = 0");
539 kim_gdata->ldisc_install = 0;
540 sysfs_notify(&kim_gdata->kim_pdev->dev.kobj, NULL, "install");
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500541
542 /* wait for ldisc to be un-installed */
Pavan Savoy53702352012-08-03 14:49:42 -0500543 err = wait_for_completion_interruptible_timeout(
544 &kim_gdata->ldisc_installed, msecs_to_jiffies(LDISC_TIME));
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500545 if (!err) { /* timeout */
546 pr_err(" timed out waiting for ldisc to be un-installed");
Pavan Savoyb64365a2012-08-03 14:49:41 -0500547 err = -ETIMEDOUT;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500548 }
549
Luciano Coelhoa7e2ca12013-01-21 13:12:42 +0200550 /* By default configure BT nShutdown to LOW state */
551 gpio_set_value(kim_gdata->nshutdown, GPIO_LOW);
552 mdelay(1);
553 gpio_set_value(kim_gdata->nshutdown, GPIO_HIGH);
554 mdelay(1);
555 gpio_set_value(kim_gdata->nshutdown, GPIO_LOW);
556
Pavan Savoy0d7c5f22011-08-10 10:18:31 -0500557 /* platform specific disable */
558 if (pdata->chip_disable)
559 pdata->chip_disable(kim_gdata);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500560 return err;
561}
562
563/**********************************************************************/
564/* functions called from subsystems */
Pavan Savoyc1afac12010-07-28 02:25:59 -0500565/* called when debugfs entry is read from */
Naveen Jaine2a53282010-06-09 03:45:33 -0500566
Pavan Savoyc1afac12010-07-28 02:25:59 -0500567static int show_version(struct seq_file *s, void *unused)
Naveen Jaine2a53282010-06-09 03:45:33 -0500568{
Pavan Savoyc1afac12010-07-28 02:25:59 -0500569 struct kim_data_s *kim_gdata = (struct kim_data_s *)s->private;
570 seq_printf(s, "%04X %d.%d.%d\n", kim_gdata->version.full,
Naveen Jaine2a53282010-06-09 03:45:33 -0500571 kim_gdata->version.chip, kim_gdata->version.maj_ver,
572 kim_gdata->version.min_ver);
Pavan Savoyc1afac12010-07-28 02:25:59 -0500573 return 0;
Naveen Jaine2a53282010-06-09 03:45:33 -0500574}
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500575
Pavan Savoyc1afac12010-07-28 02:25:59 -0500576static int show_list(struct seq_file *s, void *unused)
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500577{
Pavan Savoyc1afac12010-07-28 02:25:59 -0500578 struct kim_data_s *kim_gdata = (struct kim_data_s *)s->private;
579 kim_st_list_protocols(kim_gdata->core_data, s);
580 return 0;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500581}
582
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600583static ssize_t show_install(struct device *dev,
584 struct device_attribute *attr, char *buf)
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500585{
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600586 struct kim_data_s *kim_data = dev_get_drvdata(dev);
587 return sprintf(buf, "%d\n", kim_data->ldisc_install);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500588}
589
Pavan Savoy933aae52011-12-15 10:38:22 -0600590#ifdef DEBUG
591static ssize_t store_dev_name(struct device *dev,
592 struct device_attribute *attr, const char *buf, size_t count)
593{
594 struct kim_data_s *kim_data = dev_get_drvdata(dev);
595 pr_debug("storing dev name >%s<", buf);
596 strncpy(kim_data->dev_name, buf, count);
597 pr_debug("stored dev name >%s<", kim_data->dev_name);
598 return count;
599}
600
601static ssize_t store_baud_rate(struct device *dev,
602 struct device_attribute *attr, const char *buf, size_t count)
603{
604 struct kim_data_s *kim_data = dev_get_drvdata(dev);
605 pr_debug("storing baud rate >%s<", buf);
606 sscanf(buf, "%ld", &kim_data->baud_rate);
607 pr_debug("stored baud rate >%ld<", kim_data->baud_rate);
608 return count;
609}
610#endif /* if DEBUG */
611
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600612static ssize_t show_dev_name(struct device *dev,
613 struct device_attribute *attr, char *buf)
614{
615 struct kim_data_s *kim_data = dev_get_drvdata(dev);
616 return sprintf(buf, "%s\n", kim_data->dev_name);
617}
618
619static ssize_t show_baud_rate(struct device *dev,
620 struct device_attribute *attr, char *buf)
621{
622 struct kim_data_s *kim_data = dev_get_drvdata(dev);
623 return sprintf(buf, "%ld\n", kim_data->baud_rate);
624}
625
626static ssize_t show_flow_cntrl(struct device *dev,
627 struct device_attribute *attr, char *buf)
628{
629 struct kim_data_s *kim_data = dev_get_drvdata(dev);
630 return sprintf(buf, "%d\n", kim_data->flow_cntrl);
631}
632
633/* structures specific for sysfs entries */
634static struct kobj_attribute ldisc_install =
635__ATTR(install, 0444, (void *)show_install, NULL);
636
637static struct kobj_attribute uart_dev_name =
Pavan Savoy933aae52011-12-15 10:38:22 -0600638#ifdef DEBUG /* TODO: move this to debug-fs if possible */
639__ATTR(dev_name, 0644, (void *)show_dev_name, (void *)store_dev_name);
640#else
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600641__ATTR(dev_name, 0444, (void *)show_dev_name, NULL);
Pavan Savoy933aae52011-12-15 10:38:22 -0600642#endif
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600643
644static struct kobj_attribute uart_baud_rate =
Pavan Savoy933aae52011-12-15 10:38:22 -0600645#ifdef DEBUG /* TODO: move to debugfs */
646__ATTR(baud_rate, 0644, (void *)show_baud_rate, (void *)store_baud_rate);
647#else
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600648__ATTR(baud_rate, 0444, (void *)show_baud_rate, NULL);
Pavan Savoy933aae52011-12-15 10:38:22 -0600649#endif
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600650
651static struct kobj_attribute uart_flow_cntrl =
652__ATTR(flow_cntrl, 0444, (void *)show_flow_cntrl, NULL);
653
654static struct attribute *uim_attrs[] = {
655 &ldisc_install.attr,
656 &uart_dev_name.attr,
657 &uart_baud_rate.attr,
658 &uart_flow_cntrl.attr,
659 NULL,
660};
661
662static struct attribute_group uim_attr_grp = {
663 .attrs = uim_attrs,
664};
665
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500666/**
667 * st_kim_ref - reference the core's data
668 * This references the per-ST platform device in the arch/xx/
669 * board-xx.c file.
670 * This would enable multiple such platform devices to exist
671 * on a given platform
672 */
Pavan Savoydbd3a872010-08-19 14:08:51 -0400673void st_kim_ref(struct st_data_s **core_data, int id)
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500674{
Pavan Savoy38d9df42010-07-08 08:55:17 -0500675 struct platform_device *pdev;
676 struct kim_data_s *kim_gdata;
677 /* get kim_gdata reference from platform device */
Pavan Savoydbd3a872010-08-19 14:08:51 -0400678 pdev = st_get_plat_device(id);
Steven Rostedt7316a9f2011-05-23 16:45:32 -0400679 if (!pdev) {
680 *core_data = NULL;
681 return;
682 }
Jingoo Han9093ca82013-05-23 19:35:23 +0900683 kim_gdata = platform_get_drvdata(pdev);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500684 *core_data = kim_gdata->core_data;
685}
686
Pavan Savoyc1afac12010-07-28 02:25:59 -0500687static int kim_version_open(struct inode *i, struct file *f)
688{
689 return single_open(f, show_version, i->i_private);
690}
691
692static int kim_list_open(struct inode *i, struct file *f)
693{
694 return single_open(f, show_list, i->i_private);
695}
696
697static const struct file_operations version_debugfs_fops = {
698 /* version info */
699 .open = kim_version_open,
700 .read = seq_read,
701 .llseek = seq_lseek,
702 .release = single_release,
703};
704static const struct file_operations list_debugfs_fops = {
705 /* protocols info */
706 .open = kim_list_open,
707 .read = seq_read,
708 .llseek = seq_lseek,
709 .release = single_release,
710};
711
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500712/**********************************************************************/
713/* functions called from platform device driver subsystem
714 * need to have a relevant platform device entry in the platform's
715 * board-*.c file
716 */
717
Pavan Savoy27712b32012-08-03 14:49:40 -0500718static struct dentry *kim_debugfs_dir;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500719static int kim_probe(struct platform_device *pdev)
720{
Pavan Savoy38d9df42010-07-08 08:55:17 -0500721 struct kim_data_s *kim_gdata;
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600722 struct ti_st_plat_data *pdata = pdev->dev.platform_data;
Matthias Kaehlckeb2997382012-11-22 23:26:14 +0100723 int err;
Pavan Savoy38d9df42010-07-08 08:55:17 -0500724
Pavan Savoydfb7ef72010-09-10 15:58:55 -0400725 if ((pdev->id != -1) && (pdev->id < MAX_ST_DEVICES)) {
726 /* multiple devices could exist */
727 st_kim_devices[pdev->id] = pdev;
728 } else {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300729 /* platform's sure about existence of 1 device */
Pavan Savoydfb7ef72010-09-10 15:58:55 -0400730 st_kim_devices[0] = pdev;
731 }
732
Pavan Savoy38d9df42010-07-08 08:55:17 -0500733 kim_gdata = kzalloc(sizeof(struct kim_data_s), GFP_ATOMIC);
734 if (!kim_gdata) {
735 pr_err("no mem to allocate");
736 return -ENOMEM;
737 }
Jingoo Han9093ca82013-05-23 19:35:23 +0900738 platform_set_drvdata(pdev, kim_gdata);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500739
Matthias Kaehlckeb2997382012-11-22 23:26:14 +0100740 err = st_core_init(&kim_gdata->core_data);
741 if (err != 0) {
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500742 pr_err(" ST core init failed");
Matthias Kaehlckeb2997382012-11-22 23:26:14 +0100743 err = -EIO;
744 goto err_core_init;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500745 }
Pavan Savoy38d9df42010-07-08 08:55:17 -0500746 /* refer to itself */
747 kim_gdata->core_data->kim_data = kim_gdata;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500748
Luciano Coelhoa7e2ca12013-01-21 13:12:42 +0200749 /* Claim the chip enable nShutdown gpio from the system */
750 kim_gdata->nshutdown = pdata->nshutdown_gpio;
751 err = gpio_request(kim_gdata->nshutdown, "kim");
752 if (unlikely(err)) {
753 pr_err(" gpio %ld request failed ", kim_gdata->nshutdown);
754 return err;
755 }
756
757 /* Configure nShutdown GPIO as output=0 */
758 err = gpio_direction_output(kim_gdata->nshutdown, 0);
759 if (unlikely(err)) {
760 pr_err(" unable to configure gpio %ld", kim_gdata->nshutdown);
761 return err;
762 }
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500763 /* get reference of pdev for request_firmware
764 */
765 kim_gdata->kim_pdev = pdev;
766 init_completion(&kim_gdata->kim_rcvd);
767 init_completion(&kim_gdata->ldisc_installed);
Naveen Jainb38fc2d2010-06-09 03:45:32 -0500768
Matthias Kaehlckeb2997382012-11-22 23:26:14 +0100769 err = sysfs_create_group(&pdev->dev.kobj, &uim_attr_grp);
770 if (err) {
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600771 pr_err("failed to create sysfs entries");
Matthias Kaehlckeb2997382012-11-22 23:26:14 +0100772 goto err_sysfs_group;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500773 }
Naveen Jaine2a53282010-06-09 03:45:33 -0500774
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600775 /* copying platform data */
776 strncpy(kim_gdata->dev_name, pdata->dev_name, UART_DEV_NAME_LEN);
777 kim_gdata->flow_cntrl = pdata->flow_cntrl;
778 kim_gdata->baud_rate = pdata->baud_rate;
779 pr_info("sysfs entries created\n");
780
Pavan Savoyc1afac12010-07-28 02:25:59 -0500781 kim_debugfs_dir = debugfs_create_dir("ti-st", NULL);
Robin van der Gracht37685282014-06-16 16:38:56 +0200782 if (!kim_debugfs_dir) {
Pavan Savoyc1afac12010-07-28 02:25:59 -0500783 pr_err(" debugfs entries creation failed ");
Matthias Kaehlckeb2997382012-11-22 23:26:14 +0100784 err = -EIO;
785 goto err_debugfs_dir;
Naveen Jaine2a53282010-06-09 03:45:33 -0500786 }
Pavan Savoyc1afac12010-07-28 02:25:59 -0500787
788 debugfs_create_file("version", S_IRUGO, kim_debugfs_dir,
789 kim_gdata, &version_debugfs_fops);
790 debugfs_create_file("protocols", S_IRUGO, kim_debugfs_dir,
791 kim_gdata, &list_debugfs_fops);
Pavan Savoy320920c2010-07-14 08:21:12 -0500792 return 0;
Matthias Kaehlckeb2997382012-11-22 23:26:14 +0100793
794err_debugfs_dir:
795 sysfs_remove_group(&pdev->dev.kobj, &uim_attr_grp);
796
797err_sysfs_group:
798 st_core_exit(kim_gdata->core_data);
799
800err_core_init:
801 kfree(kim_gdata);
802
803 return err;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500804}
805
806static int kim_remove(struct platform_device *pdev)
807{
Luciano Coelhoa7e2ca12013-01-21 13:12:42 +0200808 /* free the GPIOs requested */
809 struct ti_st_plat_data *pdata = pdev->dev.platform_data;
Pavan Savoy38d9df42010-07-08 08:55:17 -0500810 struct kim_data_s *kim_gdata;
811
Jingoo Han9093ca82013-05-23 19:35:23 +0900812 kim_gdata = platform_get_drvdata(pdev);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500813
Luciano Coelhoa7e2ca12013-01-21 13:12:42 +0200814 /* Free the Bluetooth/FM/GPIO
815 * nShutdown gpio from the system
816 */
817 gpio_free(pdata->nshutdown_gpio);
818 pr_info("nshutdown GPIO Freed");
819
Pavan Savoy781a7392011-02-04 02:23:15 -0600820 debugfs_remove_recursive(kim_debugfs_dir);
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600821 sysfs_remove_group(&pdev->dev.kobj, &uim_attr_grp);
Pavan Savoy781a7392011-02-04 02:23:15 -0600822 pr_info("sysfs entries removed");
823
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500824 kim_gdata->kim_pdev = NULL;
825 st_core_exit(kim_gdata->core_data);
Pavan Savoy38d9df42010-07-08 08:55:17 -0500826
827 kfree(kim_gdata);
828 kim_gdata = NULL;
Pavan Savoy320920c2010-07-14 08:21:12 -0500829 return 0;
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500830}
831
Pavan Savoy27712b32012-08-03 14:49:40 -0500832static int kim_suspend(struct platform_device *pdev, pm_message_t state)
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600833{
834 struct ti_st_plat_data *pdata = pdev->dev.platform_data;
835
836 if (pdata->suspend)
837 return pdata->suspend(pdev, state);
838
839 return -EOPNOTSUPP;
840}
841
Pavan Savoy27712b32012-08-03 14:49:40 -0500842static int kim_resume(struct platform_device *pdev)
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600843{
844 struct ti_st_plat_data *pdata = pdev->dev.platform_data;
845
846 if (pdata->resume)
847 return pdata->resume(pdev);
848
849 return -EOPNOTSUPP;
850}
851
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500852/**********************************************************************/
853/* entry point for ST KIM module, called in from ST Core */
Pavan Savoyec60d0a2011-02-04 02:23:10 -0600854static struct platform_driver kim_platform_driver = {
855 .probe = kim_probe,
856 .remove = kim_remove,
857 .suspend = kim_suspend,
858 .resume = kim_resume,
859 .driver = {
860 .name = "kim",
861 .owner = THIS_MODULE,
862 },
863};
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500864
Axel Linb00e1262012-01-22 15:33:49 +0800865module_platform_driver(kim_platform_driver);
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500866
Pavan Savoyd0088ce2010-04-08 13:16:54 -0500867MODULE_AUTHOR("Pavan Savoy <pavan_savoy@ti.com>");
868MODULE_DESCRIPTION("Shared Transport Driver for TI BT/FM/GPS combo chips ");
869MODULE_LICENSE("GPL");