1 /* arch/arm/mach-msm/smd.c
3 * Copyright (C) 2007 Google, Inc.
4 * Author: Brian Swetland <swetland@google.com>
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.
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.
17 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19 #include <linux/platform_device.h>
20 #include <linux/module.h>
22 #include <linux/cdev.h>
23 #include <linux/device.h>
24 #include <linux/wait.h>
25 #include <linux/interrupt.h>
26 #include <linux/irq.h>
27 #include <linux/list.h>
28 #include <linux/slab.h>
29 #include <linux/debugfs.h>
30 #include <linux/delay.h>
32 #include <mach/msm_smd.h>
33 #include <mach/system.h>
35 #include "smd_private.h"
36 #include "proc_comm.h"
38 #if defined(CONFIG_ARCH_QSD8X50)
39 #define CONFIG_QDSP6 1
42 void (*msm_hw_reset_hook
)(void);
44 #define MODULE_NAME "msm_smd"
47 MSM_SMD_DEBUG
= 1U << 0,
48 MSM_SMSM_DEBUG
= 1U << 0,
51 static int msm_smd_debug_mask
;
58 static unsigned dummy_state
[SMSM_STATE_COUNT
];
60 static struct shared_info smd_info
= {
61 .state
= (unsigned) &dummy_state
,
64 module_param_named(debug_mask
, msm_smd_debug_mask
,
65 int, S_IRUGO
| S_IWUSR
| S_IWGRP
);
67 static unsigned last_heap_free
= 0xffffffff;
69 static inline void notify_other_smsm(void)
77 static inline void notify_modem_smd(void)
82 static inline void notify_dsp_smd(void)
87 static void smd_diag(void)
91 x
= smem_find(ID_DIAG_ERR_MSG
, SZ_DIAG_ERR_MSG
);
93 x
[SZ_DIAG_ERR_MSG
- 1] = 0;
94 pr_debug("DIAG '%s'\n", x
);
98 /* call when SMSM_RESET flag is set in the A9's smsm_state */
99 static void handle_modem_crash(void)
101 pr_err("ARM9 has CRASHED\n");
104 /* hard reboot if possible */
105 if (msm_hw_reset_hook
)
108 /* in this case the modem or watchdog should reboot us */
113 uint32_t raw_smsm_get_state(enum smsm_state_item item
)
115 return readl(smd_info
.state
+ item
* 4);
118 static int check_for_modem_crash(void)
120 if (raw_smsm_get_state(SMSM_STATE_MODEM
) & SMSM_RESET
) {
121 handle_modem_crash();
127 /* the spinlock is used to synchronize between the
128 * irq handler and code that mutates the channel
129 * list or fiddles with channel state
131 DEFINE_SPINLOCK(smd_lock
);
132 DEFINE_SPINLOCK(smem_lock
);
134 /* the mutex is used during open() and close()
135 * operations to avoid races while creating or
136 * destroying smd_channel structures
138 static DEFINE_MUTEX(smd_creation_mutex
);
140 static int smd_initialized
;
142 LIST_HEAD(smd_ch_closed_list
);
143 LIST_HEAD(smd_ch_list_modem
);
144 LIST_HEAD(smd_ch_list_dsp
);
146 static unsigned char smd_ch_allocated
[64];
147 static struct work_struct probe_work
;
149 /* how many bytes are available for reading */
150 static int smd_stream_read_avail(struct smd_channel
*ch
)
152 return (ch
->recv
->head
- ch
->recv
->tail
) & ch
->fifo_mask
;
155 /* how many bytes we are free to write */
156 static int smd_stream_write_avail(struct smd_channel
*ch
)
158 return ch
->fifo_mask
-
159 ((ch
->send
->head
- ch
->send
->tail
) & ch
->fifo_mask
);
162 static int smd_packet_read_avail(struct smd_channel
*ch
)
164 if (ch
->current_packet
) {
165 int n
= smd_stream_read_avail(ch
);
166 if (n
> ch
->current_packet
)
167 n
= ch
->current_packet
;
174 static int smd_packet_write_avail(struct smd_channel
*ch
)
176 int n
= smd_stream_write_avail(ch
);
177 return n
> SMD_HEADER_SIZE
? n
- SMD_HEADER_SIZE
: 0;
180 static int ch_is_open(struct smd_channel
*ch
)
182 return (ch
->recv
->state
== SMD_SS_OPENED
) &&
183 (ch
->send
->state
== SMD_SS_OPENED
);
186 /* provide a pointer and length to readable data in the fifo */
187 static unsigned ch_read_buffer(struct smd_channel
*ch
, void **ptr
)
189 unsigned head
= ch
->recv
->head
;
190 unsigned tail
= ch
->recv
->tail
;
191 *ptr
= (void *) (ch
->recv_data
+ tail
);
196 return ch
->fifo_size
- tail
;
199 /* advance the fifo read pointer after data from ch_read_buffer is consumed */
200 static void ch_read_done(struct smd_channel
*ch
, unsigned count
)
202 BUG_ON(count
> smd_stream_read_avail(ch
));
203 ch
->recv
->tail
= (ch
->recv
->tail
+ count
) & ch
->fifo_mask
;
207 /* basic read interface to ch_read_{buffer,done} used
208 * by smd_*_read() and update_packet_state()
209 * will read-and-discard if the _data pointer is null
211 static int ch_read(struct smd_channel
*ch
, void *_data
, int len
)
215 unsigned char *data
= _data
;
219 n
= ch_read_buffer(ch
, &ptr
);
226 memcpy(data
, ptr
, n
);
233 return orig_len
- len
;
236 static void update_stream_state(struct smd_channel
*ch
)
238 /* streams have no special state requiring updating */
241 static void update_packet_state(struct smd_channel
*ch
)
246 /* can't do anything if we're in the middle of a packet */
247 if (ch
->current_packet
!= 0)
250 /* don't bother unless we can get the full header */
251 if (smd_stream_read_avail(ch
) < SMD_HEADER_SIZE
)
254 r
= ch_read(ch
, hdr
, SMD_HEADER_SIZE
);
255 BUG_ON(r
!= SMD_HEADER_SIZE
);
257 ch
->current_packet
= hdr
[0];
260 /* provide a pointer and length to next free space in the fifo */
261 static unsigned ch_write_buffer(struct smd_channel
*ch
, void **ptr
)
263 unsigned head
= ch
->send
->head
;
264 unsigned tail
= ch
->send
->tail
;
265 *ptr
= (void *) (ch
->send_data
+ head
);
268 return tail
- head
- 1;
271 return ch
->fifo_size
- head
- 1;
273 return ch
->fifo_size
- head
;
277 /* advace the fifo write pointer after freespace
278 * from ch_write_buffer is filled
280 static void ch_write_done(struct smd_channel
*ch
, unsigned count
)
282 BUG_ON(count
> smd_stream_write_avail(ch
));
283 ch
->send
->head
= (ch
->send
->head
+ count
) & ch
->fifo_mask
;
287 static void ch_set_state(struct smd_channel
*ch
, unsigned n
)
289 if (n
== SMD_SS_OPENED
) {
299 ch
->send
->fSTATE
= 1;
300 ch
->notify_other_cpu();
303 static void do_smd_probe(void)
305 struct smem_shared
*shared
= (void *) MSM_SHARED_RAM_BASE
;
306 if (shared
->heap_info
.free_offset
!= last_heap_free
) {
307 last_heap_free
= shared
->heap_info
.free_offset
;
308 schedule_work(&probe_work
);
312 static void smd_state_change(struct smd_channel
*ch
,
313 unsigned last
, unsigned next
)
315 ch
->last_state
= next
;
317 pr_debug("ch %d %d -> %d\n", ch
->n
, last
, next
);
323 if (ch
->send
->state
!= SMD_SS_OPENED
)
324 ch_set_state(ch
, SMD_SS_OPENED
);
325 ch
->notify(ch
->priv
, SMD_EVENT_OPEN
);
327 case SMD_SS_FLUSHING
:
329 /* we should force them to close? */
331 ch
->notify(ch
->priv
, SMD_EVENT_CLOSE
);
335 static void handle_smd_irq(struct list_head
*list
, void (*notify
)(void))
338 struct smd_channel
*ch
;
343 spin_lock_irqsave(&smd_lock
, flags
);
344 list_for_each_entry(ch
, list
, ch_list
) {
346 if (ch_is_open(ch
)) {
347 if (ch
->recv
->fHEAD
) {
352 if (ch
->recv
->fTAIL
) {
357 if (ch
->recv
->fSTATE
) {
358 ch
->recv
->fSTATE
= 0;
363 tmp
= ch
->recv
->state
;
364 if (tmp
!= ch
->last_state
)
365 smd_state_change(ch
, ch
->last_state
, tmp
);
367 ch
->update_state(ch
);
368 ch
->notify(ch
->priv
, SMD_EVENT_DATA
);
373 spin_unlock_irqrestore(&smd_lock
, flags
);
377 static irqreturn_t
smd_modem_irq_handler(int irq
, void *data
)
379 handle_smd_irq(&smd_ch_list_modem
, notify_modem_smd
);
383 #if defined(CONFIG_QDSP6)
384 static irqreturn_t
smd_dsp_irq_handler(int irq
, void *data
)
386 handle_smd_irq(&smd_ch_list_dsp
, notify_dsp_smd
);
391 static void smd_fake_irq_handler(unsigned long arg
)
393 handle_smd_irq(&smd_ch_list_modem
, notify_modem_smd
);
394 handle_smd_irq(&smd_ch_list_dsp
, notify_dsp_smd
);
397 static DECLARE_TASKLET(smd_fake_irq_tasklet
, smd_fake_irq_handler
, 0);
399 static inline int smd_need_int(struct smd_channel
*ch
)
401 if (ch_is_open(ch
)) {
402 if (ch
->recv
->fHEAD
|| ch
->recv
->fTAIL
|| ch
->recv
->fSTATE
)
404 if (ch
->recv
->state
!= ch
->last_state
)
410 void smd_sleep_exit(void)
413 struct smd_channel
*ch
;
416 spin_lock_irqsave(&smd_lock
, flags
);
417 list_for_each_entry(ch
, &smd_ch_list_modem
, ch_list
) {
418 if (smd_need_int(ch
)) {
423 list_for_each_entry(ch
, &smd_ch_list_dsp
, ch_list
) {
424 if (smd_need_int(ch
)) {
429 spin_unlock_irqrestore(&smd_lock
, flags
);
433 if (msm_smd_debug_mask
& MSM_SMD_DEBUG
)
434 pr_info("smd_sleep_exit need interrupt\n");
435 tasklet_schedule(&smd_fake_irq_tasklet
);
440 void smd_kick(smd_channel_t
*ch
)
445 spin_lock_irqsave(&smd_lock
, flags
);
446 ch
->update_state(ch
);
447 tmp
= ch
->recv
->state
;
448 if (tmp
!= ch
->last_state
) {
449 ch
->last_state
= tmp
;
450 if (tmp
== SMD_SS_OPENED
)
451 ch
->notify(ch
->priv
, SMD_EVENT_OPEN
);
453 ch
->notify(ch
->priv
, SMD_EVENT_CLOSE
);
455 ch
->notify(ch
->priv
, SMD_EVENT_DATA
);
456 ch
->notify_other_cpu();
457 spin_unlock_irqrestore(&smd_lock
, flags
);
460 static int smd_is_packet(int chn
, unsigned type
)
462 type
&= SMD_KIND_MASK
;
463 if (type
== SMD_KIND_PACKET
)
465 if (type
== SMD_KIND_STREAM
)
468 /* older AMSS reports SMD_KIND_UNKNOWN always */
469 if ((chn
> 4) || (chn
== 1))
475 static int smd_stream_write(smd_channel_t
*ch
, const void *_data
, int len
)
478 const unsigned char *buf
= _data
;
485 while ((xfer
= ch_write_buffer(ch
, &ptr
)) != 0) {
490 memcpy(ptr
, buf
, xfer
);
491 ch_write_done(ch
, xfer
);
498 ch
->notify_other_cpu();
500 return orig_len
- len
;
503 static int smd_packet_write(smd_channel_t
*ch
, const void *_data
, int len
)
510 if (smd_stream_write_avail(ch
) < (len
+ SMD_HEADER_SIZE
))
514 hdr
[1] = hdr
[2] = hdr
[3] = hdr
[4] = 0;
516 smd_stream_write(ch
, hdr
, sizeof(hdr
));
517 smd_stream_write(ch
, _data
, len
);
522 static int smd_stream_read(smd_channel_t
*ch
, void *data
, int len
)
529 r
= ch_read(ch
, data
, len
);
531 ch
->notify_other_cpu();
536 static int smd_packet_read(smd_channel_t
*ch
, void *data
, int len
)
544 if (len
> ch
->current_packet
)
545 len
= ch
->current_packet
;
547 r
= ch_read(ch
, data
, len
);
549 ch
->notify_other_cpu();
551 spin_lock_irqsave(&smd_lock
, flags
);
552 ch
->current_packet
-= r
;
553 update_packet_state(ch
);
554 spin_unlock_irqrestore(&smd_lock
, flags
);
559 static int smd_alloc_channel(const char *name
, uint32_t cid
, uint32_t type
)
561 struct smd_channel
*ch
;
563 ch
= kzalloc(sizeof(struct smd_channel
), GFP_KERNEL
);
565 pr_err("smd_alloc_channel() out of memory\n");
570 if (_smd_alloc_channel(ch
)) {
575 ch
->fifo_mask
= ch
->fifo_size
- 1;
578 if ((type
& SMD_TYPE_MASK
) == SMD_TYPE_APPS_MODEM
)
579 ch
->notify_other_cpu
= notify_modem_smd
;
581 ch
->notify_other_cpu
= notify_dsp_smd
;
583 if (smd_is_packet(cid
, type
)) {
584 ch
->read
= smd_packet_read
;
585 ch
->write
= smd_packet_write
;
586 ch
->read_avail
= smd_packet_read_avail
;
587 ch
->write_avail
= smd_packet_write_avail
;
588 ch
->update_state
= update_packet_state
;
590 ch
->read
= smd_stream_read
;
591 ch
->write
= smd_stream_write
;
592 ch
->read_avail
= smd_stream_read_avail
;
593 ch
->write_avail
= smd_stream_write_avail
;
594 ch
->update_state
= update_stream_state
;
597 if ((type
& 0xff) == 0)
598 memcpy(ch
->name
, "SMD_", 4);
600 memcpy(ch
->name
, "DSP_", 4);
601 memcpy(ch
->name
+ 4, name
, 20);
603 ch
->pdev
.name
= ch
->name
;
606 pr_debug("smd_alloc_channel() cid=%02d size=%05d '%s'\n",
607 ch
->n
, ch
->fifo_size
, ch
->name
);
609 mutex_lock(&smd_creation_mutex
);
610 list_add(&ch
->ch_list
, &smd_ch_closed_list
);
611 mutex_unlock(&smd_creation_mutex
);
613 platform_device_register(&ch
->pdev
);
617 static void smd_channel_probe_worker(struct work_struct
*work
)
619 struct smd_alloc_elm
*shared
;
624 shared
= smem_find(ID_CH_ALLOC_TBL
, sizeof(*shared
) * 64);
626 pr_err("cannot find allocation table\n");
629 for (n
= 0; n
< 64; n
++) {
630 if (smd_ch_allocated
[n
])
632 if (!shared
[n
].ref_count
)
634 if (!shared
[n
].name
[0])
636 ctype
= shared
[n
].ctype
;
637 type
= ctype
& SMD_TYPE_MASK
;
639 /* DAL channels are stream but neither the modem,
640 * nor the DSP correctly indicate this. Fixup manually.
642 if (!memcmp(shared
[n
].name
, "DAL", 3))
643 ctype
= (ctype
& (~SMD_KIND_MASK
)) | SMD_KIND_STREAM
;
645 type
= shared
[n
].ctype
& SMD_TYPE_MASK
;
646 if ((type
== SMD_TYPE_APPS_MODEM
) ||
647 (type
== SMD_TYPE_APPS_DSP
))
648 if (!smd_alloc_channel(shared
[n
].name
, shared
[n
].cid
, ctype
))
649 smd_ch_allocated
[n
] = 1;
653 static void do_nothing_notify(void *priv
, unsigned flags
)
657 struct smd_channel
*smd_get_channel(const char *name
)
659 struct smd_channel
*ch
;
661 mutex_lock(&smd_creation_mutex
);
662 list_for_each_entry(ch
, &smd_ch_closed_list
, ch_list
) {
663 if (!strcmp(name
, ch
->name
)) {
664 list_del(&ch
->ch_list
);
665 mutex_unlock(&smd_creation_mutex
);
669 mutex_unlock(&smd_creation_mutex
);
674 int smd_open(const char *name
, smd_channel_t
**_ch
,
675 void *priv
, void (*notify
)(void *, unsigned))
677 struct smd_channel
*ch
;
680 if (smd_initialized
== 0) {
681 pr_info("smd_open() before smd_init()\n");
685 ch
= smd_get_channel(name
);
690 notify
= do_nothing_notify
;
693 ch
->current_packet
= 0;
694 ch
->last_state
= SMD_SS_CLOSED
;
699 spin_lock_irqsave(&smd_lock
, flags
);
701 if ((ch
->type
& SMD_TYPE_MASK
) == SMD_TYPE_APPS_MODEM
)
702 list_add(&ch
->ch_list
, &smd_ch_list_modem
);
704 list_add(&ch
->ch_list
, &smd_ch_list_dsp
);
706 /* If the remote side is CLOSING, we need to get it to
707 * move to OPENING (which we'll do by moving from CLOSED to
708 * OPENING) and then get it to move from OPENING to
709 * OPENED (by doing the same state change ourselves).
711 * Otherwise, it should be OPENING and we can move directly
712 * to OPENED so that it will follow.
714 if (ch
->recv
->state
== SMD_SS_CLOSING
) {
716 ch_set_state(ch
, SMD_SS_OPENING
);
718 ch_set_state(ch
, SMD_SS_OPENED
);
720 spin_unlock_irqrestore(&smd_lock
, flags
);
726 int smd_close(smd_channel_t
*ch
)
733 spin_lock_irqsave(&smd_lock
, flags
);
734 ch
->notify
= do_nothing_notify
;
735 list_del(&ch
->ch_list
);
736 ch_set_state(ch
, SMD_SS_CLOSED
);
737 spin_unlock_irqrestore(&smd_lock
, flags
);
739 mutex_lock(&smd_creation_mutex
);
740 list_add(&ch
->ch_list
, &smd_ch_closed_list
);
741 mutex_unlock(&smd_creation_mutex
);
746 int smd_read(smd_channel_t
*ch
, void *data
, int len
)
748 return ch
->read(ch
, data
, len
);
751 int smd_write(smd_channel_t
*ch
, const void *data
, int len
)
753 return ch
->write(ch
, data
, len
);
756 int smd_write_atomic(smd_channel_t
*ch
, const void *data
, int len
)
760 spin_lock_irqsave(&smd_lock
, flags
);
761 res
= ch
->write(ch
, data
, len
);
762 spin_unlock_irqrestore(&smd_lock
, flags
);
766 int smd_read_avail(smd_channel_t
*ch
)
768 return ch
->read_avail(ch
);
771 int smd_write_avail(smd_channel_t
*ch
)
773 return ch
->write_avail(ch
);
776 int smd_wait_until_readable(smd_channel_t
*ch
, int bytes
)
781 int smd_wait_until_writable(smd_channel_t
*ch
, int bytes
)
786 int smd_cur_packet_size(smd_channel_t
*ch
)
788 return ch
->current_packet
;
792 /* ------------------------------------------------------------------------- */
794 void *smem_alloc(unsigned id
, unsigned size
)
796 return smem_find(id
, size
);
799 void *smem_item(unsigned id
, unsigned *size
)
801 struct smem_shared
*shared
= (void *) MSM_SHARED_RAM_BASE
;
802 struct smem_heap_entry
*toc
= shared
->heap_toc
;
804 if (id
>= SMEM_NUM_ITEMS
)
807 if (toc
[id
].allocated
) {
808 *size
= toc
[id
].size
;
809 return (void *) (MSM_SHARED_RAM_BASE
+ toc
[id
].offset
);
817 void *smem_find(unsigned id
, unsigned size_in
)
822 ptr
= smem_item(id
, &size
);
826 size_in
= ALIGN(size_in
, 8);
827 if (size_in
!= size
) {
828 pr_err("smem_find(%d, %d): wrong size %d\n",
836 static irqreturn_t
smsm_irq_handler(int irq
, void *data
)
841 spin_lock_irqsave(&smem_lock
, flags
);
843 apps
= raw_smsm_get_state(SMSM_STATE_APPS
);
844 modm
= raw_smsm_get_state(SMSM_STATE_MODEM
);
846 if (msm_smd_debug_mask
& MSM_SMSM_DEBUG
)
847 pr_info("<SM %08x %08x>\n", apps
, modm
);
848 if (modm
& SMSM_RESET
)
849 handle_modem_crash();
853 spin_unlock_irqrestore(&smem_lock
, flags
);
857 int smsm_change_state(enum smsm_state_item item
,
858 uint32_t clear_mask
, uint32_t set_mask
)
860 unsigned long addr
= smd_info
.state
+ item
* 4;
867 spin_lock_irqsave(&smem_lock
, flags
);
869 if (raw_smsm_get_state(SMSM_STATE_MODEM
) & SMSM_RESET
)
870 handle_modem_crash();
872 state
= (readl(addr
) & ~clear_mask
) | set_mask
;
875 if (msm_smd_debug_mask
& MSM_SMSM_DEBUG
)
876 pr_info("smsm_change_state %d %x\n", item
, state
);
879 spin_unlock_irqrestore(&smem_lock
, flags
);
884 uint32_t smsm_get_state(enum smsm_state_item item
)
889 spin_lock_irqsave(&smem_lock
, flags
);
891 rv
= readl(smd_info
.state
+ item
* 4);
893 if (item
== SMSM_STATE_MODEM
&& (rv
& SMSM_RESET
))
894 handle_modem_crash();
896 spin_unlock_irqrestore(&smem_lock
, flags
);
901 #ifdef CONFIG_ARCH_MSM_SCORPION
903 int smsm_set_sleep_duration(uint32_t delay
)
905 struct msm_dem_slave_data
*ptr
;
907 ptr
= smem_find(SMEM_APPS_DEM_SLAVE_DATA
, sizeof(*ptr
));
909 pr_err("smsm_set_sleep_duration <SM NO APPS_DEM_SLAVE_DATA>\n");
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
;
921 int smsm_set_sleep_duration(uint32_t delay
)
925 ptr
= smem_find(SMEM_SMSM_SLEEP_DELAY
, sizeof(*ptr
));
927 pr_err("smsm_set_sleep_duration <SM NO SLEEP_DELAY>\n");
930 if (msm_smd_debug_mask
& MSM_SMSM_DEBUG
)
931 pr_info("smsm_set_sleep_duration %d -> %d\n",
939 int smd_core_init(void)
943 /* wait for essential items to be initialized */
947 state
= smem_item(SMEM_SMSM_SHARED_STATE
, &size
);
948 if (size
== SMSM_V1_SIZE
|| size
== SMSM_V2_SIZE
) {
949 smd_info
.state
= (unsigned)state
;
956 r
= request_irq(INT_A9_M2A_0
, smd_modem_irq_handler
,
957 IRQF_TRIGGER_RISING
, "smd_dev", 0);
960 r
= enable_irq_wake(INT_A9_M2A_0
);
962 pr_err("smd_core_init: enable_irq_wake failed for A9_M2A_0\n");
964 r
= request_irq(INT_A9_M2A_5
, smsm_irq_handler
,
965 IRQF_TRIGGER_RISING
, "smsm_dev", 0);
967 free_irq(INT_A9_M2A_0
, 0);
970 r
= enable_irq_wake(INT_A9_M2A_5
);
972 pr_err("smd_core_init: enable_irq_wake failed for A9_M2A_5\n");
974 #if defined(CONFIG_QDSP6)
975 r
= request_irq(INT_ADSP_A11
, smd_dsp_irq_handler
,
976 IRQF_TRIGGER_RISING
, "smd_dsp", 0);
978 free_irq(INT_A9_M2A_0
, 0);
979 free_irq(INT_A9_M2A_5
, 0);
984 /* check for any SMD channels that may already exist */
987 /* indicate that we're up and running */
988 smsm_change_state(SMSM_STATE_APPS
,
989 ~0, SMSM_INIT
| SMSM_SMDINIT
| SMSM_RPCINIT
| SMSM_RUN
);
990 #ifdef CONFIG_ARCH_MSM_SCORPION
991 smsm_change_state(SMSM_STATE_APPS_DEM
, ~0, 0);
997 static int __devinit
msm_smd_probe(struct platform_device
*pdev
)
1000 * If we haven't waited for the ARM9 to boot up till now,
1001 * then we need to wait here. Otherwise this should just
1002 * return immediately.
1004 proc_comm_boot_wait();
1006 INIT_WORK(&probe_work
, smd_channel_probe_worker
);
1008 if (smd_core_init()) {
1009 pr_err("smd_core_init() failed\n");
1015 msm_check_for_modem_crash
= check_for_modem_crash
;
1017 msm_init_last_radio_log(THIS_MODULE
);
1019 smd_initialized
= 1;
1024 static struct platform_driver msm_smd_driver
= {
1025 .probe
= msm_smd_probe
,
1027 .name
= MODULE_NAME
,
1028 .owner
= THIS_MODULE
,
1032 static int __init
msm_smd_init(void)
1034 return platform_driver_register(&msm_smd_driver
);
1037 module_init(msm_smd_init
);
1039 MODULE_DESCRIPTION("MSM Shared Memory Core");
1040 MODULE_AUTHOR("Brian Swetland <swetland@google.com>");
1041 MODULE_LICENSE("GPL");