summaryrefslogtreecommitdiff
path: root/core/cortex-m0/cpu.c
blob: b354cc03e22f62dc9225182f604cf70c012f0f55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Copyright 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.
 *
 * Set up the Cortex-M0 core
 */

#include "cpu.h"

void cpu_init(void)
{
	/* Catch unaligned access */
	CPU_NVIC_CCR |= CPU_NVIC_CCR_UNALIGN_TRAP;

	/* Set supervisor call (SVC) to priority 0 */
	CPU_NVIC_SHCSR2 = 0;

	/* Set lowest priority for PendSV */
	CPU_NVIC_SHCSR3 = (0xff << 16);
}