166 lines
5.7 KiB
C
166 lines
5.7 KiB
C
/*
|
|
* @brief LPC11u6x Chip specific SystemInit
|
|
*
|
|
* @note
|
|
* Copyright(C) NXP Semiconductors, 2013
|
|
* All rights reserved.
|
|
*
|
|
* @par
|
|
* Software that is described herein is for illustrative purposes only
|
|
* which provides customers with programming information regarding the
|
|
* LPC products. This software is supplied "AS IS" without any warranties of
|
|
* any kind, and NXP Semiconductors and its licensor disclaim any and
|
|
* all warranties, express or implied, including all implied warranties of
|
|
* merchantability, fitness for a particular purpose and non-infringement of
|
|
* intellectual property rights. NXP Semiconductors assumes no responsibility
|
|
* or liability for the use of the software, conveys no license or rights under any
|
|
* patent, copyright, mask work right, or any other intellectual property rights in
|
|
* or to any products. NXP Semiconductors reserves the right to make changes
|
|
* in the software without notification. NXP Semiconductors also makes no
|
|
* representation or warranty that such application will be suitable for the
|
|
* specified use without further testing or modification.
|
|
*
|
|
* @par
|
|
* Permission to use, copy, modify, and distribute this software and its
|
|
* documentation is hereby granted, under NXP Semiconductors' and its
|
|
* licensor's relevant copyrights in the software, without fee, provided that it
|
|
* is used in conjunction with NXP Semiconductors microcontrollers. This
|
|
* copyright, permission, and disclaimer notice must appear in all copies of
|
|
* this code.
|
|
*/
|
|
|
|
#include "chip.h"
|
|
|
|
/*****************************************************************************
|
|
* Private types/enumerations/variables
|
|
****************************************************************************/
|
|
|
|
/* Enable this definition to use the ROM API for PLL setup */
|
|
// #define USE_ROM_API
|
|
|
|
/*****************************************************************************
|
|
* Public types/enumerations/variables
|
|
****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
* Private functions
|
|
****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
* Public functions
|
|
****************************************************************************/
|
|
|
|
/* Clock and PLL initialization based on the internal oscillator */
|
|
void Chip_SetupIrcClocking(void)
|
|
{
|
|
#if defined(USE_ROM_API)
|
|
uint32_t cmd[4], resp[2];
|
|
#endif
|
|
|
|
/* Turn on the IRC by clearing the power down bit */
|
|
Chip_SYSCTL_PowerUp(SYSCTL_POWERDOWN_IRC_PD);
|
|
|
|
/* Select the PLL input in the IRC */
|
|
Chip_Clock_SetSystemPLLSource(SYSCTL_PLLCLKSRC_IRC);
|
|
|
|
/* Setup FLASH access */
|
|
Chip_FMC_SetFLASHAccess(FLASHTIM_3CLK_CPU);
|
|
|
|
#if defined(USE_ROM_API)
|
|
/* Use ROM API for setting up PLL */
|
|
cmd[0] = Chip_Clock_GetIntOscRate() / 1000; /* in KHz */
|
|
cmd[1] = 48000000 / 1000; /* 48MHz system clock rate */
|
|
cmd[2] = CPU_FREQ_EQU;
|
|
cmd[3] = 48000000 / 10000; /* Timeout */
|
|
LPC_PWRD_API->set_pll(cmd, resp);
|
|
|
|
/* Dead loop on fail */
|
|
while (resp[0] != PLL_CMD_SUCCESS) {}
|
|
#else
|
|
/* Power down PLL to change the PLL divider ratio */
|
|
Chip_SYSCTL_PowerDown(SYSCTL_POWERDOWN_SYSPLL_PD);
|
|
|
|
/* Configure the PLL M and P dividers */
|
|
/* Setup PLL for main oscillator rate (FCLKIN = 12MHz) * 4 = 48MHz
|
|
MSEL = 3 (this is pre-decremented), PSEL = 1 (for P = 2)
|
|
FCLKOUT = FCLKIN * (MSEL + 1) = 12MHz * 4 = 48MHz
|
|
FCCO = FCLKOUT * 2 * P = 48MHz * 2 * 2 = 192MHz (within FCCO range) */
|
|
Chip_Clock_SetupSystemPLL(3, 1);
|
|
|
|
/* Turn on the PLL by clearing the power down bit */
|
|
Chip_SYSCTL_PowerUp(SYSCTL_POWERDOWN_SYSPLL_PD);
|
|
|
|
/* Wait for PLL to lock */
|
|
while (!Chip_Clock_IsSystemPLLLocked()) {}
|
|
|
|
/* Set system clock divider to 1 */
|
|
Chip_Clock_SetSysClockDiv(1);
|
|
|
|
/* Set main clock source to the system PLL. This will drive 24MHz
|
|
for the main clock and 24MHz for the system clock */
|
|
Chip_Clock_SetMainClockSource(SYSCTL_MAINCLKSRC_PLLOUT);
|
|
#endif
|
|
}
|
|
|
|
/* Clock and PLL initialization based on the external oscillator */
|
|
void Chip_SetupXtalClocking(void)
|
|
{
|
|
volatile int i;
|
|
#if defined(USE_ROM_API)
|
|
uint32_t cmd[4], resp[2];
|
|
#endif
|
|
|
|
/* Powerup main oscillator */
|
|
Chip_SYSCTL_PowerUp(SYSCTL_POWERDOWN_SYSOSC_PD);
|
|
|
|
/* Wait for at least 580uS for osc to stabilize */
|
|
for (i = 0; i < 2500; i++) {}
|
|
|
|
/* Set system PLL input to main oscillator */
|
|
Chip_Clock_SetSystemPLLSource(SYSCTL_PLLCLKSRC_MAINOSC);
|
|
|
|
/* Setup FLASH access to 3 clocks */
|
|
Chip_FMC_SetFLASHAccess(FLASHTIM_3CLK_CPU);
|
|
|
|
#if defined(USE_ROM_API)
|
|
/* Use ROM API for setting up PLL */
|
|
cmd[0] = Chip_Clock_GetMainOscRate() / 1000; /* in KHz */
|
|
cmd[1] = 48000000 / 1000; /* 48MHz system clock rate */
|
|
cmd[2] = CPU_FREQ_EQU;
|
|
cmd[3] = 48000000 / 10000; /* Timeout */
|
|
LPC_PWRD_API->set_pll(cmd, resp);
|
|
|
|
/* Dead loop on fail */
|
|
while (resp[0] != PLL_CMD_SUCCESS) {}
|
|
#else
|
|
/* Power down PLL to change the PLL divider ratio */
|
|
Chip_SYSCTL_PowerDown(SYSCTL_POWERDOWN_SYSPLL_PD);
|
|
|
|
/* Setup PLL for main oscillator rate (FCLKIN = 12MHz) * 4 = 48MHz
|
|
MSEL = 3 (this is pre-decremented), PSEL = 1 (for P = 2)
|
|
FCLKOUT = FCLKIN * (MSEL + 1) = 12MHz * 4 = 48MHz
|
|
FCCO = FCLKOUT * 2 * P = 48MHz * 2 * 2 = 192MHz (within FCCO range) */
|
|
Chip_Clock_SetupSystemPLL(3, 1);
|
|
|
|
/* Powerup system PLL */
|
|
Chip_SYSCTL_PowerUp(SYSCTL_POWERDOWN_SYSPLL_PD);
|
|
|
|
/* Wait for PLL to lock */
|
|
while (!Chip_Clock_IsSystemPLLLocked()) {}
|
|
|
|
/* Set system clock divider to 1 */
|
|
Chip_Clock_SetSysClockDiv(1);
|
|
|
|
/* Set main clock source to the system PLL. This will drive 48MHz
|
|
for the main clock and 48MHz for the system clock */
|
|
Chip_Clock_SetMainClockSource(SYSCTL_MAINCLKSRC_PLLOUT);
|
|
#endif
|
|
}
|
|
|
|
/* Set up and initialize hardware prior to call to main */
|
|
void Chip_SystemInit(void)
|
|
{
|
|
/* Initial internal clocking */
|
|
Chip_SetupIrcClocking();
|
|
}
|