mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 18:41:11 +00:00
This unifies all the EC header files to use __CROS_EC_FILENAME_H as the include guard. Well, except for test/ util/ and extra/ which use __TEST_ __UTIL_ and __EXTRA_ prefixes respectively. BUG=chromium:496895 BRANCH=none TEST=make buildall -j Signed-off-by: Bill Richardson <wfrichar@chromium.org> Change-Id: Iea71b3a08bdec94a11239de810a2b2e152b15029 Reviewed-on: https://chromium-review.googlesource.com/278121 Reviewed-by: Randall Spangler <rspangler@chromium.org>
40 lines
1.2 KiB
C
40 lines
1.2 KiB
C
/* Copyright (c) 2014 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.
|
|
*
|
|
* Registers map and definitions for Cortex-M0 processor
|
|
*/
|
|
|
|
#ifndef __CROS_EC_CPU_H
|
|
#define __CROS_EC_CPU_H
|
|
|
|
#include <stdint.h>
|
|
|
|
/* Macro to access 32-bit registers */
|
|
#define CPUREG(addr) (*(volatile uint32_t*)(addr))
|
|
|
|
/* Nested Vectored Interrupt Controller */
|
|
#define CPU_NVIC_EN(x) CPUREG(0xe000e100)
|
|
#define CPU_NVIC_DIS(x) CPUREG(0xe000e180)
|
|
#define CPU_NVIC_UNPEND(x) CPUREG(0xe000e280)
|
|
#define CPU_NVIC_ISPR(x) CPUREG(0xe000e200)
|
|
#define CPU_NVIC_PRI(x) CPUREG(0xe000e400 + 4 * (x))
|
|
|
|
/* System Control Block */
|
|
#define CPU_SCB_ICSR CPUREG(0xe000ed04)
|
|
|
|
/* SCB AIRCR : Application interrupt and reset control register */
|
|
#define CPU_NVIC_APINT CPUREG(0xe000ed0c)
|
|
/* SCB SCR : System Control Register */
|
|
#define CPU_SCB_SYSCTRL CPUREG(0xe000ed10)
|
|
#define CPU_NVIC_CCR CPUREG(0xe000ed14)
|
|
#define CPU_NVIC_SHCSR2 CPUREG(0xe000ed1c)
|
|
#define CPU_NVIC_SHCSR3 CPUREG(0xe000ed20)
|
|
|
|
#define CPU_NVIC_CCR_UNALIGN_TRAP (1 << 3)
|
|
|
|
/* Set up the cpu to detect faults */
|
|
void cpu_init(void);
|
|
|
|
#endif /* __CROS_EC_CPU_H */
|