]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - include/linux/omap-mailbox.h
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 503
[thirdparty/kernel/stable.git] / include / linux / omap-mailbox.h
CommitLineData
2ad51576 1/* SPDX-License-Identifier: GPL-2.0 */
c869c75c
SA
2/*
3 * omap-mailbox: interprocessor communication module for OMAP
c869c75c
SA
4 */
5
6#ifndef OMAP_MAILBOX_H
7#define OMAP_MAILBOX_H
8
9typedef u32 mbox_msg_t;
c869c75c
SA
10
11typedef int __bitwise omap_mbox_irq_t;
12#define IRQ_TX ((__force omap_mbox_irq_t) 1)
13#define IRQ_RX ((__force omap_mbox_irq_t) 2)
14
8841a66a
SA
15struct mbox_chan;
16struct mbox_client;
c869c75c 17
8841a66a
SA
18struct mbox_chan *omap_mbox_request_channel(struct mbox_client *cl,
19 const char *chan_name);
c869c75c 20
8841a66a
SA
21void omap_mbox_enable_irq(struct mbox_chan *chan, omap_mbox_irq_t irq);
22void omap_mbox_disable_irq(struct mbox_chan *chan, omap_mbox_irq_t irq);
c869c75c
SA
23
24#endif /* OMAP_MAILBOX_H */