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 struct omap_msg_tx_data
{
155 static void omap_msg_tx_end_io(struct request
*rq
, int error
)
158 __blk_put_request(rq
->q
, rq
);
161 int omap_mbox_msg_send(struct omap_mbox
*mbox
, mbox_msg_t msg
, void* arg
)
163 struct omap_msg_tx_data
*tx_data
;
165 struct request_queue
*q
= mbox
->txq
->queue
;
167 tx_data
= kmalloc(sizeof(*tx_data
), GFP_ATOMIC
);
168 if (unlikely(!tx_data
))
171 rq
= blk_get_request(q
, WRITE
, GFP_ATOMIC
);
179 rq
->end_io
= omap_msg_tx_end_io
;
180 blk_insert_request(q
, rq
, 0, tx_data
);
182 schedule_work(&mbox
->txq
->work
);
185 EXPORT_SYMBOL(omap_mbox_msg_send
);
187 static void mbox_tx_work(struct work_struct
*work
)
191 struct omap_mbox_queue
*mq
= container_of(work
,
192 struct omap_mbox_queue
, work
);
193 struct omap_mbox
*mbox
= mq
->queue
->queuedata
;
194 struct request_queue
*q
= mbox
->txq
->queue
;
197 struct omap_msg_tx_data
*tx_data
;
199 spin_lock(q
->queue_lock
);
200 rq
= blk_fetch_request(q
);
201 spin_unlock(q
->queue_lock
);
206 tx_data
= rq
->special
;
208 ret
= __mbox_msg_send(mbox
, tx_data
->msg
, tx_data
->arg
);
210 enable_mbox_irq(mbox
, IRQ_TX
);
211 spin_lock(q
->queue_lock
);
212 blk_requeue_request(q
, rq
);
213 spin_unlock(q
->queue_lock
);
217 spin_lock(q
->queue_lock
);
218 __blk_end_request_all(rq
, 0);
219 spin_unlock(q
->queue_lock
);
224 * Message receiver(workqueue)
226 static void mbox_rx_work(struct work_struct
*work
)
228 struct omap_mbox_queue
*mq
=
229 container_of(work
, struct omap_mbox_queue
, work
);
230 struct omap_mbox
*mbox
= mq
->queue
->queuedata
;
231 struct request_queue
*q
= mbox
->rxq
->queue
;
236 if (mbox
->rxq
->callback
== NULL
) {
237 sysfs_notify(&mbox
->dev
->kobj
, NULL
, "mbox");
242 spin_lock_irqsave(q
->queue_lock
, flags
);
243 rq
= blk_fetch_request(q
);
244 spin_unlock_irqrestore(q
->queue_lock
, flags
);
248 msg
= (mbox_msg_t
)rq
->special
;
249 blk_end_request_all(rq
, 0);
250 mbox
->rxq
->callback((void *)msg
);
255 * Mailbox interrupt handler
257 static void mbox_txq_fn(struct request_queue
* q
)
261 static void mbox_rxq_fn(struct request_queue
* q
)
265 static void __mbox_tx_interrupt(struct omap_mbox
*mbox
)
267 disable_mbox_irq(mbox
, IRQ_TX
);
268 ack_mbox_irq(mbox
, IRQ_TX
);
269 schedule_work(&mbox
->txq
->work
);
272 static void __mbox_rx_interrupt(struct omap_mbox
*mbox
)
276 struct request_queue
*q
= mbox
->rxq
->queue
;
278 disable_mbox_irq(mbox
, IRQ_RX
);
280 while (!mbox_fifo_empty(mbox
)) {
281 rq
= blk_get_request(q
, WRITE
, GFP_ATOMIC
);
285 msg
= mbox_fifo_read(mbox
);
287 if (unlikely(mbox_seq_test(mbox
, msg
))) {
288 pr_info("mbox: Illegal seq bit!(%08x)\n", msg
);
289 if (mbox
->err_notify
)
293 blk_insert_request(q
, rq
, 0, (void *)msg
);
294 if (mbox
->ops
->type
== OMAP_MBOX_TYPE1
)
298 /* no more messages in the fifo. clear IRQ source. */
299 ack_mbox_irq(mbox
, IRQ_RX
);
300 enable_mbox_irq(mbox
, IRQ_RX
);
302 schedule_work(&mbox
->rxq
->work
);
305 static irqreturn_t
mbox_interrupt(int irq
, void *p
)
307 struct omap_mbox
*mbox
= p
;
309 if (is_mbox_irq(mbox
, IRQ_TX
))
310 __mbox_tx_interrupt(mbox
);
312 if (is_mbox_irq(mbox
, IRQ_RX
))
313 __mbox_rx_interrupt(mbox
);
322 omap_mbox_write(struct device
*dev
, struct device_attribute
*attr
,
323 const char * buf
, size_t count
)
326 mbox_msg_t
*p
= (mbox_msg_t
*)buf
;
327 struct omap_mbox
*mbox
= dev_get_drvdata(dev
);
329 for (; count
>= sizeof(mbox_msg_t
); count
-= sizeof(mbox_msg_t
)) {
330 ret
= omap_mbox_msg_send(mbox
, be32_to_cpu(*p
), NULL
);
336 return (size_t)((char *)p
- buf
);
340 omap_mbox_read(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
344 mbox_msg_t
*p
= (mbox_msg_t
*) buf
;
345 struct omap_mbox
*mbox
= dev_get_drvdata(dev
);
346 struct request_queue
*q
= mbox
->rxq
->queue
;
349 spin_lock_irqsave(q
->queue_lock
, flags
);
350 rq
= blk_fetch_request(q
);
351 spin_unlock_irqrestore(q
->queue_lock
, flags
);
356 *p
= (mbox_msg_t
)rq
->special
;
358 blk_end_request_all(rq
, 0);
360 if (unlikely(mbox_seq_test(mbox
, *p
))) {
361 pr_info("mbox: Illegal seq bit!(%08x) ignored\n", *p
);
367 pr_debug("%02x %02x %02x %02x\n", buf
[0], buf
[1], buf
[2], buf
[3]);
369 return (size_t) ((char *)p
- buf
);
372 static DEVICE_ATTR(mbox
, S_IRUGO
| S_IWUSR
, omap_mbox_read
, omap_mbox_write
);
374 static ssize_t
mbox_show(struct class *class, char *buf
)
376 return sprintf(buf
, "mbox");
379 static CLASS_ATTR(mbox
, S_IRUGO
, mbox_show
, NULL
);
381 static struct class omap_mbox_class
= {
382 .name
= "omap-mailbox",
385 static struct omap_mbox_queue
*mbox_queue_alloc(struct omap_mbox
*mbox
,
386 request_fn_proc
* proc
,
387 void (*work
) (struct work_struct
*))
389 struct request_queue
*q
;
390 struct omap_mbox_queue
*mq
;
392 mq
= kzalloc(sizeof(struct omap_mbox_queue
), GFP_KERNEL
);
396 spin_lock_init(&mq
->lock
);
398 q
= blk_init_queue(proc
, &mq
->lock
);
404 INIT_WORK(&mq
->work
, work
);
412 static void mbox_queue_free(struct omap_mbox_queue
*q
)
414 blk_cleanup_queue(q
->queue
);
418 static int omap_mbox_init(struct omap_mbox
*mbox
)
421 struct omap_mbox_queue
*mq
;
423 if (likely(mbox
->ops
->startup
)) {
424 ret
= mbox
->ops
->startup(mbox
);
429 ret
= request_irq(mbox
->irq
, mbox_interrupt
, IRQF_DISABLED
,
433 "failed to register mailbox interrupt:%d\n", ret
);
434 goto fail_request_irq
;
437 mq
= mbox_queue_alloc(mbox
, mbox_txq_fn
, mbox_tx_work
);
444 mq
= mbox_queue_alloc(mbox
, mbox_rxq_fn
, mbox_rx_work
);
454 mbox_queue_free(mbox
->txq
);
456 free_irq(mbox
->irq
, mbox
);
458 if (unlikely(mbox
->ops
->shutdown
))
459 mbox
->ops
->shutdown(mbox
);
464 static void omap_mbox_fini(struct omap_mbox
*mbox
)
466 mbox_queue_free(mbox
->txq
);
467 mbox_queue_free(mbox
->rxq
);
469 free_irq(mbox
->irq
, mbox
);
471 if (unlikely(mbox
->ops
->shutdown
))
472 mbox
->ops
->shutdown(mbox
);
475 static struct omap_mbox
**find_mboxes(const char *name
)
477 struct omap_mbox
**p
;
479 for (p
= &mboxes
; *p
; p
= &(*p
)->next
) {
480 if (strcmp((*p
)->name
, name
) == 0)
487 struct omap_mbox
*omap_mbox_get(const char *name
)
489 struct omap_mbox
*mbox
;
492 read_lock(&mboxes_lock
);
493 mbox
= *(find_mboxes(name
));
495 read_unlock(&mboxes_lock
);
496 return ERR_PTR(-ENOENT
);
499 read_unlock(&mboxes_lock
);
501 ret
= omap_mbox_init(mbox
);
503 return ERR_PTR(-ENODEV
);
507 EXPORT_SYMBOL(omap_mbox_get
);
509 void omap_mbox_put(struct omap_mbox
*mbox
)
511 omap_mbox_fini(mbox
);
513 EXPORT_SYMBOL(omap_mbox_put
);
515 int omap_mbox_register(struct device
*parent
, struct omap_mbox
*mbox
)
518 struct omap_mbox
**tmp
;
525 mbox
->dev
= device_create(&omap_mbox_class
,
526 parent
, 0, mbox
, "%s", mbox
->name
);
527 if (IS_ERR(mbox
->dev
))
528 return PTR_ERR(mbox
->dev
);
530 ret
= device_create_file(mbox
->dev
, &dev_attr_mbox
);
534 write_lock(&mboxes_lock
);
535 tmp
= find_mboxes(mbox
->name
);
538 write_unlock(&mboxes_lock
);
542 write_unlock(&mboxes_lock
);
547 device_remove_file(mbox
->dev
, &dev_attr_mbox
);
549 device_unregister(mbox
->dev
);
552 EXPORT_SYMBOL(omap_mbox_register
);
554 int omap_mbox_unregister(struct omap_mbox
*mbox
)
556 struct omap_mbox
**tmp
;
558 write_lock(&mboxes_lock
);
564 write_unlock(&mboxes_lock
);
565 device_remove_file(mbox
->dev
, &dev_attr_mbox
);
566 device_unregister(mbox
->dev
);
571 write_unlock(&mboxes_lock
);
575 EXPORT_SYMBOL(omap_mbox_unregister
);
577 static int __init
omap_mbox_class_init(void)
579 int ret
= class_register(&omap_mbox_class
);
581 ret
= class_create_file(&omap_mbox_class
, &class_attr_mbox
);
586 static void __exit
omap_mbox_class_exit(void)
588 class_remove_file(&omap_mbox_class
, &class_attr_mbox
);
589 class_unregister(&omap_mbox_class
);
592 subsys_initcall(omap_mbox_class_init
);
593 module_exit(omap_mbox_class_exit
);
595 MODULE_LICENSE("GPL v2");
596 MODULE_DESCRIPTION("omap mailbox: interrupt driven messaging");
597 MODULE_AUTHOR("Toshihiro Kobayashi and Hiroshi DOYU");