blob: 8aa984ec1f38b8f57d00cbd82a3cfa3d4018104c [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * omap-mailbox: interprocessor communication module for OMAP
4 */
5
6#ifndef OMAP_MAILBOX_H
7#define OMAP_MAILBOX_H
8
David Brazdil0f672f62019-12-10 10:32:29 +00009typedef uintptr_t mbox_msg_t;
10
11#define omap_mbox_message(data) (u32)(mbox_msg_t)(data)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000012
13typedef int __bitwise omap_mbox_irq_t;
14#define IRQ_TX ((__force omap_mbox_irq_t) 1)
15#define IRQ_RX ((__force omap_mbox_irq_t) 2)
16
17struct mbox_chan;
18struct mbox_client;
19
20struct mbox_chan *omap_mbox_request_channel(struct mbox_client *cl,
21 const char *chan_name);
22
23void omap_mbox_enable_irq(struct mbox_chan *chan, omap_mbox_irq_t irq);
24void omap_mbox_disable_irq(struct mbox_chan *chan, omap_mbox_irq_t irq);
25
26#endif /* OMAP_MAILBOX_H */