|
@@ -1,20 +1,20 @@
|
|
|
-/* mailbox.h */
|
|
|
+/*
|
|
|
+ * omap-mbox.h: OMAP mailbox internal definitions
|
|
|
+ *
|
|
|
+ * This program is free software; you can redistribute it and/or modify
|
|
|
+ * it under the terms of the GNU General Public License version 2 as
|
|
|
+ * published by the Free Software Foundation.
|
|
|
+ */
|
|
|
|
|
|
-#ifndef MAILBOX_H
|
|
|
-#define MAILBOX_H
|
|
|
+#ifndef OMAP_MBOX_H
|
|
|
+#define OMAP_MBOX_H
|
|
|
|
|
|
-#include <linux/spinlock.h>
|
|
|
-#include <linux/workqueue.h>
|
|
|
-#include <linux/interrupt.h>
|
|
|
#include <linux/device.h>
|
|
|
+#include <linux/interrupt.h>
|
|
|
#include <linux/kfifo.h>
|
|
|
-
|
|
|
-typedef u32 mbox_msg_t;
|
|
|
-struct omap_mbox;
|
|
|
-
|
|
|
-typedef int __bitwise omap_mbox_irq_t;
|
|
|
-#define IRQ_TX ((__force omap_mbox_irq_t) 1)
|
|
|
-#define IRQ_RX ((__force omap_mbox_irq_t) 2)
|
|
|
+#include <linux/spinlock.h>
|
|
|
+#include <linux/workqueue.h>
|
|
|
+#include <linux/omap-mailbox.h>
|
|
|
|
|
|
typedef int __bitwise omap_mbox_type_t;
|
|
|
#define OMAP_MBOX_TYPE1 ((__force omap_mbox_type_t) 1)
|
|
@@ -58,48 +58,10 @@ struct omap_mbox {
|
|
|
struct device *dev;
|
|
|
void *priv;
|
|
|
int use_count;
|
|
|
- struct blocking_notifier_head notifier;
|
|
|
+ struct blocking_notifier_head notifier;
|
|
|
};
|
|
|
|
|
|
-int omap_mbox_msg_send(struct omap_mbox *, mbox_msg_t msg);
|
|
|
-void omap_mbox_init_seq(struct omap_mbox *);
|
|
|
-
|
|
|
-struct omap_mbox *omap_mbox_get(const char *, struct notifier_block *nb);
|
|
|
-void omap_mbox_put(struct omap_mbox *mbox, struct notifier_block *nb);
|
|
|
-
|
|
|
int omap_mbox_register(struct device *parent, struct omap_mbox **);
|
|
|
int omap_mbox_unregister(void);
|
|
|
|
|
|
-static inline void omap_mbox_save_ctx(struct omap_mbox *mbox)
|
|
|
-{
|
|
|
- if (!mbox->ops->save_ctx) {
|
|
|
- dev_err(mbox->dev, "%s:\tno save\n", __func__);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- mbox->ops->save_ctx(mbox);
|
|
|
-}
|
|
|
-
|
|
|
-static inline void omap_mbox_restore_ctx(struct omap_mbox *mbox)
|
|
|
-{
|
|
|
- if (!mbox->ops->restore_ctx) {
|
|
|
- dev_err(mbox->dev, "%s:\tno restore\n", __func__);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- mbox->ops->restore_ctx(mbox);
|
|
|
-}
|
|
|
-
|
|
|
-static inline void omap_mbox_enable_irq(struct omap_mbox *mbox,
|
|
|
- omap_mbox_irq_t irq)
|
|
|
-{
|
|
|
- mbox->ops->enable_irq(mbox, irq);
|
|
|
-}
|
|
|
-
|
|
|
-static inline void omap_mbox_disable_irq(struct omap_mbox *mbox,
|
|
|
- omap_mbox_irq_t irq)
|
|
|
-{
|
|
|
- mbox->ops->disable_irq(mbox, irq);
|
|
|
-}
|
|
|
-
|
|
|
-#endif /* MAILBOX_H */
|
|
|
+#endif /* OMAP_MBOX_H */
|