1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /*
- * Copyright (c) 2006-2022, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2021-08-20 BruceOu the first version
- */
- #ifndef __DRV_GPIO_H__
- #define __DRV_GPIO_H__
- #include <rtthread.h>
- #include <rtdevice.h>
- #include <board.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #if defined SOC_SERIES_GD32F10x
- #include "gd32f10x_gpio.h"
- #elif defined SOC_SERIES_GD32F20x
- #include "gd32f20x_gpio.h"
- #elif defined SOC_SERIES_GD32F30x
- #include "gd32f30x_gpio.h"
- #elif defined SOC_SERIES_GD32F4xx
- #include "gd32f4xx_gpio.h"
- #endif
- #define __GD32_PORT(port) GPIO##port
- #if defined SOC_SERIES_GD32F4xx
- #define GD32_PIN(index, port, pin) {index, RCU_GPIO##port, \
- GPIO##port, GPIO_PIN_##pin, \
- EXTI_SOURCE_GPIO##port, \
- EXTI_SOURCE_PIN##pin}
- #else
- #define GD32_PIN(index, port, pin) {index, RCU_GPIO##port, \
- GPIO##port, GPIO_PIN_##pin, \
- GPIO_PORT_SOURCE_GPIO##port, \
- GPIO_PIN_SOURCE_##pin}
- #endif
- #define GD32_PIN_DEFAULT {-1, (rcu_periph_enum)0, 0, 0, 0, 0}
- #define GET_PIN(PORTx,PIN) (rt_base_t)((16 * ( ((rt_base_t)__GD32_PORT(PORTx) - (rt_base_t)GPIO_BASE)/(0x0400UL) )) + PIN)
- #define PIN_NUM(port, no) (((((port)&0xFu) << 4) | ((no)&0xFu)))
- #define PIN_PORT(pin) ((uint8_t)(((pin) >> 4) & 0xFu))
- #define PIN_NO(pin) ((uint8_t)((pin)&0xFu))
- #define PIN_GDPORT(pin) (GPIO_BASE + (0x400u * PIN_PORT(pin))) /* gpio_periph GPIOA~GPIOG */
- #define PIN_GDPIN(pin) ((uint16_t)(1u << PIN_NO(pin))) /* GPIO_PIN_0~GPIO_PIN_15 */
- #define PIN_GDRCU(pin) RCU_REGIDX_BIT(APB2EN_REG_OFFSET, PIN_PORT(pin) + 2) /* pin gpio外设时钟 */
- struct pin_index
- {
- rt_int16_t index;
- rcu_periph_enum clk;
- rt_uint32_t gpio_periph;
- rt_uint32_t pin;
- rt_uint8_t port_src;
- rt_uint8_t pin_src;
- };
- struct pin_irq_map
- {
- rt_uint16_t pinbit;
- IRQn_Type irqno;
- };
- #ifdef __cplusplus
- }
- #endif
- #endif /* __DRV_GPIO_H__ */
|