Replaced custom register bitfield macros by TivaWare bitfield macros.
This commit is contained in:
parent
cf6cf08b9a
commit
0e86715267
|
@ -115,7 +115,7 @@ void tiva_clock_init(void)
|
|||
/*
|
||||
* 7. Write the MEMTIM0 register to correspond to the new system clock setting.
|
||||
*/
|
||||
HWREG(SYSCTL_MEMTIM0) = (MEMTIM0_FBCHT_3_5 | MEMTIM0_FWS_5 | MEMTIM0_EBCHT_3_5 | MEMTIM0_EWS_5 | MEMTIM0_MB1);
|
||||
HWREG(SYSCTL_MEMTIM0) = (SYSCTL_MEMTIM0_FBCHT_3_5 | (5 << SYSCTL_MEMTIM0_FWS_S) | SYSCTL_MEMTIM0_EBCHT_3_5 | (5 << SYSCTL_MEMTIM0_EWS_S) | SYSCTL_MEMTIM0_MB1);
|
||||
|
||||
/*
|
||||
* Wait for the PLLSTAT register to indicate the PLL has reached lock at the new operating point
|
||||
|
|
|
@ -38,170 +38,8 @@
|
|||
* @name Platform identification
|
||||
* @{
|
||||
*/
|
||||
|
||||
#define PLATFORM_NAME "Tiva C Series TM4C129x"
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/**
|
||||
* @name RIS register bits definitions
|
||||
* @{
|
||||
*/
|
||||
|
||||
#define SYSCTL_RIS_PLLLRIS (1 << 6)
|
||||
#define SYSCTL_RIS_MOSCPUPRIS (1 << 8)
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/**
|
||||
* @name MOSCCTL register bits definitions
|
||||
* @{
|
||||
*/
|
||||
|
||||
#define MOSCCTL_CVAL (1 << 0)
|
||||
#define MOSCCTL_MOSCIM (1 << 1)
|
||||
#define MOSCCTL_NOXTAL (1 << 2)
|
||||
#define MOSCCTL_PWRDN (1 << 3)
|
||||
#define MOSCCTL_OSCRNG (1 << 4)
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/**
|
||||
* @name RSCLKCFG register bits definitions
|
||||
* @{
|
||||
*/
|
||||
|
||||
#define RSCLKCFG_PSYSDIV_bm (0xfffff << 0)
|
||||
#define RSCLKCFG_OSYSDIV_bm (0xfffff << 10
|
||||
|
||||
#define RSCLKCFG_OSCSRC_bm (0xff << 20)
|
||||
#define RSCLKCFG_OSCSRC_PIOSC (0 << 20)
|
||||
#define RSCLKCFG_OSCSRC_LFIOSC (0x02 << 20)
|
||||
#define RSCLKCFG_OSCSRC_MOSC (0x03 << 20)
|
||||
#define RSCLKCFG_OSCSRC_RTCOSC (0x04 << 20)
|
||||
|
||||
#define RSCLKCFG_PLLSRC_bm (0xff << 24)
|
||||
#define RSCLKCFG_PLLSRC_PIOSC (0 << 24)
|
||||
#define RSCLKCFG_PLLSRC_MOSC (0x03 << 24)
|
||||
|
||||
#define RSCLKCFG_USEPLL (1 << 28)
|
||||
|
||||
#define RSCLKCFG_ACG (1 << 29)
|
||||
|
||||
#define RSCLKCFG_NEWFREQ (1 << 30)
|
||||
|
||||
#define RSCLKCFG_MEMTIMU (1 << 31)
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/**
|
||||
* @name PLLFREQ0 register bits definitions
|
||||
* The PLL frequency can be calculated using the following equation:
|
||||
* fVCO = (fIN * MDIV)
|
||||
* where
|
||||
* fIN = fXTAL/(Q+1)(N+1) or fPIOSC/(Q+1)(N+1)
|
||||
* MDIV = MINT + (MFRAC / 1024)
|
||||
* The Q and N values are programmed in the PLLFREQ1 register. Note that to reduce jitter, MFRAC
|
||||
* should be programmed to 0x0.
|
||||
* @{
|
||||
*/
|
||||
|
||||
#define PLLFREQ0_MINT_bm (0xfffff << 0)
|
||||
#define PLLFREQ0_MFRAC_bm (0xfffff << 10)
|
||||
#define PLLFREQ0_PLLPWR (1 << 23)
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/**
|
||||
* @name PLLFREQ1 register bits definitions
|
||||
* @{
|
||||
*/
|
||||
|
||||
#define PLLFREQ1_N_bm (0x7ff << 0)
|
||||
#define PLLFREQ1_Q_bm (0x7ff << 8)
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/**
|
||||
* @name MEMTIM0 register bits definitions
|
||||
* @{
|
||||
*/
|
||||
|
||||
#define MEMTIM0_FWS_bm (0xff << 0)
|
||||
#define MEMTIM0_FWS_0 (0x00 << 0)
|
||||
#define MEMTIM0_FWS_1 (0x01 << 0)
|
||||
#define MEMTIM0_FWS_2 (0x02 << 0)
|
||||
#define MEMTIM0_FWS_3 (0x03 << 0)
|
||||
#define MEMTIM0_FWS_4 (0x04 << 0)
|
||||
#define MEMTIM0_FWS_5 (0x05 << 0)
|
||||
#define MEMTIM0_FWS_6 (0x06 << 0)
|
||||
#define MEMTIM0_FWS_7 (0x07 << 0)
|
||||
|
||||
#define MEMTIM0_FBCE (1 << 5)
|
||||
|
||||
#define MEMTIM0_FBCHT_bm (0xff << 6)
|
||||
#define MEMTIM0_FBCHT_0_5 (0x00 << 6)
|
||||
#define MEMTIM0_FBCHT_1 (0x01 << 6)
|
||||
#define MEMTIM0_FBCHT_1_5 (0x02 << 6)
|
||||
#define MEMTIM0_FBCHT_2 (0x03 << 6)
|
||||
#define MEMTIM0_FBCHT_2_5 (0x04 << 6)
|
||||
#define MEMTIM0_FBCHT_3 (0x05 << 6)
|
||||
#define MEMTIM0_FBCHT_3_5 (0x06 << 6)
|
||||
#define MEMTIM0_FBCHT_4 (0x07 << 6)
|
||||
#define MEMTIM0_FBCHT_4_5 (0x08 << 6)
|
||||
|
||||
#define MEMTIM0_EWS_bm (0xff << 16)
|
||||
#define MEMTIM0_EWS_0 (0x00 << 16)
|
||||
#define MEMTIM0_EWS_1 (0x01 << 16)
|
||||
#define MEMTIM0_EWS_2 (0x02 << 16)
|
||||
#define MEMTIM0_EWS_3 (0x03 << 16)
|
||||
#define MEMTIM0_EWS_4 (0x04 << 16)
|
||||
#define MEMTIM0_EWS_5 (0x05 << 16)
|
||||
#define MEMTIM0_EWS_6 (0x06 << 16)
|
||||
#define MEMTIM0_EWS_7 (0x07 << 16)
|
||||
|
||||
#define MEMTIM0_EBCE (1 << 21)
|
||||
|
||||
#define MEMTIM0_EBCHT_bm (0xff << 22)
|
||||
#define MEMTIM0_EBCHT_0_5 (0x00 << 22)
|
||||
#define MEMTIM0_EBCHT_1 (0x01 << 22)
|
||||
#define MEMTIM0_EBCHT_1_5 (0x02 << 22)
|
||||
#define MEMTIM0_EBCHT_2 (0x03 << 22)
|
||||
#define MEMTIM0_EBCHT_2_5 (0x04 << 22)
|
||||
#define MEMTIM0_EBCHT_3 (0x05 << 22)
|
||||
#define MEMTIM0_EBCHT_3_5 (0x06 << 22)
|
||||
#define MEMTIM0_EBCHT_4 (0x07 << 22)
|
||||
#define MEMTIM0_EBCHT_4_5 (0x08 << 22)
|
||||
|
||||
// XXX: what is this?
|
||||
#define MEMTIM0_MB1 0x00100010 // MB1 = Must be one
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/**
|
||||
* @name PLLSTAT register bits definitions
|
||||
* @{
|
||||
*/
|
||||
|
||||
#define PLLSTAT_LOCK (1 << 0)
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
/** @} */
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver pre-compile time settings. */
|
||||
|
@ -212,7 +50,7 @@
|
|||
#endif
|
||||
|
||||
#if !defined(TIVA_RSCLKCFG_OSCSRC)
|
||||
#define TIVA_RSCLKCFG_OSCSRC RSCLKCFG_OSCSRC_MOSC
|
||||
#define TIVA_RSCLKCFG_OSCSRC SYSCTL_RSCLKCFG_OSCSRC_MOSC
|
||||
#endif
|
||||
|
||||
/*===========================================================================*/
|
||||
|
@ -229,55 +67,55 @@
|
|||
/*
|
||||
* Oscillator-related checks.
|
||||
*/
|
||||
#if !(TIVA_RSCLKCFG_OSCSRC == RSCLKCFG_OSCSRC_PIOSC) && \
|
||||
!(TIVA_RSCLKCFG_OSCSRC == RSCLKCFG_OSCSRC_LFIOSC) && \
|
||||
!(TIVA_RSCLKCFG_OSCSRC == RSCLKCFG_OSCSRC_MOSC) && \
|
||||
!(TIVA_RSCLKCFG_OSCSRC == RSCLKCFG_OSCSRC_RTCOSC)
|
||||
#if !(TIVA_RSCLKCFG_OSCSRC == SYSCTL_RSCLKCFG_OSCSRC_PIOSC) && \
|
||||
!(TIVA_RSCLKCFG_OSCSRC == SYSCTL_RSCLKCFG_OSCSRC_LFIOSC) && \
|
||||
!(TIVA_RSCLKCFG_OSCSRC == SYSCTL_RSCLKCFG_OSCSRC_MOSC) && \
|
||||
!(TIVA_RSCLKCFG_OSCSRC == SYSCTL_RSCLKCFG_OSCSRC_RTC)
|
||||
#error "Invalid value for TIVA_RSCLKCFG_OSCSRC defined"
|
||||
#endif
|
||||
|
||||
#if TIVA_XTAL_VALUE == 4000000
|
||||
#define TIVA_XTAL_ (0x06 << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_4MHZ
|
||||
#elif TIVA_XTAL_VALUE == 4096000
|
||||
#define TIVA_XTAL_ (0x07 << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_4_09MHZ
|
||||
#elif TIVA_XTAL_VALUE == 4915200
|
||||
#define TIVA_XTAL_ (0x08 << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_4_91MHZ
|
||||
#elif TIVA_XTAL_VALUE == 5000000
|
||||
#define TIVA_XTAL_ (0x09 << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_5MHZ
|
||||
#elif TIVA_XTAL_VALUE == 5120000
|
||||
#define TIVA_XTAL_ (0x0a << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_5_12MHZ
|
||||
#elif TIVA_XTAL_VALUE == 6000000
|
||||
#define TIVA_XTAL_ (0x0b << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_6MHZ
|
||||
#elif TIVA_XTAL_VALUE == 6144000
|
||||
#define TIVA_XTAL_ (0x0c << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_6_14MHZ
|
||||
#elif TIVA_XTAL_VALUE == 7372800
|
||||
#define TIVA_XTAL_ (0x0d << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_7_37MHZ
|
||||
#elif TIVA_XTAL_VALUE == 8000000
|
||||
#define TIVA_XTAL_ (0x0e << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_8MHZ
|
||||
#elif TIVA_XTAL_VALUE == 8192000
|
||||
#define TIVA_XTAL_ (0x0f << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_8_19MHZ
|
||||
#elif TIVA_XTAL_VALUE == 10000000
|
||||
#define TIVA_XTAL_ (0x10 << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_10MHZ
|
||||
#elif TIVA_XTAL_VALUE == 12000000
|
||||
#define TIVA_XTAL_ (0x11 << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_12MHZ
|
||||
#elif TIVA_XTAL_VALUE == 12288000
|
||||
#define TIVA_XTAL_ (0x12 << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_12_2MHZ
|
||||
#elif TIVA_XTAL_VALUE == 13560000
|
||||
#define TIVA_XTAL_ (0x13 << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_13_5MHZ
|
||||
#elif TIVA_XTAL_VALUE == 14318180
|
||||
#define TIVA_XTAL_ (0x14 << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_14_3MHZ
|
||||
#elif TIVA_XTAL_VALUE == 16000000
|
||||
#define TIVA_XTAL_ (0x15 << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_16MHZ
|
||||
#elif TIVA_XTAL_VALUE == 16384000
|
||||
#define TIVA_XTAL_ (0x16 << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_16_3MHZ
|
||||
#elif TIVA_XTAL_VALUE == 18000000
|
||||
#define TIVA_XTAL_ (0x17 << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_18MHZ
|
||||
#elif TIVA_XTAL_VALUE == 20000000
|
||||
#define TIVA_XTAL_ (0x18 << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_20MHZ
|
||||
#elif TIVA_XTAL_VALUE == 24000000
|
||||
#define TIVA_XTAL_ (0x19 << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_24MHZ
|
||||
#elif TIVA_XTAL_VALUE == 25000000
|
||||
#define TIVA_XTAL_ (0x1a << 6)
|
||||
#define TIVA_XTAL_ SYSCTL_RCC_XTAL_25MHZ
|
||||
#else
|
||||
#error "Invalid value for TIVA_XTAL_VALUE defined"
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue