]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/asm-arm/arch-omap/mailbox.h
ARM: OMAP: Add mailbox support for IVA
[linux-2.6-omap-h63xx.git] / include / asm-arm / arch-omap / mailbox.h
1 /* mailbox.h */
2
3 #ifndef MAILBOX_H
4 #define MAILBOX_H
5
6 #include <linux/wait.h>
7 #include <linux/workqueue.h>
8
9 typedef u32 mbox_msg_t;
10 typedef void (mbox_receiver_t)(mbox_msg_t msg);
11 struct omap_mbox;
12 struct omap_mbq;
13
14 typedef int __bitwise omap_mbox_irq_t;
15 #define IRQ_TX ((__force omap_mbox_irq_t) 1)
16 #define IRQ_RX ((__force omap_mbox_irq_t) 2)
17
18 typedef int __bitwise omap_mbox_type_t;
19 #define OMAP_MBOX_TYPE1 ((__force omap_mbox_type_t) 1)
20 #define OMAP_MBOX_TYPE2 ((__force omap_mbox_type_t) 2)
21
22 struct omap_mbox_ops {
23         omap_mbox_type_t        type;
24         int (*startup)(struct omap_mbox *mbox);
25         void (*shutdown)(struct omap_mbox *mbox);
26         /* fifo */
27         mbox_msg_t (*fifo_read)(struct omap_mbox *mbox);
28         void (*fifo_write)(struct omap_mbox *mbox, mbox_msg_t msg);
29         int (*fifo_empty)(struct omap_mbox *mbox);
30         int (*fifo_full)(struct omap_mbox *mbox);
31         /* irq */
32         void (*enable_irq)(struct omap_mbox *mbox, omap_mbox_irq_t irq);
33         void (*disable_irq)(struct omap_mbox *mbox, omap_mbox_irq_t irq);
34         void (*ack_irq)(struct omap_mbox *mbox, omap_mbox_irq_t irq);
35         int (*is_irq)(struct omap_mbox *mbox, omap_mbox_irq_t irq);
36 };
37
38 struct omap_mbox {
39         char *name;
40         spinlock_t lock;
41         unsigned int irq;
42         struct omap_mbox_ops *ops;
43
44         wait_queue_head_t tx_waitq;
45
46         struct work_struct msg_receive;
47         void (*msg_receive_cb)(mbox_msg_t);
48         struct omap_mbq *mbq;
49
50         int (*msg_sender_cb)(void*);
51
52         mbox_msg_t seq_snd, seq_rcv;
53
54         struct class_device class_dev;
55
56         void *priv;
57
58         struct omap_mbox *next;
59 };
60
61 int omap_mbox_msg_send(struct omap_mbox *mbox_h, mbox_msg_t msg, void* arg);
62 void omap_mbox_init_seq(struct omap_mbox *mbox);
63
64 struct omap_mbox *omap_mbox_get(const char *name);
65 int omap_mbox_register(struct omap_mbox *mbox);
66 int omap_mbox_unregister(struct omap_mbox *mbox);
67
68 #endif /* MAILBOX_H */