summaryrefslogtreecommitdiff
path: root/arch/arm/mach-keystone/include/mach/msmc.h
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2015-02-20 17:04:18 +0900
committerTom Rini <trini@ti.com>2015-02-21 08:23:52 -0500
commitdc7de222aa82cc962f15b5d04e1e4c6b0ab62398 (patch)
tree31443e719f54f025300e213138db5e86ea35b216 /arch/arm/mach-keystone/include/mach/msmc.h
parentfd697ecf5d1797180c29328b013d48ee3a788e03 (diff)
downloadu-boot-imx-dc7de222aa82cc962f15b5d04e1e4c6b0ab62398.zip
u-boot-imx-dc7de222aa82cc962f15b5d04e1e4c6b0ab62398.tar.gz
u-boot-imx-dc7de222aa82cc962f15b5d04e1e4c6b0ab62398.tar.bz2
ARM: keystone: move SoC headers to mach-keystone/include/mach
Move arch/arm/include/asm/arch-keystone/* -> arch/arm/mach-keystone/include/mach/* Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/mach-keystone/include/mach/msmc.h')
-rw-r--r--arch/arm/mach-keystone/include/mach/msmc.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/arch/arm/mach-keystone/include/mach/msmc.h b/arch/arm/mach-keystone/include/mach/msmc.h
new file mode 100644
index 0000000..083f5ba
--- /dev/null
+++ b/arch/arm/mach-keystone/include/mach/msmc.h
@@ -0,0 +1,45 @@
+/*
+ * MSMC controller
+ *
+ * (C) Copyright 2014
+ * Texas Instruments Incorporated, <www.ti.com>
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#ifndef _MSMC_H_
+#define _MSMC_H_
+
+#include <asm/arch/hardware.h>
+
+enum mpax_seg_size {
+ MPAX_SEG_4K = 0x0b,
+ MPAX_SEG_8K,
+ MPAX_SEG_16K,
+ MPAX_SEG_32K,
+ MPAX_SEG_64K,
+ MPAX_SEG_128K,
+ MPAX_SEG_256K,
+ MPAX_SEG_512K,
+ MPAX_SEG_1M,
+ MPAX_SEG_2M,
+ MPAX_SEG_4M,
+ MPAX_SEG_8M,
+ MPAX_SEG_16M,
+ MPAX_SEG_32M,
+ MPAX_SEG_64M,
+ MPAX_SEG_128M,
+ MPAX_SEG_256M,
+ MPAX_SEG_512M,
+ MPAX_SEG_1G,
+ MPAX_SEG_2G,
+ MPAX_SEG_4G
+};
+
+void msmc_share_all_segments(int priv_id);
+void msmc_get_ses_mpax(int priv_id, int ses_pair, u32 *mpax);
+void msmc_set_ses_mpax(int priv_id, int ses_pair, u32 *mpax);
+void msmc_map_ses_segment(int priv_id, int ses_pair,
+ u32 src_pfn, u32 dst_pfn, enum mpax_seg_size size);
+
+#endif