123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573 |
- /*
- * @brief LPC8xx System & Control driver inclusion file
- *
- * @note
- * Copyright(C) NXP Semiconductors, 2012
- * 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.
- */
- #ifndef __SYSCTL_8XX_H_
- #define __SYSCTL_8XX_H_
- #ifdef __cplusplus
- extern "C" {
- #endif
- /** @defgroup SYSCTL_8XX CHIP: LPC8xx System and Control Driver
- * @ingroup CHIP_8XX_Drivers
- * @{
- */
- /**
- * System reset status values
- */
- #define SYSCTL_RST_POR (1 << 0) /*!< POR reset status */
- #define SYSCTL_RST_EXTRST (1 << 1) /*!< External reset status */
- #define SYSCTL_RST_WDT (1 << 2) /*!< Watchdog reset status */
- #define SYSCTL_RST_BOD (1 << 3) /*!< Brown-out detect reset status */
- #define SYSCTL_RST_SYSRST (1 << 4) /*!< software system reset status */
- /**
- * Peripheral interrupt wakeup events values
- */
- #define SYSCTL_WAKEUP_SPI0TINT (1 << 0) /*!< SPI0 interrupt wake-up */
- #define SYSCTL_WAKEUP_SPI1INT (1 << 1) /*!< SPI0 interrupt wake-up */
- #define SYSCTL_WAKEUP_USART0INT (1 << 3) /*!< USART0 interrupt wake-up */
- #define SYSCTL_WAKEUP_USART1INT (1 << 4) /*!< USART1 interrupt wake-up */
- #define SYSCTL_WAKEUP_USART2INT (1 << 5) /*!< USART2 interrupt wake-up */
- #define SYSCTL_WAKEUP_I2C0INT (1 << 8) /*!< I2C0 interrupt wake-up */
- #define SYSCTL_WAKEUP_I2C1INT (1 << 7) /*!< I2C1 interrupt wake-up [Available only on LPC82X] */
- #define SYSCTL_WAKEUP_I2C2INT (1 << 21) /*!< I2C2 interrupt wake-up [Available only on LPC82X] */
- #define SYSCTL_WAKEUP_I2C3INT (1 << 22) /*!< I2C3 interrupt wake-up [Available only on LPC82X] */
- #define SYSCTL_WAKEUP_WWDTINT (1 << 12) /*!< WWDT interrupt wake-up */
- #define SYSCTL_WAKEUP_BODINT (1 << 13) /*!< Brown Out Detect (BOD) interrupt wake-up */
- #define SYSCTL_WAKEUP_WKTINT (1 << 15) /*!< Self wake-up timer interrupt wake-up */
- #define SYSCTL_WAKEUP_I2CINT SYSCTL_WAKEUP_I2C0INT /*!< Same as #SYSCTL_WAKEUP_I2CINT */
- /**
- * Deep sleep setup values
- */
- #define SYSCTL_DEEPSLP_BOD_PD (1 << 3) /*!< BOD power-down control in Deep-sleep mode, powered down */
- #define SYSCTL_DEEPSLP_WDTOSC_PD (1 << 6) /*!< Watchdog oscillator power control in Deep-sleep, powered down */
- /**
- * Deep sleep to wakeup and power state setup values
- */
- #define SYSCTL_SLPWAKE_IRCOUT_PD (1 << 0) /*!< IRC oscillator output wake-up configuration */
- #define SYSCTL_SLPWAKE_IRC_PD (1 << 1) /*!< IRC oscillator power-down wake-up configuration */
- #define SYSCTL_SLPWAKE_FLASH_PD (1 << 2) /*!< Flash wake-up configuration */
- #define SYSCTL_SLPWAKE_BOD_PD (1 << 3) /*!< BOD wake-up configuration */
- #define SYSCTL_SLPWAKE_ADC_PD (1 << 4) /*!< ADC wake-up configuration [Available only on LPC82x] */
- #define SYSCTL_SLPWAKE_SYSOSC_PD (1 << 5) /*!< System oscillator wake-up configuration */
- #define SYSCTL_SLPWAKE_WDTOSC_PD (1 << 6) /*!< Watchdog oscillator wake-up configuration */
- #define SYSCTL_SLPWAKE_SYSPLL_PD (1 << 7) /*!< System PLL wake-up configuration */
- #define SYSCTL_SLPWAKE_ACMP_PD (1 << 15) /*!< Analog comparator wake-up configuration */
- /**
- * Non-Maskable Interrupt Enable/Disable value
- */
- #define SYSCTL_NMISRC_ENABLE ((uint32_t) 1 << 31) /*!< Enable the Non-Maskable Interrupt (NMI) source */
- /**
- * @brief LPC8XX System Control and Clock register block structure
- */
- typedef struct {
- __IO uint32_t SYSMEMREMAP; /*!< Offset: 0x000 System memory remap (R/W) */
- __IO uint32_t PRESETCTRL; /*!< Offset: 0x004 Peripheral reset control (R/W) */
- __IO uint32_t SYSPLLCTRL; /*!< Offset: 0x008 System PLL control (R/W) */
- __IO uint32_t SYSPLLSTAT; /*!< Offset: 0x00C System PLL status (R/W ) */
- uint32_t RESERVED0[4];
- __IO uint32_t SYSOSCCTRL; /*!< Offset: 0x020 System oscillator control (R/W) */
- __IO uint32_t WDTOSCCTRL; /*!< Offset: 0x024 Watchdog oscillator control (R/W) */
- __IO uint32_t IRCCTRL; /*!< Offset: 0x028 IRC Control Register (Available only in LPC82X) */
- uint32_t RESERVED1[1];
- __IO uint32_t SYSRSTSTAT; /*!< Offset: 0x030 System reset status Register (R/W ) */
- uint32_t RESERVED2[3];
- __IO uint32_t SYSPLLCLKSEL; /*!< Offset: 0x040 System PLL clock source select (R/W) */
- __IO uint32_t SYSPLLCLKUEN; /*!< Offset: 0x044 System PLL clock source update enable (R/W) */
- uint32_t RESERVED3[10];
- __IO uint32_t MAINCLKSEL; /*!< Offset: 0x070 Main clock source select (R/W) */
- __IO uint32_t MAINCLKUEN; /*!< Offset: 0x074 Main clock source update enable (R/W) */
- __IO uint32_t SYSAHBCLKDIV; /*!< Offset: 0x078 System AHB clock divider (R/W) */
- uint32_t RESERVED4[1];
- __IO uint32_t SYSAHBCLKCTRL; /*!< Offset: 0x080 System AHB clock control (R/W) */
- uint32_t RESERVED5[4];
- __IO uint32_t UARTCLKDIV; /*!< Offset: 0x094 UART clock divider (R/W) */
- uint32_t RESERVED6[18];
- __IO uint32_t CLKOUTSEL; /*!< Offset: 0x0E0 CLKOUT clock source select (R/W) */
- __IO uint32_t CLKOUTUEN; /*!< Offset: 0x0E4 CLKOUT clock source update enable (R/W) */
- __IO uint32_t CLKOUTDIV; /*!< Offset: 0x0E8 CLKOUT clock divider (R/W) */
- uint32_t RESERVED7;
- __IO uint32_t UARTFRGDIV; /*!< Offset: 0x0F0 UART fractional divider SUB(R/W) */
- __IO uint32_t UARTFRGMULT; /*!< Offset: 0x0F4 UART fractional divider ADD(R/W) */
- uint32_t RESERVED8[1];
- __IO uint32_t EXTTRACECMD; /*!< Offset: 0x0FC External trace buffer command register */
- __IO uint32_t PIOPORCAP0; /*!< Offset: 0x100 POR captured PIO status 0 (R/ ) */
- uint32_t RESERVED9[12];
- __IO uint32_t IOCONCLKDIV[7]; /*!< Offset: 0x134 Peripheral clock x to the IOCON block for programmable glitch filter */
- __IO uint32_t BODCTRL; /*!< Offset: 0x150 BOD control (R/W) */
- __IO uint32_t SYSTCKCAL; /*!< Offset: 0x154 System tick counter calibration (R/W) */
- uint32_t RESERVED10[6];
- __IO uint32_t IRQLATENCY; /*!< Offset: 0x170 IRQ delay */
- __IO uint32_t NMISRC; /*!< Offset: 0x174 NMI Source Control */
- __IO uint32_t PINTSEL[8]; /*!< Offset: 0x178 GPIO Pin Interrupt Select register 0 */
- uint32_t RESERVED11[27];
- __IO uint32_t STARTERP0; /*!< Offset: 0x204 Start logic signal enable Register 0 (R/W) */
- uint32_t RESERVED12[3];
- __IO uint32_t STARTERP1; /*!< Offset: 0x214 Start logic signal enable Register 0 (R/W) */
- uint32_t RESERVED13[6];
- __IO uint32_t PDSLEEPCFG; /*!< Offset: 0x230 Power-down states in Deep-sleep mode (R/W) */
- __IO uint32_t PDAWAKECFG; /*!< Offset: 0x234 Power-down states after wake-up (R/W) */
- __IO uint32_t PDRUNCFG; /*!< Offset: 0x238 Power-down configuration Register (R/W) */
- uint32_t RESERVED14[111];
- __I uint32_t DEVICEID; /*!< Offset: 0x3F8 Device ID (R/ ) */
- } LPC_SYSCTL_T;
- /**
- * @brief IOCON Perpipheral Clock divider selction for input filter
- * sampling clock
- */
- typedef enum CHIP_PIN_CLKDIV {
- IOCONCLKDIV0 = 0, /*!< Clock divider 0 */
- IOCONCLKDIV1, /*!< Clock divider 1 */
- IOCONCLKDIV2, /*!< Clock divider 2 */
- IOCONCLKDIV3, /*!< Clock divider 3 */
- IOCONCLKDIV4, /*!< Clock divider 4 */
- IOCONCLKDIV5, /*!< Clock divider 5 */
- IOCONCLKDIV6, /*!< Clock divider 6 */
- IOCONCLK_MAX = IOCONCLKDIV6 /*!< Top value used to reverse the dividers */
- } CHIP_PIN_CLKDIV_T;
- /* Reserved bits masks for registers */
- #define SYSCTL_SYSMEMREMAP_RESERVED (~3)
- #define SYSCTL_SYSPLLCTRL_RESERVED (~0x7f)
- #define SYSCTL_SYSPLLSTAT_RESERVED (~1)
- #define SYSCTL_SYSOSCCTRL_RESERVED (~3)
- #define SYSCTL_WDTOSCCTRL_RESERVED (~0x1ff)
- #define SYSCTL_SYSRSTSTAT_RESERVED (~0x1f)
- #define SYSCTL_SYSPLLCLKSEL_RESERVED (~3)
- #define SYSCTL_SYSPLLCLKUEN_RESERVED (~1)
- #define SYSCTL_MAINCLKSEL_RESERVED (~3)
- #define SYSCTL_MAINCLKUEN_RESERVED (~1)
- #define SYSCTL_SYSAHBCLKDIV_RESERVED (~0xff)
- #define SYSCTL_UARTCLKDIV_RESERVED (~0xff)
- #define SYSCTL_CLKOUTSEL_RESERVED (~3)
- #define SYSCTL_CLKOUTUEN_RESERVED (~1)
- #define SYSCTL_CLKOUTDIV_RESERVED (~0xff)
- #define SYSCTL_UARTFRGDIV_RESERVED (~0xff)
- #define SYSCTL_UARTFRGMULT_RESERVED (~0xff)
- #define SYSCTL_EXTTRACECMD_RESERVED (~3)
- #define SYSCTL_IOCONCLKDIV_RESERVED (~0xff)
- #define SYSCTL_BODCTRL_RESERVED (~0x1f)
- #define SYSCTL_SYSTCKCAL_RESERVED 0xfc000000
- #define SYSCTL_IRQLATENCY_RESERVED (~0xff)
- #define SYSCTL_NMISRC_RESERVED (~(0x1f|(1u<<31)))
- #define SYSCTL_PINTSEL_RESERVED (~0x3f)
- #define SYSCTL_STARTERP0_RESERVED (~0xff)
- #if defined(CHIP_LPC82X)
- #define SYSCTL_PRESETCTRL_RESERVED 0xfffe2000
- #define SYSCTL_SYSAHBCLKCTRL_RESERVED 0xda100000
- #define SYSCTL_PIOPORCAP0_RESERVED 0xfffc0000
- #define SYSCTL_STARTERP1_RESERVED ((1<<2)|(1<<6)|(7<<9)|(1<<14)|0xff9f0000)
- #else
- #define SYSCTL_PRESETCTRL_RESERVED 0xffffe000
- #define SYSCTL_SYSAHBCLKCTRL_RESERVED 0xfff00000
- #define SYSCTL_PIOPORCAP0_RESERVED 0xffffc000
- #define SYSCTL_STARTERP1_RESERVED ((1<<2)|(3<<6)|(7<<9)|(1<<14)|(0x1f<<16)|0xff800000)
- #endif
- /* The following have reserved bits, but they are specially handled elsewhere. */
- /* #define SYSCTL_PDSLEEPCFG_RESERVED (~(1<<3)|(3<<4)|(1<<6)) */
- /* #define SYSCTL_PDAWAKECFG_RESERVED */
- /* #define SYSCTL_PDRUNCFG_RESERVED */
- /**
- * System memory remap modes used to remap interrupt vectors
- */
- typedef enum CHIP_SYSCTL_BOOT_MODE_REMAP {
- REMAP_BOOT_LOADER_MODE, /*!< Interrupt vectors are re-mapped to Boot ROM */
- REMAP_USER_RAM_MODE, /*!< Interrupt vectors are re-mapped to user Static RAM */
- REMAP_USER_FLASH_MODE /*!< Interrupt vectors are not re-mapped and reside in Flash */
- } CHIP_SYSCTL_BOOT_MODE_REMAP_T;
- /**
- * Peripheral reset identifiers
- */
- typedef enum {
- RESET_SPI0, /*!< SPI0 reset control */
- RESET_SPI1, /*!< SPI1 reset control */
- RESET_UARTFBRG, /*!< UART fractional baud rate generator reset control */
- RESET_USART0, /*!< USART0 reset control */
- RESET_USART1, /*!< USART1 reset control */
- RESET_USART2, /*!< USART2 reset control */
- RESET_I2C0, /*!< I2C0 reset control */
- RESET_MRT, /*!< MRT reset control */
- RESET_SCT, /*!< SCT reset control */
- RESET_WKT, /*!< Self wake-up timer (WKT) control */
- RESET_GPIO, /*!< GPIO reset control */
- RESET_FLASH, /*!< FLASH reset control */
- RESET_ACMP, /*!< ACMP reset control */
- RESET_I2C1 = 14, /*!< I2C1 reset control [Available only in LPC82x] */
- RESET_I2C2, /*!< I2C2 reset control [Available only in LPC82x] */
- RESET_I2C3, /*!< I2C3 reset control [Available only in LPC82x] */
- } CHIP_SYSCTL_PERIPH_RESET_T;
- /* Reset Alias */
- #define RESET_I2C RESET_I2C0
- /**
- * Brown-out detector reset level
- */
- typedef enum CHIP_SYSCTL_BODRSTLVL {
- SYSCTL_BODRSTLVL_0, /*!< Brown-out reset at 1.46 ~ 1.63v */
- SYSCTL_BODRSTLVL_1, /*!< Brown-out reset at 2.06v ~ 2.15v */
- SYSCTL_BODRSTLVL_2, /*!< Brown-out reset at 2.35v ~ 2.43v */
- SYSCTL_BODRSTLVL_3, /*!< Brown-out reset at 2.63v ~ 2.71v */
- } CHIP_SYSCTL_BODRSTLVL_T;
- /**
- * Brown-out detector interrupt level
- */
- typedef enum CHIP_SYSCTL_BODRINTVAL {
- SYSCTL_BODINTVAL_LVL0, /* Brown-out interrupt at 1.65 ~ 1.80v */
- SYSCTL_BODINTVAL_LVL1, /* Brown-out interrupt at 2.22v ~ 2.35v*/
- SYSCTL_BODINTVAL_LVL2, /* Brown-out interrupt at 2.52v ~ 2.66v */
- SYSCTL_BODINTVAL_LVL3, /* Brown-out interrupt at 2.80v ~ 2.90v */
- } CHIP_SYSCTL_BODRINTVAL_T;
- /**
- * @brief Re-map interrupt vectors
- * @param remap : system memory map value
- * @return Nothing
- */
- STATIC INLINE void Chip_SYSCTL_Map(CHIP_SYSCTL_BOOT_MODE_REMAP_T remap)
- {
- LPC_SYSCTL->SYSMEMREMAP = (uint32_t) remap;
- }
- /**
- * @brief Assert reset for a peripheral
- * @param periph : Peripheral to assert reset for
- * @return Nothing
- * @note The peripheral will stay in reset until reset is de-asserted. Call
- * Chip_SYSCTL_DeassertPeriphReset() to de-assert the reset
- */
- STATIC INLINE void Chip_SYSCTL_AssertPeriphReset(CHIP_SYSCTL_PERIPH_RESET_T periph)
- {
- LPC_SYSCTL->PRESETCTRL &= ~((1 << (uint32_t) periph) | SYSCTL_PRESETCTRL_RESERVED);
- }
- /**
- * @brief De-assert reset for a peripheral
- * @param periph : Peripheral to de-assert reset for
- * @return Nothing
- */
- STATIC INLINE void Chip_SYSCTL_DeassertPeriphReset(CHIP_SYSCTL_PERIPH_RESET_T periph)
- {
- LPC_SYSCTL->PRESETCTRL = (1 << (uint32_t) periph) | (LPC_SYSCTL->PRESETCTRL & ~SYSCTL_PRESETCTRL_RESERVED);
- }
- /**
- * @brief Resets a peripheral
- * @param periph : Peripheral to reset
- * @return Nothing
- */
- STATIC INLINE void Chip_SYSCTL_PeriphReset(CHIP_SYSCTL_PERIPH_RESET_T periph)
- {
- Chip_SYSCTL_AssertPeriphReset(periph);
- Chip_SYSCTL_DeassertPeriphReset(periph);
- }
- /**
- * @brief Get system reset status
- * @return An Or'ed value of SYSCTL_RST_*
- * @note This function returns the detected reset source(s).
- */
- STATIC INLINE uint32_t Chip_SYSCTL_GetSystemRSTStatus(void)
- {
- return LPC_SYSCTL->SYSRSTSTAT & ~SYSCTL_SYSRSTSTAT_RESERVED;
- }
- /**
- * @brief Clear system reset status
- * @param reset : An Or'ed value of SYSCTL_RST_* status to clear
- * @return Nothing
- * @note This function clears the specified reset source(s).
- */
- STATIC INLINE void Chip_SYSCTL_ClearSystemRSTStatus(uint32_t reset)
- {
- LPC_SYSCTL->SYSRSTSTAT = reset;
- }
- /**
- * @brief Read POR captured PIO status
- * @return captured POR PIO status
- * @note Some devices only support index 0.
- */
- STATIC INLINE uint32_t Chip_SYSCTL_GetPORPIOStatus(void)
- {
- return LPC_SYSCTL->PIOPORCAP0 & ~SYSCTL_PIOPORCAP0_RESERVED;
- }
- /**
- * @brief Set brown-out detection interrupt and reset levels
- * @param rstlvl : Brown-out detector reset level
- * @param intlvl : Brown-out interrupt level
- * @return Nothing
- * @note Brown-out detection reset will be disabled upon exiting this function.
- * Use Chip_SYSCTL_EnableBODReset() to re-enable
- */
- STATIC INLINE void Chip_SYSCTL_SetBODLevels(CHIP_SYSCTL_BODRSTLVL_T rstlvl,
- CHIP_SYSCTL_BODRINTVAL_T intlvl)
- {
- LPC_SYSCTL->BODCTRL = ((uint32_t) rstlvl) | (((uint32_t) intlvl) << 2);
- }
- /**
- * @brief Enable brown-out detection reset
- * @return Nothing
- */
- STATIC INLINE void Chip_SYSCTL_EnableBODReset(void)
- {
- LPC_SYSCTL->BODCTRL = (1 << 4) | (LPC_SYSCTL->BODCTRL & ~SYSCTL_BODCTRL_RESERVED);
- }
- /**
- * @brief Disable brown-out detection reset
- * @return Nothing
- */
- STATIC INLINE void Chip_SYSCTL_DisableBODReset(void)
- {
- LPC_SYSCTL->BODCTRL &= ~((1 << 4) | SYSCTL_BODCTRL_RESERVED);
- }
- /**
- * @brief Set System tick timer calibration value
- * @param sysCalVal : System tick timer calibration value
- * @return Nothing
- */
- STATIC INLINE void Chip_SYSCTL_SetSYSTCKCAL(uint32_t sysCalVal)
- {
- LPC_SYSCTL->SYSTCKCAL = sysCalVal;
- }
- /**
- * @brief Set System IRQ latency
- * @param latency : Latency in clock ticks
- * @return Nothing
- * @note Sets the IRQ latency, a value between 0 and 255 clocks. Lower
- * values allow better latency
- */
- STATIC INLINE void Chip_SYSCTL_SetIRQLatency(uint32_t latency)
- {
- LPC_SYSCTL->IRQLATENCY = latency;
- }
- /**
- * @brief Get System IRQ latency value
- * @return IRQ Latency in clock ticks
- */
- STATIC INLINE uint32_t Chip_SYSCTL_GetIRQLatency(void)
- {
- return LPC_SYSCTL->IRQLATENCY & ~SYSCTL_IRQLATENCY_RESERVED;
- }
- /**
- * @brief Set source for non-maskable interrupt (NMI)
- * @param intsrc : IRQ number to assign to the NMI
- * @return Nothing
- * @note The NMI source will be disabled upon exiting this function. Use the
- * Chip_SYSCTL_EnableNMISource() function to enable the NMI source
- */
- STATIC INLINE void Chip_SYSCTL_SetNMISource(uint32_t intsrc)
- {
- /* Disable NMI first */
- LPC_SYSCTL->NMISRC &= ~(SYSCTL_NMISRC_ENABLE | SYSCTL_NMISRC_RESERVED);
-
- /* Set new NMI source. */
- LPC_SYSCTL->NMISRC = intsrc;
- }
- /**
- * @brief Enable interrupt used for NMI source
- * @return Nothing
- */
- STATIC INLINE void Chip_SYSCTL_EnableNMISource(void)
- {
- LPC_SYSCTL->NMISRC = SYSCTL_NMISRC_ENABLE | (LPC_SYSCTL->NMISRC & ~SYSCTL_NMISRC_RESERVED);
- }
- /**
- * @brief Disable interrupt used for NMI source
- * @return Nothing
- */
- STATIC INLINE void Chip_SYSCTL_DisableNMISource(void)
- {
- LPC_SYSCTL->NMISRC &= ~(SYSCTL_NMISRC_ENABLE | SYSCTL_NMISRC_RESERVED);
- }
- /**
- * @brief Setup a pin source for the pin interrupts (0-7)
- * @param intno : IRQ number
- * @param pin : pin number (see comments)
- * @return Nothing
- * @note For each pin (0-7) that supports an interrupt, the pin number is assigned
- * to that interrupt with this function. Values 0-17 map to pins PIO0-0 to
- * PIO0-17 (For LPC82X Values from 0-28 could be used for PIO0-28).
- */
- STATIC INLINE void Chip_SYSCTL_SetPinInterrupt(uint32_t intIndex, uint32_t pinNum)
- {
- LPC_SYSCTL->PINTSEL[intIndex] = (uint32_t) pinNum;
- }
- /**
- * @brief Enables a pin's (PINT) wakeup logic
- * @param pin : pin number
- * @return Nothing
- * @note Different devices support different pins, see the user manual
- * for supported pins
- */
- STATIC INLINE void Chip_SYSCTL_EnablePINTWakeup(uint32_t pin)
- {
- LPC_SYSCTL->STARTERP0 = (1 << pin) | (LPC_SYSCTL->STARTERP0 & ~SYSCTL_STARTERP0_RESERVED);
- }
- /**
- * @brief Disables a pin's (PINT) wakeup logic
- * @param pin : pin number
- * @return Nothing
- * @note Different devices support different pins, see the user manual for supported pins.
- */
- STATIC INLINE void Chip_SYSCTL_DisablePINTWakeup(uint32_t pin)
- {
- LPC_SYSCTL->STARTERP0 &= ~((1 << pin) | SYSCTL_STARTERP0_RESERVED);
- }
- /**
- * @brief Enables peripheral's wakeup logic
- * @param periphmask : OR'ed values of SYSCTL_WAKEUP_* for wakeup
- * @return Nothing
- */
- STATIC INLINE void Chip_SYSCTL_EnablePeriphWakeup(uint32_t periphmask)
- {
- LPC_SYSCTL->STARTERP1 = periphmask | (LPC_SYSCTL->STARTERP0 & ~SYSCTL_STARTERP0_RESERVED);
- }
- /**
- * @brief Disables peripheral's wakeup logic
- * @param periphmask : OR'ed values of SYSCTL_WAKEUP_* for wakeup
- * @return Nothing
- */
- STATIC INLINE void Chip_SYSCTL_DisablePeriphWakeup(uint32_t periphmask)
- {
- LPC_SYSCTL->STARTERP1 &= ~(periphmask | SYSCTL_STARTERP1_RESERVED);
- }
- /**
- * @brief Returns current deep sleep mask
- * @return OR'ed values of SYSCTL_DEEPSLP_* values
- * @note A high bit indicates the peripheral will power down on deep sleep.
- */
- STATIC INLINE uint32_t Chip_SYSCTL_GetDeepSleepPD(void)
- {
- return LPC_SYSCTL->PDSLEEPCFG;
- }
- /**
- * @brief Return current wakup mask
- * @return OR'ed values of SYSCTL_SLPWAKE_* values
- * @note A high state indicates the peripehral will powerup on wakeup.
- */
- STATIC INLINE uint32_t Chip_SYSCTL_GetWakeup(void)
- {
- return LPC_SYSCTL->PDAWAKECFG;
- }
- /**
- * @brief Power up one or more blocks or peripherals
- * @return OR'ed values of SYSCTL_SLPWAKE_* values
- * @note A high state indicates the peripheral is powered down.
- */
- STATIC INLINE uint32_t Chip_SYSCTL_GetPowerStates(void)
- {
- return LPC_SYSCTL->PDRUNCFG;
- }
- /**
- * @brief Return the device ID
- * @return Device ID
- */
- STATIC INLINE uint32_t Chip_SYSCTL_GetDeviceID(void)
- {
- return LPC_SYSCTL->DEVICEID;
- }
- /**
- * @brief Setup deep sleep behaviour for power down
- * @param sleepmask : OR'ed values of SYSCTL_DEEPSLP_* values (high to powerdown on deepsleep)
- * @return Nothing
- * @note This must be setup prior to using deep sleep. See the user manual
- * *(PDSLEEPCFG register) for more info on setting this up. This function selects
- * which peripherals are powered down on deep sleep.
- * This function should only be called once with all options for power-down
- * in that call
- */
- void Chip_SYSCTL_SetDeepSleepPD(uint32_t sleepmask);
- /**
- * @brief Setup wakeup behaviour from deep sleep
- * @param wakeupmask : OR'ed values of SYSCTL_SLPWAKE_* values (high is powered down)
- * @return Nothing
- * @note This must be setup prior to using deep sleep. See the user manual
- * *(PDWAKECFG register) for more info on setting this up. This function selects
- * which peripherals are powered up on exit from deep sleep.
- * This function should only be called once with all options for wakeup
- * in that call
- */
- void Chip_SYSCTL_SetWakeup(uint32_t wakeupmask);
- /**
- * @brief Power down one or more blocks or peripherals
- * @param powerdownmask : OR'ed values of SYSCTL_SLPWAKE_* values
- * @return Nothing
- */
- void Chip_SYSCTL_PowerDown(uint32_t powerdownmask);
- /**
- * @brief Power up one or more blocks or peripherals
- * @param powerupmask : OR'ed values of SYSCTL_SLPWAKE_* values
- * @return Nothing
- */
- void Chip_SYSCTL_PowerUp(uint32_t powerupmask);
- /**
- * @}
- */
- #ifdef __cplusplus
- }
- #endif
- #endif /* __SYSCTL_8XX_H_ */
|