aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/omap-mailbox.h
diff options
context:
space:
mode:
authorSuman Anna <s-anna@ti.com>2019-06-04 12:01:46 -0500
committerJassi Brar <jaswinder.singh@linaro.org>2019-07-10 23:08:44 -0500
commit9c1f2a5dc2948b9f1170d4202c84745f0b0ff0c9 (patch)
tree960be942911df7c0ac1ba50dc1e3a6afb35a3e3e /include/linux/omap-mailbox.h
parentdt-bindings: mailbox: omap: Update bindings for TI K3 SoCs (diff)
downloadwireguard-linux-9c1f2a5dc2948b9f1170d4202c84745f0b0ff0c9.tar.xz
wireguard-linux-9c1f2a5dc2948b9f1170d4202c84745f0b0ff0c9.zip
mailbox: omap: Add support for TI K3 SoCs
The TI K3 AM65x and J721E family of SoCs have a new Mailbox IP that is based on the existing Mailbox IP present in OMAP architecture based SoCs. Each instance of the legacy OMAP Mailbox IP is now a single cluster within the newer Mailbox IP instance on K3 architecture based SoCs. A single K3 Mailbox IP instance has multiple clusters with each cluster providing the same functionality as the existing OMAP Mailbox IP. Reuse the existing OMAP Mailbox driver to extend the support for this newer IP present within the Main NavSS block on K3 SoCs. The K3 family of SoCs use 64-bit ARMv8 processors for running Linux, so the driver is also enhanced to deal with the differences between the 32-bit message payloads and the 64-bit pointers used by the client drivers. Signed-off-by: Suman Anna <s-anna@ti.com> Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Diffstat (limited to 'include/linux/omap-mailbox.h')
-rw-r--r--include/linux/omap-mailbox.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/omap-mailbox.h b/include/linux/omap-mailbox.h
index 6dbcd2da0332..8aa984ec1f38 100644
--- a/include/linux/omap-mailbox.h
+++ b/include/linux/omap-mailbox.h
@@ -6,7 +6,9 @@
#ifndef OMAP_MAILBOX_H
#define OMAP_MAILBOX_H
-typedef u32 mbox_msg_t;
+typedef uintptr_t mbox_msg_t;
+
+#define omap_mbox_message(data) (u32)(mbox_msg_t)(data)
typedef int __bitwise omap_mbox_irq_t;
#define IRQ_TX ((__force omap_mbox_irq_t) 1)