123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776 |
- /*
- * Copyright (c) 2006-2022, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2017-10-20 ZYH the first version
- * 2017-11-15 ZYH update to 3.0.0
- */
- #include <rthw.h>
- #include <rtdevice.h>
- #include <board.h>
- #include <rtthread.h>
- #include "drivers/pin.h"
- #ifdef RT_USING_PIN
- #define __CH32_PIN(index, gpio, gpio_index) {index, GPIO##gpio##_CLK_ENABLE, GPIO##gpio, GPIO_Pin_##gpio_index}
- #define __CH32_PIN_DEFAULT {-1, 0, 0, 0}
- #define PIN_MODE_INPUT_AIN 0x05
- #define PIN_MODE_OUTPUT_AF_OD 0x06
- #define PIN_MODE_OUTPUT_AF_PP 0x07
- static void GPIOA_CLK_ENABLE(void)
- {
- RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
- }
- static void GPIOB_CLK_ENABLE(void)
- {
- RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
- }
- #if (CH32V10X_PIN_NUMBERS >36)
- static void GPIOC_CLK_ENABLE(void)
- {
- RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE);
- }
- #endif
- #if (CH32V10X_PIN_NUMBERS >48)
- static void GPIOD_CLK_ENABLE(void)
- {
- RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOD, ENABLE);
- }
- #endif
- #if (CH32V10X_PIN_NUMBERS >64)
- static void GPIOE_CLK_ENABLE(void)
- {
- RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOE, ENABLE);
- }
- #endif
- /* STM32 GPIO driver */
- struct pin_index
- {
- int index;
- void (*rcc)(void);
- GPIO_TypeDef *gpio;
- uint32_t pin;
- };
- static const struct pin_index pins[] =
- {
- #if (CH32V10X_PIN_NUMBERS == 36)
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(7, A, 0),
- __CH32_PIN(8, A, 1),
- __CH32_PIN(9, A, 2),
- __CH32_PIN(10, A, 3),
- __CH32_PIN(11, A, 4),
- __CH32_PIN(12, A, 5),
- __CH32_PIN(13, A, 6),
- __CH32_PIN(14, A, 7),
- __CH32_PIN(15, B, 0),
- __CH32_PIN(16, B, 1),
- __CH32_PIN(17, B, 2),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(20, A, 8),
- __CH32_PIN(21, A, 9),
- __CH32_PIN(22, A, 10),
- __CH32_PIN(23, A, 11),
- __CH32_PIN(24, A, 12),
- __CH32_PIN(25, A, 13),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(28, A, 14),
- __CH32_PIN(29, A, 15),
- __CH32_PIN(30, B, 3),
- __CH32_PIN(31, B, 4),
- __CH32_PIN(32, B, 5),
- __CH32_PIN(33, B, 6),
- __CH32_PIN(34, B, 7),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- #endif
- #if (CH32V10X_PIN_NUMBERS == 48)
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(2, C, 13),
- __CH32_PIN(3, C, 14),
- __CH32_PIN(4, C, 15),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(10, A, 0),
- __CH32_PIN(11, A, 1),
- __CH32_PIN(12, A, 2),
- __CH32_PIN(13, A, 3),
- __CH32_PIN(14, A, 4),
- __CH32_PIN(15, A, 5),
- __CH32_PIN(16, A, 6),
- __CH32_PIN(17, A, 7),
- __CH32_PIN(18, B, 0),
- __CH32_PIN(19, B, 1),
- __CH32_PIN(20, B, 2),
- __CH32_PIN(21, B, 10),
- __CH32_PIN(22, B, 11),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(25, B, 12),
- __CH32_PIN(26, B, 13),
- __CH32_PIN(27, B, 14),
- __CH32_PIN(28, B, 15),
- __CH32_PIN(29, A, 8),
- __CH32_PIN(30, A, 9),
- __CH32_PIN(31, A, 10),
- __CH32_PIN(32, A, 11),
- __CH32_PIN(33, A, 12),
- __CH32_PIN(34, A, 13),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(37, A, 14),
- __CH32_PIN(38, A, 15),
- __CH32_PIN(39, B, 3),
- __CH32_PIN(40, B, 4),
- __CH32_PIN(41, B, 5),
- __CH32_PIN(42, B, 6),
- __CH32_PIN(43, B, 7),
- __CH32_PIN_DEFAULT,
- __CH32_PIN(45, B, 8),
- __CH32_PIN(46, B, 9),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- #endif
- #if (CH32V10X_PIN_NUMBERS == 64)
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(2, C, 13),
- __CH32_PIN(3, C, 14),
- __CH32_PIN(4, C, 15),
- __CH32_PIN(5, D, 0),
- __CH32_PIN(6, D, 1),
- __CH32_PIN_DEFAULT,
- __CH32_PIN(8, C, 0),
- __CH32_PIN(9, C, 1),
- __CH32_PIN(10, C, 2),
- __CH32_PIN(11, C, 3),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(14, A, 0),
- __CH32_PIN(15, A, 1),
- __CH32_PIN(16, A, 2),
- __CH32_PIN(17, A, 3),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(20, A, 4),
- __CH32_PIN(21, A, 5),
- __CH32_PIN(22, A, 6),
- __CH32_PIN(23, A, 7),
- __CH32_PIN(24, C, 4),
- __CH32_PIN(25, C, 5),
- __CH32_PIN(26, B, 0),
- __CH32_PIN(27, B, 1),
- __CH32_PIN(28, B, 2),
- __CH32_PIN(29, B, 10),
- __CH32_PIN(30, B, 11),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(33, B, 12),
- __CH32_PIN(34, B, 13),
- __CH32_PIN(35, B, 14),
- __CH32_PIN(36, B, 15),
- __CH32_PIN(37, C, 6),
- __CH32_PIN(38, C, 7),
- __CH32_PIN(39, C, 8),
- __CH32_PIN(40, C, 9),
- __CH32_PIN(41, A, 8),
- __CH32_PIN(42, A, 9),
- __CH32_PIN(43, A, 10),
- __CH32_PIN(44, A, 11),
- __CH32_PIN(45, A, 12),
- __CH32_PIN(46, A, 13),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(49, A, 14),
- __CH32_PIN(50, A, 15),
- __CH32_PIN(51, C, 10),
- __CH32_PIN(52, C, 11),
- __CH32_PIN(53, C, 12),
- __CH32_PIN(54, D, 2),
- __CH32_PIN(55, B, 3),
- __CH32_PIN(56, B, 4),
- __CH32_PIN(57, B, 5),
- __CH32_PIN(58, B, 6),
- __CH32_PIN(59, B, 7),
- __CH32_PIN_DEFAULT,
- __CH32_PIN(61, B, 8),
- __CH32_PIN(62, B, 9),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- #endif
- #if (CH32V10X_PIN_NUMBERS == 100)
- __CH32_PIN_DEFAULT,
- __CH32_PIN(1, E, 2),
- __CH32_PIN(2, E, 3),
- __CH32_PIN(3, E, 4),
- __CH32_PIN(4, E, 5),
- __CH32_PIN(5, E, 6),
- __CH32_PIN_DEFAULT,
- __CH32_PIN(7, C, 13),
- __CH32_PIN(8, C, 14),
- __CH32_PIN(9, C, 15),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(15, C, 0),
- __CH32_PIN(16, C, 1),
- __CH32_PIN(17, C, 2),
- __CH32_PIN(18, C, 3),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(23, A, 0),
- __CH32_PIN(24, A, 1),
- __CH32_PIN(25, A, 2),
- __CH32_PIN(26, A, 3),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(29, A, 4),
- __CH32_PIN(30, A, 5),
- __CH32_PIN(31, A, 6),
- __CH32_PIN(32, A, 7),
- __CH32_PIN(33, C, 4),
- __CH32_PIN(34, C, 5),
- __CH32_PIN(35, B, 0),
- __CH32_PIN(36, B, 1),
- __CH32_PIN(37, B, 2),
- __CH32_PIN(38, E, 7),
- __CH32_PIN(39, E, 8),
- __CH32_PIN(40, E, 9),
- __CH32_PIN(41, E, 10),
- __CH32_PIN(42, E, 11),
- __CH32_PIN(43, E, 12),
- __CH32_PIN(44, E, 13),
- __CH32_PIN(45, E, 14),
- __CH32_PIN(46, E, 15),
- __CH32_PIN(47, B, 10),
- __CH32_PIN(48, B, 11),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(51, B, 12),
- __CH32_PIN(52, B, 13),
- __CH32_PIN(53, B, 14),
- __CH32_PIN(54, B, 15),
- __CH32_PIN(55, D, 8),
- __CH32_PIN(56, D, 9),
- __CH32_PIN(57, D, 10),
- __CH32_PIN(58, D, 11),
- __CH32_PIN(59, D, 12),
- __CH32_PIN(60, D, 13),
- __CH32_PIN(61, D, 14),
- __CH32_PIN(62, D, 15),
- __CH32_PIN(63, C, 6),
- __CH32_PIN(64, C, 7),
- __CH32_PIN(65, C, 8),
- __CH32_PIN(66, C, 9),
- __CH32_PIN(67, A, 8),
- __CH32_PIN(68, A, 9),
- __CH32_PIN(69, A, 10),
- __CH32_PIN(70, A, 11),
- __CH32_PIN(71, A, 12),
- __CH32_PIN(72, A, 13),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- __CH32_PIN(76, A, 14),
- __CH32_PIN(77, A, 15),
- __CH32_PIN(78, C, 10),
- __CH32_PIN(79, C, 11),
- __CH32_PIN(80, C, 12),
- __CH32_PIN(81, D, 0),
- __CH32_PIN(82, D, 1),
- __CH32_PIN(83, D, 2),
- __CH32_PIN(84, D, 3),
- __CH32_PIN(85, D, 4),
- __CH32_PIN(86, D, 5),
- __CH32_PIN(87, D, 6),
- __CH32_PIN(88, D, 7),
- __CH32_PIN(89, B, 3),
- __CH32_PIN(90, B, 4),
- __CH32_PIN(91, B, 5),
- __CH32_PIN(92, B, 6),
- __CH32_PIN(93, B, 7),
- __CH32_PIN_DEFAULT,
- __CH32_PIN(95, B, 8),
- __CH32_PIN(96, B, 9),
- __CH32_PIN(97, E, 0),
- __CH32_PIN(98, E, 1),
- __CH32_PIN_DEFAULT,
- __CH32_PIN_DEFAULT,
- #endif
- };
- struct pin_irq_map
- {
- rt_uint16_t pinbit;
- IRQn_Type irqno;
- };
- static const struct pin_irq_map pin_irq_map[] =
- {
- {GPIO_Pin_0, EXTI0_IRQn},
- {GPIO_Pin_1, EXTI1_IRQn},
- {GPIO_Pin_2, EXTI2_IRQn},
- {GPIO_Pin_3, EXTI3_IRQn},
- {GPIO_Pin_4, EXTI4_IRQn},
- {GPIO_Pin_5, EXTI9_5_IRQn},
- {GPIO_Pin_6, EXTI9_5_IRQn},
- {GPIO_Pin_7, EXTI9_5_IRQn},
- {GPIO_Pin_8, EXTI9_5_IRQn},
- {GPIO_Pin_9, EXTI9_5_IRQn},
- {GPIO_Pin_10, EXTI15_10_IRQn},
- {GPIO_Pin_11, EXTI15_10_IRQn},
- {GPIO_Pin_12, EXTI15_10_IRQn},
- {GPIO_Pin_13, EXTI15_10_IRQn},
- {GPIO_Pin_14, EXTI15_10_IRQn},
- {GPIO_Pin_15, EXTI15_10_IRQn},
- };
- struct rt_pin_irq_hdr pin_irq_hdr_tab[] =
- {
- { -1, 0, RT_NULL, RT_NULL},
- { -1, 0, RT_NULL, RT_NULL},
- { -1, 0, RT_NULL, RT_NULL},
- { -1, 0, RT_NULL, RT_NULL},
- { -1, 0, RT_NULL, RT_NULL},
- { -1, 0, RT_NULL, RT_NULL},
- { -1, 0, RT_NULL, RT_NULL},
- { -1, 0, RT_NULL, RT_NULL},
- { -1, 0, RT_NULL, RT_NULL},
- { -1, 0, RT_NULL, RT_NULL},
- { -1, 0, RT_NULL, RT_NULL},
- { -1, 0, RT_NULL, RT_NULL},
- { -1, 0, RT_NULL, RT_NULL},
- { -1, 0, RT_NULL, RT_NULL},
- { -1, 0, RT_NULL, RT_NULL},
- { -1, 0, RT_NULL, RT_NULL},
- };
- #define ITEM_NUM(items) sizeof(items) / sizeof(items[0])
- const struct pin_index *get_pin(uint8_t pin)
- {
- const struct pin_index *index;
- if (pin < ITEM_NUM(pins))
- {
- index = &pins[pin];
- if (index->index == -1)
- index = RT_NULL;
- }
- else
- {
- index = RT_NULL;
- }
- return index;
- };
- void ch32_pin_write(rt_device_t dev, rt_base_t pin, rt_base_t value)
- {
- const struct pin_index *index;
- index = get_pin(pin);
- if (index == RT_NULL)
- {
- return;
- }
- GPIO_WriteBit(index->gpio, index->pin, (BitAction)value);
- }
- int ch32_pin_read(rt_device_t dev, rt_base_t pin)
- {
- int value;
- const struct pin_index *index;
- value = PIN_LOW;
- index = get_pin(pin);
- if (index == RT_NULL)
- {
- return value;
- }
- value = GPIO_ReadInputDataBit(index->gpio, index->pin);
- return value;
- }
- void ch32_pin_mode(rt_device_t dev, rt_base_t pin, rt_base_t mode)
- {
- const struct pin_index *index;
- GPIO_InitTypeDef GPIO_InitStruct;
- index = get_pin(pin);
- if (index == RT_NULL)
- {
- return;
- }
- rt_kprintf("get pin index\r\n");
- /* GPIO Periph clock enable */
- index->rcc();
- /* Configure GPIO_InitStructure */
- GPIO_InitStruct.GPIO_Pin = index->pin;
- GPIO_InitStruct.GPIO_Mode = GPIO_Mode_Out_PP;
- GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
- if (mode == PIN_MODE_OUTPUT)
- {
- /* output setting */
- GPIO_InitStruct.GPIO_Mode = GPIO_Mode_Out_PP;
- }
- else if (mode == PIN_MODE_INPUT_AIN)
- {
- /* input setting: not pull. */
- GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AIN;
- }
- else if (mode == PIN_MODE_INPUT)
- {
- /* input setting: pull up. */
- GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IN_FLOATING;
- }
- else if (mode == PIN_MODE_INPUT_PULLDOWN)
- {
- /* input setting: pull down. */
- GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IPD;
- // GPIO_InitStruct.Pull = GPIO_PULLDOWN;
- }
- else if (mode == PIN_MODE_INPUT_PULLUP)
- {
- /* output setting: od. */
- GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IPU;
- // GPIO_InitStruct.Pull = GPIO_NOPULL;
- }
- else if (mode == PIN_MODE_OUTPUT_OD)
- {
- GPIO_InitStruct.GPIO_Mode = GPIO_Mode_Out_OD;
- }
- else if (mode == PIN_MODE_OUTPUT_AF_OD)
- {
- GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF_OD;
- }
- else if (mode == PIN_MODE_OUTPUT_AF_PP)
- {
- GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF_PP;
- }
- GPIO_Init(index->gpio, &GPIO_InitStruct);
- }
- rt_inline rt_int32_t bit2bitno(rt_uint32_t bit)
- {
- int i;
- for (i = 0; i < 32; i++)
- {
- if ((0x01 << i) == bit)
- {
- return i;
- }
- }
- return -1;
- }
- rt_inline const struct pin_irq_map *get_pin_irq_map(uint32_t pinbit)
- {
- rt_int32_t mapindex = bit2bitno(pinbit);
- if (mapindex < 0 || mapindex >= ITEM_NUM(pin_irq_map))
- {
- return RT_NULL;
- }
- return &pin_irq_map[mapindex];
- };
- rt_err_t ch32_pin_attach_irq(struct rt_device *device, rt_int32_t pin,
- rt_uint32_t mode, void (*hdr)(void *args), void *args)
- {
- const struct pin_index *index;
- rt_base_t level;
- rt_int32_t irqindex = -1;
- index = get_pin(pin);
- if (index == RT_NULL)
- {
- return RT_ENOSYS;
- }
- irqindex = bit2bitno(index->pin);
- if (irqindex < 0 || irqindex >= ITEM_NUM(pin_irq_map))
- {
- return RT_ENOSYS;
- }
- level = rt_hw_interrupt_disable();
- if (pin_irq_hdr_tab[irqindex].pin == pin &&
- pin_irq_hdr_tab[irqindex].hdr == hdr &&
- pin_irq_hdr_tab[irqindex].mode == mode &&
- pin_irq_hdr_tab[irqindex].args == args)
- {
- rt_hw_interrupt_enable(level);
- return RT_EOK;
- }
- if (pin_irq_hdr_tab[irqindex].pin != -1)
- {
- rt_hw_interrupt_enable(level);
- return RT_EBUSY;
- }
- pin_irq_hdr_tab[irqindex].pin = pin;
- pin_irq_hdr_tab[irqindex].hdr = hdr;
- pin_irq_hdr_tab[irqindex].mode = mode;
- pin_irq_hdr_tab[irqindex].args = args;
- rt_hw_interrupt_enable(level);
- return RT_EOK;
- }
- rt_err_t ch32_pin_dettach_irq(struct rt_device *device, rt_int32_t pin)
- {
- const struct pin_index *index;
- rt_base_t level;
- rt_int32_t irqindex = -1;
- index = get_pin(pin);
- if (index == RT_NULL)
- {
- return RT_ENOSYS;
- }
- irqindex = bit2bitno(index->pin);
- if (irqindex < 0 || irqindex >= ITEM_NUM(pin_irq_map))
- {
- return RT_ENOSYS;
- }
- level = rt_hw_interrupt_disable();
- if (pin_irq_hdr_tab[irqindex].pin == -1)
- {
- rt_hw_interrupt_enable(level);
- return RT_EOK;
- }
- pin_irq_hdr_tab[irqindex].pin = -1;
- pin_irq_hdr_tab[irqindex].hdr = RT_NULL;
- pin_irq_hdr_tab[irqindex].mode = 0;
- pin_irq_hdr_tab[irqindex].args = RT_NULL;
- rt_hw_interrupt_enable(level);
- return RT_EOK;
- }
- rt_err_t ch32_pin_irq_enable(struct rt_device *device, rt_base_t pin,
- rt_uint32_t enabled)
- {
- const struct pin_index *index;
- const struct pin_irq_map *irqmap;
- rt_base_t level;
- rt_int32_t irqindex = -1;
- GPIO_InitTypeDef GPIO_InitStruct;
- EXTI_InitTypeDef EXTI_InitStructure;
- index = get_pin(pin);
- if (index == RT_NULL)
- {
- return RT_ENOSYS;
- }
- if (enabled == PIN_IRQ_ENABLE)
- {
- irqindex = bit2bitno(index->pin);
- if (irqindex < 0 || irqindex >= ITEM_NUM(pin_irq_map))
- {
- return RT_ENOSYS;
- }
- level = rt_hw_interrupt_disable();
- if (pin_irq_hdr_tab[irqindex].pin == -1)
- {
- rt_hw_interrupt_enable(level);
- return RT_ENOSYS;
- }
- irqmap = &pin_irq_map[irqindex];
- /* GPIO Periph clock enable */
- index->rcc();
- RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO,ENABLE);
- /* Configure GPIO_InitStructure */
- GPIO_InitStruct.GPIO_Pin = index->pin;
- GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
- EXTI_InitStructure.EXTI_Line=index->pin;/* �ⲿ�ж��ߺ����źŶ�Ӧ */
- EXTI_InitStructure.EXTI_Mode = EXTI_Mode_Interrupt;
- EXTI_InitStructure.EXTI_LineCmd = ENABLE;
- switch (pin_irq_hdr_tab[irqindex].mode)
- {
- case PIN_IRQ_MODE_RISING:
- GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IPD;
- EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Rising;
- break;
- case PIN_IRQ_MODE_FALLING:
- GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IPU;
- EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Falling;
- break;
- case PIN_IRQ_MODE_RISING_FALLING:
- GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IN_FLOATING;
- EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Rising_Falling;
- break;
- }
- GPIO_Init(index->gpio, &GPIO_InitStruct);
- EXTI_Init(&EXTI_InitStructure);
- NVIC_SetPriority(irqmap->irqno,5<<4);
- NVIC_EnableIRQ( irqmap->irqno );
- rt_hw_interrupt_enable(level);
- }
- else if (enabled == PIN_IRQ_DISABLE)
- {
- irqmap = get_pin_irq_map(index->pin);
- if (irqmap == RT_NULL)
- {
- return RT_ENOSYS;
- }
- NVIC_DisableIRQ(irqmap->irqno);
- }
- else
- {
- return RT_ENOSYS;
- }
- return RT_EOK;
- }
- const static struct rt_pin_ops _ch32_pin_ops =
- {
- ch32_pin_mode,
- ch32_pin_write,
- ch32_pin_read,
- ch32_pin_attach_irq,
- ch32_pin_dettach_irq,
- ch32_pin_irq_enable,
- };
- int rt_hw_pin_init(void)
- {
- int result;
- result = rt_device_pin_register("pin", &_ch32_pin_ops, RT_NULL);
- return result;
- }
- INIT_BOARD_EXPORT(rt_hw_pin_init);
- rt_inline void pin_irq_hdr(int irqno)
- {
- if (pin_irq_hdr_tab[irqno].hdr)
- {
- pin_irq_hdr_tab[irqno].hdr(pin_irq_hdr_tab[irqno].args);
- }
- }
- void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin)
- {
- pin_irq_hdr(bit2bitno(GPIO_Pin));
- }
- void EXTI0_IRQHandler(void) __attribute__((interrupt()));
- void EXTI1_IRQHandler(void) __attribute__((interrupt()));
- void EXTI3_IRQHandler(void) __attribute__((interrupt()));
- void EXTI4_IRQHandler(void) __attribute__((interrupt()));
- void EXTI9_5_IRQHandler(void) __attribute__((interrupt()));
- void EXTI0_IRQHandler(void)
- {
- GET_INT_SP();
- rt_interrupt_enter();
- if(EXTI_GetITStatus(EXTI_Line0)!=RESET)
- {
- HAL_GPIO_EXTI_Callback(GPIO_Pin_0);
- EXTI_ClearITPendingBit(EXTI_Line0);
- }
- rt_interrupt_leave();
- FREE_INT_SP();
- }
- void EXTI1_IRQHandler(void)
- {
- GET_INT_SP();
- rt_interrupt_enter();
- if(EXTI_GetITStatus(EXTI_Line1)!=RESET)
- {
- HAL_GPIO_EXTI_Callback(GPIO_Pin_1);
- EXTI_ClearITPendingBit(EXTI_Line1);
- }
- rt_interrupt_leave();
- FREE_INT_SP();
- }
- void EXTI2_IRQHandler(void)
- {
- GET_INT_SP();
- rt_interrupt_enter();
- if(EXTI_GetITStatus(EXTI_Line2)!=RESET)
- {
- HAL_GPIO_EXTI_Callback(GPIO_Pin_2);
- EXTI_ClearITPendingBit(EXTI_Line2);
- }
- rt_interrupt_leave();
- FREE_INT_SP();
- }
- void EXTI3_IRQHandler(void)
- {
- GET_INT_SP();
- rt_interrupt_enter();
- if(EXTI_GetITStatus(EXTI_Line3)!=RESET)
- {
- HAL_GPIO_EXTI_Callback(GPIO_Pin_3);
- EXTI_ClearITPendingBit(EXTI_Line3);
- }
- rt_interrupt_leave();
- FREE_INT_SP();
- }
- void EXTI4_IRQHandler(void)
- {
- GET_INT_SP();
- rt_interrupt_enter();
- if(EXTI_GetITStatus(EXTI_Line4)!=RESET)
- {
- HAL_GPIO_EXTI_Callback(GPIO_Pin_4);
- EXTI_ClearITPendingBit(EXTI_Line4);
- }
- rt_interrupt_leave();
- FREE_INT_SP();
- }
- void EXTI9_5_IRQHandler(void)
- {
- GET_INT_SP();
- rt_interrupt_enter();
- if( (EXTI_GetITStatus(EXTI_Line5)!=RESET)|| \
- (EXTI_GetITStatus(EXTI_Line6)!=RESET)|| \
- (EXTI_GetITStatus(EXTI_Line7)!=RESET)|| \
- (EXTI_GetITStatus(EXTI_Line8)!=RESET)|| \
- (EXTI_GetITStatus(EXTI_Line9)!=RESET) )
- {
- HAL_GPIO_EXTI_Callback(GPIO_Pin_5);
- HAL_GPIO_EXTI_Callback(GPIO_Pin_6);
- HAL_GPIO_EXTI_Callback(GPIO_Pin_7);
- HAL_GPIO_EXTI_Callback(GPIO_Pin_8);
- HAL_GPIO_EXTI_Callback(GPIO_Pin_9);
- EXTI_ClearITPendingBit(EXTI_Line5|EXTI_Line6|EXTI_Line7|EXTI_Line8|EXTI_Line9);
- }
- rt_interrupt_leave();
- FREE_INT_SP();
- }
- #endif
|