zephyr/soc/riscv/riscv-privilege/sifive-freedom/fe310_clock.c

31 lines
934 B
C
Raw Normal View History

/*
* Copyright (c) 2017 Jean-Paul Etienne <fractalclone@gmail.com>
* Copyright (c) 2017 Palmer Dabbelt <palmer@dabbelt.com>
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <init.h>
#include "fe310_prci.h"
BUILD_ASSERT(MHZ(16) == DT_PROP(DT_NODELABEL(coreclk), clock_frequency),
"Unsupported CORECLK frequency");
BUILD_ASSERT(DT_PROP(DT_NODELABEL(tlclk), clock_div) == 1,
"Unsupported TLCLK divider");
/* Selects the 16MHz oscillator on the HiFive1 board, which provides a clock
* that's accurate enough to actually drive serial ports off of.
*/
static int fe310_clock_init(const struct device *dev)
{
ARG_UNUSED(dev);
PRCI_REG(PRCI_PLLCFG) = PLL_REFSEL(1) | PLL_BYPASS(1);
PRCI_REG(PRCI_PLLDIV) = (PLL_FINAL_DIV_BY_1(1) | PLL_FINAL_DIV(0));
PRCI_REG(PRCI_PLLCFG) |= PLL_SEL(1);
PRCI_REG(PRCI_HFROSCCFG) &= ~ROSC_EN(1);
return 0;
}
SYS_INIT(fe310_clock_init, PRE_KERNEL_1, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);