mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
52 lines
1.3 KiB
C
52 lines
1.3 KiB
C
|
/*
|
||
|
* Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de>
|
||
|
* 2015 FreshTemp, LLC.
|
||
|
*
|
||
|
* This file is subject to the terms and conditions of the GNU Lesser
|
||
|
* General Public License v2.1. See the file LICENSE in the top level
|
||
|
* directory for more details.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @ingroup cpu_saml21
|
||
|
* @{
|
||
|
*
|
||
|
* @file cpu.c
|
||
|
* @brief Implementation of the CPU initialization for Atmel SAML21 MCUs
|
||
|
*
|
||
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
||
|
* @}
|
||
|
*/
|
||
|
|
||
|
#include "cpu.h"
|
||
|
|
||
|
/**
|
||
|
* @brief Initialize the CPU, set IRQ priorities, clocks
|
||
|
*/
|
||
|
void cpu_init(void)
|
||
|
{
|
||
|
/* disable the watchdog timer */
|
||
|
WDT->CTRLA.bit.ENABLE = 0;
|
||
|
|
||
|
/* set pendSV interrupt to lowest possible priority */
|
||
|
NVIC_SetPriority(PendSV_IRQn, 0xff);
|
||
|
|
||
|
/* turn on MCLK */
|
||
|
MCLK->APBAMASK.reg |= MCLK_APBAMASK_GCLK;
|
||
|
|
||
|
/* Software reset the GCLK module to ensure it is re-initialized correctly */
|
||
|
GCLK->CTRLA.reg = GCLK_CTRLA_SWRST;
|
||
|
while (GCLK->CTRLA.reg & GCLK_CTRLA_SWRST);
|
||
|
while (GCLK->SYNCBUSY.reg & GCLK_SYNCBUSY_SWRST);
|
||
|
|
||
|
/* set OSC16M to 16MHz */
|
||
|
OSCCTRL->OSC16MCTRL.bit.FSEL = 3;
|
||
|
|
||
|
/* Select the correct generator */
|
||
|
while (GCLK->SYNCBUSY.reg & GCLK_SYNCBUSY_GENCTRL(0));
|
||
|
GCLK->GENCTRL[0].reg = (
|
||
|
GCLK_GENCTRL_GENEN /* enable gclk */
|
||
|
| GCLK_GENCTRL_SRC_OSC16M
|
||
|
);
|
||
|
}
|