blob: 8a2c23f8b2fdd41aea299057a5da141d04f38f6b [file] [log] [blame]
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001/* arch/arm/mach-msm/smd_tty.c
2 *
3 * Copyright (C) 2007 Google, Inc.
Karthikeyan Ramasubramanianc41fcf52013-01-29 17:45:15 -07004 * Copyright (c) 2009-2013, The Linux Foundation. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07005 * Author: Brian Swetland <swetland@google.com>
6 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 */
17
18#include <linux/module.h>
19#include <linux/fs.h>
20#include <linux/cdev.h>
21#include <linux/device.h>
22#include <linux/interrupt.h>
23#include <linux/delay.h>
24#include <linux/wakelock.h>
25#include <linux/platform_device.h>
26#include <linux/sched.h>
27
28#include <linux/tty.h>
29#include <linux/tty_driver.h>
30#include <linux/tty_flip.h>
31
32#include <mach/msm_smd.h>
Stephen Boyd77db8bb2012-06-27 15:15:16 -070033#include <mach/subsystem_restart.h>
Jeff Hugo4c0ba6c2011-07-15 11:47:13 -060034#include <mach/socinfo.h>
Zaheerulla Meer8c840972013-03-08 18:21:05 +053035#include <mach/msm_ipc_logging.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070036
37#include "smd_private.h"
38
39#define MAX_SMD_TTYS 37
40#define MAX_TTY_BUF_SIZE 2048
Karthikeyan Ramasubramanianc41fcf52013-01-29 17:45:15 -070041#define MAX_RA_WAKE_LOCK_NAME_LEN 32
Zaheerulla Meer8c840972013-03-08 18:21:05 +053042#define SMD_TTY_LOG_PAGES 2
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070043
Zaheerulla Meer8c840972013-03-08 18:21:05 +053044#define SMD_TTY_INFO(buf...) \
45do { \
46 if (smd_tty_log_ctx) { \
47 ipc_log_string(smd_tty_log_ctx, buf); \
48 } \
49} while (0)
50
51#define SMD_TTY_ERR(buf...) \
52do { \
53 if (smd_tty_log_ctx) \
54 ipc_log_string(smd_tty_log_ctx, buf); \
55 pr_err(buf); \
56} while (0)
57
58static void *smd_tty_log_ctx;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070059static DEFINE_MUTEX(smd_tty_lock);
60
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070061struct smd_tty_info {
62 smd_channel_t *ch;
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -070063 struct tty_port port;
Zaheerulla Meeraf16e492013-03-13 20:03:20 +053064 struct device *device_ptr;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070065 struct wake_lock wake_lock;
66 int open_count;
67 struct tasklet_struct tty_tsklt;
68 struct timer_list buf_req_timer;
69 struct completion ch_allocated;
70 struct platform_driver driver;
71 void *pil;
72 int in_reset;
73 int in_reset_updated;
Karthikeyan Ramasubramaniand5e63af2011-07-29 11:30:59 -060074 int is_open;
Zaheerulla Meeraf16e492013-03-13 20:03:20 +053075 unsigned int open_wait;
Karthikeyan Ramasubramaniand5e63af2011-07-29 11:30:59 -060076 wait_queue_head_t ch_opened_wait_queue;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070077 spinlock_t reset_lock;
Karthikeyan Ramasubramanianc41fcf52013-01-29 17:45:15 -070078 spinlock_t ra_lock; /* Read Available Lock*/
79 char ra_wake_lock_name[MAX_RA_WAKE_LOCK_NAME_LEN];
80 struct wake_lock ra_wake_lock; /* Read Available Wakelock */
Eric Holmberg513ad582011-12-14 16:27:13 -070081 struct smd_config *smd;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070082};
83
Eric Holmberg513ad582011-12-14 16:27:13 -070084/**
85 * SMD port configuration.
86 *
87 * @tty_dev_index Index into smd_tty[]
88 * @port_name Name of the SMD port
89 * @dev_name Name of the TTY Device (if NULL, @port_name is used)
90 * @edge SMD edge
91 */
92struct smd_config {
93 uint32_t tty_dev_index;
94 const char *port_name;
95 const char *dev_name;
96 uint32_t edge;
97};
98
99static struct smd_config smd_configs[] = {
100 {0, "DS", NULL, SMD_APPS_MODEM},
101 {1, "APPS_FM", NULL, SMD_APPS_WCNSS},
102 {2, "APPS_RIVA_BT_ACL", NULL, SMD_APPS_WCNSS},
103 {3, "APPS_RIVA_BT_CMD", NULL, SMD_APPS_WCNSS},
104 {4, "MBALBRIDGE", NULL, SMD_APPS_MODEM},
Jeff Hugodfb9c9a2012-04-10 14:22:47 -0600105 {5, "APPS_RIVA_ANT_CMD", NULL, SMD_APPS_WCNSS},
106 {6, "APPS_RIVA_ANT_DATA", NULL, SMD_APPS_WCNSS},
Eric Holmberg513ad582011-12-14 16:27:13 -0700107 {7, "DATA1", NULL, SMD_APPS_MODEM},
Eric Holmbergbe1dc5f2011-12-14 21:35:12 -0700108 {11, "DATA11", NULL, SMD_APPS_MODEM},
Eric Holmberg513ad582011-12-14 16:27:13 -0700109 {21, "DATA21", NULL, SMD_APPS_MODEM},
110 {27, "GPSNMEA", NULL, SMD_APPS_MODEM},
111 {36, "LOOPBACK", "LOOPBACK_TTY", SMD_APPS_MODEM},
112};
113#define DS_IDX 0
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700114#define LOOPBACK_IDX 36
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700115
116static struct delayed_work loopback_work;
117static struct smd_tty_info smd_tty[MAX_SMD_TTYS];
118
119static int is_in_reset(struct smd_tty_info *info)
120{
121 return info->in_reset;
122}
123
124static void buf_req_retry(unsigned long param)
125{
126 struct smd_tty_info *info = (struct smd_tty_info *)param;
Karthikeyan Ramasubramanianf8ad4132011-11-22 09:11:18 -0700127 unsigned long flags;
128
129 spin_lock_irqsave(&info->reset_lock, flags);
130 if (info->is_open) {
131 spin_unlock_irqrestore(&info->reset_lock, flags);
132 tasklet_hi_schedule(&info->tty_tsklt);
133 return;
134 }
135 spin_unlock_irqrestore(&info->reset_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700136}
137
Zaheerulla Meeraf16e492013-03-13 20:03:20 +0530138static ssize_t open_timeout_store(struct device *dev,
139 struct device_attribute *attr,
140 const char *buf, size_t n)
141{
142 unsigned int num_dev;
143 unsigned long wait;
144 if (dev == NULL) {
145 SMD_TTY_INFO("%s: Invalid Device passed", __func__);
146 return -EINVAL;
147 }
148 for (num_dev = 0; num_dev < MAX_SMD_TTYS; num_dev++) {
149 if (dev == smd_tty[num_dev].device_ptr)
150 break;
151 }
152 if (num_dev >= MAX_SMD_TTYS) {
153 SMD_TTY_ERR("[%s]: Device Not found", __func__);
154 return -EINVAL;
155 }
156 if (!kstrtoul(buf, 10, &wait)) {
157 smd_tty[num_dev].open_wait = wait;
158 return n;
159 } else {
160 SMD_TTY_INFO("[%s]: Unable to convert %s to an int",
161 __func__, buf);
162 return -EINVAL;
163 }
164}
165
166static ssize_t open_timeout_show(struct device *dev,
167 struct device_attribute *attr, char *buf)
168{
169 unsigned int num_dev;
170
171 if (dev == NULL) {
172 SMD_TTY_INFO("%s: Invalid Device passed", __func__);
173 return -EINVAL;
174 }
175 for (num_dev = 0; num_dev < MAX_SMD_TTYS; num_dev++) {
176 if (dev == smd_tty[num_dev].device_ptr)
177 break;
178 }
179 if (num_dev >= MAX_SMD_TTYS)
180 SMD_TTY_ERR("[%s]: Device Not Found", __func__);
181
182 return snprintf(buf, PAGE_SIZE, "%d\n",
183 smd_tty[num_dev].open_wait);
184}
185
186static DEVICE_ATTR
187 (open_timeout, 0664, open_timeout_show, open_timeout_store);
188
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700189static void smd_tty_read(unsigned long param)
190{
191 unsigned char *ptr;
192 int avail;
193 struct smd_tty_info *info = (struct smd_tty_info *)param;
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700194 struct tty_struct *tty = tty_port_tty_get(&info->port);
Karthikeyan Ramasubramanianc41fcf52013-01-29 17:45:15 -0700195 unsigned long flags;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700196
197 if (!tty)
198 return;
199
200 for (;;) {
201 if (is_in_reset(info)) {
202 /* signal TTY clients using TTY_BREAK */
203 tty_insert_flip_char(tty, 0x00, TTY_BREAK);
204 tty_flip_buffer_push(tty);
205 break;
206 }
207
208 if (test_bit(TTY_THROTTLED, &tty->flags)) break;
Karthikeyan Ramasubramanianc41fcf52013-01-29 17:45:15 -0700209 spin_lock_irqsave(&info->ra_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700210 avail = smd_read_avail(info->ch);
Karthikeyan Ramasubramanianc41fcf52013-01-29 17:45:15 -0700211 if (avail == 0) {
212 wake_unlock(&info->ra_wake_lock);
213 spin_unlock_irqrestore(&info->ra_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700214 break;
Karthikeyan Ramasubramanianc41fcf52013-01-29 17:45:15 -0700215 }
216 spin_unlock_irqrestore(&info->ra_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700217
218 if (avail > MAX_TTY_BUF_SIZE)
219 avail = MAX_TTY_BUF_SIZE;
220
221 avail = tty_prepare_flip_string(tty, &ptr, avail);
222 if (avail <= 0) {
Stephen Boyd49a1e882012-07-02 17:28:13 -0700223 mod_timer(&info->buf_req_timer,
224 jiffies + msecs_to_jiffies(30));
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700225 tty_kref_put(tty);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700226 return;
227 }
228
229 if (smd_read(info->ch, ptr, avail) != avail) {
230 /* shouldn't be possible since we're in interrupt
231 ** context here and nobody else could 'steal' our
232 ** characters.
233 */
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530234 SMD_TTY_ERR(
235 "%s - Possible smd_tty_buffer mismatch for %s",
236 __func__, info->ch->name);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700237 }
238
239 wake_lock_timeout(&info->wake_lock, HZ / 2);
240 tty_flip_buffer_push(tty);
241 }
242
243 /* XXX only when writable and necessary */
244 tty_wakeup(tty);
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700245 tty_kref_put(tty);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700246}
247
248static void smd_tty_notify(void *priv, unsigned event)
249{
250 struct smd_tty_info *info = priv;
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700251 struct tty_struct *tty;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700252 unsigned long flags;
253
254 switch (event) {
255 case SMD_EVENT_DATA:
Karthikeyan Ramasubramanianf8ad4132011-11-22 09:11:18 -0700256 spin_lock_irqsave(&info->reset_lock, flags);
257 if (!info->is_open) {
258 spin_unlock_irqrestore(&info->reset_lock, flags);
259 break;
260 }
261 spin_unlock_irqrestore(&info->reset_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700262 /* There may be clients (tty framework) that are blocked
263 * waiting for space to write data, so if a possible read
264 * interrupt came in wake anyone waiting and disable the
265 * interrupts
266 */
267 if (smd_write_avail(info->ch)) {
268 smd_disable_read_intr(info->ch);
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700269 tty = tty_port_tty_get(&info->port);
270 if (tty)
271 wake_up_interruptible(&tty->write_wait);
272 tty_kref_put(tty);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700273 }
Karthikeyan Ramasubramanianc41fcf52013-01-29 17:45:15 -0700274 spin_lock_irqsave(&info->ra_lock, flags);
275 if (smd_read_avail(info->ch)) {
276 wake_lock(&info->ra_wake_lock);
277 tasklet_hi_schedule(&info->tty_tsklt);
278 }
279 spin_unlock_irqrestore(&info->ra_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700280 break;
281
282 case SMD_EVENT_OPEN:
283 spin_lock_irqsave(&info->reset_lock, flags);
284 info->in_reset = 0;
285 info->in_reset_updated = 1;
Karthikeyan Ramasubramaniand5e63af2011-07-29 11:30:59 -0600286 info->is_open = 1;
287 wake_up_interruptible(&info->ch_opened_wait_queue);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700288 spin_unlock_irqrestore(&info->reset_lock, flags);
289 break;
290
291 case SMD_EVENT_CLOSE:
292 spin_lock_irqsave(&info->reset_lock, flags);
293 info->in_reset = 1;
294 info->in_reset_updated = 1;
Karthikeyan Ramasubramaniand5e63af2011-07-29 11:30:59 -0600295 info->is_open = 0;
296 wake_up_interruptible(&info->ch_opened_wait_queue);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700297 spin_unlock_irqrestore(&info->reset_lock, flags);
298 /* schedule task to send TTY_BREAK */
299 tasklet_hi_schedule(&info->tty_tsklt);
300
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700301 tty = tty_port_tty_get(&info->port);
302 if (tty->index == LOOPBACK_IDX)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700303 schedule_delayed_work(&loopback_work,
304 msecs_to_jiffies(1000));
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700305 tty_kref_put(tty);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700306 break;
307 }
308}
309
310static uint32_t is_modem_smsm_inited(void)
311{
312 uint32_t modem_state;
313 uint32_t ready_state = (SMSM_INIT | SMSM_SMDINIT);
314
315 modem_state = smsm_get_state(SMSM_MODEM_STATE);
316 return (modem_state & ready_state) == ready_state;
317}
318
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700319static int smd_tty_port_activate(struct tty_port *tport,
320 struct tty_struct *tty)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700321{
322 int res = 0;
Eric Holmberg513ad582011-12-14 16:27:13 -0700323 unsigned int n = tty->index;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700324 struct smd_tty_info *info;
Eric Holmberga53cf232012-02-28 13:41:44 -0700325 const char *peripheral = NULL;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700326
327
Eric Holmberg513ad582011-12-14 16:27:13 -0700328 if (n >= MAX_SMD_TTYS || !smd_tty[n].smd)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700329 return -ENODEV;
330
331 info = smd_tty + n;
332
333 mutex_lock(&smd_tty_lock);
334 tty->driver_data = info;
335
336 if (info->open_count++ == 0) {
Eric Holmberga53cf232012-02-28 13:41:44 -0700337 peripheral = smd_edge_to_subsystem(smd_tty[n].smd->edge);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700338 if (peripheral) {
Stephen Boyd77db8bb2012-06-27 15:15:16 -0700339 info->pil = subsystem_get(peripheral);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700340 if (IS_ERR(info->pil)) {
Zaheerulla Meer2977e7b2013-03-22 19:15:52 +0530341 SMD_TTY_INFO(
342 "%s failed on smd_tty device :%s subsystem_get failed for %s",
343 __func__, smd_tty[n].smd->port_name,
344 peripheral);
345 /*
346 * Sleep, inorder to reduce the frequency of
347 * retry by user-space modules and to avoid
348 * possible watchdog bite.
349 */
350 msleep((smd_tty[n].open_wait * 1000));
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700351 res = PTR_ERR(info->pil);
352 goto out;
353 }
354
355 /* Wait for the modem SMSM to be inited for the SMD
356 * Loopback channel to be allocated at the modem. Since
357 * the wait need to be done atmost once, using msleep
358 * doesn't degrade the performance.
359 */
Eric Holmberg513ad582011-12-14 16:27:13 -0700360 if (n == LOOPBACK_IDX) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700361 if (!is_modem_smsm_inited())
362 msleep(5000);
363 smsm_change_state(SMSM_APPS_STATE,
364 0, SMSM_SMD_LOOPBACK);
365 msleep(100);
366 }
367
368
369 /*
370 * Wait for a channel to be allocated so we know
371 * the modem is ready enough.
372 */
Zaheerulla Meeraf16e492013-03-13 20:03:20 +0530373 if (smd_tty[n].open_wait) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700374 res = wait_for_completion_interruptible_timeout(
375 &info->ch_allocated,
Zaheerulla Meeraf16e492013-03-13 20:03:20 +0530376 msecs_to_jiffies(smd_tty[n].open_wait *
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700377 1000));
378
379 if (res == 0) {
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530380 SMD_TTY_INFO(
381 "Timed out waiting for SMD channel %s",
382 smd_tty[n].smd->port_name);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700383 res = -ETIMEDOUT;
384 goto release_pil;
385 } else if (res < 0) {
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530386 SMD_TTY_INFO(
387 "Error waiting for SMD channel %s : %d\n",
388 smd_tty[n].smd->port_name, res);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700389 goto release_pil;
390 }
391
392 res = 0;
393 }
394 }
395
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700396 tasklet_init(&info->tty_tsklt, smd_tty_read,
397 (unsigned long)info);
398 wake_lock_init(&info->wake_lock, WAKE_LOCK_SUSPEND,
Eric Holmberg513ad582011-12-14 16:27:13 -0700399 smd_tty[n].smd->port_name);
Karthikeyan Ramasubramanianc41fcf52013-01-29 17:45:15 -0700400 scnprintf(info->ra_wake_lock_name,
401 MAX_RA_WAKE_LOCK_NAME_LEN,
402 "SMD_TTY_%s_RA", smd_tty[n].smd->port_name);
403 wake_lock_init(&info->ra_wake_lock, WAKE_LOCK_SUSPEND,
404 info->ra_wake_lock_name);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700405 if (!info->ch) {
Eric Holmberg513ad582011-12-14 16:27:13 -0700406 res = smd_named_open_on_edge(smd_tty[n].smd->port_name,
407 smd_tty[n].smd->edge,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700408 &info->ch, info,
409 smd_tty_notify);
Karthikeyan Ramasubramaniand5e63af2011-07-29 11:30:59 -0600410 if (res < 0) {
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530411 SMD_TTY_INFO(
412 "%s: %s open failed %d\n",
413 __func__, smd_tty[n].smd->port_name,
414 res);
Karthikeyan Ramasubramaniand5e63af2011-07-29 11:30:59 -0600415 goto release_pil;
416 }
417
418 res = wait_event_interruptible_timeout(
419 info->ch_opened_wait_queue,
420 info->is_open, (2 * HZ));
421 if (res == 0)
422 res = -ETIMEDOUT;
423 if (res < 0) {
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530424 SMD_TTY_INFO(
425 "%s: wait for %s smd_open failed %d\n",
Eric Holmberg513ad582011-12-14 16:27:13 -0700426 __func__, smd_tty[n].smd->port_name,
427 res);
Karthikeyan Ramasubramaniand5e63af2011-07-29 11:30:59 -0600428 goto release_pil;
429 }
430 res = 0;
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530431 SMD_TTY_INFO("%s with PID %u opened port %s",
432 current->comm, current->pid,
433 smd_tty[n].smd->port_name);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700434 }
435 }
436
437release_pil:
438 if (res < 0)
Stephen Boyd77db8bb2012-06-27 15:15:16 -0700439 subsystem_put(info->pil);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700440 else
441 smd_disable_read_intr(info->ch);
442out:
443 mutex_unlock(&smd_tty_lock);
444
445 return res;
446}
447
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700448static void smd_tty_port_shutdown(struct tty_port *tport)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700449{
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700450 struct smd_tty_info *info;
451 struct tty_struct *tty = tty_port_tty_get(tport);
Karthikeyan Ramasubramaniand563de52011-11-22 08:38:17 -0700452 unsigned long flags;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700453
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700454 info = tty->driver_data;
455 if (info == 0) {
456 tty_kref_put(tty);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700457 return;
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700458 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700459
460 mutex_lock(&smd_tty_lock);
461 if (--info->open_count == 0) {
Karthikeyan Ramasubramaniand563de52011-11-22 08:38:17 -0700462 spin_lock_irqsave(&info->reset_lock, flags);
463 info->is_open = 0;
464 spin_unlock_irqrestore(&info->reset_lock, flags);
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700465 if (tty) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700466 tasklet_kill(&info->tty_tsklt);
467 wake_lock_destroy(&info->wake_lock);
Jeff Hugo7f40a9c2013-02-15 15:34:39 -0700468 wake_lock_destroy(&info->ra_wake_lock);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700469 }
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530470 SMD_TTY_INFO("%s with PID %u closed port %s",
471 current->comm, current->pid,
472 info->smd->port_name);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700473 tty->driver_data = 0;
474 del_timer(&info->buf_req_timer);
475 if (info->ch) {
476 smd_close(info->ch);
477 info->ch = 0;
Stephen Boyd77db8bb2012-06-27 15:15:16 -0700478 subsystem_put(info->pil);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700479 }
480 }
481 mutex_unlock(&smd_tty_lock);
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700482 tty_kref_put(tty);
483}
484
485static int smd_tty_open(struct tty_struct *tty, struct file *f)
486{
487 struct smd_tty_info *info = smd_tty + tty->index;
488
489 return tty_port_open(&info->port, tty, f);
490}
491
492static void smd_tty_close(struct tty_struct *tty, struct file *f)
493{
494 struct smd_tty_info *info = tty->driver_data;
495
496 tty_port_close(&info->port, tty, f);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700497}
498
499static int smd_tty_write(struct tty_struct *tty, const unsigned char *buf, int len)
500{
501 struct smd_tty_info *info = tty->driver_data;
502 int avail;
503
504 /* if we're writing to a packet channel we will
505 ** never be able to write more data than there
506 ** is currently space for
507 */
508 if (is_in_reset(info))
509 return -ENETRESET;
510
511 avail = smd_write_avail(info->ch);
512 /* if no space, we'll have to setup a notification later to wake up the
513 * tty framework when space becomes avaliable
514 */
515 if (!avail) {
516 smd_enable_read_intr(info->ch);
517 return 0;
518 }
519 if (len > avail)
520 len = avail;
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530521 SMD_TTY_INFO("[WRITE]: PID %u -> port %s %x bytes",
522 current->pid, info->smd->port_name, len);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700523
524 return smd_write(info->ch, buf, len);
525}
526
527static int smd_tty_write_room(struct tty_struct *tty)
528{
529 struct smd_tty_info *info = tty->driver_data;
530 return smd_write_avail(info->ch);
531}
532
533static int smd_tty_chars_in_buffer(struct tty_struct *tty)
534{
535 struct smd_tty_info *info = tty->driver_data;
536 return smd_read_avail(info->ch);
537}
538
539static void smd_tty_unthrottle(struct tty_struct *tty)
540{
541 struct smd_tty_info *info = tty->driver_data;
Karthikeyan Ramasubramanianf8ad4132011-11-22 09:11:18 -0700542 unsigned long flags;
543
544 spin_lock_irqsave(&info->reset_lock, flags);
545 if (info->is_open) {
546 spin_unlock_irqrestore(&info->reset_lock, flags);
547 tasklet_hi_schedule(&info->tty_tsklt);
548 return;
549 }
550 spin_unlock_irqrestore(&info->reset_lock, flags);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700551}
552
553/*
554 * Returns the current TIOCM status bits including:
555 * SMD Signals (DTR/DSR, CTS/RTS, CD, RI)
556 * TIOCM_OUT1 - reset state (1=in reset)
557 * TIOCM_OUT2 - reset state updated (1=updated)
558 */
559static int smd_tty_tiocmget(struct tty_struct *tty)
560{
561 struct smd_tty_info *info = tty->driver_data;
562 unsigned long flags;
563 int tiocm;
564
565 tiocm = smd_tiocmget(info->ch);
566
567 spin_lock_irqsave(&info->reset_lock, flags);
568 tiocm |= (info->in_reset ? TIOCM_OUT1 : 0);
569 if (info->in_reset_updated) {
570 tiocm |= TIOCM_OUT2;
571 info->in_reset_updated = 0;
572 }
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530573 SMD_TTY_INFO("PID %u --> %s TIOCM is %x ",
574 current->pid, __func__, tiocm);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700575 spin_unlock_irqrestore(&info->reset_lock, flags);
576
577 return tiocm;
578}
579
580static int smd_tty_tiocmset(struct tty_struct *tty,
581 unsigned int set, unsigned int clear)
582{
583 struct smd_tty_info *info = tty->driver_data;
584
585 if (info->in_reset)
586 return -ENETRESET;
587
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530588 SMD_TTY_INFO("PID %u --> %s Set: %x Clear: %x",
589 current->pid, __func__, set, clear);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700590 return smd_tiocmset(info->ch, set, clear);
591}
592
593static void loopback_probe_worker(struct work_struct *work)
594{
595 /* wait for modem to restart before requesting loopback server */
596 if (!is_modem_smsm_inited())
597 schedule_delayed_work(&loopback_work, msecs_to_jiffies(1000));
598 else
599 smsm_change_state(SMSM_APPS_STATE,
600 0, SMSM_SMD_LOOPBACK);
601}
602
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700603static const struct tty_port_operations smd_tty_port_ops = {
604 .shutdown = smd_tty_port_shutdown,
605 .activate = smd_tty_port_activate,
606};
607
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700608static struct tty_operations smd_tty_ops = {
609 .open = smd_tty_open,
610 .close = smd_tty_close,
611 .write = smd_tty_write,
612 .write_room = smd_tty_write_room,
613 .chars_in_buffer = smd_tty_chars_in_buffer,
614 .unthrottle = smd_tty_unthrottle,
615 .tiocmget = smd_tty_tiocmget,
616 .tiocmset = smd_tty_tiocmset,
617};
618
619static int smd_tty_dummy_probe(struct platform_device *pdev)
620{
Eric Holmberg513ad582011-12-14 16:27:13 -0700621 int n;
622 int idx;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700623
Eric Holmberg513ad582011-12-14 16:27:13 -0700624 for (n = 0; n < ARRAY_SIZE(smd_configs); ++n) {
625 idx = smd_configs[n].tty_dev_index;
626
627 if (!smd_configs[n].dev_name)
628 continue;
629
Eric Holmbergdaf36d12012-02-08 17:05:21 -0700630 if (pdev->id == smd_configs[n].edge &&
631 !strncmp(pdev->name, smd_configs[n].dev_name,
Eric Holmberg513ad582011-12-14 16:27:13 -0700632 SMD_MAX_CH_NAME_LEN)) {
633 complete_all(&smd_tty[idx].ch_allocated);
634 return 0;
635 }
636 }
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530637 SMD_TTY_ERR("[ERR]%s: unknown device '%s'\n", __func__, pdev->name);
Eric Holmberg513ad582011-12-14 16:27:13 -0700638
639 return -ENODEV;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700640}
641
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530642/**
643 * smd_tty_log_init()- Init function for IPC logging
644 *
645 * Initialize the buffer that is used to provide the log information
646 * pertaining to the smd_tty module.
647 */
648static void smd_tty_log_init(void)
649{
650 smd_tty_log_ctx = ipc_log_context_create(SMD_TTY_LOG_PAGES,
651 "smd_tty");
652 if (!smd_tty_log_ctx)
653 pr_err("%s: Unable to create IPC log", __func__);
654}
655
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700656static struct tty_driver *smd_tty_driver;
657
658static int __init smd_tty_init(void)
659{
660 int ret;
Eric Holmberg513ad582011-12-14 16:27:13 -0700661 int n;
662 int idx;
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700663 struct tty_port *port;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700664
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530665 smd_tty_log_init();
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700666 smd_tty_driver = alloc_tty_driver(MAX_SMD_TTYS);
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530667 if (smd_tty_driver == 0) {
668 SMD_TTY_ERR("%s - Driver allocation failed", __func__);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700669 return -ENOMEM;
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530670 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700671
672 smd_tty_driver->owner = THIS_MODULE;
673 smd_tty_driver->driver_name = "smd_tty_driver";
674 smd_tty_driver->name = "smd";
675 smd_tty_driver->major = 0;
676 smd_tty_driver->minor_start = 0;
677 smd_tty_driver->type = TTY_DRIVER_TYPE_SERIAL;
678 smd_tty_driver->subtype = SERIAL_TYPE_NORMAL;
679 smd_tty_driver->init_termios = tty_std_termios;
680 smd_tty_driver->init_termios.c_iflag = 0;
681 smd_tty_driver->init_termios.c_oflag = 0;
682 smd_tty_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
683 smd_tty_driver->init_termios.c_lflag = 0;
684 smd_tty_driver->flags = TTY_DRIVER_RESET_TERMIOS |
685 TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
686 tty_set_operations(smd_tty_driver, &smd_tty_ops);
687
688 ret = tty_register_driver(smd_tty_driver);
Eric Holmberg513ad582011-12-14 16:27:13 -0700689 if (ret) {
690 put_tty_driver(smd_tty_driver);
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530691 SMD_TTY_ERR("%s: driver registration failed %d", __func__, ret);
Eric Holmberg513ad582011-12-14 16:27:13 -0700692 return ret;
Jeff Hugo4c0ba6c2011-07-15 11:47:13 -0600693 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700694
Eric Holmberg513ad582011-12-14 16:27:13 -0700695 for (n = 0; n < ARRAY_SIZE(smd_configs); ++n) {
696 idx = smd_configs[n].tty_dev_index;
697
698 if (smd_configs[n].dev_name == NULL)
699 smd_configs[n].dev_name = smd_configs[n].port_name;
700
701 if (idx == DS_IDX) {
702 /*
703 * DS port uses the kernel API starting with
704 * 8660 Fusion. Only register the userspace
705 * platform device for older targets.
706 */
707 int legacy_ds = 0;
708
709 legacy_ds |= cpu_is_msm7x01() || cpu_is_msm7x25();
710 legacy_ds |= cpu_is_msm7x27() || cpu_is_msm7x30();
711 legacy_ds |= cpu_is_qsd8x50() || cpu_is_msm8x55();
Angshuman Sarkar4b931ed2012-01-05 13:38:36 +0530712 /*
713 * use legacy mode for 8660 Standalone (subtype 0)
714 */
Eric Holmberg513ad582011-12-14 16:27:13 -0700715 legacy_ds |= cpu_is_msm8x60() &&
Angshuman Sarkar4b931ed2012-01-05 13:38:36 +0530716 (socinfo_get_platform_subtype() == 0x0);
Eric Holmberg513ad582011-12-14 16:27:13 -0700717
718 if (!legacy_ds)
719 continue;
720 }
721
Karthikeyan Ramasubramanianfc37fea2013-02-14 12:32:49 -0700722 port = &smd_tty[idx].port;
723 tty_port_init(port);
724 port->ops = &smd_tty_port_ops;
725 /* TODO: For kernel >= 3.7 use tty_port_register_device */
Zaheerulla Meeraf16e492013-03-13 20:03:20 +0530726 smd_tty[idx].device_ptr =
727 tty_register_device(smd_tty_driver, idx, 0);
728 if (device_create_file(smd_tty[idx].device_ptr,
729 &dev_attr_open_timeout))
730 SMD_TTY_ERR(
731 "%s: Unable to create device attributes for %s",
732 __func__, smd_configs[n].port_name);
733
Eric Holmberg513ad582011-12-14 16:27:13 -0700734 init_completion(&smd_tty[idx].ch_allocated);
735
736 /* register platform device */
737 smd_tty[idx].driver.probe = smd_tty_dummy_probe;
738 smd_tty[idx].driver.driver.name = smd_configs[n].dev_name;
739 smd_tty[idx].driver.driver.owner = THIS_MODULE;
740 spin_lock_init(&smd_tty[idx].reset_lock);
Karthikeyan Ramasubramanianc41fcf52013-01-29 17:45:15 -0700741 spin_lock_init(&smd_tty[idx].ra_lock);
Eric Holmberg513ad582011-12-14 16:27:13 -0700742 smd_tty[idx].is_open = 0;
Stephen Boyd49a1e882012-07-02 17:28:13 -0700743 setup_timer(&smd_tty[idx].buf_req_timer, buf_req_retry,
744 (unsigned long)&smd_tty[idx]);
Eric Holmberg513ad582011-12-14 16:27:13 -0700745 init_waitqueue_head(&smd_tty[idx].ch_opened_wait_queue);
746 ret = platform_driver_register(&smd_tty[idx].driver);
747
748 if (ret) {
Zaheerulla Meer8c840972013-03-08 18:21:05 +0530749 SMD_TTY_ERR(
750 "%s: init failed %d (%d)", __func__, idx, ret);
Eric Holmberg513ad582011-12-14 16:27:13 -0700751 smd_tty[idx].driver.probe = NULL;
752 goto out;
753 }
754 smd_tty[idx].smd = &smd_configs[n];
755 }
756 INIT_DELAYED_WORK(&loopback_work, loopback_probe_worker);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700757 return 0;
758
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700759out:
Eric Holmberg513ad582011-12-14 16:27:13 -0700760 /* unregister platform devices */
761 for (n = 0; n < ARRAY_SIZE(smd_configs); ++n) {
762 idx = smd_configs[n].tty_dev_index;
763
764 if (smd_tty[idx].driver.probe) {
765 platform_driver_unregister(&smd_tty[idx].driver);
766 tty_unregister_device(smd_tty_driver, idx);
767 }
768 }
769
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700770 tty_unregister_driver(smd_tty_driver);
771 put_tty_driver(smd_tty_driver);
772 return ret;
773}
774
775module_init(smd_tty_init);