summaryrefslogtreecommitdiffstats
path: root/sys/arch/arm/cortex/smc.h
diff options
context:
space:
mode:
authorpatrick <patrick@openbsd.org>2013-05-01 14:09:50 +0000
committerpatrick <patrick@openbsd.org>2013-05-01 14:09:50 +0000
commit7c3dc09bd9564f7bd23c7b67b627fdb48e375503 (patch)
tree084611fa23b5402f0ee1881cdc9eadbf67c910c0 /sys/arch/arm/cortex/smc.h
parentDisable PandaBoard's L2 Cache early on bootup. We will re-enable it (diff)
downloadwireguard-openbsd-7c3dc09bd9564f7bd23c7b67b627fdb48e375503.tar.xz
wireguard-openbsd-7c3dc09bd9564f7bd23c7b67b627fdb48e375503.zip
Add a secure monitor call function, so that a secondary cache controller
driver can talk to its controller properly. From drahn at dalerahn.com. ok bmercer@
Diffstat (limited to 'sys/arch/arm/cortex/smc.h')
-rw-r--r--sys/arch/arm/cortex/smc.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/sys/arch/arm/cortex/smc.h b/sys/arch/arm/cortex/smc.h
new file mode 100644
index 00000000000..a537852f73c
--- /dev/null
+++ b/sys/arch/arm/cortex/smc.h
@@ -0,0 +1,29 @@
+/* $OpenBSD: smc.h,v 1.1 2013/05/01 14:09:50 patrick Exp $ */
+/*
+ * Copyright (c) 2013 Dale Rahn <drahn@dalerahn.com>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+/* SMC interface for hardware */
+
+#ifdef _KERNEL
+
+/* XXX these defines go here ? */
+#define SMC_L2_DBG 0x100
+#define SMC_L2_CTL 0x102
+
+void platform_smc_write(bus_space_tag_t, bus_space_handle_t, bus_size_t,
+ uint32_t, uint32_t);
+
+#endif /* _KERNEL */