nuttx/arch/risc-v/src/fe310/fe310_clockconfig.c

153 lines
4.7 KiB
C
Raw Normal View History

/****************************************************************************
* arch/risc-v/src/fe310/fe310_clockconfig.c
*
* Copyright (C) 2019 Masayuki Ishikawa. All rights reserved.
* Author: Masayuki Ishikawa <masayuki.ishikawa@gmail.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name NuttX nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <stdint.h>
#include <assert.h>
#include <debug.h>
#include <nuttx/arch.h>
#include <arch/board/board.h>
#include "up_arch.h"
#include "fe310_clockconfig.h"
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
#define EXT_OSC 16000000
#define PLL_64M (1 + (31 << 4) + (3 << 10)) /* R:2 F:64 Q:8 8M/512M/64M */
#define PLL_128M (1 + (31 << 4) + (2 << 10)) /* R:2 F:64 Q:8 8M/512M/128M */
#define PLL_256M (1 + (31 << 4) + (1 << 10)) /* R:2 F:64 Q:8 8M/512M/256M */
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: fe310_get_hfclk
****************************************************************************/
uint32_t fe310_get_hfclk(void)
{
uint32_t val;
uint32_t freq = 0;
/* Check pllbypass */
if (0 != (getreg32(FE310_PLLCFG) & PLLCFG_PLLBYPASS))
{
freq = EXT_OSC;
goto out;
}
/* Check pllsel */
if (0 != ((val = getreg32(FE310_PLLCFG)) & PLLCFG_PLLSEL))
{
freq = EXT_OSC;
freq /= ((val & 0x3) + 1); /* R: 2bit */
freq *= ((((val >> 4) & 0x3f) + 1) * 2); /* F: 6bit */
freq /= (1 << ((val >> 10) & 0x3)); /* Q: 2bit */
goto out;
}
/* TODO: HFROSC */
ASSERT(false);
out:
return freq;
}
/****************************************************************************
* Name: fe310_clockconfig
****************************************************************************/
void fe310_clockconfig(void)
{
uint32_t val;
uint32_t pllsel;
/* NOTE: These are workarounds to avoid a bug with debugger */
pllsel = 0x1;
pllsel <<= 16;
/* Disable PLL by setting pllbypass and clear pllsel */
modifyreg32(FE310_PLLCFG, pllsel, PLLCFG_PLLBYPASS);
/* Enable HFXOSC (external Xtal OSC 16MHz) and wait */
putreg32(HFXOSCCFG_HFXOSCEN, FE310_HFXOSCCFG);
while ((getreg32(FE310_HFXOSCCFG) & HFXOSCCFG_HFXOSCRDY)
!= HFXOSCCFG_HFXOSCRDY)
{
}
val = PLL_256M;
val |= (PLLCFG_PLLREFSEL); /* Set PLLREFSEL (XOSCOUT) */
val |= PLLCFG_PLLBYPASS; /* But Still disable PLL */
putreg32(val, FE310_PLLCFG); /* Set PLL config */
/* Set plloutdiv to pass-through */
putreg32(0x1 << 8, FE310_PLLOUTDIV);
/* Enable PLL by clearing pllbypass and wait */
modifyreg32(FE310_PLLCFG, PLLCFG_PLLBYPASS, 0);
while ((getreg32(FE310_PLLCFG) & PLLCFG_PLLLOCK) == 0x0)
{
}
/* TODO: Set QSPI divider if needed */
/* Select PLL as hfclk */
modifyreg32(FE310_PLLCFG, 0, pllsel);
}