24#ifndef LIBBSP_ARM_LPC176X_GPIO_DEFS_H
25#define LIBBSP_ARM_LPC176X_GPIO_DEFS_H
34#define LPC176X_GPIO_BASE_ADDR 0x40028000U
35#define LPC176X_GPIO_INTERRUPT_STATUS 0x40028080U
37#define LPC176X_IOPIN0 ( *(volatile uint32_t *) ( LPC176X_GPIO_BASE_ADDR + \
39#define LPC176X_IOSET0 ( *(volatile uint32_t *) ( LPC176X_GPIO_BASE_ADDR + \
41#define LPC176X_IODIR0 ( *(volatile uint32_t *) ( LPC176X_GPIO_BASE_ADDR + \
43#define LPC176X_IOCLR0 ( *(volatile uint32_t *) ( LPC176X_GPIO_BASE_ADDR + \
45#define LPC176X_IOPIN1 ( *(volatile uint32_t *) ( LPC176X_GPIO_BASE_ADDR + \
47#define LPC176X_IOSET1 ( *(volatile uint32_t *) ( LPC176X_GPIO_BASE_ADDR + \
49#define LPC176X_IODIR1 ( *(volatile uint32_t *) ( LPC176X_GPIO_BASE_ADDR + \
51#define LPC176X_IOCLR1 ( *(volatile uint32_t *) ( LPC176X_GPIO_BASE_ADDR + \
55#define LPC176X_IO0_INT_EN_R ( *(volatile uint32_t *) ( LPC176X_GPIO_BASE_ADDR \
57#define LPC176X_IO0_INT_EN_F ( *(volatile uint32_t *) ( LPC176X_GPIO_BASE_ADDR \
59#define LPC176X_IO0_INT_STAT_R ( *(volatile uint32_t *) ( \
60 LPC176X_GPIO_BASE_ADDR \
62#define LPC176X_IO0_INT_STAT_F ( *(volatile uint32_t *) ( \
63 LPC176X_GPIO_BASE_ADDR \
65#define LPC176X_IO0_INT_CLR ( *(volatile uint32_t *) ( LPC176X_GPIO_BASE_ADDR \
67#define LPC176X_IO2_INT_EN_R ( *(volatile uint32_t *) ( LPC176X_GPIO_BASE_ADDR \
69#define LPC176X_IO2_INT_EN_F ( *(volatile uint32_t *) ( LPC176X_GPIO_BASE_ADDR \
71#define LPC176X_IO2_INT_STAT_R ( *(volatile uint32_t *) ( \
72 LPC176X_GPIO_BASE_ADDR \
74#define LPC176X_IO2_INT_STAT_F ( *(volatile uint32_t *) ( \
75 LPC176X_GPIO_BASE_ADDR \
77#define LPC176X_IO2_INT_CLR ( *(volatile uint32_t *) ( LPC176X_GPIO_BASE_ADDR \
79#define LPC176X_IO_INT_STAT ( *(volatile uint32_t *) ( LPC176X_GPIO_BASE_ADDR \
82#define LPC176X_RESERVED_ISR_FUNCT_SIZE 2U
83#define LPC176X_RESERVED_ISR_FUNCT_MAX_SIZE 5U
85#define LPC176X_MAX_PORT_NUMBER 160U
86#define LPC176X_SET_BIT( reg, pin, value ) \
87 reg = ( reg & ~( 1U << pin ) ) | ( ( value & 1U ) << pin )
89#define LPC176X_INT_STATUS ( *(volatile uint32_t *) \
90 ( LPC176X_GPIO_INTERRUPT_STATUS ) )
91#define LPC176X_INT_STATUS_P0 1U
92#define LPC176X_INT_STATUS_P2 ( 1U << 2U )
93#define LPC176X_INT_ENABLE 1U
94#define LPC176X_INT_DISABLE 0U
96#define LPC176X_IRQ_EINT_3 21U
98#define LPC176X_PIN_BIT( pin ) ( 1U << pin )
106 LPC176X_GPIO_FUNCTION_INPUT,
107 LPC176X_GPIO_FUNCTION_OUTPUT,
108 LPC176X_GPIO_FUNCTION_COUNT
118 LPC176X_GPIO_INTERRUPT_DISABLE,
119 LPC176X_GPIO_INTERRUPT_RISING,
120 LPC176X_GPIO_INTERRUPT_FALLING,
121 LPC176X_GPIO_INTERRUPT_BOTH,
122 LPC176X_GPIO_INTERRUPT_COUNT
136 LPC176X_GPIO_PORTS_COUNT
146 LPC176X_FIO0_BASE_ADDRESS = 0x2009C000U,
147 LPC176X_FIO1_BASE_ADDRESS = 0x2009C020U,
148 LPC176X_FIO2_BASE_ADDRESS = 0x2009C040U,
149 LPC176X_FIO3_BASE_ADDRESS = 0x2009C060U,
150 LPC176X_FIO4_BASE_ADDRESS = 0x2009C080U,
160 LPC176X_IO0_INT_BASE_ADDRESS = 0x40028084U,
161 LPC176X_IO2_INT_BASE_ADDRESS = 0x400280A4U,
Definitions types used by some devices in common.
uint32_t lpc176x_pin_number
A pin of the board.
Definition: common-types.h:34
lpc176x_gpio_direction
The direction of the GPIO port (input or output).
Definition: gpio-defs.h:105
lpc176x_gpio_ports
The ports for a GPIO.
Definition: gpio-defs.h:130
lpc176x_interrupt_address
Addresses for the two interrupts.
Definition: gpio-defs.h:159
lpc176x_gpio_address
Addresses for a GPIO.
Definition: gpio-defs.h:145
void(* lpc176x_gpio_interrupt_function)(const lpc176x_pin_number pin, const lpc176x_gpio_interrupt edge)
A function that attends an interrupt for GPIO.
Definition: gpio-defs.h:197
lpc176x_gpio_interrupt
The interrupt sources edge for a GPIO.
Definition: gpio-defs.h:117
GPIO Interrupt register map.
Definition: gpio-defs.h:167
volatile uint32_t EnF
Interrupt Enable for Falling edge.
Definition: gpio-defs.h:187
volatile uint32_t EnR
Interrupt Enable for Rising edge.
Definition: gpio-defs.h:183
volatile uint32_t Clr
Interrupt Clear.
Definition: gpio-defs.h:179
volatile uint32_t StatF
Interrupt Enable for Falling edge.
Definition: gpio-defs.h:175
volatile uint32_t StatR
Interrupt Enable for Rising edge.
Definition: gpio-defs.h:171
A registered interrupt function for the pin 'pin'.
Definition: gpio-defs.h:205
lpc176x_pin_number pin
Pin board.
Definition: gpio-defs.h:209
lpc176x_gpio_interrupt_function function
A function that attends an interrupt for 'pin'.
Definition: gpio-defs.h:213