thinkpad-acpi: silence bogus complain during rmmod
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / plat-omap / mailbox.c
blob0abfbaa59871313c5ce3857457c3407f6ca4bafc
1 /*
2 * OMAP mailbox driver
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
20 * 02110-1301 USA
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
44 * message. */
45 static inline void mbox_seq_init(struct omap_mbox *mbox)
47 if (!enable_seq_bit)
48 return;
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)
56 if (!enable_seq_bit)
57 return;
59 /* add seq_snd to msg */
60 *msg = (*msg & 0x7fffffff) | mbox->seq_snd;
61 /* flip seq_snd */
62 mbox->seq_snd ^= 1 << 31;
65 static inline int mbox_seq_test(struct omap_mbox *mbox, mbox_msg_t msg)
67 mbox_msg_t seq;
69 if (!enable_seq_bit)
70 return 0;
72 seq = msg & (1 << 31);
73 if (seq == mbox->seq_rcv)
74 return -1;
75 mbox->seq_rcv = seq;
76 return 0;
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)
119 mbox_seq_init(mbox);
121 EXPORT_SYMBOL(omap_mbox_init_seq);
124 * message sender
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)
132 return -1;
133 if (--i == 0)
134 return -1;
135 udelay(1);
138 if (arg && mbox->txq->callback) {
139 ret = mbox->txq->callback(arg);
140 if (ret)
141 goto out;
144 mbox_seq_toggle(mbox, &msg);
145 mbox_fifo_write(mbox, msg);
146 out:
147 return ret;
150 int omap_mbox_msg_send(struct omap_mbox *mbox, mbox_msg_t msg, void* arg)
152 struct request *rq;
153 struct request_queue *q = mbox->txq->queue;
154 int ret = 0;
156 rq = blk_get_request(q, WRITE, GFP_ATOMIC);
157 if (unlikely(!rq)) {
158 ret = -ENOMEM;
159 goto fail;
162 rq->data = (void *)msg;
163 blk_insert_request(q, rq, 0, arg);
165 schedule_work(&mbox->txq->work);
166 fail:
167 return ret;
169 EXPORT_SYMBOL(omap_mbox_msg_send);
171 static void mbox_tx_work(struct work_struct *work)
173 int ret;
174 struct request *rq;
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;
180 while (1) {
181 spin_lock(q->queue_lock);
182 rq = elv_next_request(q);
183 spin_unlock(q->queue_lock);
185 if (!rq)
186 break;
188 ret = __mbox_msg_send(mbox, (mbox_msg_t) rq->data, rq->special);
189 if (ret) {
190 enable_mbox_irq(mbox, IRQ_TX);
191 return;
194 spin_lock(q->queue_lock);
195 if (__blk_end_request(rq, 0, 0))
196 BUG();
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;
210 struct request *rq;
211 mbox_msg_t msg;
212 unsigned long flags;
214 if (mbox->rxq->callback == NULL) {
215 sysfs_notify(&mbox->dev->kobj, NULL, "mbox");
216 return;
219 while (1) {
220 spin_lock_irqsave(q->queue_lock, flags);
221 rq = elv_next_request(q);
222 spin_unlock_irqrestore(q->queue_lock, flags);
223 if (!rq)
224 break;
226 msg = (mbox_msg_t) rq->data;
228 if (blk_end_request(rq, 0, 0))
229 BUG();
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)
255 struct request *rq;
256 mbox_msg_t msg;
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);
263 if (unlikely(!rq))
264 goto nomem;
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)
272 mbox->err_notify();
275 blk_insert_request(q, rq, 0, NULL);
276 if (mbox->ops->type == OMAP_MBOX_TYPE1)
277 break;
280 /* no more messages in the fifo. clear IRQ source. */
281 ack_mbox_irq(mbox, IRQ_RX);
282 enable_mbox_irq(mbox, IRQ_RX);
283 nomem:
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);
297 return IRQ_HANDLED;
301 * sysfs files
303 static ssize_t
304 omap_mbox_write(struct device *dev, struct device_attribute *attr,
305 const char * buf, size_t count)
307 int ret;
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);
313 if (ret)
314 return -EAGAIN;
315 p++;
318 return (size_t)((char *)p - buf);
321 static ssize_t
322 omap_mbox_read(struct device *dev, struct device_attribute *attr, char *buf)
324 unsigned long flags;
325 struct request *rq;
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;
330 while (1) {
331 spin_lock_irqsave(q->queue_lock, flags);
332 rq = elv_next_request(q);
333 spin_unlock_irqrestore(q->queue_lock, flags);
335 if (!rq)
336 break;
338 *p = (mbox_msg_t) rq->data;
340 if (blk_end_request(rq, 0, 0))
341 BUG();
343 if (unlikely(mbox_seq_test(mbox, *p))) {
344 pr_info("mbox: Illegal seq bit!(%08x) ignored\n", *p);
345 continue;
347 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);
376 if (!mq)
377 return NULL;
379 spin_lock_init(&mq->lock);
381 q = blk_init_queue(proc, &mq->lock);
382 if (!q)
383 goto error;
384 q->queuedata = mbox;
385 mq->queue = q;
387 INIT_WORK(&mq->work, work);
389 return mq;
390 error:
391 kfree(mq);
392 return NULL;
395 static void mbox_queue_free(struct omap_mbox_queue *q)
397 blk_cleanup_queue(q->queue);
398 kfree(q);
401 static int omap_mbox_init(struct omap_mbox *mbox)
403 int ret;
404 struct omap_mbox_queue *mq;
406 if (likely(mbox->ops->startup)) {
407 ret = mbox->ops->startup(mbox);
408 if (unlikely(ret))
409 return ret;
412 ret = request_irq(mbox->irq, mbox_interrupt, IRQF_DISABLED,
413 mbox->name, mbox);
414 if (unlikely(ret)) {
415 printk(KERN_ERR
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);
421 if (!mq) {
422 ret = -ENOMEM;
423 goto fail_alloc_txq;
425 mbox->txq = mq;
427 mq = mbox_queue_alloc(mbox, mbox_rxq_fn, mbox_rx_work);
428 if (!mq) {
429 ret = -ENOMEM;
430 goto fail_alloc_rxq;
432 mbox->rxq = mq;
434 return 0;
436 fail_alloc_rxq:
437 mbox_queue_free(mbox->txq);
438 fail_alloc_txq:
439 free_irq(mbox->irq, mbox);
440 fail_request_irq:
441 if (unlikely(mbox->ops->shutdown))
442 mbox->ops->shutdown(mbox);
444 return ret;
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)
464 break;
467 return p;
470 struct omap_mbox *omap_mbox_get(const char *name)
472 struct omap_mbox *mbox;
473 int ret;
475 read_lock(&mboxes_lock);
476 mbox = *(find_mboxes(name));
477 if (mbox == NULL) {
478 read_unlock(&mboxes_lock);
479 return ERR_PTR(-ENOENT);
482 read_unlock(&mboxes_lock);
484 ret = omap_mbox_init(mbox);
485 if (ret)
486 return ERR_PTR(-ENODEV);
488 return mbox;
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)
500 int ret = 0;
501 struct omap_mbox **tmp;
503 if (!mbox)
504 return -EINVAL;
505 if (mbox->next)
506 return -EBUSY;
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);
514 if (ret)
515 goto err_sysfs;
517 write_lock(&mboxes_lock);
518 tmp = find_mboxes(mbox->name);
519 if (*tmp) {
520 ret = -EBUSY;
521 write_unlock(&mboxes_lock);
522 goto err_find;
524 *tmp = mbox;
525 write_unlock(&mboxes_lock);
527 return 0;
529 err_find:
530 device_remove_file(mbox->dev, &dev_attr_mbox);
531 err_sysfs:
532 device_unregister(mbox->dev);
533 return ret;
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);
542 tmp = &mboxes;
543 while (*tmp) {
544 if (mbox == *tmp) {
545 *tmp = mbox->next;
546 mbox->next = NULL;
547 write_unlock(&mboxes_lock);
548 device_remove_file(mbox->dev, &dev_attr_mbox);
549 device_unregister(mbox->dev);
550 return 0;
552 tmp = &(*tmp)->next;
554 write_unlock(&mboxes_lock);
556 return -EINVAL;
558 EXPORT_SYMBOL(omap_mbox_unregister);
560 static int __init omap_mbox_class_init(void)
562 int ret = class_register(&omap_mbox_class);
563 if (!ret)
564 ret = class_create_file(&omap_mbox_class, &class_attr_mbox);
566 return ret;
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");