Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1 | /* arch/arm/mach-msm/smd_tty.c |
| 2 | * |
| 3 | * Copyright (C) 2007 Google, Inc. |
Karthikeyan Ramasubramanian | c41fcf5 | 2013-01-29 17:45:15 -0700 | [diff] [blame] | 4 | * Copyright (c) 2009-2013, The Linux Foundation. All rights reserved. |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 5 | * 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 Boyd | 77db8bb | 2012-06-27 15:15:16 -0700 | [diff] [blame] | 33 | #include <mach/subsystem_restart.h> |
Jeff Hugo | 4c0ba6c | 2011-07-15 11:47:13 -0600 | [diff] [blame] | 34 | #include <mach/socinfo.h> |
Zaheerulla Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 35 | #include <mach/msm_ipc_logging.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 36 | |
| 37 | #include "smd_private.h" |
| 38 | |
| 39 | #define MAX_SMD_TTYS 37 |
| 40 | #define MAX_TTY_BUF_SIZE 2048 |
Karthikeyan Ramasubramanian | c41fcf5 | 2013-01-29 17:45:15 -0700 | [diff] [blame] | 41 | #define MAX_RA_WAKE_LOCK_NAME_LEN 32 |
Zaheerulla Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 42 | #define SMD_TTY_LOG_PAGES 2 |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 43 | |
Zaheerulla Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 44 | #define SMD_TTY_INFO(buf...) \ |
| 45 | do { \ |
| 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...) \ |
| 52 | do { \ |
| 53 | if (smd_tty_log_ctx) \ |
| 54 | ipc_log_string(smd_tty_log_ctx, buf); \ |
| 55 | pr_err(buf); \ |
| 56 | } while (0) |
| 57 | |
| 58 | static void *smd_tty_log_ctx; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 59 | static DEFINE_MUTEX(smd_tty_lock); |
| 60 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 61 | struct smd_tty_info { |
| 62 | smd_channel_t *ch; |
Karthikeyan Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 63 | struct tty_port port; |
Zaheerulla Meer | af16e49 | 2013-03-13 20:03:20 +0530 | [diff] [blame] | 64 | struct device *device_ptr; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 65 | 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 Ramasubramanian | d5e63af | 2011-07-29 11:30:59 -0600 | [diff] [blame] | 74 | int is_open; |
Zaheerulla Meer | af16e49 | 2013-03-13 20:03:20 +0530 | [diff] [blame] | 75 | unsigned int open_wait; |
Karthikeyan Ramasubramanian | d5e63af | 2011-07-29 11:30:59 -0600 | [diff] [blame] | 76 | wait_queue_head_t ch_opened_wait_queue; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 77 | spinlock_t reset_lock; |
Karthikeyan Ramasubramanian | c41fcf5 | 2013-01-29 17:45:15 -0700 | [diff] [blame] | 78 | 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 Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 81 | struct smd_config *smd; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 82 | }; |
| 83 | |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 84 | /** |
| 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 | */ |
| 92 | struct smd_config { |
| 93 | uint32_t tty_dev_index; |
| 94 | const char *port_name; |
| 95 | const char *dev_name; |
| 96 | uint32_t edge; |
| 97 | }; |
| 98 | |
| 99 | static 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 Hugo | dfb9c9a | 2012-04-10 14:22:47 -0600 | [diff] [blame] | 105 | {5, "APPS_RIVA_ANT_CMD", NULL, SMD_APPS_WCNSS}, |
| 106 | {6, "APPS_RIVA_ANT_DATA", NULL, SMD_APPS_WCNSS}, |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 107 | {7, "DATA1", NULL, SMD_APPS_MODEM}, |
Eric Holmberg | be1dc5f | 2011-12-14 21:35:12 -0700 | [diff] [blame] | 108 | {11, "DATA11", NULL, SMD_APPS_MODEM}, |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 109 | {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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 114 | #define LOOPBACK_IDX 36 |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 115 | |
| 116 | static struct delayed_work loopback_work; |
| 117 | static struct smd_tty_info smd_tty[MAX_SMD_TTYS]; |
| 118 | |
| 119 | static int is_in_reset(struct smd_tty_info *info) |
| 120 | { |
| 121 | return info->in_reset; |
| 122 | } |
| 123 | |
| 124 | static void buf_req_retry(unsigned long param) |
| 125 | { |
| 126 | struct smd_tty_info *info = (struct smd_tty_info *)param; |
Karthikeyan Ramasubramanian | f8ad413 | 2011-11-22 09:11:18 -0700 | [diff] [blame] | 127 | 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 136 | } |
| 137 | |
Zaheerulla Meer | af16e49 | 2013-03-13 20:03:20 +0530 | [diff] [blame] | 138 | static 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 | |
| 166 | static 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 | |
| 186 | static DEVICE_ATTR |
| 187 | (open_timeout, 0664, open_timeout_show, open_timeout_store); |
| 188 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 189 | static 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 Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 194 | struct tty_struct *tty = tty_port_tty_get(&info->port); |
Karthikeyan Ramasubramanian | c41fcf5 | 2013-01-29 17:45:15 -0700 | [diff] [blame] | 195 | unsigned long flags; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 196 | |
| 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 Ramasubramanian | c41fcf5 | 2013-01-29 17:45:15 -0700 | [diff] [blame] | 209 | spin_lock_irqsave(&info->ra_lock, flags); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 210 | avail = smd_read_avail(info->ch); |
Karthikeyan Ramasubramanian | c41fcf5 | 2013-01-29 17:45:15 -0700 | [diff] [blame] | 211 | if (avail == 0) { |
| 212 | wake_unlock(&info->ra_wake_lock); |
| 213 | spin_unlock_irqrestore(&info->ra_lock, flags); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 214 | break; |
Karthikeyan Ramasubramanian | c41fcf5 | 2013-01-29 17:45:15 -0700 | [diff] [blame] | 215 | } |
| 216 | spin_unlock_irqrestore(&info->ra_lock, flags); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 217 | |
| 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 Boyd | 49a1e88 | 2012-07-02 17:28:13 -0700 | [diff] [blame] | 223 | mod_timer(&info->buf_req_timer, |
| 224 | jiffies + msecs_to_jiffies(30)); |
Karthikeyan Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 225 | tty_kref_put(tty); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 226 | 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 Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 234 | SMD_TTY_ERR( |
| 235 | "%s - Possible smd_tty_buffer mismatch for %s", |
| 236 | __func__, info->ch->name); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 237 | } |
| 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 Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 245 | tty_kref_put(tty); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | static void smd_tty_notify(void *priv, unsigned event) |
| 249 | { |
| 250 | struct smd_tty_info *info = priv; |
Karthikeyan Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 251 | struct tty_struct *tty; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 252 | unsigned long flags; |
| 253 | |
| 254 | switch (event) { |
| 255 | case SMD_EVENT_DATA: |
Karthikeyan Ramasubramanian | f8ad413 | 2011-11-22 09:11:18 -0700 | [diff] [blame] | 256 | 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 262 | /* 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 Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 269 | tty = tty_port_tty_get(&info->port); |
| 270 | if (tty) |
| 271 | wake_up_interruptible(&tty->write_wait); |
| 272 | tty_kref_put(tty); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 273 | } |
Karthikeyan Ramasubramanian | c41fcf5 | 2013-01-29 17:45:15 -0700 | [diff] [blame] | 274 | 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 280 | 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 Ramasubramanian | d5e63af | 2011-07-29 11:30:59 -0600 | [diff] [blame] | 286 | info->is_open = 1; |
| 287 | wake_up_interruptible(&info->ch_opened_wait_queue); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 288 | 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 Ramasubramanian | d5e63af | 2011-07-29 11:30:59 -0600 | [diff] [blame] | 295 | info->is_open = 0; |
| 296 | wake_up_interruptible(&info->ch_opened_wait_queue); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 297 | spin_unlock_irqrestore(&info->reset_lock, flags); |
| 298 | /* schedule task to send TTY_BREAK */ |
| 299 | tasklet_hi_schedule(&info->tty_tsklt); |
| 300 | |
Karthikeyan Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 301 | tty = tty_port_tty_get(&info->port); |
| 302 | if (tty->index == LOOPBACK_IDX) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 303 | schedule_delayed_work(&loopback_work, |
| 304 | msecs_to_jiffies(1000)); |
Karthikeyan Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 305 | tty_kref_put(tty); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 306 | break; |
| 307 | } |
| 308 | } |
| 309 | |
| 310 | static 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 Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 319 | static int smd_tty_port_activate(struct tty_port *tport, |
| 320 | struct tty_struct *tty) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 321 | { |
| 322 | int res = 0; |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 323 | unsigned int n = tty->index; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 324 | struct smd_tty_info *info; |
Eric Holmberg | a53cf23 | 2012-02-28 13:41:44 -0700 | [diff] [blame] | 325 | const char *peripheral = NULL; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 326 | |
| 327 | |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 328 | if (n >= MAX_SMD_TTYS || !smd_tty[n].smd) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 329 | 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 Holmberg | a53cf23 | 2012-02-28 13:41:44 -0700 | [diff] [blame] | 337 | peripheral = smd_edge_to_subsystem(smd_tty[n].smd->edge); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 338 | if (peripheral) { |
Stephen Boyd | 77db8bb | 2012-06-27 15:15:16 -0700 | [diff] [blame] | 339 | info->pil = subsystem_get(peripheral); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 340 | if (IS_ERR(info->pil)) { |
Zaheerulla Meer | 2977e7b | 2013-03-22 19:15:52 +0530 | [diff] [blame] | 341 | 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 351 | 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 Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 360 | if (n == LOOPBACK_IDX) { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 361 | 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 Meer | af16e49 | 2013-03-13 20:03:20 +0530 | [diff] [blame] | 373 | if (smd_tty[n].open_wait) { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 374 | res = wait_for_completion_interruptible_timeout( |
| 375 | &info->ch_allocated, |
Zaheerulla Meer | af16e49 | 2013-03-13 20:03:20 +0530 | [diff] [blame] | 376 | msecs_to_jiffies(smd_tty[n].open_wait * |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 377 | 1000)); |
| 378 | |
| 379 | if (res == 0) { |
Zaheerulla Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 380 | SMD_TTY_INFO( |
| 381 | "Timed out waiting for SMD channel %s", |
| 382 | smd_tty[n].smd->port_name); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 383 | res = -ETIMEDOUT; |
| 384 | goto release_pil; |
| 385 | } else if (res < 0) { |
Zaheerulla Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 386 | SMD_TTY_INFO( |
| 387 | "Error waiting for SMD channel %s : %d\n", |
| 388 | smd_tty[n].smd->port_name, res); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 389 | goto release_pil; |
| 390 | } |
| 391 | |
| 392 | res = 0; |
| 393 | } |
| 394 | } |
| 395 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 396 | tasklet_init(&info->tty_tsklt, smd_tty_read, |
| 397 | (unsigned long)info); |
| 398 | wake_lock_init(&info->wake_lock, WAKE_LOCK_SUSPEND, |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 399 | smd_tty[n].smd->port_name); |
Karthikeyan Ramasubramanian | c41fcf5 | 2013-01-29 17:45:15 -0700 | [diff] [blame] | 400 | 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 405 | if (!info->ch) { |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 406 | res = smd_named_open_on_edge(smd_tty[n].smd->port_name, |
| 407 | smd_tty[n].smd->edge, |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 408 | &info->ch, info, |
| 409 | smd_tty_notify); |
Karthikeyan Ramasubramanian | d5e63af | 2011-07-29 11:30:59 -0600 | [diff] [blame] | 410 | if (res < 0) { |
Zaheerulla Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 411 | SMD_TTY_INFO( |
| 412 | "%s: %s open failed %d\n", |
| 413 | __func__, smd_tty[n].smd->port_name, |
| 414 | res); |
Karthikeyan Ramasubramanian | d5e63af | 2011-07-29 11:30:59 -0600 | [diff] [blame] | 415 | 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 Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 424 | SMD_TTY_INFO( |
| 425 | "%s: wait for %s smd_open failed %d\n", |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 426 | __func__, smd_tty[n].smd->port_name, |
| 427 | res); |
Karthikeyan Ramasubramanian | d5e63af | 2011-07-29 11:30:59 -0600 | [diff] [blame] | 428 | goto release_pil; |
| 429 | } |
| 430 | res = 0; |
Zaheerulla Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 431 | SMD_TTY_INFO("%s with PID %u opened port %s", |
| 432 | current->comm, current->pid, |
| 433 | smd_tty[n].smd->port_name); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 434 | } |
| 435 | } |
| 436 | |
| 437 | release_pil: |
| 438 | if (res < 0) |
Stephen Boyd | 77db8bb | 2012-06-27 15:15:16 -0700 | [diff] [blame] | 439 | subsystem_put(info->pil); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 440 | else |
| 441 | smd_disable_read_intr(info->ch); |
| 442 | out: |
| 443 | mutex_unlock(&smd_tty_lock); |
| 444 | |
| 445 | return res; |
| 446 | } |
| 447 | |
Karthikeyan Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 448 | static void smd_tty_port_shutdown(struct tty_port *tport) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 449 | { |
Karthikeyan Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 450 | struct smd_tty_info *info; |
| 451 | struct tty_struct *tty = tty_port_tty_get(tport); |
Karthikeyan Ramasubramanian | d563de5 | 2011-11-22 08:38:17 -0700 | [diff] [blame] | 452 | unsigned long flags; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 453 | |
Karthikeyan Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 454 | info = tty->driver_data; |
| 455 | if (info == 0) { |
| 456 | tty_kref_put(tty); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 457 | return; |
Karthikeyan Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 458 | } |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 459 | |
| 460 | mutex_lock(&smd_tty_lock); |
| 461 | if (--info->open_count == 0) { |
Karthikeyan Ramasubramanian | d563de5 | 2011-11-22 08:38:17 -0700 | [diff] [blame] | 462 | spin_lock_irqsave(&info->reset_lock, flags); |
| 463 | info->is_open = 0; |
| 464 | spin_unlock_irqrestore(&info->reset_lock, flags); |
Karthikeyan Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 465 | if (tty) { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 466 | tasklet_kill(&info->tty_tsklt); |
| 467 | wake_lock_destroy(&info->wake_lock); |
Jeff Hugo | 7f40a9c | 2013-02-15 15:34:39 -0700 | [diff] [blame] | 468 | wake_lock_destroy(&info->ra_wake_lock); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 469 | } |
Zaheerulla Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 470 | SMD_TTY_INFO("%s with PID %u closed port %s", |
| 471 | current->comm, current->pid, |
| 472 | info->smd->port_name); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 473 | 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 Boyd | 77db8bb | 2012-06-27 15:15:16 -0700 | [diff] [blame] | 478 | subsystem_put(info->pil); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 479 | } |
| 480 | } |
| 481 | mutex_unlock(&smd_tty_lock); |
Karthikeyan Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 482 | tty_kref_put(tty); |
| 483 | } |
| 484 | |
| 485 | static 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 | |
| 492 | static 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | static 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 Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 521 | SMD_TTY_INFO("[WRITE]: PID %u -> port %s %x bytes", |
| 522 | current->pid, info->smd->port_name, len); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 523 | |
| 524 | return smd_write(info->ch, buf, len); |
| 525 | } |
| 526 | |
| 527 | static 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 | |
| 533 | static 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 | |
| 539 | static void smd_tty_unthrottle(struct tty_struct *tty) |
| 540 | { |
| 541 | struct smd_tty_info *info = tty->driver_data; |
Karthikeyan Ramasubramanian | f8ad413 | 2011-11-22 09:11:18 -0700 | [diff] [blame] | 542 | 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 551 | } |
| 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 | */ |
| 559 | static 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 Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 573 | SMD_TTY_INFO("PID %u --> %s TIOCM is %x ", |
| 574 | current->pid, __func__, tiocm); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 575 | spin_unlock_irqrestore(&info->reset_lock, flags); |
| 576 | |
| 577 | return tiocm; |
| 578 | } |
| 579 | |
| 580 | static 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 Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 588 | SMD_TTY_INFO("PID %u --> %s Set: %x Clear: %x", |
| 589 | current->pid, __func__, set, clear); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 590 | return smd_tiocmset(info->ch, set, clear); |
| 591 | } |
| 592 | |
| 593 | static 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 Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 603 | static const struct tty_port_operations smd_tty_port_ops = { |
| 604 | .shutdown = smd_tty_port_shutdown, |
| 605 | .activate = smd_tty_port_activate, |
| 606 | }; |
| 607 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 608 | static 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 | |
| 619 | static int smd_tty_dummy_probe(struct platform_device *pdev) |
| 620 | { |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 621 | int n; |
| 622 | int idx; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 623 | |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 624 | 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 Holmberg | daf36d1 | 2012-02-08 17:05:21 -0700 | [diff] [blame] | 630 | if (pdev->id == smd_configs[n].edge && |
| 631 | !strncmp(pdev->name, smd_configs[n].dev_name, |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 632 | SMD_MAX_CH_NAME_LEN)) { |
| 633 | complete_all(&smd_tty[idx].ch_allocated); |
| 634 | return 0; |
| 635 | } |
| 636 | } |
Zaheerulla Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 637 | SMD_TTY_ERR("[ERR]%s: unknown device '%s'\n", __func__, pdev->name); |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 638 | |
| 639 | return -ENODEV; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 640 | } |
| 641 | |
Zaheerulla Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 642 | /** |
| 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 | */ |
| 648 | static 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 656 | static struct tty_driver *smd_tty_driver; |
| 657 | |
| 658 | static int __init smd_tty_init(void) |
| 659 | { |
| 660 | int ret; |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 661 | int n; |
| 662 | int idx; |
Karthikeyan Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 663 | struct tty_port *port; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 664 | |
Zaheerulla Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 665 | smd_tty_log_init(); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 666 | smd_tty_driver = alloc_tty_driver(MAX_SMD_TTYS); |
Zaheerulla Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 667 | if (smd_tty_driver == 0) { |
| 668 | SMD_TTY_ERR("%s - Driver allocation failed", __func__); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 669 | return -ENOMEM; |
Zaheerulla Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 670 | } |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 671 | |
| 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 Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 689 | if (ret) { |
| 690 | put_tty_driver(smd_tty_driver); |
Zaheerulla Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 691 | SMD_TTY_ERR("%s: driver registration failed %d", __func__, ret); |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 692 | return ret; |
Jeff Hugo | 4c0ba6c | 2011-07-15 11:47:13 -0600 | [diff] [blame] | 693 | } |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 694 | |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 695 | 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 Sarkar | 4b931ed | 2012-01-05 13:38:36 +0530 | [diff] [blame] | 712 | /* |
| 713 | * use legacy mode for 8660 Standalone (subtype 0) |
| 714 | */ |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 715 | legacy_ds |= cpu_is_msm8x60() && |
Angshuman Sarkar | 4b931ed | 2012-01-05 13:38:36 +0530 | [diff] [blame] | 716 | (socinfo_get_platform_subtype() == 0x0); |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 717 | |
| 718 | if (!legacy_ds) |
| 719 | continue; |
| 720 | } |
| 721 | |
Karthikeyan Ramasubramanian | fc37fea | 2013-02-14 12:32:49 -0700 | [diff] [blame] | 722 | 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 Meer | af16e49 | 2013-03-13 20:03:20 +0530 | [diff] [blame] | 726 | 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 Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 734 | 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 Ramasubramanian | c41fcf5 | 2013-01-29 17:45:15 -0700 | [diff] [blame] | 741 | spin_lock_init(&smd_tty[idx].ra_lock); |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 742 | smd_tty[idx].is_open = 0; |
Stephen Boyd | 49a1e88 | 2012-07-02 17:28:13 -0700 | [diff] [blame] | 743 | setup_timer(&smd_tty[idx].buf_req_timer, buf_req_retry, |
| 744 | (unsigned long)&smd_tty[idx]); |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 745 | init_waitqueue_head(&smd_tty[idx].ch_opened_wait_queue); |
| 746 | ret = platform_driver_register(&smd_tty[idx].driver); |
| 747 | |
| 748 | if (ret) { |
Zaheerulla Meer | 8c84097 | 2013-03-08 18:21:05 +0530 | [diff] [blame] | 749 | SMD_TTY_ERR( |
| 750 | "%s: init failed %d (%d)", __func__, idx, ret); |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 751 | 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 757 | return 0; |
| 758 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 759 | out: |
Eric Holmberg | 513ad58 | 2011-12-14 16:27:13 -0700 | [diff] [blame] | 760 | /* 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 770 | tty_unregister_driver(smd_tty_driver); |
| 771 | put_tty_driver(smd_tty_driver); |
| 772 | return ret; |
| 773 | } |
| 774 | |
| 775 | module_init(smd_tty_init); |