Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 1 | /* arch/arm/mach-msm/smd.c |
| 2 | * |
| 3 | * Copyright (C) 2007 Google, Inc. |
| 4 | * Author: Brian Swetland <swetland@google.com> |
| 5 | * |
| 6 | * This software is licensed under the terms of the GNU General Public |
| 7 | * License version 2, as published by the Free Software Foundation, and |
| 8 | * may be copied, distributed, and modified under those terms. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | */ |
| 16 | |
| 17 | #include <linux/platform_device.h> |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/fs.h> |
| 20 | #include <linux/cdev.h> |
| 21 | #include <linux/device.h> |
| 22 | #include <linux/wait.h> |
| 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/irq.h> |
| 25 | #include <linux/list.h> |
| 26 | #include <linux/slab.h> |
| 27 | #include <linux/debugfs.h> |
| 28 | #include <linux/delay.h> |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 29 | |
| 30 | #include <mach/msm_smd.h> |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 31 | #include <mach/system.h> |
| 32 | |
| 33 | #include "smd_private.h" |
| 34 | #include "proc_comm.h" |
| 35 | |
Brian Swetland | 37521a3 | 2009-07-01 18:30:47 -0700 | [diff] [blame] | 36 | #if defined(CONFIG_ARCH_QSD8X50) |
| 37 | #define CONFIG_QDSP6 1 |
| 38 | #endif |
| 39 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 40 | void (*msm_hw_reset_hook)(void); |
| 41 | |
| 42 | #define MODULE_NAME "msm_smd" |
| 43 | |
| 44 | enum { |
| 45 | MSM_SMD_DEBUG = 1U << 0, |
| 46 | MSM_SMSM_DEBUG = 1U << 0, |
| 47 | }; |
| 48 | |
| 49 | static int msm_smd_debug_mask; |
| 50 | |
Brian Swetland | 03e00cd | 2009-07-01 17:58:37 -0700 | [diff] [blame] | 51 | struct shared_info { |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 52 | int ready; |
Arve Hjønnevåg | 2837941 | 2009-05-20 16:52:36 -0700 | [diff] [blame] | 53 | unsigned state; |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 54 | }; |
| 55 | |
Arve Hjønnevåg | 2837941 | 2009-05-20 16:52:36 -0700 | [diff] [blame] | 56 | static unsigned dummy_state[SMSM_STATE_COUNT]; |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 57 | |
| 58 | static struct shared_info smd_info = { |
Arve Hjønnevåg | 2837941 | 2009-05-20 16:52:36 -0700 | [diff] [blame] | 59 | .state = (unsigned) &dummy_state, |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 60 | }; |
| 61 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 62 | module_param_named(debug_mask, msm_smd_debug_mask, |
| 63 | int, S_IRUGO | S_IWUSR | S_IWGRP); |
| 64 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 65 | static unsigned last_heap_free = 0xffffffff; |
| 66 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 67 | static inline void notify_other_smsm(void) |
| 68 | { |
Dima Zavin | b42dc44 | 2010-01-29 11:43:42 -0800 | [diff] [blame] | 69 | msm_a2m_int(5); |
Brian Swetland | 37521a3 | 2009-07-01 18:30:47 -0700 | [diff] [blame] | 70 | #ifdef CONFIG_QDSP6 |
Dima Zavin | b42dc44 | 2010-01-29 11:43:42 -0800 | [diff] [blame] | 71 | msm_a2m_int(8); |
Brian Swetland | 37521a3 | 2009-07-01 18:30:47 -0700 | [diff] [blame] | 72 | #endif |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 73 | } |
| 74 | |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 75 | static inline void notify_modem_smd(void) |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 76 | { |
Dima Zavin | b42dc44 | 2010-01-29 11:43:42 -0800 | [diff] [blame] | 77 | msm_a2m_int(0); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 78 | } |
| 79 | |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 80 | static inline void notify_dsp_smd(void) |
| 81 | { |
Dima Zavin | b42dc44 | 2010-01-29 11:43:42 -0800 | [diff] [blame] | 82 | msm_a2m_int(8); |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 83 | } |
| 84 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 85 | static void smd_diag(void) |
| 86 | { |
| 87 | char *x; |
| 88 | |
| 89 | x = smem_find(ID_DIAG_ERR_MSG, SZ_DIAG_ERR_MSG); |
| 90 | if (x != 0) { |
| 91 | x[SZ_DIAG_ERR_MSG - 1] = 0; |
| 92 | pr_info("smem: DIAG '%s'\n", x); |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | /* call when SMSM_RESET flag is set in the A9's smsm_state */ |
| 97 | static void handle_modem_crash(void) |
| 98 | { |
| 99 | pr_err("ARM9 has CRASHED\n"); |
| 100 | smd_diag(); |
| 101 | |
| 102 | /* hard reboot if possible */ |
| 103 | if (msm_hw_reset_hook) |
| 104 | msm_hw_reset_hook(); |
| 105 | |
| 106 | /* in this case the modem or watchdog should reboot us */ |
| 107 | for (;;) |
| 108 | ; |
| 109 | } |
| 110 | |
Arve Hjønnevåg | 2837941 | 2009-05-20 16:52:36 -0700 | [diff] [blame] | 111 | uint32_t raw_smsm_get_state(enum smsm_state_item item) |
| 112 | { |
| 113 | return readl(smd_info.state + item * 4); |
| 114 | } |
| 115 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 116 | static int check_for_modem_crash(void) |
| 117 | { |
Arve Hjønnevåg | 2837941 | 2009-05-20 16:52:36 -0700 | [diff] [blame] | 118 | if (raw_smsm_get_state(SMSM_STATE_MODEM) & SMSM_RESET) { |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 119 | handle_modem_crash(); |
| 120 | return -1; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 121 | } |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 122 | return 0; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 123 | } |
| 124 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 125 | /* the spinlock is used to synchronize between the |
Brian Swetland | 03e00cd | 2009-07-01 17:58:37 -0700 | [diff] [blame] | 126 | * irq handler and code that mutates the channel |
| 127 | * list or fiddles with channel state |
| 128 | */ |
| 129 | DEFINE_SPINLOCK(smd_lock); |
| 130 | DEFINE_SPINLOCK(smem_lock); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 131 | |
| 132 | /* the mutex is used during open() and close() |
Brian Swetland | 03e00cd | 2009-07-01 17:58:37 -0700 | [diff] [blame] | 133 | * operations to avoid races while creating or |
| 134 | * destroying smd_channel structures |
| 135 | */ |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 136 | static DEFINE_MUTEX(smd_creation_mutex); |
| 137 | |
| 138 | static int smd_initialized; |
| 139 | |
Brian Swetland | 03e00cd | 2009-07-01 17:58:37 -0700 | [diff] [blame] | 140 | LIST_HEAD(smd_ch_closed_list); |
Brian Swetland | 37521a3 | 2009-07-01 18:30:47 -0700 | [diff] [blame] | 141 | LIST_HEAD(smd_ch_list_modem); |
| 142 | LIST_HEAD(smd_ch_list_dsp); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 143 | |
| 144 | static unsigned char smd_ch_allocated[64]; |
| 145 | static struct work_struct probe_work; |
| 146 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 147 | /* how many bytes are available for reading */ |
| 148 | static int smd_stream_read_avail(struct smd_channel *ch) |
| 149 | { |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 150 | return (ch->recv->head - ch->recv->tail) & ch->fifo_mask; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | /* how many bytes we are free to write */ |
| 154 | static int smd_stream_write_avail(struct smd_channel *ch) |
| 155 | { |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 156 | return ch->fifo_mask - |
| 157 | ((ch->send->head - ch->send->tail) & ch->fifo_mask); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | static int smd_packet_read_avail(struct smd_channel *ch) |
| 161 | { |
| 162 | if (ch->current_packet) { |
| 163 | int n = smd_stream_read_avail(ch); |
| 164 | if (n > ch->current_packet) |
| 165 | n = ch->current_packet; |
| 166 | return n; |
| 167 | } else { |
| 168 | return 0; |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | static int smd_packet_write_avail(struct smd_channel *ch) |
| 173 | { |
| 174 | int n = smd_stream_write_avail(ch); |
| 175 | return n > SMD_HEADER_SIZE ? n - SMD_HEADER_SIZE : 0; |
| 176 | } |
| 177 | |
| 178 | static int ch_is_open(struct smd_channel *ch) |
| 179 | { |
| 180 | return (ch->recv->state == SMD_SS_OPENED) && |
| 181 | (ch->send->state == SMD_SS_OPENED); |
| 182 | } |
| 183 | |
| 184 | /* provide a pointer and length to readable data in the fifo */ |
| 185 | static unsigned ch_read_buffer(struct smd_channel *ch, void **ptr) |
| 186 | { |
| 187 | unsigned head = ch->recv->head; |
| 188 | unsigned tail = ch->recv->tail; |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 189 | *ptr = (void *) (ch->recv_data + tail); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 190 | |
| 191 | if (tail <= head) |
| 192 | return head - tail; |
| 193 | else |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 194 | return ch->fifo_size - tail; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | /* advance the fifo read pointer after data from ch_read_buffer is consumed */ |
| 198 | static void ch_read_done(struct smd_channel *ch, unsigned count) |
| 199 | { |
| 200 | BUG_ON(count > smd_stream_read_avail(ch)); |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 201 | ch->recv->tail = (ch->recv->tail + count) & ch->fifo_mask; |
Haley Teng | 7632fba | 2009-10-12 10:38:10 -0700 | [diff] [blame] | 202 | ch->send->fTAIL = 1; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | /* basic read interface to ch_read_{buffer,done} used |
Brian Swetland | 03e00cd | 2009-07-01 17:58:37 -0700 | [diff] [blame] | 206 | * by smd_*_read() and update_packet_state() |
| 207 | * will read-and-discard if the _data pointer is null |
| 208 | */ |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 209 | static int ch_read(struct smd_channel *ch, void *_data, int len) |
| 210 | { |
| 211 | void *ptr; |
| 212 | unsigned n; |
| 213 | unsigned char *data = _data; |
| 214 | int orig_len = len; |
| 215 | |
| 216 | while (len > 0) { |
| 217 | n = ch_read_buffer(ch, &ptr); |
| 218 | if (n == 0) |
| 219 | break; |
| 220 | |
| 221 | if (n > len) |
| 222 | n = len; |
| 223 | if (_data) |
| 224 | memcpy(data, ptr, n); |
| 225 | |
| 226 | data += n; |
| 227 | len -= n; |
| 228 | ch_read_done(ch, n); |
| 229 | } |
| 230 | |
| 231 | return orig_len - len; |
| 232 | } |
| 233 | |
| 234 | static void update_stream_state(struct smd_channel *ch) |
| 235 | { |
| 236 | /* streams have no special state requiring updating */ |
| 237 | } |
| 238 | |
| 239 | static void update_packet_state(struct smd_channel *ch) |
| 240 | { |
| 241 | unsigned hdr[5]; |
| 242 | int r; |
| 243 | |
| 244 | /* can't do anything if we're in the middle of a packet */ |
| 245 | if (ch->current_packet != 0) |
| 246 | return; |
| 247 | |
| 248 | /* don't bother unless we can get the full header */ |
| 249 | if (smd_stream_read_avail(ch) < SMD_HEADER_SIZE) |
| 250 | return; |
| 251 | |
| 252 | r = ch_read(ch, hdr, SMD_HEADER_SIZE); |
| 253 | BUG_ON(r != SMD_HEADER_SIZE); |
| 254 | |
| 255 | ch->current_packet = hdr[0]; |
| 256 | } |
| 257 | |
| 258 | /* provide a pointer and length to next free space in the fifo */ |
| 259 | static unsigned ch_write_buffer(struct smd_channel *ch, void **ptr) |
| 260 | { |
| 261 | unsigned head = ch->send->head; |
| 262 | unsigned tail = ch->send->tail; |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 263 | *ptr = (void *) (ch->send_data + head); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 264 | |
| 265 | if (head < tail) { |
| 266 | return tail - head - 1; |
| 267 | } else { |
| 268 | if (tail == 0) |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 269 | return ch->fifo_size - head - 1; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 270 | else |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 271 | return ch->fifo_size - head; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 272 | } |
| 273 | } |
| 274 | |
| 275 | /* advace the fifo write pointer after freespace |
| 276 | * from ch_write_buffer is filled |
| 277 | */ |
| 278 | static void ch_write_done(struct smd_channel *ch, unsigned count) |
| 279 | { |
| 280 | BUG_ON(count > smd_stream_write_avail(ch)); |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 281 | ch->send->head = (ch->send->head + count) & ch->fifo_mask; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 282 | ch->send->fHEAD = 1; |
| 283 | } |
| 284 | |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 285 | static void ch_set_state(struct smd_channel *ch, unsigned n) |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 286 | { |
| 287 | if (n == SMD_SS_OPENED) { |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 288 | ch->send->fDSR = 1; |
| 289 | ch->send->fCTS = 1; |
| 290 | ch->send->fCD = 1; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 291 | } else { |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 292 | ch->send->fDSR = 0; |
| 293 | ch->send->fCTS = 0; |
| 294 | ch->send->fCD = 0; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 295 | } |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 296 | ch->send->state = n; |
| 297 | ch->send->fSTATE = 1; |
| 298 | ch->notify_other_cpu(); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | static void do_smd_probe(void) |
| 302 | { |
| 303 | struct smem_shared *shared = (void *) MSM_SHARED_RAM_BASE; |
| 304 | if (shared->heap_info.free_offset != last_heap_free) { |
| 305 | last_heap_free = shared->heap_info.free_offset; |
| 306 | schedule_work(&probe_work); |
| 307 | } |
| 308 | } |
| 309 | |
| 310 | static void smd_state_change(struct smd_channel *ch, |
| 311 | unsigned last, unsigned next) |
| 312 | { |
| 313 | ch->last_state = next; |
| 314 | |
Brian Swetland | 03e00cd | 2009-07-01 17:58:37 -0700 | [diff] [blame] | 315 | pr_info("SMD: ch %d %d -> %d\n", ch->n, last, next); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 316 | |
| 317 | switch (next) { |
| 318 | case SMD_SS_OPENING: |
| 319 | ch->recv->tail = 0; |
| 320 | case SMD_SS_OPENED: |
| 321 | if (ch->send->state != SMD_SS_OPENED) |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 322 | ch_set_state(ch, SMD_SS_OPENED); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 323 | ch->notify(ch->priv, SMD_EVENT_OPEN); |
| 324 | break; |
| 325 | case SMD_SS_FLUSHING: |
| 326 | case SMD_SS_RESET: |
| 327 | /* we should force them to close? */ |
| 328 | default: |
| 329 | ch->notify(ch->priv, SMD_EVENT_CLOSE); |
| 330 | } |
| 331 | } |
| 332 | |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 333 | static void handle_smd_irq(struct list_head *list, void (*notify)(void)) |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 334 | { |
| 335 | unsigned long flags; |
| 336 | struct smd_channel *ch; |
| 337 | int do_notify = 0; |
| 338 | unsigned ch_flags; |
| 339 | unsigned tmp; |
| 340 | |
| 341 | spin_lock_irqsave(&smd_lock, flags); |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 342 | list_for_each_entry(ch, list, ch_list) { |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 343 | ch_flags = 0; |
| 344 | if (ch_is_open(ch)) { |
| 345 | if (ch->recv->fHEAD) { |
| 346 | ch->recv->fHEAD = 0; |
| 347 | ch_flags |= 1; |
| 348 | do_notify |= 1; |
| 349 | } |
| 350 | if (ch->recv->fTAIL) { |
| 351 | ch->recv->fTAIL = 0; |
| 352 | ch_flags |= 2; |
| 353 | do_notify |= 1; |
| 354 | } |
| 355 | if (ch->recv->fSTATE) { |
| 356 | ch->recv->fSTATE = 0; |
| 357 | ch_flags |= 4; |
| 358 | do_notify |= 1; |
| 359 | } |
| 360 | } |
| 361 | tmp = ch->recv->state; |
| 362 | if (tmp != ch->last_state) |
| 363 | smd_state_change(ch, ch->last_state, tmp); |
| 364 | if (ch_flags) { |
| 365 | ch->update_state(ch); |
| 366 | ch->notify(ch->priv, SMD_EVENT_DATA); |
| 367 | } |
| 368 | } |
| 369 | if (do_notify) |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 370 | notify(); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 371 | spin_unlock_irqrestore(&smd_lock, flags); |
| 372 | do_smd_probe(); |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 373 | } |
| 374 | |
Brian Swetland | 37521a3 | 2009-07-01 18:30:47 -0700 | [diff] [blame] | 375 | static irqreturn_t smd_modem_irq_handler(int irq, void *data) |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 376 | { |
Brian Swetland | 37521a3 | 2009-07-01 18:30:47 -0700 | [diff] [blame] | 377 | handle_smd_irq(&smd_ch_list_modem, notify_modem_smd); |
| 378 | return IRQ_HANDLED; |
| 379 | } |
| 380 | |
Daniel Walker | b13525c | 2010-03-18 10:10:30 -0700 | [diff] [blame^] | 381 | #if defined(CONFIG_QDSP6) |
Brian Swetland | 37521a3 | 2009-07-01 18:30:47 -0700 | [diff] [blame] | 382 | static irqreturn_t smd_dsp_irq_handler(int irq, void *data) |
| 383 | { |
| 384 | handle_smd_irq(&smd_ch_list_dsp, notify_dsp_smd); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 385 | return IRQ_HANDLED; |
| 386 | } |
Daniel Walker | b13525c | 2010-03-18 10:10:30 -0700 | [diff] [blame^] | 387 | #endif |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 388 | |
| 389 | static void smd_fake_irq_handler(unsigned long arg) |
| 390 | { |
Brian Swetland | 37521a3 | 2009-07-01 18:30:47 -0700 | [diff] [blame] | 391 | handle_smd_irq(&smd_ch_list_modem, notify_modem_smd); |
| 392 | handle_smd_irq(&smd_ch_list_dsp, notify_dsp_smd); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 393 | } |
| 394 | |
| 395 | static DECLARE_TASKLET(smd_fake_irq_tasklet, smd_fake_irq_handler, 0); |
| 396 | |
Brian Swetland | 37521a3 | 2009-07-01 18:30:47 -0700 | [diff] [blame] | 397 | static inline int smd_need_int(struct smd_channel *ch) |
| 398 | { |
| 399 | if (ch_is_open(ch)) { |
| 400 | if (ch->recv->fHEAD || ch->recv->fTAIL || ch->recv->fSTATE) |
| 401 | return 1; |
| 402 | if (ch->recv->state != ch->last_state) |
| 403 | return 1; |
| 404 | } |
| 405 | return 0; |
| 406 | } |
| 407 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 408 | void smd_sleep_exit(void) |
| 409 | { |
| 410 | unsigned long flags; |
| 411 | struct smd_channel *ch; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 412 | int need_int = 0; |
| 413 | |
| 414 | spin_lock_irqsave(&smd_lock, flags); |
Brian Swetland | 37521a3 | 2009-07-01 18:30:47 -0700 | [diff] [blame] | 415 | list_for_each_entry(ch, &smd_ch_list_modem, ch_list) { |
| 416 | if (smd_need_int(ch)) { |
| 417 | need_int = 1; |
| 418 | break; |
| 419 | } |
| 420 | } |
| 421 | list_for_each_entry(ch, &smd_ch_list_dsp, ch_list) { |
| 422 | if (smd_need_int(ch)) { |
| 423 | need_int = 1; |
| 424 | break; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 425 | } |
| 426 | } |
| 427 | spin_unlock_irqrestore(&smd_lock, flags); |
| 428 | do_smd_probe(); |
Brian Swetland | 37521a3 | 2009-07-01 18:30:47 -0700 | [diff] [blame] | 429 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 430 | if (need_int) { |
| 431 | if (msm_smd_debug_mask & MSM_SMD_DEBUG) |
| 432 | pr_info("smd_sleep_exit need interrupt\n"); |
| 433 | tasklet_schedule(&smd_fake_irq_tasklet); |
| 434 | } |
| 435 | } |
| 436 | |
| 437 | |
| 438 | void smd_kick(smd_channel_t *ch) |
| 439 | { |
| 440 | unsigned long flags; |
| 441 | unsigned tmp; |
| 442 | |
| 443 | spin_lock_irqsave(&smd_lock, flags); |
| 444 | ch->update_state(ch); |
| 445 | tmp = ch->recv->state; |
| 446 | if (tmp != ch->last_state) { |
| 447 | ch->last_state = tmp; |
| 448 | if (tmp == SMD_SS_OPENED) |
| 449 | ch->notify(ch->priv, SMD_EVENT_OPEN); |
| 450 | else |
| 451 | ch->notify(ch->priv, SMD_EVENT_CLOSE); |
| 452 | } |
| 453 | ch->notify(ch->priv, SMD_EVENT_DATA); |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 454 | ch->notify_other_cpu(); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 455 | spin_unlock_irqrestore(&smd_lock, flags); |
| 456 | } |
| 457 | |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 458 | static int smd_is_packet(int chn, unsigned type) |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 459 | { |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 460 | type &= SMD_KIND_MASK; |
| 461 | if (type == SMD_KIND_PACKET) |
| 462 | return 1; |
| 463 | if (type == SMD_KIND_STREAM) |
| 464 | return 0; |
| 465 | |
| 466 | /* older AMSS reports SMD_KIND_UNKNOWN always */ |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 467 | if ((chn > 4) || (chn == 1)) |
| 468 | return 1; |
| 469 | else |
| 470 | return 0; |
| 471 | } |
| 472 | |
| 473 | static int smd_stream_write(smd_channel_t *ch, const void *_data, int len) |
| 474 | { |
| 475 | void *ptr; |
| 476 | const unsigned char *buf = _data; |
| 477 | unsigned xfer; |
| 478 | int orig_len = len; |
| 479 | |
| 480 | if (len < 0) |
| 481 | return -EINVAL; |
| 482 | |
| 483 | while ((xfer = ch_write_buffer(ch, &ptr)) != 0) { |
| 484 | if (!ch_is_open(ch)) |
| 485 | break; |
| 486 | if (xfer > len) |
| 487 | xfer = len; |
| 488 | memcpy(ptr, buf, xfer); |
| 489 | ch_write_done(ch, xfer); |
| 490 | len -= xfer; |
| 491 | buf += xfer; |
| 492 | if (len == 0) |
| 493 | break; |
| 494 | } |
| 495 | |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 496 | ch->notify_other_cpu(); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 497 | |
| 498 | return orig_len - len; |
| 499 | } |
| 500 | |
| 501 | static int smd_packet_write(smd_channel_t *ch, const void *_data, int len) |
| 502 | { |
| 503 | unsigned hdr[5]; |
| 504 | |
| 505 | if (len < 0) |
| 506 | return -EINVAL; |
| 507 | |
| 508 | if (smd_stream_write_avail(ch) < (len + SMD_HEADER_SIZE)) |
| 509 | return -ENOMEM; |
| 510 | |
| 511 | hdr[0] = len; |
| 512 | hdr[1] = hdr[2] = hdr[3] = hdr[4] = 0; |
| 513 | |
| 514 | smd_stream_write(ch, hdr, sizeof(hdr)); |
| 515 | smd_stream_write(ch, _data, len); |
| 516 | |
| 517 | return len; |
| 518 | } |
| 519 | |
| 520 | static int smd_stream_read(smd_channel_t *ch, void *data, int len) |
| 521 | { |
| 522 | int r; |
| 523 | |
| 524 | if (len < 0) |
| 525 | return -EINVAL; |
| 526 | |
| 527 | r = ch_read(ch, data, len); |
| 528 | if (r > 0) |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 529 | ch->notify_other_cpu(); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 530 | |
| 531 | return r; |
| 532 | } |
| 533 | |
| 534 | static int smd_packet_read(smd_channel_t *ch, void *data, int len) |
| 535 | { |
| 536 | unsigned long flags; |
| 537 | int r; |
| 538 | |
| 539 | if (len < 0) |
| 540 | return -EINVAL; |
| 541 | |
| 542 | if (len > ch->current_packet) |
| 543 | len = ch->current_packet; |
| 544 | |
| 545 | r = ch_read(ch, data, len); |
| 546 | if (r > 0) |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 547 | ch->notify_other_cpu(); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 548 | |
| 549 | spin_lock_irqsave(&smd_lock, flags); |
| 550 | ch->current_packet -= r; |
| 551 | update_packet_state(ch); |
| 552 | spin_unlock_irqrestore(&smd_lock, flags); |
| 553 | |
| 554 | return r; |
| 555 | } |
| 556 | |
Brian Swetland | 34f719b | 2009-10-30 16:22:05 -0700 | [diff] [blame] | 557 | static int smd_alloc_channel(const char *name, uint32_t cid, uint32_t type) |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 558 | { |
| 559 | struct smd_channel *ch; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 560 | |
| 561 | ch = kzalloc(sizeof(struct smd_channel), GFP_KERNEL); |
| 562 | if (ch == 0) { |
| 563 | pr_err("smd_alloc_channel() out of memory\n"); |
Brian Swetland | 34f719b | 2009-10-30 16:22:05 -0700 | [diff] [blame] | 564 | return -1; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 565 | } |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 566 | ch->n = cid; |
| 567 | |
Daniel Walker | bf83de4 | 2010-03-16 16:29:44 -0700 | [diff] [blame] | 568 | if (_smd_alloc_channel(ch)) { |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 569 | kfree(ch); |
Brian Swetland | 34f719b | 2009-10-30 16:22:05 -0700 | [diff] [blame] | 570 | return -1; |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 571 | } |
| 572 | |
| 573 | ch->fifo_mask = ch->fifo_size - 1; |
| 574 | ch->type = type; |
| 575 | |
| 576 | if ((type & SMD_TYPE_MASK) == SMD_TYPE_APPS_MODEM) |
| 577 | ch->notify_other_cpu = notify_modem_smd; |
| 578 | else |
| 579 | ch->notify_other_cpu = notify_dsp_smd; |
| 580 | |
| 581 | if (smd_is_packet(cid, type)) { |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 582 | ch->read = smd_packet_read; |
| 583 | ch->write = smd_packet_write; |
| 584 | ch->read_avail = smd_packet_read_avail; |
| 585 | ch->write_avail = smd_packet_write_avail; |
| 586 | ch->update_state = update_packet_state; |
| 587 | } else { |
| 588 | ch->read = smd_stream_read; |
| 589 | ch->write = smd_stream_write; |
| 590 | ch->read_avail = smd_stream_read_avail; |
| 591 | ch->write_avail = smd_stream_write_avail; |
| 592 | ch->update_state = update_stream_state; |
| 593 | } |
| 594 | |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 595 | if ((type & 0xff) == 0) |
| 596 | memcpy(ch->name, "SMD_", 4); |
| 597 | else |
| 598 | memcpy(ch->name, "DSP_", 4); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 599 | memcpy(ch->name + 4, name, 20); |
| 600 | ch->name[23] = 0; |
| 601 | ch->pdev.name = ch->name; |
| 602 | ch->pdev.id = -1; |
| 603 | |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 604 | pr_info("smd_alloc_channel() cid=%02d size=%05d '%s'\n", |
| 605 | ch->n, ch->fifo_size, ch->name); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 606 | |
| 607 | mutex_lock(&smd_creation_mutex); |
| 608 | list_add(&ch->ch_list, &smd_ch_closed_list); |
| 609 | mutex_unlock(&smd_creation_mutex); |
| 610 | |
| 611 | platform_device_register(&ch->pdev); |
Brian Swetland | 34f719b | 2009-10-30 16:22:05 -0700 | [diff] [blame] | 612 | return 0; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 613 | } |
| 614 | |
Daniel Walker | 3843ac3 | 2010-03-17 11:10:40 -0700 | [diff] [blame] | 615 | static void smd_channel_probe_worker(struct work_struct *work) |
| 616 | { |
| 617 | struct smd_alloc_elm *shared; |
| 618 | unsigned ctype; |
| 619 | unsigned type; |
| 620 | unsigned n; |
| 621 | |
| 622 | shared = smem_find(ID_CH_ALLOC_TBL, sizeof(*shared) * 64); |
| 623 | if (!shared) { |
| 624 | pr_err("smd: cannot find allocation table\n"); |
| 625 | return; |
| 626 | } |
| 627 | for (n = 0; n < 64; n++) { |
| 628 | if (smd_ch_allocated[n]) |
| 629 | continue; |
| 630 | if (!shared[n].ref_count) |
| 631 | continue; |
| 632 | if (!shared[n].name[0]) |
| 633 | continue; |
| 634 | ctype = shared[n].ctype; |
| 635 | type = ctype & SMD_TYPE_MASK; |
| 636 | |
| 637 | /* DAL channels are stream but neither the modem, |
| 638 | * nor the DSP correctly indicate this. Fixup manually. |
| 639 | */ |
| 640 | if (!memcmp(shared[n].name, "DAL", 3)) |
| 641 | ctype = (ctype & (~SMD_KIND_MASK)) | SMD_KIND_STREAM; |
| 642 | |
| 643 | type = shared[n].ctype & SMD_TYPE_MASK; |
| 644 | if ((type == SMD_TYPE_APPS_MODEM) || |
| 645 | (type == SMD_TYPE_APPS_DSP)) |
| 646 | if (!smd_alloc_channel(shared[n].name, shared[n].cid, ctype)) |
| 647 | smd_ch_allocated[n] = 1; |
| 648 | } |
| 649 | } |
| 650 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 651 | static void do_nothing_notify(void *priv, unsigned flags) |
| 652 | { |
| 653 | } |
| 654 | |
| 655 | struct smd_channel *smd_get_channel(const char *name) |
| 656 | { |
| 657 | struct smd_channel *ch; |
| 658 | |
| 659 | mutex_lock(&smd_creation_mutex); |
| 660 | list_for_each_entry(ch, &smd_ch_closed_list, ch_list) { |
| 661 | if (!strcmp(name, ch->name)) { |
| 662 | list_del(&ch->ch_list); |
| 663 | mutex_unlock(&smd_creation_mutex); |
| 664 | return ch; |
| 665 | } |
| 666 | } |
| 667 | mutex_unlock(&smd_creation_mutex); |
| 668 | |
| 669 | return NULL; |
| 670 | } |
| 671 | |
| 672 | int smd_open(const char *name, smd_channel_t **_ch, |
| 673 | void *priv, void (*notify)(void *, unsigned)) |
| 674 | { |
| 675 | struct smd_channel *ch; |
| 676 | unsigned long flags; |
| 677 | |
| 678 | if (smd_initialized == 0) { |
| 679 | pr_info("smd_open() before smd_init()\n"); |
| 680 | return -ENODEV; |
| 681 | } |
| 682 | |
| 683 | ch = smd_get_channel(name); |
| 684 | if (!ch) |
| 685 | return -ENODEV; |
| 686 | |
| 687 | if (notify == 0) |
| 688 | notify = do_nothing_notify; |
| 689 | |
| 690 | ch->notify = notify; |
| 691 | ch->current_packet = 0; |
| 692 | ch->last_state = SMD_SS_CLOSED; |
| 693 | ch->priv = priv; |
| 694 | |
| 695 | *_ch = ch; |
| 696 | |
| 697 | spin_lock_irqsave(&smd_lock, flags); |
Brian Swetland | 37521a3 | 2009-07-01 18:30:47 -0700 | [diff] [blame] | 698 | |
| 699 | if ((ch->type & SMD_TYPE_MASK) == SMD_TYPE_APPS_MODEM) |
| 700 | list_add(&ch->ch_list, &smd_ch_list_modem); |
| 701 | else |
| 702 | list_add(&ch->ch_list, &smd_ch_list_dsp); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 703 | |
| 704 | /* If the remote side is CLOSING, we need to get it to |
| 705 | * move to OPENING (which we'll do by moving from CLOSED to |
| 706 | * OPENING) and then get it to move from OPENING to |
| 707 | * OPENED (by doing the same state change ourselves). |
| 708 | * |
| 709 | * Otherwise, it should be OPENING and we can move directly |
| 710 | * to OPENED so that it will follow. |
| 711 | */ |
| 712 | if (ch->recv->state == SMD_SS_CLOSING) { |
| 713 | ch->send->head = 0; |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 714 | ch_set_state(ch, SMD_SS_OPENING); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 715 | } else { |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 716 | ch_set_state(ch, SMD_SS_OPENED); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 717 | } |
| 718 | spin_unlock_irqrestore(&smd_lock, flags); |
| 719 | smd_kick(ch); |
| 720 | |
| 721 | return 0; |
| 722 | } |
| 723 | |
| 724 | int smd_close(smd_channel_t *ch) |
| 725 | { |
| 726 | unsigned long flags; |
| 727 | |
| 728 | pr_info("smd_close(%p)\n", ch); |
| 729 | |
| 730 | if (ch == 0) |
| 731 | return -1; |
| 732 | |
| 733 | spin_lock_irqsave(&smd_lock, flags); |
| 734 | ch->notify = do_nothing_notify; |
| 735 | list_del(&ch->ch_list); |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 736 | ch_set_state(ch, SMD_SS_CLOSED); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 737 | spin_unlock_irqrestore(&smd_lock, flags); |
| 738 | |
| 739 | mutex_lock(&smd_creation_mutex); |
| 740 | list_add(&ch->ch_list, &smd_ch_closed_list); |
| 741 | mutex_unlock(&smd_creation_mutex); |
| 742 | |
| 743 | return 0; |
| 744 | } |
| 745 | |
| 746 | int smd_read(smd_channel_t *ch, void *data, int len) |
| 747 | { |
| 748 | return ch->read(ch, data, len); |
| 749 | } |
| 750 | |
| 751 | int smd_write(smd_channel_t *ch, const void *data, int len) |
| 752 | { |
| 753 | return ch->write(ch, data, len); |
| 754 | } |
| 755 | |
Brian Swetland | 636eb9c | 2009-12-07 15:28:08 -0800 | [diff] [blame] | 756 | int smd_write_atomic(smd_channel_t *ch, const void *data, int len) |
| 757 | { |
| 758 | unsigned long flags; |
| 759 | int res; |
| 760 | spin_lock_irqsave(&smd_lock, flags); |
| 761 | res = ch->write(ch, data, len); |
| 762 | spin_unlock_irqrestore(&smd_lock, flags); |
| 763 | return res; |
| 764 | } |
| 765 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 766 | int smd_read_avail(smd_channel_t *ch) |
| 767 | { |
| 768 | return ch->read_avail(ch); |
| 769 | } |
| 770 | |
| 771 | int smd_write_avail(smd_channel_t *ch) |
| 772 | { |
| 773 | return ch->write_avail(ch); |
| 774 | } |
| 775 | |
| 776 | int smd_wait_until_readable(smd_channel_t *ch, int bytes) |
| 777 | { |
| 778 | return -1; |
| 779 | } |
| 780 | |
| 781 | int smd_wait_until_writable(smd_channel_t *ch, int bytes) |
| 782 | { |
| 783 | return -1; |
| 784 | } |
| 785 | |
| 786 | int smd_cur_packet_size(smd_channel_t *ch) |
| 787 | { |
| 788 | return ch->current_packet; |
| 789 | } |
| 790 | |
| 791 | |
| 792 | /* ------------------------------------------------------------------------- */ |
| 793 | |
| 794 | void *smem_alloc(unsigned id, unsigned size) |
| 795 | { |
| 796 | return smem_find(id, size); |
| 797 | } |
| 798 | |
Brian Swetland | 03e00cd | 2009-07-01 17:58:37 -0700 | [diff] [blame] | 799 | void *smem_item(unsigned id, unsigned *size) |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 800 | { |
| 801 | struct smem_shared *shared = (void *) MSM_SHARED_RAM_BASE; |
| 802 | struct smem_heap_entry *toc = shared->heap_toc; |
| 803 | |
| 804 | if (id >= SMEM_NUM_ITEMS) |
| 805 | return 0; |
| 806 | |
| 807 | if (toc[id].allocated) { |
| 808 | *size = toc[id].size; |
| 809 | return (void *) (MSM_SHARED_RAM_BASE + toc[id].offset); |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 810 | } else { |
| 811 | *size = 0; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | return 0; |
| 815 | } |
| 816 | |
| 817 | void *smem_find(unsigned id, unsigned size_in) |
| 818 | { |
| 819 | unsigned size; |
| 820 | void *ptr; |
| 821 | |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 822 | ptr = smem_item(id, &size); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 823 | if (!ptr) |
| 824 | return 0; |
| 825 | |
| 826 | size_in = ALIGN(size_in, 8); |
| 827 | if (size_in != size) { |
| 828 | pr_err("smem_find(%d, %d): wrong size %d\n", |
| 829 | id, size_in, size); |
| 830 | return 0; |
| 831 | } |
| 832 | |
| 833 | return ptr; |
| 834 | } |
| 835 | |
| 836 | static irqreturn_t smsm_irq_handler(int irq, void *data) |
| 837 | { |
| 838 | unsigned long flags; |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 839 | unsigned apps, modm; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 840 | |
| 841 | spin_lock_irqsave(&smem_lock, flags); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 842 | |
Arve Hjønnevåg | 2837941 | 2009-05-20 16:52:36 -0700 | [diff] [blame] | 843 | apps = raw_smsm_get_state(SMSM_STATE_APPS); |
| 844 | modm = raw_smsm_get_state(SMSM_STATE_MODEM); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 845 | |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 846 | if (msm_smd_debug_mask & MSM_SMSM_DEBUG) |
| 847 | pr_info("<SM %08x %08x>\n", apps, modm); |
Daniel Walker | 79848a2 | 2010-03-16 15:20:07 -0700 | [diff] [blame] | 848 | if (modm & SMSM_RESET) |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 849 | handle_modem_crash(); |
Daniel Walker | 79848a2 | 2010-03-16 15:20:07 -0700 | [diff] [blame] | 850 | |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 851 | do_smd_probe(); |
| 852 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 853 | spin_unlock_irqrestore(&smem_lock, flags); |
| 854 | return IRQ_HANDLED; |
| 855 | } |
| 856 | |
Arve Hjønnevåg | 2837941 | 2009-05-20 16:52:36 -0700 | [diff] [blame] | 857 | int smsm_change_state(enum smsm_state_item item, |
| 858 | uint32_t clear_mask, uint32_t set_mask) |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 859 | { |
Daniel Walker | 1a86fbc | 2010-03-17 09:58:29 -0700 | [diff] [blame] | 860 | unsigned long addr = smd_info.state + item * 4; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 861 | unsigned long flags; |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 862 | unsigned state; |
| 863 | |
| 864 | if (!smd_info.ready) |
| 865 | return -EIO; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 866 | |
| 867 | spin_lock_irqsave(&smem_lock, flags); |
| 868 | |
Arve Hjønnevåg | 2837941 | 2009-05-20 16:52:36 -0700 | [diff] [blame] | 869 | if (raw_smsm_get_state(SMSM_STATE_MODEM) & SMSM_RESET) |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 870 | handle_modem_crash(); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 871 | |
Arve Hjønnevåg | 2837941 | 2009-05-20 16:52:36 -0700 | [diff] [blame] | 872 | state = (readl(addr) & ~clear_mask) | set_mask; |
| 873 | writel(state, addr); |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 874 | |
| 875 | if (msm_smd_debug_mask & MSM_SMSM_DEBUG) |
Arve Hjønnevåg | 2837941 | 2009-05-20 16:52:36 -0700 | [diff] [blame] | 876 | pr_info("smsm_change_state %d %x\n", item, state); |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 877 | notify_other_smsm(); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 878 | |
| 879 | spin_unlock_irqrestore(&smem_lock, flags); |
| 880 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 881 | return 0; |
| 882 | } |
| 883 | |
Arve Hjønnevåg | 2837941 | 2009-05-20 16:52:36 -0700 | [diff] [blame] | 884 | uint32_t smsm_get_state(enum smsm_state_item item) |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 885 | { |
| 886 | unsigned long flags; |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 887 | uint32_t rv; |
| 888 | |
| 889 | spin_lock_irqsave(&smem_lock, flags); |
| 890 | |
Arve Hjønnevåg | 2837941 | 2009-05-20 16:52:36 -0700 | [diff] [blame] | 891 | rv = readl(smd_info.state + item * 4); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 892 | |
Arve Hjønnevåg | 2837941 | 2009-05-20 16:52:36 -0700 | [diff] [blame] | 893 | if (item == SMSM_STATE_MODEM && (rv & SMSM_RESET)) |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 894 | handle_modem_crash(); |
| 895 | |
| 896 | spin_unlock_irqrestore(&smem_lock, flags); |
| 897 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 898 | return rv; |
| 899 | } |
| 900 | |
Arve Hjønnevåg | ec9d3d1 | 2009-06-16 14:48:21 -0700 | [diff] [blame] | 901 | #ifdef CONFIG_ARCH_MSM_SCORPION |
| 902 | |
| 903 | int smsm_set_sleep_duration(uint32_t delay) |
| 904 | { |
Brian Swetland | 03e00cd | 2009-07-01 17:58:37 -0700 | [diff] [blame] | 905 | struct msm_dem_slave_data *ptr; |
| 906 | |
| 907 | ptr = smem_find(SMEM_APPS_DEM_SLAVE_DATA, sizeof(*ptr)); |
Arve Hjønnevåg | ec9d3d1 | 2009-06-16 14:48:21 -0700 | [diff] [blame] | 908 | if (ptr == NULL) { |
| 909 | pr_err("smsm_set_sleep_duration <SM NO APPS_DEM_SLAVE_DATA>\n"); |
| 910 | return -EIO; |
| 911 | } |
| 912 | if (msm_smd_debug_mask & MSM_SMSM_DEBUG) |
| 913 | pr_info("smsm_set_sleep_duration %d -> %d\n", |
| 914 | ptr->sleep_time, delay); |
| 915 | ptr->sleep_time = delay; |
| 916 | return 0; |
| 917 | } |
| 918 | |
| 919 | #else |
| 920 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 921 | int smsm_set_sleep_duration(uint32_t delay) |
| 922 | { |
| 923 | uint32_t *ptr; |
| 924 | |
Brian Swetland | 03e00cd | 2009-07-01 17:58:37 -0700 | [diff] [blame] | 925 | ptr = smem_find(SMEM_SMSM_SLEEP_DELAY, sizeof(*ptr)); |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 926 | if (ptr == NULL) { |
| 927 | pr_err("smsm_set_sleep_duration <SM NO SLEEP_DELAY>\n"); |
| 928 | return -EIO; |
| 929 | } |
| 930 | if (msm_smd_debug_mask & MSM_SMSM_DEBUG) |
| 931 | pr_info("smsm_set_sleep_duration %d -> %d\n", |
| 932 | *ptr, delay); |
| 933 | *ptr = delay; |
| 934 | return 0; |
| 935 | } |
| 936 | |
Arve Hjønnevåg | ec9d3d1 | 2009-06-16 14:48:21 -0700 | [diff] [blame] | 937 | #endif |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 938 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 939 | int smd_core_init(void) |
| 940 | { |
| 941 | int r; |
| 942 | pr_info("smd_core_init()\n"); |
| 943 | |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 944 | /* wait for essential items to be initialized */ |
| 945 | for (;;) { |
| 946 | unsigned size; |
| 947 | void *state; |
| 948 | state = smem_item(SMEM_SMSM_SHARED_STATE, &size); |
Arve Hjønnevåg | 2837941 | 2009-05-20 16:52:36 -0700 | [diff] [blame] | 949 | if (size == SMSM_V1_SIZE || size == SMSM_V2_SIZE) { |
| 950 | smd_info.state = (unsigned)state; |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 951 | break; |
| 952 | } |
| 953 | } |
| 954 | |
| 955 | smd_info.ready = 1; |
| 956 | |
Brian Swetland | 37521a3 | 2009-07-01 18:30:47 -0700 | [diff] [blame] | 957 | r = request_irq(INT_A9_M2A_0, smd_modem_irq_handler, |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 958 | IRQF_TRIGGER_RISING, "smd_dev", 0); |
| 959 | if (r < 0) |
| 960 | return r; |
| 961 | r = enable_irq_wake(INT_A9_M2A_0); |
| 962 | if (r < 0) |
| 963 | pr_err("smd_core_init: enable_irq_wake failed for A9_M2A_0\n"); |
| 964 | |
| 965 | r = request_irq(INT_A9_M2A_5, smsm_irq_handler, |
| 966 | IRQF_TRIGGER_RISING, "smsm_dev", 0); |
| 967 | if (r < 0) { |
| 968 | free_irq(INT_A9_M2A_0, 0); |
| 969 | return r; |
| 970 | } |
| 971 | r = enable_irq_wake(INT_A9_M2A_5); |
| 972 | if (r < 0) |
| 973 | pr_err("smd_core_init: enable_irq_wake failed for A9_M2A_5\n"); |
| 974 | |
Brian Swetland | 37521a3 | 2009-07-01 18:30:47 -0700 | [diff] [blame] | 975 | #if defined(CONFIG_QDSP6) |
| 976 | r = request_irq(INT_ADSP_A11, smd_dsp_irq_handler, |
| 977 | IRQF_TRIGGER_RISING, "smd_dsp", 0); |
| 978 | if (r < 0) { |
| 979 | free_irq(INT_A9_M2A_0, 0); |
| 980 | free_irq(INT_A9_M2A_5, 0); |
| 981 | return r; |
| 982 | } |
| 983 | #endif |
| 984 | |
Brian Swetland | 5b0f5a3 | 2009-04-26 18:38:49 -0700 | [diff] [blame] | 985 | /* check for any SMD channels that may already exist */ |
| 986 | do_smd_probe(); |
| 987 | |
| 988 | /* indicate that we're up and running */ |
Arve Hjønnevåg | 2837941 | 2009-05-20 16:52:36 -0700 | [diff] [blame] | 989 | smsm_change_state(SMSM_STATE_APPS, |
Arve Hjønnevåg | ec9d3d1 | 2009-06-16 14:48:21 -0700 | [diff] [blame] | 990 | ~0, SMSM_INIT | SMSM_SMDINIT | SMSM_RPCINIT | SMSM_RUN); |
| 991 | #ifdef CONFIG_ARCH_MSM_SCORPION |
| 992 | smsm_change_state(SMSM_STATE_APPS_DEM, ~0, 0); |
| 993 | #endif |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 994 | |
| 995 | pr_info("smd_core_init() done\n"); |
| 996 | |
| 997 | return 0; |
| 998 | } |
| 999 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 1000 | static int __init msm_smd_probe(struct platform_device *pdev) |
| 1001 | { |
| 1002 | pr_info("smd_init()\n"); |
| 1003 | |
| 1004 | INIT_WORK(&probe_work, smd_channel_probe_worker); |
| 1005 | |
| 1006 | if (smd_core_init()) { |
| 1007 | pr_err("smd_core_init() failed\n"); |
| 1008 | return -1; |
| 1009 | } |
| 1010 | |
| 1011 | do_smd_probe(); |
| 1012 | |
| 1013 | msm_check_for_modem_crash = check_for_modem_crash; |
| 1014 | |
Iliyan Malchev | 1207bab | 2009-11-15 18:16:43 -0800 | [diff] [blame] | 1015 | msm_init_last_radio_log(THIS_MODULE); |
| 1016 | |
Brian Swetland | 2eb44eb | 2008-09-29 16:00:48 -0700 | [diff] [blame] | 1017 | smd_initialized = 1; |
| 1018 | |
| 1019 | return 0; |
| 1020 | } |
| 1021 | |
| 1022 | static struct platform_driver msm_smd_driver = { |
| 1023 | .probe = msm_smd_probe, |
| 1024 | .driver = { |
| 1025 | .name = MODULE_NAME, |
| 1026 | .owner = THIS_MODULE, |
| 1027 | }, |
| 1028 | }; |
| 1029 | |
| 1030 | static int __init msm_smd_init(void) |
| 1031 | { |
| 1032 | return platform_driver_register(&msm_smd_driver); |
| 1033 | } |
| 1034 | |
| 1035 | module_init(msm_smd_init); |
| 1036 | |
| 1037 | MODULE_DESCRIPTION("MSM Shared Memory Core"); |
| 1038 | MODULE_AUTHOR("Brian Swetland <swetland@google.com>"); |
| 1039 | MODULE_LICENSE("GPL"); |