123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- /*
- * @brief LPC5410x GPIO group driver
- *
- * @note
- * Copyright(C) NXP Semiconductors, 2014
- * 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 __GPIOGROUP_5410X_H_
- #define __GPIOGROUP_5410X_H_
- #ifdef __cplusplus
- extern "C" {
- #endif
- /** @defgroup GPIOGP_5410X CHIP: LPC5410x GPIO group driver
- * @ingroup CHIP_5410X_DRIVERS
- * @{
- */
- /**
- * @brief GPIO grouped interrupt register block structure
- */
- typedef struct { /*!< GPIO_GROUP_INTn Structure */
- __IO uint32_t CTRL; /*!< GPIO grouped interrupt control register */
- __I uint32_t RESERVED0[7];
- __IO uint32_t PORT_POL[8]; /*!< GPIO grouped interrupt port polarity register */
- __IO uint32_t PORT_ENA[8]; /*!< GPIO grouped interrupt port m enable register */
- uint32_t RESERVED1[4072];
- } LPC_GPIOGROUPINT_T;
- /**
- * LPC5410x GPIO group bit definitions
- */
- #define GPIOGR_INT (1 << 0) /*!< GPIO interrupt pending/clear bit */
- #define GPIOGR_COMB (1 << 1) /*!< GPIO interrupt OR(0)/AND(1) mode bit */
- #define GPIOGR_TRIG (1 << 2) /*!< GPIO interrupt edge(0)/level(1) mode bit */
- /**
- * @brief Initialize GPIO group interrupt block
- * @param pGPIOGPINT : The base of GPIO group peripheral on the chip
- * @return Nothing
- */
- STATIC INLINE void Chip_GPIOGP_Init(LPC_GPIOGROUPINT_T *pGPIOGPINT)
- {
- Chip_Clock_EnablePeriphClock(SYSCON_CLOCK_GINT);
- Chip_SYSCON_PeriphReset(RESET_GINT);
- }
- /**
- * @brief De-Initialize GPIO group interrupt block
- * @param pGPIOGPINT : The base of GPIO group peripheral on the chip
- * @return Nothing
- */
- STATIC INLINE void Chip_GPIOGP_DeInit(LPC_GPIOGROUPINT_T *pGPIOGPINT)
- {
- Chip_Clock_DisablePeriphClock(SYSCON_CLOCK_GINT);
- }
- /**
- * @brief Clear interrupt pending status for the selected group
- * @param pGPIOGPINT : Pointer to GPIO group register block
- * @param group : GPIO group number
- * @return None
- */
- STATIC INLINE void Chip_GPIOGP_ClearIntStatus(LPC_GPIOGROUPINT_T *pGPIOGPINT, uint8_t group)
- {
- pGPIOGPINT[group].CTRL |= GPIOGR_INT;
- }
- /**
- * @brief Returns current GPIO group inetrrupt pending status
- * @param pGPIOGPINT : Pointer to GPIO group register block
- * @param group : GPIO group number
- * @return true if the group interrupt is pending, otherwise false.
- */
- STATIC INLINE bool Chip_GPIOGP_GetIntStatus(LPC_GPIOGROUPINT_T *pGPIOGPINT, uint8_t group)
- {
- return (bool) ((pGPIOGPINT[group].CTRL & GPIOGR_INT) != 0);
- }
- /**
- * @brief Selected GPIO group functionality for trigger on any pin in group (OR mode)
- * @param pGPIOGPINT : Pointer to GPIO group register block
- * @param group : GPIO group number
- * @return None
- */
- STATIC INLINE void Chip_GPIOGP_SelectOrMode(LPC_GPIOGROUPINT_T *pGPIOGPINT, uint8_t group)
- {
- pGPIOGPINT[group].CTRL &= ~(GPIOGR_COMB | GPIOGR_INT);
- }
- /**
- * @brief Selected GPIO group functionality for trigger on all matching pins in group (AND mode)
- * @param pGPIOGPINT : Pointer to GPIO group register block
- * @param group : GPIO group number
- * @return None
- */
- STATIC INLINE void Chip_GPIOGP_SelectAndMode(LPC_GPIOGROUPINT_T *pGPIOGPINT, uint8_t group)
- {
- pGPIOGPINT[group].CTRL = (pGPIOGPINT[group].CTRL & ~GPIOGR_INT) | GPIOGR_COMB;
- }
- /**
- * @brief Selected GPIO group functionality edge trigger mode
- * @param pGPIOGPINT : Pointer to GPIO group register block
- * @param group : GPIO group number
- * @return None
- */
- STATIC INLINE void Chip_GPIOGP_SelectEdgeMode(LPC_GPIOGROUPINT_T *pGPIOGPINT, uint8_t group)
- {
- pGPIOGPINT[group].CTRL &= ~(GPIOGR_TRIG | GPIOGR_INT);
- }
- /**
- * @brief Selected GPIO group functionality level trigger mode
- * @param pGPIOGPINT : Pointer to GPIO group register block
- * @param group : GPIO group number
- * @return None
- */
- STATIC INLINE void Chip_GPIOGP_SelectLevelMode(LPC_GPIOGROUPINT_T *pGPIOGPINT, uint8_t group)
- {
- pGPIOGPINT[group].CTRL = (pGPIOGPINT[group].CTRL & ~GPIOGR_INT) | GPIOGR_TRIG;
- }
- /**
- * @brief Set selected pins for the group and port to low level trigger
- * @param pGPIOGPINT : Pointer to GPIO group register block
- * @param group : GPIO group number
- * @param port : GPIO port number
- * @param pinMask : Or'ed value of pins to select for low level (bit 0 = pin 0, 1 = pin1, etc.)
- * @return None
- */
- STATIC INLINE void Chip_GPIOGP_SelectLowLevel(LPC_GPIOGROUPINT_T *pGPIOGPINT,
- uint8_t group,
- uint8_t port,
- uint32_t pinMask)
- {
- pGPIOGPINT[group].PORT_POL[port] &= ~pinMask;
- }
- /**
- * @brief Set selected pins for the group and port to high level trigger
- * @param pGPIOGPINT : Pointer to GPIO group register block
- * @param group : GPIO group number
- * @param port : GPIO port number
- * @param pinMask : Or'ed value of pins to select for high level (bit 0 = pin 0, 1 = pin1, etc.)
- * @return None
- */
- STATIC INLINE void Chip_GPIOGP_SelectHighLevel(LPC_GPIOGROUPINT_T *pGPIOGPINT,
- uint8_t group,
- uint8_t port,
- uint32_t pinMask)
- {
- pGPIOGPINT[group].PORT_POL[port] |= pinMask;
- }
- /**
- * @brief Disabled selected pins for the group interrupt
- * @param pGPIOGPINT : Pointer to GPIO group register block
- * @param group : GPIO group number
- * @param port : GPIO port number
- * @param pinMask : Or'ed value of pins to disable interrupt for (bit 0 = pin 0, 1 = pin1, etc.)
- * @return None
- * @note Disabled pins do not contribute to the group interrupt.
- */
- STATIC INLINE void Chip_GPIOGP_DisableGroupPins(LPC_GPIOGROUPINT_T *pGPIOGPINT,
- uint8_t group,
- uint8_t port,
- uint32_t pinMask)
- {
- pGPIOGPINT[group].PORT_ENA[port] &= ~pinMask;
- }
- /**
- * @brief Enable selected pins for the group interrupt
- * @param pGPIOGPINT : Pointer to GPIO group register block
- * @param group : GPIO group number
- * @param port : GPIO port number
- * @param pinMask : Or'ed value of pins to enable interrupt for (bit 0 = pin 0, 1 = pin1, etc.)
- * @return None
- * @note Enabled pins contribute to the group interrupt.
- */
- STATIC INLINE void Chip_GPIOGP_EnableGroupPins(LPC_GPIOGROUPINT_T *pGPIOGPINT,
- uint8_t group,
- uint8_t port,
- uint32_t pinMask)
- {
- pGPIOGPINT[group].PORT_ENA[port] |= pinMask;
- }
- /**
- * @}
- */
- #ifdef __cplusplus
- }
- #endif
- #endif /* __GPIOGROUP_5410X_H_ */
|