summaryrefslogtreecommitdiff
path: root/core/cortex-m/include/mpu_private.h
diff options
context:
space:
mode:
authorTom Hughes <tomhughes@chromium.org>2020-05-14 14:33:36 -0700
committerCommit Bot <commit-bot@chromium.org>2020-05-22 19:22:14 +0000
commit67665bb55473e64da629df0546245e61e810927b (patch)
tree0d1b38bff2cc9078e877304d554aec9409536b48 /core/cortex-m/include/mpu_private.h
parent7177f1832161f56a355c94912c1442d1af9c67a8 (diff)
downloadchrome-ec-67665bb55473e64da629df0546245e61e810927b.tar.gz
core/cortex-m: create private MPU header for use by unit tests
Expose definitions that we want to use in unit tests, but are internal details that should not be used by other EC code using the rollback functionality. BRANCH=none BUG=b:155229277, b:156501835 TEST=make buildall -j Signed-off-by: Tom Hughes <tomhughes@chromium.org> Change-Id: Iab14a0cf17d4a986f1a1d9b77d27957976962078 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2202851 Reviewed-by: Abe Levkoy <alevkoy@chromium.org> Commit-Queue: Yicheng Li <yichengli@chromium.org> Tested-by: Yicheng Li <yichengli@chromium.org>
Diffstat (limited to 'core/cortex-m/include/mpu_private.h')
-rw-r--r--core/cortex-m/include/mpu_private.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/core/cortex-m/include/mpu_private.h b/core/cortex-m/include/mpu_private.h
new file mode 100644
index 0000000000..3e52b35c76
--- /dev/null
+++ b/core/cortex-m/include/mpu_private.h
@@ -0,0 +1,24 @@
+/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/**
+ * @file
+ *
+ * @brief Private header file. Not meant to be used outside of mpu.c and tests.
+ */
+
+#ifndef __CROS_EC_MPU_PRIVATE_H
+#define __CROS_EC_MPU_PRIVATE_H
+
+int mpu_num_regions(void);
+bool has_mpu(void);
+bool mpu_is_unified(void);
+void mpu_disable(void);
+int mpu_update_region(uint8_t region, uint32_t addr, uint8_t size_bit,
+ uint16_t attr, uint8_t enable, uint8_t srd);
+int mpu_config_region(uint8_t region, uint32_t addr, uint32_t size,
+ uint16_t attr, uint8_t enable);
+
+#endif /* __CROS_EC_MPU_PRIVATE_H */