2010-03-26 16:18:48 +00:00
|
|
|
/*
|
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
|
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-05 08:12:31 +00:00
|
|
|
* @file LPC11xx/hal_lld.h
|
2010-03-26 16:18:48 +00:00
|
|
|
* @brief HAL subsystem low level driver header template.
|
|
|
|
*
|
2010-10-26 17:39:29 +00:00
|
|
|
* @addtogroup HAL
|
2010-03-26 16:18:48 +00:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _HAL_LLD_H_
|
|
|
|
#define _HAL_LLD_H_
|
|
|
|
|
2010-03-27 08:22:39 +00:00
|
|
|
#include "LPC11xx.h"
|
|
|
|
#include "nvic.h"
|
|
|
|
|
2010-03-26 16:18:48 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver constants. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Platform name.
|
|
|
|
*/
|
2010-04-05 08:12:31 +00:00
|
|
|
#define PLATFORM_NAME "LPC11xx"
|
2010-03-27 12:27:25 +00:00
|
|
|
|
|
|
|
#define IRCOSCCLK 12000000 /**< High speed internal clock. */
|
2010-03-28 10:27:46 +00:00
|
|
|
#define WDGOSCCLK 1600000 /**< Watchdog internal clock. */
|
2010-03-27 12:27:25 +00:00
|
|
|
|
2010-04-05 07:24:32 +00:00
|
|
|
#define SYSPLLCLKSEL_IRCOSC 0 /**< Internal RC oscillator
|
2010-03-27 12:27:25 +00:00
|
|
|
clock source. */
|
|
|
|
#define SYSPLLCLKSEL_SYSOSC 1 /**< System oscillator clock
|
|
|
|
source. */
|
2010-03-26 16:18:48 +00:00
|
|
|
|
2010-04-05 07:24:32 +00:00
|
|
|
#define SYSMAINCLKSEL_IRCOSC 0 /**< Clock source is IRC. */
|
2010-03-28 16:30:22 +00:00
|
|
|
#define SYSMAINCLKSEL_PLLIN 1 /**< Clock source is PLLIN. */
|
|
|
|
#define SYSMAINCLKSEL_WDGOSC 2 /**< Clock source is WDGOSC. */
|
|
|
|
#define SYSMAINCLKSEL_PLLOUT 3 /**< Clock source is PLLOUT. */
|
2010-03-27 16:15:55 +00:00
|
|
|
|
2010-03-26 16:18:48 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver pre-compile time settings. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2010-03-27 12:27:25 +00:00
|
|
|
/**
|
|
|
|
* @brief System PLL clock source.
|
|
|
|
*/
|
2010-03-27 16:15:55 +00:00
|
|
|
#if !defined(LPC11xx_PLLCLK_SOURCE) || defined(__DOXYGEN__)
|
|
|
|
#define LPC11xx_PLLCLK_SOURCE SYSPLLCLKSEL_SYSOSC
|
2010-03-27 12:27:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief System PLL multiplier.
|
|
|
|
* @note The value must be in the 1..32 range and the final frequency
|
2010-03-27 16:15:55 +00:00
|
|
|
* must not exceed the CCO ratings.
|
2010-03-27 12:27:25 +00:00
|
|
|
*/
|
|
|
|
#if !defined(LPC11xx_SYSPLL_MUL) || defined(__DOXYGEN__)
|
2010-03-28 16:30:22 +00:00
|
|
|
#define LPC11xx_SYSPLL_MUL 4
|
2010-03-27 12:27:25 +00:00
|
|
|
#endif
|
|
|
|
|
2010-03-27 16:15:55 +00:00
|
|
|
/**
|
|
|
|
* @brief System PLL divider.
|
|
|
|
* @note The value must be chosen between (2, 4, 8, 16).
|
|
|
|
*/
|
|
|
|
#if !defined(LPC11xx_SYSPLL_DIV) || defined(__DOXYGEN__)
|
|
|
|
#define LPC11xx_SYSPLL_DIV 4
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief System main clock source.
|
|
|
|
*/
|
|
|
|
#if !defined(LPC11xx_MAINCLK_SOURCE) || defined(__DOXYGEN__)
|
|
|
|
#define LPC11xx_MAINCLK_SOURCE SYSMAINCLKSEL_PLLOUT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2010-04-02 15:12:33 +00:00
|
|
|
* @brief AHB clock divider.
|
2010-03-27 16:15:55 +00:00
|
|
|
* @note The value must be chosen between (1...255).
|
|
|
|
*/
|
|
|
|
#if !defined(LPC11xx_SYSCLK_DIV) || defined(__DOXYGEN__)
|
2010-03-28 10:27:46 +00:00
|
|
|
#define LPC11xx_SYSABHCLK_DIV 1
|
2010-03-27 16:15:55 +00:00
|
|
|
#endif
|
|
|
|
|
2010-03-26 16:18:48 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Derived constants and error checks. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2010-03-28 10:27:46 +00:00
|
|
|
/**
|
|
|
|
* @brief Calculated SYSOSCCTRL setting.
|
|
|
|
*/
|
|
|
|
#if (SYSOSCCLK < 18000000) || defined(__DOXYGEN__)
|
|
|
|
#define LPC11xx_SYSOSCCTRL 0
|
|
|
|
#else
|
|
|
|
#define LPC11xx_SYSOSCCTRL 1
|
|
|
|
#endif
|
|
|
|
|
2010-03-27 16:15:55 +00:00
|
|
|
/**
|
|
|
|
* @brief PLL input clock frequency.
|
|
|
|
*/
|
|
|
|
#if (LPC11xx_PLLCLK_SOURCE == SYSPLLCLKSEL_SYSOSC) || defined(__DOXYGEN__)
|
2010-03-27 12:27:25 +00:00
|
|
|
#define LPC11xx_SYSPLLCLKIN SYSOSCCLK
|
2010-03-27 16:15:55 +00:00
|
|
|
#elif LPC11xx_PLLCLK_SOURCE == SYSPLLCLKSEL_IRCOCS
|
2010-03-27 12:27:25 +00:00
|
|
|
#define LPC11xx_SYSPLLCLKIN IRCOSCCLK
|
|
|
|
#else
|
2010-03-27 16:15:55 +00:00
|
|
|
#error "invalid LPC11xx_PLLCLK_SOURCE clock source specified"
|
2010-03-27 12:27:25 +00:00
|
|
|
#endif
|
|
|
|
|
2010-03-28 10:27:46 +00:00
|
|
|
/**
|
|
|
|
* @brief MSEL mask in SYSPLLCTRL register.
|
|
|
|
*/
|
|
|
|
#if (LPC11xx_SYSPLL_MUL >= 1) && (LPC11xx_SYSPLL_MUL <= 32) || \
|
|
|
|
defined(__DOXYGEN__)
|
|
|
|
#define LPC11xx_SYSPLLCTRL_MSEL (LPC11xx_SYSPLL_MUL - 1)
|
|
|
|
#else
|
2010-03-27 12:27:25 +00:00
|
|
|
#error "LPC11xx_SYSPLL_MUL out of range (1...32)"
|
|
|
|
#endif
|
|
|
|
|
2010-03-28 10:27:46 +00:00
|
|
|
/**
|
|
|
|
* @brief PSEL mask in SYSPLLCTRL register.
|
|
|
|
*/
|
|
|
|
#if (LPC11xx_SYSPLL_DIV == 2) || defined(__DOXYGEN__)
|
|
|
|
#define LPC11xx_SYSPLLCTRL_PSEL (0 << 5)
|
|
|
|
#elif LPC11xx_SYSPLL_DIV == 4
|
|
|
|
#define LPC11xx_SYSPLLCTRL_PSEL (1 << 5)
|
|
|
|
#elif LPC11xx_SYSPLL_DIV == 8
|
|
|
|
#define LPC11xx_SYSPLLCTRL_PSEL (2 << 5)
|
|
|
|
#elif LPC11xx_SYSPLL_DIV == 16
|
|
|
|
#define LPC11xx_SYSPLLCTRL_PSEL (3 << 5)
|
|
|
|
#else
|
2010-03-27 16:15:55 +00:00
|
|
|
#error "invalid LPC11xx_SYSPLL_DIV value (2,4,8,16)"
|
|
|
|
#endif
|
|
|
|
|
2010-03-27 12:27:25 +00:00
|
|
|
/**
|
2010-03-27 16:15:55 +00:00
|
|
|
* @brief CCP frequency.
|
2010-03-27 12:27:25 +00:00
|
|
|
*/
|
2010-03-28 16:30:22 +00:00
|
|
|
#define LPC11xx_SYSPLLCCO (LPC11xx_SYSPLLCLKIN * LPC11xx_SYSPLL_MUL * \
|
|
|
|
LPC11xx_SYSPLL_DIV)
|
2010-03-27 12:27:25 +00:00
|
|
|
|
2010-03-27 16:15:55 +00:00
|
|
|
#if (LPC11xx_SYSPLLCCO < 156000000) || (LPC11xx_SYSPLLCCO > 320000000)
|
2010-03-27 12:27:25 +00:00
|
|
|
#error "CCO frequency out of the acceptable range (156...320)"
|
|
|
|
#endif
|
|
|
|
|
2010-03-27 16:15:55 +00:00
|
|
|
/**
|
|
|
|
* @brief PLL output clock frequency.
|
|
|
|
*/
|
|
|
|
#define LPC11xx_SYSPLLCLKOUT (LPC11xx_SYSPLLCCO / LPC11xx_SYSPLL_DIV)
|
|
|
|
|
|
|
|
#if (LPC11xx_MAINCLK_SOURCE == SYSMAINCLKSEL_IRCOCS) || defined(__DOXYGEN__)
|
|
|
|
#define LPC11xx_MAINCLK IRCOSCCLK
|
|
|
|
#elif LPC11xx_MAINCLK_SOURCE == SYSMAINCLKSEL_PLLIN
|
|
|
|
#define LPC11xx_MAINCLK LPC11xx_SYSPLLCLKIN
|
|
|
|
#elif LPC11xx_MAINCLK_SOURCE == SYSMAINCLKSEL_WDGOSC
|
|
|
|
#define LPC11xx_MAINCLK WDGOSCCLK
|
|
|
|
#elif LPC11xx_MAINCLK_SOURCE == SYSMAINCLKSEL_PLLOUT
|
|
|
|
#define LPC11xx_MAINCLK LPC11xx_SYSPLLCLKOUT
|
|
|
|
#else
|
|
|
|
#error "invalid LPC11xx_MAINCLK_SOURCE clock source specified"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief AHB clock.
|
|
|
|
*/
|
2010-03-28 10:27:46 +00:00
|
|
|
#define LPC11xx_SYSCLK (LPC11xx_MAINCLK / LPC11xx_SYSABHCLK_DIV)
|
2010-04-08 17:38:20 +00:00
|
|
|
#if LPC11xx_SYSCLK > 50000000
|
2010-03-27 16:15:55 +00:00
|
|
|
#error "AHB clock frequency out of the acceptable range (50MHz max)"
|
|
|
|
#endif
|
|
|
|
|
2010-03-28 10:27:46 +00:00
|
|
|
/**
|
|
|
|
* @brief Flash wait states.
|
|
|
|
*/
|
|
|
|
#if (LPC11xx_SYSCLK <= 20000000) || defined(__DOXYGEN__)
|
|
|
|
#define LPC11xx_FLASHCFG_FLASHTIM 0
|
|
|
|
#elif LPC11xx_SYSCLK <= 40000000
|
|
|
|
#define LPC11xx_FLASHCFG_FLASHTIM 1
|
|
|
|
#else
|
|
|
|
#define LPC11xx_FLASHCFG_FLASHTIM 2
|
|
|
|
#endif
|
|
|
|
|
2010-03-26 16:18:48 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver data structures and types. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver macros. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* External declarations. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
void hal_lld_init(void);
|
2010-03-26 16:33:03 +00:00
|
|
|
void lpc111x_clock_init(void);
|
2010-03-26 16:18:48 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _HAL_LLD_H_ */
|
|
|
|
|
|
|
|
/** @} */
|