4 * Copyright (C) 2006-2009 Nokia Corporation. All rights reserved.
6 * Contact: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
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.
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.
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
24 #include <linux/module.h>
25 #include <linux/interrupt.h>
26 #include <linux/device.h>
27 #include <linux/delay.h>
29 #include <mach/mailbox.h>
31 static int enable_seq_bit;
32 module_param(enable_seq_bit, bool, 0);
33 MODULE_PARM_DESC(enable_seq_bit, "Enable sequence bit checking.");
35 static struct omap_mbox *mboxes;
36 static DEFINE_RWLOCK(mboxes_lock);
39 * Mailbox sequence bit API
42 /* seq_rcv should be initialized with any value other than
43 * 0 and 1 << 31, to allow either value for the first
45 static inline void mbox_seq_init(struct omap_mbox *mbox)
50 /* any value other than 0 and 1 << 31 */
51 mbox->seq_rcv = 0xffffffff;
54 static inline void mbox_seq_toggle(struct omap_mbox *mbox, mbox_msg_t * msg)
59 /* add seq_snd to msg */
60 *msg = (*msg & 0x7fffffff) | mbox->seq_snd;
62 mbox->seq_snd ^= 1 << 31;
65 static inline int mbox_seq_test(struct omap_mbox *mbox, mbox_msg_t msg)
72 seq = msg & (1 << 31);
73 if (seq == mbox->seq_rcv)
79 /* Mailbox FIFO handle functions */
80 static inline mbox_msg_t mbox_fifo_read(struct omap_mbox *mbox)
82 return mbox->ops->fifo_read(mbox);
84 static inline void mbox_fifo_write(struct omap_mbox *mbox, mbox_msg_t msg)
86 mbox->ops->fifo_write(mbox, msg);
88 static inline int mbox_fifo_empty(struct omap_mbox *mbox)
90 return mbox->ops->fifo_empty(mbox);
92 static inline int mbox_fifo_full(struct omap_mbox *mbox)
94 return mbox->ops->fifo_full(mbox);
97 /* Mailbox IRQ handle functions */
98 static inline void enable_mbox_irq(struct omap_mbox *mbox, omap_mbox_irq_t irq)
100 mbox->ops->enable_irq(mbox, irq);
102 static inline void disable_mbox_irq(struct omap_mbox *mbox, omap_mbox_irq_t irq)
104 mbox->ops->disable_irq(mbox, irq);
106 static inline void ack_mbox_irq(struct omap_mbox *mbox, omap_mbox_irq_t irq)
108 if (mbox->ops->ack_irq)
109 mbox->ops->ack_irq(mbox, irq);
111 static inline int is_mbox_irq(struct omap_mbox *mbox, omap_mbox_irq_t irq)
113 return mbox->ops->is_irq(mbox, irq);
116 /* Mailbox Sequence Bit function */
117 void omap_mbox_init_seq(struct omap_mbox *mbox)
121 EXPORT_SYMBOL(omap_mbox_init_seq);
126 static int __mbox_msg_send(struct omap_mbox *mbox, mbox_msg_t msg, void *arg)
128 int ret = 0, i = 1000;
130 while (mbox_fifo_full(mbox)) {
131 if (mbox->ops->type == OMAP_MBOX_TYPE2)
138 if (arg && mbox->txq->callback) {
139 ret = mbox->txq->callback(arg);
144 mbox_seq_toggle(mbox, &msg);
145 mbox_fifo_write(mbox, msg);
150 int omap_mbox_msg_send(struct omap_mbox *mbox, mbox_msg_t msg, void* arg)
153 struct request_queue *q = mbox->txq->queue;
156 rq = blk_get_request(q, WRITE, GFP_ATOMIC);
162 rq->data = (void *)msg;
163 blk_insert_request(q, rq, 0, arg);
165 schedule_work(&mbox->txq->work);
169 EXPORT_SYMBOL(omap_mbox_msg_send);
171 static void mbox_tx_work(struct work_struct *work)
175 struct omap_mbox_queue *mq = container_of(work,
176 struct omap_mbox_queue, work);
177 struct omap_mbox *mbox = mq->queue->queuedata;
178 struct request_queue *q = mbox->txq->queue;
181 spin_lock(q->queue_lock);
182 rq = elv_next_request(q);
183 spin_unlock(q->queue_lock);
188 ret = __mbox_msg_send(mbox, (mbox_msg_t) rq->data, rq->special);
190 enable_mbox_irq(mbox, IRQ_TX);
194 spin_lock(q->queue_lock);
195 if (__blk_end_request(rq, 0, 0))
197 spin_unlock(q->queue_lock);
202 * Message receiver(workqueue)
204 static void mbox_rx_work(struct work_struct *work)
206 struct omap_mbox_queue *mq =
207 container_of(work, struct omap_mbox_queue, work);
208 struct omap_mbox *mbox = mq->queue->queuedata;
209 struct request_queue *q = mbox->rxq->queue;
214 if (mbox->rxq->callback == NULL) {
215 sysfs_notify(&mbox->dev->kobj, NULL, "mbox");
220 spin_lock_irqsave(q->queue_lock, flags);
221 rq = elv_next_request(q);
222 spin_unlock_irqrestore(q->queue_lock, flags);
226 msg = (mbox_msg_t) rq->data;
228 if (blk_end_request(rq, 0, 0))
231 mbox->rxq->callback((void *)msg);
236 * Mailbox interrupt handler
238 static void mbox_txq_fn(struct request_queue * q)
242 static void mbox_rxq_fn(struct request_queue * q)
246 static void __mbox_tx_interrupt(struct omap_mbox *mbox)
248 disable_mbox_irq(mbox, IRQ_TX);
249 ack_mbox_irq(mbox, IRQ_TX);
250 schedule_work(&mbox->txq->work);
253 static void __mbox_rx_interrupt(struct omap_mbox *mbox)
257 struct request_queue *q = mbox->rxq->queue;
259 disable_mbox_irq(mbox, IRQ_RX);
261 while (!mbox_fifo_empty(mbox)) {
262 rq = blk_get_request(q, WRITE, GFP_ATOMIC);
266 msg = mbox_fifo_read(mbox);
267 rq->data = (void *)msg;
269 if (unlikely(mbox_seq_test(mbox, msg))) {
270 pr_info("mbox: Illegal seq bit!(%08x)\n", msg);
271 if (mbox->err_notify)
275 blk_insert_request(q, rq, 0, NULL);
276 if (mbox->ops->type == OMAP_MBOX_TYPE1)
280 /* no more messages in the fifo. clear IRQ source. */
281 ack_mbox_irq(mbox, IRQ_RX);
282 enable_mbox_irq(mbox, IRQ_RX);
284 schedule_work(&mbox->rxq->work);
287 static irqreturn_t mbox_interrupt(int irq, void *p)
289 struct omap_mbox *mbox = p;
291 if (is_mbox_irq(mbox, IRQ_TX))
292 __mbox_tx_interrupt(mbox);
294 if (is_mbox_irq(mbox, IRQ_RX))
295 __mbox_rx_interrupt(mbox);
304 omap_mbox_write(struct device *dev, struct device_attribute *attr,
305 const char * buf, size_t count)
308 mbox_msg_t *p = (mbox_msg_t *)buf;
309 struct omap_mbox *mbox = dev_get_drvdata(dev);
311 for (; count >= sizeof(mbox_msg_t); count -= sizeof(mbox_msg_t)) {
312 ret = omap_mbox_msg_send(mbox, be32_to_cpu(*p), NULL);
318 return (size_t)((char *)p - buf);
322 omap_mbox_read(struct device *dev, struct device_attribute *attr, char *buf)
326 mbox_msg_t *p = (mbox_msg_t *) buf;
327 struct omap_mbox *mbox = dev_get_drvdata(dev);
328 struct request_queue *q = mbox->rxq->queue;
331 spin_lock_irqsave(q->queue_lock, flags);
332 rq = elv_next_request(q);
333 spin_unlock_irqrestore(q->queue_lock, flags);
338 *p = (mbox_msg_t) rq->data;
340 if (blk_end_request(rq, 0, 0))
343 if (unlikely(mbox_seq_test(mbox, *p))) {
344 pr_info("mbox: Illegal seq bit!(%08x) ignored\n", *p);
350 pr_debug("%02x %02x %02x %02x\n", buf[0], buf[1], buf[2], buf[3]);
352 return (size_t) ((char *)p - buf);
355 static DEVICE_ATTR(mbox, S_IRUGO | S_IWUSR, omap_mbox_read, omap_mbox_write);
357 static ssize_t mbox_show(struct class *class, char *buf)
359 return sprintf(buf, "mbox");
362 static CLASS_ATTR(mbox, S_IRUGO, mbox_show, NULL);
364 static struct class omap_mbox_class = {
365 .name = "omap-mailbox",
368 static struct omap_mbox_queue *mbox_queue_alloc(struct omap_mbox *mbox,
369 request_fn_proc * proc,
370 void (*work) (struct work_struct *))
372 struct request_queue *q;
373 struct omap_mbox_queue *mq;
375 mq = kzalloc(sizeof(struct omap_mbox_queue), GFP_KERNEL);
379 spin_lock_init(&mq->lock);
381 q = blk_init_queue(proc, &mq->lock);
387 INIT_WORK(&mq->work, work);
395 static void mbox_queue_free(struct omap_mbox_queue *q)
397 blk_cleanup_queue(q->queue);
401 static int omap_mbox_init(struct omap_mbox *mbox)
404 struct omap_mbox_queue *mq;
406 if (likely(mbox->ops->startup)) {
407 ret = mbox->ops->startup(mbox);
412 ret = request_irq(mbox->irq, mbox_interrupt, IRQF_DISABLED,
416 "failed to register mailbox interrupt:%d\n", ret);
417 goto fail_request_irq;
420 mq = mbox_queue_alloc(mbox, mbox_txq_fn, mbox_tx_work);
427 mq = mbox_queue_alloc(mbox, mbox_rxq_fn, mbox_rx_work);
437 mbox_queue_free(mbox->txq);
439 free_irq(mbox->irq, mbox);
441 if (unlikely(mbox->ops->shutdown))
442 mbox->ops->shutdown(mbox);
447 static void omap_mbox_fini(struct omap_mbox *mbox)
449 mbox_queue_free(mbox->txq);
450 mbox_queue_free(mbox->rxq);
452 free_irq(mbox->irq, mbox);
454 if (unlikely(mbox->ops->shutdown))
455 mbox->ops->shutdown(mbox);
458 static struct omap_mbox **find_mboxes(const char *name)
460 struct omap_mbox **p;
462 for (p = &mboxes; *p; p = &(*p)->next) {
463 if (strcmp((*p)->name, name) == 0)
470 struct omap_mbox *omap_mbox_get(const char *name)
472 struct omap_mbox *mbox;
475 read_lock(&mboxes_lock);
476 mbox = *(find_mboxes(name));
478 read_unlock(&mboxes_lock);
479 return ERR_PTR(-ENOENT);
482 read_unlock(&mboxes_lock);
484 ret = omap_mbox_init(mbox);
486 return ERR_PTR(-ENODEV);
490 EXPORT_SYMBOL(omap_mbox_get);
492 void omap_mbox_put(struct omap_mbox *mbox)
494 omap_mbox_fini(mbox);
496 EXPORT_SYMBOL(omap_mbox_put);
498 int omap_mbox_register(struct device *parent, struct omap_mbox *mbox)
501 struct omap_mbox **tmp;
508 mbox->dev = device_create(&omap_mbox_class,
509 parent, 0, mbox, "%s", mbox->name);
510 if (IS_ERR(mbox->dev))
511 return PTR_ERR(mbox->dev);
513 ret = device_create_file(mbox->dev, &dev_attr_mbox);
517 write_lock(&mboxes_lock);
518 tmp = find_mboxes(mbox->name);
521 write_unlock(&mboxes_lock);
525 write_unlock(&mboxes_lock);
530 device_remove_file(mbox->dev, &dev_attr_mbox);
532 device_unregister(mbox->dev);
535 EXPORT_SYMBOL(omap_mbox_register);
537 int omap_mbox_unregister(struct omap_mbox *mbox)
539 struct omap_mbox **tmp;
541 write_lock(&mboxes_lock);
547 write_unlock(&mboxes_lock);
548 device_remove_file(mbox->dev, &dev_attr_mbox);
549 device_unregister(mbox->dev);
554 write_unlock(&mboxes_lock);
558 EXPORT_SYMBOL(omap_mbox_unregister);
560 static int __init omap_mbox_class_init(void)
562 int ret = class_register(&omap_mbox_class);
564 ret = class_create_file(&omap_mbox_class, &class_attr_mbox);
569 static void __exit omap_mbox_class_exit(void)
571 class_remove_file(&omap_mbox_class, &class_attr_mbox);
572 class_unregister(&omap_mbox_class);
575 subsys_initcall(omap_mbox_class_init);
576 module_exit(omap_mbox_class_exit);
578 MODULE_LICENSE("GPL v2");
579 MODULE_DESCRIPTION("omap mailbox: interrupt driven messaging");
580 MODULE_AUTHOR("Toshihiro Kobayashi and Hiroshi DOYU");