Home
last modified time | relevance | path

Searched refs:mbox_msg_t (Results 1 – 5 of 5) sorted by relevance

/linux-3.4.99/arch/arm/plat-omap/include/plat/
Dmailbox.h12 typedef u32 mbox_msg_t; typedef
28 mbox_msg_t (*fifo_read)(struct omap_mbox *mbox);
29 void (*fifo_write)(struct omap_mbox *mbox, mbox_msg_t msg);
64 int omap_mbox_msg_send(struct omap_mbox *, mbox_msg_t msg);
/linux-3.4.99/arch/arm/plat-omap/
Dmailbox.c46 static inline mbox_msg_t mbox_fifo_read(struct omap_mbox *mbox) in mbox_fifo_read()
50 static inline void mbox_fifo_write(struct omap_mbox *mbox, mbox_msg_t msg) in mbox_fifo_write()
91 int omap_mbox_msg_send(struct omap_mbox *mbox, mbox_msg_t msg) in omap_mbox_msg_send()
123 mbox_msg_t msg; in mbox_tx_tasklet()
147 mbox_msg_t msg; in mbox_rx_work()
178 mbox_msg_t msg; in __mbox_rx_interrupt()
413 mbox_kfifo_size = ALIGN(mbox_kfifo_size, sizeof(mbox_msg_t)); in omap_mbox_init()
415 sizeof(mbox_msg_t)); in omap_mbox_init()
/linux-3.4.99/arch/arm/mach-omap1/
Dmailbox.c52 static mbox_msg_t omap1_mbox_fifo_read(struct omap_mbox *mbox) in omap1_mbox_fifo_read()
56 mbox_msg_t msg; in omap1_mbox_fifo_read()
59 msg |= ((mbox_msg_t) mbox_read_reg(fifo->cmd)) << 16; in omap1_mbox_fifo_read()
65 omap1_mbox_fifo_write(struct omap_mbox *mbox, mbox_msg_t msg) in omap1_mbox_fifo_write()
/linux-3.4.99/drivers/remoteproc/
Domap_remoteproc.c67 mbox_msg_t msg = (mbox_msg_t) data; in omap_rproc_mbox_callback()
/linux-3.4.99/arch/arm/mach-omap2/
Dmailbox.c98 static mbox_msg_t omap2_mbox_fifo_read(struct omap_mbox *mbox) in omap2_mbox_fifo_read()
102 return (mbox_msg_t) mbox_read_reg(fifo->msg); in omap2_mbox_fifo_read()
105 static void omap2_mbox_fifo_write(struct omap_mbox *mbox, mbox_msg_t msg) in omap2_mbox_fifo_write()