summaryrefslogtreecommitdiff
path: root/arch/arm/core/cortex_m/scs.c
blob: 74d4bdf80f37a98cb0854267540b444ea243c387 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (c) 2013-2014 Wind River Systems, Inc.
 *
 * SPDX-License-Identifier: Apache-2.0
 */

/**
 * @file
 * @brief ARM CORTEX-M Series System Control Space
 *
 * Most of the SCS interface consists of simple bit-flipping methods, and is
 * implemented as inline functions in scs.h. This module thus contains only data
 * definitions and more complex routines, if needed.
 */

#include <kernel.h>
#include <arch/cpu.h>
#include <toolchain.h>
#include <sections.h>

/* the linker always puts this object at 0xe000e000 */
volatile struct __scs __scs_section __scs;