blob: 459b319a9faddc43ee46e3baf4eb2f4cd1367cfc [file] [log] [blame]
Hiroshi DOYU340a6142006-12-07 15:43:59 -08001/*
2 * OMAP mailbox driver
3 *
Hiroshi DOYUf48cca82009-03-23 18:07:24 -07004 * Copyright (C) 2006-2009 Nokia Corporation. All rights reserved.
Hiroshi DOYU340a6142006-12-07 15:43:59 -08005 *
Hiroshi DOYUf48cca82009-03-23 18:07:24 -07006 * Contact: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
Hiroshi DOYU340a6142006-12-07 15:43:59 -08007 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 *
22 */
23
Hiroshi DOYU340a6142006-12-07 15:43:59 -080024#include <linux/interrupt.h>
Felipe Contrerasb3e69142010-06-11 15:51:49 +000025#include <linux/spinlock.h>
26#include <linux/mutex.h>
Hiroshi DOYU340a6142006-12-07 15:43:59 -080027#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +000029#include <linux/kfifo.h>
30#include <linux/err.h>
Kanigeri, Hari58256302010-11-29 20:24:14 +000031#include <linux/notifier.h>
Hiroshi DOYU8dff0fa2009-03-23 18:07:32 -070032
Tony Lindgrence491cf2009-10-20 09:40:47 -070033#include <plat/mailbox.h>
Hiroshi DOYU340a6142006-12-07 15:43:59 -080034
Rob Clark8250a5c2010-01-04 19:22:03 +053035static struct workqueue_struct *mboxd;
Felipe Contreras9c80c8c2010-06-11 15:51:46 +000036static struct omap_mbox **mboxes;
Hiroshi DOYU340a6142006-12-07 15:43:59 -080037
C A Subramaniam5f00ec62009-11-22 10:11:22 -080038static int mbox_configured;
Hiroshi DOYU72b917e2010-02-18 00:48:55 -060039static DEFINE_MUTEX(mbox_configured_lock);
C A Subramaniam5f00ec62009-11-22 10:11:22 -080040
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +000041static unsigned int mbox_kfifo_size = CONFIG_OMAP_MBOX_KFIFO_SIZE;
42module_param(mbox_kfifo_size, uint, S_IRUGO);
43MODULE_PARM_DESC(mbox_kfifo_size, "Size of omap's mailbox kfifo (bytes)");
44
Hiroshi DOYU9ae0ee02009-03-23 18:07:26 -070045/* Mailbox FIFO handle functions */
46static inline mbox_msg_t mbox_fifo_read(struct omap_mbox *mbox)
47{
48 return mbox->ops->fifo_read(mbox);
49}
50static inline void mbox_fifo_write(struct omap_mbox *mbox, mbox_msg_t msg)
51{
52 mbox->ops->fifo_write(mbox, msg);
53}
54static inline int mbox_fifo_empty(struct omap_mbox *mbox)
55{
56 return mbox->ops->fifo_empty(mbox);
57}
58static inline int mbox_fifo_full(struct omap_mbox *mbox)
59{
60 return mbox->ops->fifo_full(mbox);
61}
62
63/* Mailbox IRQ handle functions */
Hiroshi DOYU9ae0ee02009-03-23 18:07:26 -070064static inline void ack_mbox_irq(struct omap_mbox *mbox, omap_mbox_irq_t irq)
65{
66 if (mbox->ops->ack_irq)
67 mbox->ops->ack_irq(mbox, irq);
68}
69static inline int is_mbox_irq(struct omap_mbox *mbox, omap_mbox_irq_t irq)
70{
71 return mbox->ops->is_irq(mbox, irq);
72}
73
Hiroshi DOYU340a6142006-12-07 15:43:59 -080074/*
75 * message sender
76 */
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +000077static int __mbox_poll_for_space(struct omap_mbox *mbox)
Hiroshi DOYU340a6142006-12-07 15:43:59 -080078{
79 int ret = 0, i = 1000;
80
81 while (mbox_fifo_full(mbox)) {
82 if (mbox->ops->type == OMAP_MBOX_TYPE2)
83 return -1;
84 if (--i == 0)
85 return -1;
86 udelay(1);
87 }
Hiroshi DOYU340a6142006-12-07 15:43:59 -080088 return ret;
89}
90
C A Subramaniamb2b63622009-11-22 10:11:20 -080091int omap_mbox_msg_send(struct omap_mbox *mbox, mbox_msg_t msg)
Hiroshi DOYU340a6142006-12-07 15:43:59 -080092{
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +000093 struct omap_mbox_queue *mq = mbox->txq;
94 int ret = 0, len;
C A Subramaniam5ed8d322009-11-22 10:11:24 -080095
Kanigeri, Haria42743c22010-11-29 20:24:13 +000096 spin_lock_bh(&mq->lock);
Tejun Heoec247512009-04-23 11:05:20 +090097
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +000098 if (kfifo_avail(&mq->fifo) < sizeof(msg)) {
99 ret = -ENOMEM;
100 goto out;
101 }
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800102
Kanigeri, Haria42743c22010-11-29 20:24:13 +0000103 if (kfifo_is_empty(&mq->fifo) && !__mbox_poll_for_space(mbox)) {
104 mbox_fifo_write(mbox, msg);
105 goto out;
106 }
107
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000108 len = kfifo_in(&mq->fifo, (unsigned char *)&msg, sizeof(msg));
109 WARN_ON(len != sizeof(msg));
110
C A Subramaniam5ed8d322009-11-22 10:11:24 -0800111 tasklet_schedule(&mbox->txq->tasklet);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800112
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000113out:
Kanigeri, Haria42743c22010-11-29 20:24:13 +0000114 spin_unlock_bh(&mq->lock);
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000115 return ret;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800116}
117EXPORT_SYMBOL(omap_mbox_msg_send);
118
C A Subramaniam5ed8d322009-11-22 10:11:24 -0800119static void mbox_tx_tasklet(unsigned long tx_data)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800120{
C A Subramaniam5ed8d322009-11-22 10:11:24 -0800121 struct omap_mbox *mbox = (struct omap_mbox *)tx_data;
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000122 struct omap_mbox_queue *mq = mbox->txq;
123 mbox_msg_t msg;
124 int ret;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800125
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000126 while (kfifo_len(&mq->fifo)) {
127 if (__mbox_poll_for_space(mbox)) {
Hiroshi DOYUeb188582009-11-22 10:11:22 -0800128 omap_mbox_enable_irq(mbox, IRQ_TX);
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000129 break;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800130 }
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000131
132 ret = kfifo_out(&mq->fifo, (unsigned char *)&msg,
133 sizeof(msg));
134 WARN_ON(ret != sizeof(msg));
135
136 mbox_fifo_write(mbox, msg);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800137 }
138}
139
140/*
141 * Message receiver(workqueue)
142 */
143static void mbox_rx_work(struct work_struct *work)
144{
145 struct omap_mbox_queue *mq =
146 container_of(work, struct omap_mbox_queue, work);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800147 mbox_msg_t msg;
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000148 int len;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800149
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000150 while (kfifo_len(&mq->fifo) >= sizeof(msg)) {
151 len = kfifo_out(&mq->fifo, (unsigned char *)&msg, sizeof(msg));
152 WARN_ON(len != sizeof(msg));
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800153
Kanigeri, Hari58256302010-11-29 20:24:14 +0000154 blocking_notifier_call_chain(&mq->mbox->notifier, len,
155 (void *)msg);
Fernando Guzman Lugod2295042010-11-29 20:24:11 +0000156 spin_lock_irq(&mq->lock);
157 if (mq->full) {
158 mq->full = false;
159 omap_mbox_enable_irq(mq->mbox, IRQ_RX);
160 }
161 spin_unlock_irq(&mq->lock);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800162 }
163}
164
165/*
166 * Mailbox interrupt handler
167 */
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800168static void __mbox_tx_interrupt(struct omap_mbox *mbox)
169{
Hiroshi DOYUeb188582009-11-22 10:11:22 -0800170 omap_mbox_disable_irq(mbox, IRQ_TX);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800171 ack_mbox_irq(mbox, IRQ_TX);
C A Subramaniam5ed8d322009-11-22 10:11:24 -0800172 tasklet_schedule(&mbox->txq->tasklet);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800173}
174
175static void __mbox_rx_interrupt(struct omap_mbox *mbox)
176{
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000177 struct omap_mbox_queue *mq = mbox->rxq;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800178 mbox_msg_t msg;
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000179 int len;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800180
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800181 while (!mbox_fifo_empty(mbox)) {
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000182 if (unlikely(kfifo_avail(&mq->fifo) < sizeof(msg))) {
Fernando Guzman Lugo1ea5d6d2010-02-08 13:35:40 -0600183 omap_mbox_disable_irq(mbox, IRQ_RX);
Fernando Guzman Lugod2295042010-11-29 20:24:11 +0000184 mq->full = true;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800185 goto nomem;
Fernando Guzman Lugo1ea5d6d2010-02-08 13:35:40 -0600186 }
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800187
188 msg = mbox_fifo_read(mbox);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800189
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000190 len = kfifo_in(&mq->fifo, (unsigned char *)&msg, sizeof(msg));
191 WARN_ON(len != sizeof(msg));
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800192
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800193 if (mbox->ops->type == OMAP_MBOX_TYPE1)
194 break;
195 }
196
197 /* no more messages in the fifo. clear IRQ source. */
198 ack_mbox_irq(mbox, IRQ_RX);
Hiroshi DOYUf48cca82009-03-23 18:07:24 -0700199nomem:
Rob Clark8250a5c2010-01-04 19:22:03 +0530200 queue_work(mboxd, &mbox->rxq->work);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800201}
202
203static irqreturn_t mbox_interrupt(int irq, void *p)
204{
Jeff Garzik2a7057e2007-10-26 05:40:22 -0400205 struct omap_mbox *mbox = p;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800206
207 if (is_mbox_irq(mbox, IRQ_TX))
208 __mbox_tx_interrupt(mbox);
209
210 if (is_mbox_irq(mbox, IRQ_RX))
211 __mbox_rx_interrupt(mbox);
212
213 return IRQ_HANDLED;
214}
215
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800216static struct omap_mbox_queue *mbox_queue_alloc(struct omap_mbox *mbox,
C A Subramaniam5ed8d322009-11-22 10:11:24 -0800217 void (*work) (struct work_struct *),
218 void (*tasklet)(unsigned long))
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800219{
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800220 struct omap_mbox_queue *mq;
221
222 mq = kzalloc(sizeof(struct omap_mbox_queue), GFP_KERNEL);
223 if (!mq)
224 return NULL;
225
226 spin_lock_init(&mq->lock);
227
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000228 if (kfifo_alloc(&mq->fifo, mbox_kfifo_size, GFP_KERNEL))
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800229 goto error;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800230
C A Subramaniam5ed8d322009-11-22 10:11:24 -0800231 if (work)
232 INIT_WORK(&mq->work, work);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800233
C A Subramaniam5ed8d322009-11-22 10:11:24 -0800234 if (tasklet)
235 tasklet_init(&mq->tasklet, tasklet, (unsigned long)mbox);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800236 return mq;
237error:
238 kfree(mq);
239 return NULL;
240}
241
242static void mbox_queue_free(struct omap_mbox_queue *q)
243{
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000244 kfifo_free(&q->fifo);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800245 kfree(q);
246}
247
Hiroshi DOYUc7c158e2009-11-22 10:11:19 -0800248static int omap_mbox_startup(struct omap_mbox *mbox)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800249{
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800250 int ret = 0;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800251 struct omap_mbox_queue *mq;
252
Kanigeri, Hari58256302010-11-29 20:24:14 +0000253 mutex_lock(&mbox_configured_lock);
254 if (!mbox_configured++) {
255 if (likely(mbox->ops->startup)) {
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800256 ret = mbox->ops->startup(mbox);
Kanigeri, Hari58256302010-11-29 20:24:14 +0000257 if (unlikely(ret))
258 goto fail_startup;
259 } else
260 goto fail_startup;
261 }
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800262
Kanigeri, Hari58256302010-11-29 20:24:14 +0000263 if (!mbox->use_count++) {
264 ret = request_irq(mbox->irq, mbox_interrupt, IRQF_SHARED,
265 mbox->name, mbox);
266 if (unlikely(ret)) {
267 pr_err("failed to register mailbox interrupt:%d\n",
268 ret);
269 goto fail_request_irq;
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800270 }
Kanigeri, Hari58256302010-11-29 20:24:14 +0000271 mq = mbox_queue_alloc(mbox, NULL, mbox_tx_tasklet);
272 if (!mq) {
273 ret = -ENOMEM;
274 goto fail_alloc_txq;
275 }
276 mbox->txq = mq;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800277
Kanigeri, Hari58256302010-11-29 20:24:14 +0000278 mq = mbox_queue_alloc(mbox, mbox_rx_work, NULL);
279 if (!mq) {
280 ret = -ENOMEM;
281 goto fail_alloc_rxq;
282 }
283 mbox->rxq = mq;
284 mq->mbox = mbox;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800285 }
Kanigeri, Hari58256302010-11-29 20:24:14 +0000286 mutex_unlock(&mbox_configured_lock);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800287 return 0;
288
Kanigeri, Hariab66ac32010-11-29 20:24:12 +0000289fail_alloc_rxq:
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800290 mbox_queue_free(mbox->txq);
Kanigeri, Hariab66ac32010-11-29 20:24:12 +0000291fail_alloc_txq:
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800292 free_irq(mbox->irq, mbox);
Kanigeri, Hariab66ac32010-11-29 20:24:12 +0000293fail_request_irq:
Ohad Ben-Cohen01072d82010-05-05 15:33:08 +0000294 if (mbox->ops->shutdown)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800295 mbox->ops->shutdown(mbox);
Kanigeri, Hari58256302010-11-29 20:24:14 +0000296 mbox->use_count--;
297fail_startup:
298 mbox_configured--;
299 mutex_unlock(&mbox_configured_lock);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800300 return ret;
301}
302
303static void omap_mbox_fini(struct omap_mbox *mbox)
304{
Kanigeri, Hari58256302010-11-29 20:24:14 +0000305 mutex_lock(&mbox_configured_lock);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800306
Kanigeri, Hari58256302010-11-29 20:24:14 +0000307 if (!--mbox->use_count) {
308 free_irq(mbox->irq, mbox);
309 tasklet_kill(&mbox->txq->tasklet);
310 flush_work(&mbox->rxq->work);
311 mbox_queue_free(mbox->txq);
312 mbox_queue_free(mbox->rxq);
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800313 }
Kanigeri, Hari58256302010-11-29 20:24:14 +0000314
315 if (likely(mbox->ops->shutdown)) {
316 if (!--mbox_configured)
317 mbox->ops->shutdown(mbox);
318 }
319
320 mutex_unlock(&mbox_configured_lock);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800321}
322
Kanigeri, Hari58256302010-11-29 20:24:14 +0000323struct omap_mbox *omap_mbox_get(const char *name, struct notifier_block *nb)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800324{
325 struct omap_mbox *mbox;
326 int ret;
327
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000328 if (!mboxes)
329 return ERR_PTR(-EINVAL);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800330
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000331 for (mbox = *mboxes; mbox; mbox++)
332 if (!strcmp(mbox->name, name))
333 break;
334
335 if (!mbox)
336 return ERR_PTR(-ENOENT);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800337
Hiroshi DOYUc7c158e2009-11-22 10:11:19 -0800338 ret = omap_mbox_startup(mbox);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800339 if (ret)
340 return ERR_PTR(-ENODEV);
341
Kanigeri, Hari58256302010-11-29 20:24:14 +0000342 if (nb)
343 blocking_notifier_chain_register(&mbox->notifier, nb);
344
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800345 return mbox;
346}
347EXPORT_SYMBOL(omap_mbox_get);
348
Kanigeri, Hari58256302010-11-29 20:24:14 +0000349void omap_mbox_put(struct omap_mbox *mbox, struct notifier_block *nb)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800350{
Kanigeri, Hari58256302010-11-29 20:24:14 +0000351 blocking_notifier_chain_unregister(&mbox->notifier, nb);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800352 omap_mbox_fini(mbox);
353}
354EXPORT_SYMBOL(omap_mbox_put);
355
Hiroshi DOYU6b233982010-05-18 16:15:32 +0300356static struct class omap_mbox_class = { .name = "mbox", };
357
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000358int omap_mbox_register(struct device *parent, struct omap_mbox **list)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800359{
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000360 int ret;
361 int i;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800362
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000363 mboxes = list;
364 if (!mboxes)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800365 return -EINVAL;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800366
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000367 for (i = 0; mboxes[i]; i++) {
368 struct omap_mbox *mbox = mboxes[i];
369 mbox->dev = device_create(&omap_mbox_class,
370 parent, 0, mbox, "%s", mbox->name);
371 if (IS_ERR(mbox->dev)) {
372 ret = PTR_ERR(mbox->dev);
373 goto err_out;
374 }
Kanigeri, Hari58256302010-11-29 20:24:14 +0000375
376 BLOCKING_INIT_NOTIFIER_HEAD(&mbox->notifier);
Hiroshi DOYUf48cca82009-03-23 18:07:24 -0700377 }
Hiroshi DOYUf48cca82009-03-23 18:07:24 -0700378 return 0;
379
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000380err_out:
381 while (i--)
382 device_unregister(mboxes[i]->dev);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800383 return ret;
384}
385EXPORT_SYMBOL(omap_mbox_register);
386
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000387int omap_mbox_unregister(void)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800388{
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000389 int i;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800390
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000391 if (!mboxes)
392 return -EINVAL;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800393
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000394 for (i = 0; mboxes[i]; i++)
395 device_unregister(mboxes[i]->dev);
396 mboxes = NULL;
397 return 0;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800398}
399EXPORT_SYMBOL(omap_mbox_unregister);
400
Hiroshi DOYUc7c158e2009-11-22 10:11:19 -0800401static int __init omap_mbox_init(void)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800402{
Hiroshi DOYU6b233982010-05-18 16:15:32 +0300403 int err;
404
405 err = class_register(&omap_mbox_class);
406 if (err)
407 return err;
408
Rob Clark8250a5c2010-01-04 19:22:03 +0530409 mboxd = create_workqueue("mboxd");
410 if (!mboxd)
411 return -ENOMEM;
412
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000413 /* kfifo size sanity check: alignment and minimal size */
414 mbox_kfifo_size = ALIGN(mbox_kfifo_size, sizeof(mbox_msg_t));
Kanigeri, Hariab66ac32010-11-29 20:24:12 +0000415 mbox_kfifo_size = max_t(unsigned int, mbox_kfifo_size,
416 sizeof(mbox_msg_t));
Ohad Ben-Cohenb5bebe42010-05-05 15:33:09 +0000417
Hiroshi DOYUc7c158e2009-11-22 10:11:19 -0800418 return 0;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800419}
Hiroshi DOYU6b233982010-05-18 16:15:32 +0300420subsys_initcall(omap_mbox_init);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800421
Hiroshi DOYUc7c158e2009-11-22 10:11:19 -0800422static void __exit omap_mbox_exit(void)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800423{
Rob Clark8250a5c2010-01-04 19:22:03 +0530424 destroy_workqueue(mboxd);
Hiroshi DOYU6b233982010-05-18 16:15:32 +0300425 class_unregister(&omap_mbox_class);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800426}
Hiroshi DOYUc7c158e2009-11-22 10:11:19 -0800427module_exit(omap_mbox_exit);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800428
Hiroshi DOYUf48cca82009-03-23 18:07:24 -0700429MODULE_LICENSE("GPL v2");
430MODULE_DESCRIPTION("omap mailbox: interrupt driven messaging");
Ohad Ben-Cohenf3753252010-05-05 15:33:07 +0000431MODULE_AUTHOR("Toshihiro Kobayashi");
432MODULE_AUTHOR("Hiroshi DOYU");