Merge branch 'blk-end-request' of git://git.kernel.dk/linux-2.6-block
[linux-2.6/openmoko-kernel/knife-kernel.git] / arch / arm / plat-omap / mailbox.c
blob1945ddfec18dcdee81d8d0069797bf6ec7e729d4
1 /*
2 * OMAP mailbox driver
4 * Copyright (C) 2006 Nokia Corporation. All rights reserved.
6 * Contact: Toshihiro Kobayashi <toshihiro.kobayashi@nokia.com>
7 * Restructured by Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * 02110-1301 USA
25 #include <linux/init.h>
26 #include <linux/module.h>
27 #include <linux/sched.h>
28 #include <linux/interrupt.h>
29 #include <linux/device.h>
30 #include <linux/blkdev.h>
31 #include <linux/err.h>
32 #include <linux/delay.h>
33 #include <asm/io.h>
34 #include <asm/arch/mailbox.h>
35 #include "mailbox.h"
37 static struct omap_mbox *mboxes;
38 static DEFINE_RWLOCK(mboxes_lock);
40 /* Mailbox Sequence Bit function */
41 void omap_mbox_init_seq(struct omap_mbox *mbox)
43 mbox_seq_init(mbox);
45 EXPORT_SYMBOL(omap_mbox_init_seq);
48 * message sender
50 static int __mbox_msg_send(struct omap_mbox *mbox, mbox_msg_t msg, void *arg)
52 int ret = 0, i = 1000;
54 while (mbox_fifo_full(mbox)) {
55 if (mbox->ops->type == OMAP_MBOX_TYPE2)
56 return -1;
57 if (--i == 0)
58 return -1;
59 udelay(1);
62 if (arg && mbox->txq->callback) {
63 ret = mbox->txq->callback(arg);
64 if (ret)
65 goto out;
68 mbox_seq_toggle(mbox, &msg);
69 mbox_fifo_write(mbox, msg);
70 out:
71 return ret;
74 int omap_mbox_msg_send(struct omap_mbox *mbox, mbox_msg_t msg, void* arg)
76 struct request *rq;
77 struct request_queue *q = mbox->txq->queue;
78 int ret = 0;
80 rq = blk_get_request(q, WRITE, GFP_ATOMIC);
81 if (unlikely(!rq)) {
82 ret = -ENOMEM;
83 goto fail;
86 rq->data = (void *)msg;
87 blk_insert_request(q, rq, 0, arg);
89 schedule_work(&mbox->txq->work);
90 fail:
91 return ret;
93 EXPORT_SYMBOL(omap_mbox_msg_send);
95 static void mbox_tx_work(struct work_struct *work)
97 int ret;
98 struct request *rq;
99 struct omap_mbox_queue *mq = container_of(work,
100 struct omap_mbox_queue, work);
101 struct omap_mbox *mbox = mq->queue->queuedata;
102 struct request_queue *q = mbox->txq->queue;
104 while (1) {
105 spin_lock(q->queue_lock);
106 rq = elv_next_request(q);
107 spin_unlock(q->queue_lock);
109 if (!rq)
110 break;
112 ret = __mbox_msg_send(mbox, (mbox_msg_t) rq->data, rq->special);
113 if (ret) {
114 enable_mbox_irq(mbox, IRQ_TX);
115 return;
118 spin_lock(q->queue_lock);
119 if (__blk_end_request(rq, 0, 0))
120 BUG();
121 spin_unlock(q->queue_lock);
126 * Message receiver(workqueue)
128 static void mbox_rx_work(struct work_struct *work)
130 struct omap_mbox_queue *mq =
131 container_of(work, struct omap_mbox_queue, work);
132 struct omap_mbox *mbox = mq->queue->queuedata;
133 struct request_queue *q = mbox->rxq->queue;
134 struct request *rq;
135 mbox_msg_t msg;
136 unsigned long flags;
138 if (mbox->rxq->callback == NULL) {
139 sysfs_notify(&mbox->dev.kobj, NULL, "mbox");
140 return;
143 while (1) {
144 spin_lock_irqsave(q->queue_lock, flags);
145 rq = elv_next_request(q);
146 spin_unlock_irqrestore(q->queue_lock, flags);
147 if (!rq)
148 break;
150 msg = (mbox_msg_t) rq->data;
152 if (blk_end_request(rq, 0, 0))
153 BUG();
155 mbox->rxq->callback((void *)msg);
160 * Mailbox interrupt handler
162 static void mbox_txq_fn(struct request_queue * q)
166 static void mbox_rxq_fn(struct request_queue * q)
170 static void __mbox_tx_interrupt(struct omap_mbox *mbox)
172 disable_mbox_irq(mbox, IRQ_TX);
173 ack_mbox_irq(mbox, IRQ_TX);
174 schedule_work(&mbox->txq->work);
177 static void __mbox_rx_interrupt(struct omap_mbox *mbox)
179 struct request *rq;
180 mbox_msg_t msg;
181 struct request_queue *q = mbox->rxq->queue;
183 disable_mbox_irq(mbox, IRQ_RX);
185 while (!mbox_fifo_empty(mbox)) {
186 rq = blk_get_request(q, WRITE, GFP_ATOMIC);
187 if (unlikely(!rq))
188 goto nomem;
190 msg = mbox_fifo_read(mbox);
191 rq->data = (void *)msg;
193 if (unlikely(mbox_seq_test(mbox, msg))) {
194 pr_info("mbox: Illegal seq bit!(%08x)\n", msg);
195 if (mbox->err_notify)
196 mbox->err_notify();
199 blk_insert_request(q, rq, 0, NULL);
200 if (mbox->ops->type == OMAP_MBOX_TYPE1)
201 break;
204 /* no more messages in the fifo. clear IRQ source. */
205 ack_mbox_irq(mbox, IRQ_RX);
206 enable_mbox_irq(mbox, IRQ_RX);
207 nomem:
208 schedule_work(&mbox->rxq->work);
211 static irqreturn_t mbox_interrupt(int irq, void *p)
213 struct omap_mbox *mbox = p;
215 if (is_mbox_irq(mbox, IRQ_TX))
216 __mbox_tx_interrupt(mbox);
218 if (is_mbox_irq(mbox, IRQ_RX))
219 __mbox_rx_interrupt(mbox);
221 return IRQ_HANDLED;
225 * sysfs files
227 static ssize_t
228 omap_mbox_write(struct device *dev, struct device_attribute *attr,
229 const char * buf, size_t count)
231 int ret;
232 mbox_msg_t *p = (mbox_msg_t *)buf;
233 struct omap_mbox *mbox = dev_get_drvdata(dev);
235 for (; count >= sizeof(mbox_msg_t); count -= sizeof(mbox_msg_t)) {
236 ret = omap_mbox_msg_send(mbox, be32_to_cpu(*p), NULL);
237 if (ret)
238 return -EAGAIN;
239 p++;
242 return (size_t)((char *)p - buf);
245 static ssize_t
246 omap_mbox_read(struct device *dev, struct device_attribute *attr, char *buf)
248 unsigned long flags;
249 struct request *rq;
250 mbox_msg_t *p = (mbox_msg_t *) buf;
251 struct omap_mbox *mbox = dev_get_drvdata(dev);
252 struct request_queue *q = mbox->rxq->queue;
254 while (1) {
255 spin_lock_irqsave(q->queue_lock, flags);
256 rq = elv_next_request(q);
257 spin_unlock_irqrestore(q->queue_lock, flags);
259 if (!rq)
260 break;
262 *p = (mbox_msg_t) rq->data;
264 if (blk_end_request(rq, 0, 0))
265 BUG();
267 if (unlikely(mbox_seq_test(mbox, *p))) {
268 pr_info("mbox: Illegal seq bit!(%08x) ignored\n", *p);
269 continue;
271 p++;
274 pr_debug("%02x %02x %02x %02x\n", buf[0], buf[1], buf[2], buf[3]);
276 return (size_t) ((char *)p - buf);
279 static DEVICE_ATTR(mbox, S_IRUGO | S_IWUSR, omap_mbox_read, omap_mbox_write);
281 static ssize_t mbox_show(struct class *class, char *buf)
283 return sprintf(buf, "mbox");
286 static CLASS_ATTR(mbox, S_IRUGO, mbox_show, NULL);
288 static struct class omap_mbox_class = {
289 .name = "omap_mbox",
292 static struct omap_mbox_queue *mbox_queue_alloc(struct omap_mbox *mbox,
293 request_fn_proc * proc,
294 void (*work) (struct work_struct *))
296 struct request_queue *q;
297 struct omap_mbox_queue *mq;
299 mq = kzalloc(sizeof(struct omap_mbox_queue), GFP_KERNEL);
300 if (!mq)
301 return NULL;
303 spin_lock_init(&mq->lock);
305 q = blk_init_queue(proc, &mq->lock);
306 if (!q)
307 goto error;
308 q->queuedata = mbox;
309 mq->queue = q;
311 INIT_WORK(&mq->work, work);
313 return mq;
314 error:
315 kfree(mq);
316 return NULL;
319 static void mbox_queue_free(struct omap_mbox_queue *q)
321 blk_cleanup_queue(q->queue);
322 kfree(q);
325 static int omap_mbox_init(struct omap_mbox *mbox)
327 int ret;
328 struct omap_mbox_queue *mq;
330 if (likely(mbox->ops->startup)) {
331 ret = mbox->ops->startup(mbox);
332 if (unlikely(ret))
333 return ret;
336 mbox->dev.class = &omap_mbox_class;
337 strlcpy(mbox->dev.bus_id, mbox->name, KOBJ_NAME_LEN);
338 dev_set_drvdata(&mbox->dev, mbox);
340 ret = device_register(&mbox->dev);
341 if (unlikely(ret))
342 goto fail_device_reg;
344 ret = device_create_file(&mbox->dev, &dev_attr_mbox);
345 if (unlikely(ret)) {
346 printk(KERN_ERR
347 "device_create_file failed: %d\n", ret);
348 goto fail_create_mbox;
351 ret = request_irq(mbox->irq, mbox_interrupt, IRQF_DISABLED,
352 mbox->name, mbox);
353 if (unlikely(ret)) {
354 printk(KERN_ERR
355 "failed to register mailbox interrupt:%d\n", ret);
356 goto fail_request_irq;
358 enable_mbox_irq(mbox, IRQ_RX);
360 mq = mbox_queue_alloc(mbox, mbox_txq_fn, mbox_tx_work);
361 if (!mq) {
362 ret = -ENOMEM;
363 goto fail_alloc_txq;
365 mbox->txq = mq;
367 mq = mbox_queue_alloc(mbox, mbox_rxq_fn, mbox_rx_work);
368 if (!mq) {
369 ret = -ENOMEM;
370 goto fail_alloc_rxq;
372 mbox->rxq = mq;
374 return 0;
376 fail_alloc_rxq:
377 mbox_queue_free(mbox->txq);
378 fail_alloc_txq:
379 free_irq(mbox->irq, mbox);
380 fail_request_irq:
381 device_remove_file(&mbox->dev, &dev_attr_mbox);
382 fail_create_mbox:
383 device_unregister(&mbox->dev);
384 fail_device_reg:
385 if (unlikely(mbox->ops->shutdown))
386 mbox->ops->shutdown(mbox);
388 return ret;
391 static void omap_mbox_fini(struct omap_mbox *mbox)
393 mbox_queue_free(mbox->txq);
394 mbox_queue_free(mbox->rxq);
396 free_irq(mbox->irq, mbox);
397 device_remove_file(&mbox->dev, &dev_attr_mbox);
398 class_unregister(&omap_mbox_class);
400 if (unlikely(mbox->ops->shutdown))
401 mbox->ops->shutdown(mbox);
404 static struct omap_mbox **find_mboxes(const char *name)
406 struct omap_mbox **p;
408 for (p = &mboxes; *p; p = &(*p)->next) {
409 if (strcmp((*p)->name, name) == 0)
410 break;
413 return p;
416 struct omap_mbox *omap_mbox_get(const char *name)
418 struct omap_mbox *mbox;
419 int ret;
421 read_lock(&mboxes_lock);
422 mbox = *(find_mboxes(name));
423 if (mbox == NULL) {
424 read_unlock(&mboxes_lock);
425 return ERR_PTR(-ENOENT);
428 read_unlock(&mboxes_lock);
430 ret = omap_mbox_init(mbox);
431 if (ret)
432 return ERR_PTR(-ENODEV);
434 return mbox;
436 EXPORT_SYMBOL(omap_mbox_get);
438 void omap_mbox_put(struct omap_mbox *mbox)
440 omap_mbox_fini(mbox);
442 EXPORT_SYMBOL(omap_mbox_put);
444 int omap_mbox_register(struct omap_mbox *mbox)
446 int ret = 0;
447 struct omap_mbox **tmp;
449 if (!mbox)
450 return -EINVAL;
451 if (mbox->next)
452 return -EBUSY;
454 write_lock(&mboxes_lock);
455 tmp = find_mboxes(mbox->name);
456 if (*tmp)
457 ret = -EBUSY;
458 else
459 *tmp = mbox;
460 write_unlock(&mboxes_lock);
462 return ret;
464 EXPORT_SYMBOL(omap_mbox_register);
466 int omap_mbox_unregister(struct omap_mbox *mbox)
468 struct omap_mbox **tmp;
470 write_lock(&mboxes_lock);
471 tmp = &mboxes;
472 while (*tmp) {
473 if (mbox == *tmp) {
474 *tmp = mbox->next;
475 mbox->next = NULL;
476 write_unlock(&mboxes_lock);
477 return 0;
479 tmp = &(*tmp)->next;
481 write_unlock(&mboxes_lock);
483 return -EINVAL;
485 EXPORT_SYMBOL(omap_mbox_unregister);
487 static int __init omap_mbox_class_init(void)
489 int ret = class_register(&omap_mbox_class);
490 if (!ret)
491 ret = class_create_file(&omap_mbox_class, &class_attr_mbox);
493 return ret;
496 static void __exit omap_mbox_class_exit(void)
498 class_remove_file(&omap_mbox_class, &class_attr_mbox);
499 class_unregister(&omap_mbox_class);
502 subsys_initcall(omap_mbox_class_init);
503 module_exit(omap_mbox_class_exit);
505 MODULE_LICENSE("GPL");