Home
last modified time | relevance | path

Searched refs:rt_hw_interrupt_install (Results 1 – 25 of 241) sorted by relevance

12345678910

/bsp/loongson/ls2kdev/drivers/
A Ddrv_gpio.c240 rt_hw_interrupt_install(LS2K_GPIO0_INT_IRQ, gpio_irq_handler, &_g_gpio_irq_tbl[0], "gpio0_irq"); in loongson_pin_init()
244 rt_hw_interrupt_install(LS2K_GPIO1_INT_IRQ, gpio_irq_handler, &_g_gpio_irq_tbl[1], "gpio1_irq"); in loongson_pin_init()
248 rt_hw_interrupt_install(LS2K_GPIO2_INT_IRQ, gpio_irq_handler, &_g_gpio_irq_tbl[2], "gpio2_irq"); in loongson_pin_init()
252 rt_hw_interrupt_install(LS2K_GPIO3_INT_IRQ, gpio_irq_handler, &_g_gpio_irq_tbl[3], "gpio3_irq"); in loongson_pin_init()
256rt_hw_interrupt_install(LS2K_GPIO_INTLO_IRQ, gpio_irq_handler, &_g_gpio_irq_tbl[4], "gpio4_irq"); in loongson_pin_init()
260rt_hw_interrupt_install(LS2K_GPIO_INTHI_IRQ, gpio_irq_handler, &_g_gpio_irq_tbl[5], "gpio5_irq"); in loongson_pin_init()
/bsp/nxp/imx/imx6ull-smart/drivers/
A Ddrv_pin.c527rt_hw_interrupt_install(IMX_INT_GPIO1_INT15_0, GPIO1_Combined_0_15_IRQHandler, RT_NULL, "GPIO1_0… in imx6ull_pin_interrupt_install()
528rt_hw_interrupt_install(IMX_INT_GPIO1_INT31_16, GPIO1_Combined_16_31_IRQHandler, RT_NULL, "GPIO1_1… in imx6ull_pin_interrupt_install()
529rt_hw_interrupt_install(IMX_INT_GPIO2_INT15_0, GPIO2_Combined_0_15_IRQHandler, RT_NULL, "GPIO2_0… in imx6ull_pin_interrupt_install()
530rt_hw_interrupt_install(IMX_INT_GPIO2_INT31_16, GPIO2_Combined_16_31_IRQHandler, RT_NULL, "GPIO2_1… in imx6ull_pin_interrupt_install()
531rt_hw_interrupt_install(IMX_INT_GPIO3_INT15_0, GPIO3_Combined_0_15_IRQHandler, RT_NULL, "GPIO3_0… in imx6ull_pin_interrupt_install()
532rt_hw_interrupt_install(IMX_INT_GPIO3_INT31_16, GPIO3_Combined_16_31_IRQHandler, RT_NULL, "GPIO3_1… in imx6ull_pin_interrupt_install()
533rt_hw_interrupt_install(IMX_INT_GPIO4_INT15_0, GPIO4_Combined_0_15_IRQHandler, RT_NULL, "GPIO4_0… in imx6ull_pin_interrupt_install()
534rt_hw_interrupt_install(IMX_INT_GPIO4_INT31_16, GPIO4_Combined_16_31_IRQHandler, RT_NULL, "GPIO4_1… in imx6ull_pin_interrupt_install()
535rt_hw_interrupt_install(IMX_INT_GPIO5_INT15_0, GPIO5_Combined_0_15_IRQHandler, RT_NULL, "GPIO5_0… in imx6ull_pin_interrupt_install()
536rt_hw_interrupt_install(IMX_INT_GPIO5_INT31_16, GPIO5_Combined_16_31_IRQHandler, RT_NULL, "GPIO5_1… in imx6ull_pin_interrupt_install()
/bsp/rockchip/common/drivers/
A Ddrv_cache.c235 rt_hw_interrupt_install(CACHE_IRQn, (rt_isr_handler_t)CACHE_IRQHandler, RT_NULL, RT_NULL); in rt_hw_cpu_cache_init()
238 rt_hw_interrupt_install(CACHE0_I_IRQn, (rt_isr_handler_t)CACHE_IRQHandler, RT_NULL, RT_NULL); in rt_hw_cpu_cache_init()
239 rt_hw_interrupt_install(CACHE0_D_IRQn, (rt_isr_handler_t)CACHE_IRQHandler, RT_NULL, RT_NULL); in rt_hw_cpu_cache_init()
A Ddrv_gpio.c315 rt_hw_interrupt_install(GPIO0_IRQn, (void *)pin_gpio0_handler, RT_NULL, RT_NULL); in rt_hw_gpio_init()
319 rt_hw_interrupt_install(GPIO1_IRQn, (void *)pin_gpio1_handler, RT_NULL, RT_NULL); in rt_hw_gpio_init()
323 rt_hw_interrupt_install(GPIO2_IRQn, (void *)pin_gpio2_handler, RT_NULL, RT_NULL); in rt_hw_gpio_init()
327 rt_hw_interrupt_install(GPIO3_IRQn, (void *)pin_gpio3_handler, RT_NULL, RT_NULL); in rt_hw_gpio_init()
331 rt_hw_interrupt_install(GPIO4_IRQn, (void *)pin_gpio4_handler, RT_NULL, RT_NULL); in rt_hw_gpio_init()
/bsp/beaglebone/drivers/
A Duart.c383 rt_hw_interrupt_install(uart0.irq, am33xx_uart_isr, &serial0, "uart0"); in rt_hw_serial_init()
398 rt_hw_interrupt_install(uart1.irq, am33xx_uart_isr, &serial1, "uart1"); in rt_hw_serial_init()
413 rt_hw_interrupt_install(uart2.irq, am33xx_uart_isr, &serial2, "uart2"); in rt_hw_serial_init()
428 rt_hw_interrupt_install(uart3.irq, am33xx_uart_isr, &serial3, "uart3"); in rt_hw_serial_init()
446 rt_hw_interrupt_install(uart4.irq, am33xx_uart_isr, &serial4, "uart4"); in rt_hw_serial_init()
463 rt_hw_interrupt_install(uart5.irq, am33xx_uart_isr, &serial5, "uart5"); in rt_hw_serial_init()
/bsp/raspberry-pi/raspi4-32/driver/
A Ddrv_uart.c314 rt_hw_interrupt_install(uart0->irqno, rt_hw_uart_isr, &_serial0, "uart0"); in rt_hw_uart_init()
328 rt_hw_interrupt_install(uart1->irqno, rt_hw_aux_uart_isr, &_serial1, "uart1"); in rt_hw_uart_init()
342 rt_hw_interrupt_install(uart3->irqno, rt_hw_uart_isr, &_serial3, "uart3"); in rt_hw_uart_init()
356 rt_hw_interrupt_install(uart4->irqno, rt_hw_uart_isr, &_serial4, "uart4"); in rt_hw_uart_init()
370 rt_hw_interrupt_install(uart5->irqno, rt_hw_uart_isr, &_serial5, "uart5"); in rt_hw_uart_init()
/bsp/nxp/imx/imx6ul/drivers/
A Dimx6ul.h78 extern rt_isr_handler_t rt_hw_interrupt_install(int vector, rt_isr_handler_t handler,
83 rt_hw_interrupt_install(irq_id, (rt_isr_handler_t)isr, NULL, "unknown"); in register_interrupt_routine()
/bsp/raspberry-pi/raspi4-64/drivers/
A Ddrv_uart.c346 rt_hw_interrupt_install(uart0->irqno, rt_hw_uart_isr, &_serial0, "uart0"); in rt_hw_uart_init()
363 rt_hw_interrupt_install(uart1->irqno, rt_hw_aux_uart_isr, &_serial1, "uart1"); in rt_hw_uart_init()
380 rt_hw_interrupt_install(uart3->irqno, rt_hw_uart_isr, &_serial3, "uart3"); in rt_hw_uart_init()
397 rt_hw_interrupt_install(uart4->irqno, rt_hw_uart_isr, &_serial4, "uart4"); in rt_hw_uart_init()
414 rt_hw_interrupt_install(uart5->irqno, rt_hw_uart_isr, &_serial5, "uart5"); in rt_hw_uart_init()
/bsp/wh44b0/
A Dboard.c141 rt_hw_interrupt_install(INT_TIMER0, rt_timer_handler, RT_NULL); in rt_hw_board_init()
191 rt_hw_interrupt_install(INT_URXD0, rt_serial_isr, RT_NULL); in rt_hw_finsh_init()
/bsp/loongson/ls1cdev/drivers/
A Ddrv_uart.c171 rt_hw_interrupt_install(uart->IRQ, uart_irq_handler, &serial2, "UART2"); in rt_hw_uart_init()
192 rt_hw_interrupt_install(uart->IRQ, uart_irq_handler, &serial1, "UART1"); in rt_hw_uart_init()
213 rt_hw_interrupt_install(uart->IRQ, uart_irq_handler, &serial3, "UART3"); in rt_hw_uart_init()
/bsp/mini2440/drivers/
A Duart.c196 rt_hw_interrupt_install(_hwserial0.irqno, rt_hw_uart_isr, &_serial0, "uart0"); in rt_hw_uart_init()
201 rt_hw_interrupt_install(_hwserial1.irqno, rt_hw_uart_isr, &_serial1, "uart1"); in rt_hw_uart_init()
206 rt_hw_interrupt_install(_hwserial2.irqno, rt_hw_uart_isr, &_serial2, "uart2"); in rt_hw_uart_init()
/bsp/mini4020/drivers/
A Dboard.c93 rt_hw_interrupt_install(INTSRC_TIMER1, rt_timer_handler, RT_NULL, "tick"); in rt_hw_timer_init()
125 rt_hw_interrupt_install(INTSRC_UART0, rt_serial_handler, RT_NULL, "UART0"); in rt_hw_uart_init()
/bsp/nxp/imx/imx6sx/cortex-a9/cpu/
A Dinterrupt.c38 rt_hw_interrupt_install(irq_id, (rt_isr_handler_t)isr, NULL, "unknown"); in register_interrupt_routine()
112 rt_isr_handler_t rt_hw_interrupt_install(int vector, rt_isr_handler_t handler, in rt_hw_interrupt_install() function
/bsp/sep6200/drivers/
A Dboard.c91 rt_hw_interrupt_install(INTSRC_TIMER1, rt_timer_handler, RT_NULL, "timer"); in rt_hw_timer_init()
120 rt_hw_interrupt_install(INTSRC_UART0, rt_serial_handler, RT_NULL, "uart0"); in rt_hw_uart_init()
/bsp/asm9260t/drivers/
A Dusart.c204 rt_hw_interrupt_install(uart0.irq, rt_asm_usart_handler, in rt_hw_uart_init()
215 rt_hw_interrupt_install(uart3.irq, rt_asm_usart_handler, in rt_hw_uart_init()
226 rt_hw_interrupt_install(uart4.irq, rt_asm_usart_handler, in rt_hw_uart_init()
/bsp/k230/drivers/interdrv/pdma/
A Ddrv_pdma.c832 rt_hw_interrupt_install(PDMA_CHANNEL0_IRQn, k230_pdma_isr, (void *)PDMA_CH_0, "pdma_ch0"); in rt_hw_pdma_device_init()
839 rt_hw_interrupt_install(PDMA_CHANNEL1_IRQn, k230_pdma_isr, (void *)PDMA_CH_1, "pdma_ch1"); in rt_hw_pdma_device_init()
846 rt_hw_interrupt_install(PDMA_CHANNEL2_IRQn, k230_pdma_isr, (void *)PDMA_CH_2, "pdma_ch2"); in rt_hw_pdma_device_init()
853 rt_hw_interrupt_install(PDMA_CHANNEL3_IRQn, k230_pdma_isr, (void *)PDMA_CH_3, "pdma_ch3"); in rt_hw_pdma_device_init()
860 rt_hw_interrupt_install(PDMA_CHANNEL4_IRQn, k230_pdma_isr, (void *)PDMA_CH_4, "pdma_ch4"); in rt_hw_pdma_device_init()
867 rt_hw_interrupt_install(PDMA_CHANNEL5_IRQn, k230_pdma_isr, (void *)PDMA_CH_5, "pdma_ch5"); in rt_hw_pdma_device_init()
874 rt_hw_interrupt_install(PDMA_CHANNEL6_IRQn, k230_pdma_isr, (void *)PDMA_CH_6, "pdma_ch6"); in rt_hw_pdma_device_init()
881 rt_hw_interrupt_install(PDMA_CHANNEL7_IRQn, k230_pdma_isr, (void *)PDMA_CH_7, "pdma_ch7"); in rt_hw_pdma_device_init()
/bsp/bluetrum/ab32vg1-ab-prougen/board/
A Dboard.c90 rt_hw_interrupt_install(vector, handle, RT_NULL, buf); in register_isr()
110 rt_hw_interrupt_install(IRQ_TMR0_VECTOR, timer0_isr, RT_NULL, "tick"); in timer0_init()
181 rt_hw_interrupt_install(IRQ_SW_VECTOR, rt_soft_isr, RT_NULL, "sw_irq"); in rt_hw_systick_init()
/bsp/raspberry-pi/raspi3-32/cpu/
A Dinterrupt.c134 rt_isr_handler_t rt_hw_interrupt_install(int vector, rt_isr_handler_t handler, in rt_hw_interrupt_install() function
184 rt_hw_interrupt_install(ipi_vector, ipi_isr_handler, 0, "IPI_HANDLER"); in rt_hw_ipi_handler_install()
/bsp/bluetrum/libraries/hal_drivers/
A Ddrv_hwtimer.c288 rt_hw_interrupt_install(IRQ_TMR1_VECTOR, timer1_isr, RT_NULL, "t1_isr"); in ab32_hwtimer_init()
291 rt_hw_interrupt_install(IRQ_TMR2_4_5_VECTOR, timer2_4_5_isr, RT_NULL, "t245_isr"); in ab32_hwtimer_init()
294 rt_hw_interrupt_install(IRQ_IRRX_VECTOR, timer3_isr, RT_NULL, "t3_isr"); in ab32_hwtimer_init()
/bsp/raspberry-pi/raspi3-32/driver/
A Ddrv_timer.c136 rt_hw_interrupt_install(IRQ_SYSTEM_TIMER_1, rt_device_systimer_isr, &_hwtimer1, "systimer1"); in rt_hw_systimer_init()
145 rt_hw_interrupt_install(IRQ_SYSTEM_TIMER_3, rt_device_systimer_isr, &_hwtimer3, "systimer3"); in rt_hw_systimer_init()
A Ddrv_uart.c167 rt_hw_interrupt_install(uart->irqno, rt_hw_uart_isr, &_serial0, "uart0"); in rt_hw_uart_init()
179 rt_hw_interrupt_install(uart->irqno, rt_hw_uart_isr, &_serial1, "uart1"); in rt_hw_uart_init()
/bsp/raspberry-pi/raspi3-64/driver/
A Ddrv_timer.c142 rt_hw_interrupt_install(IRQ_SYSTEM_TIMER_1, rt_device_systimer_isr, &_hwtimer1, "systimer1"); in rt_hw_systimer_init()
151 rt_hw_interrupt_install(IRQ_SYSTEM_TIMER_3, rt_device_systimer_isr, &_hwtimer3, "systimer3"); in rt_hw_systimer_init()
A Ddrv_uart.c166 rt_hw_interrupt_install(uart->irqno, rt_hw_uart_isr, &_serial0, "uart0"); in rt_hw_uart_init()
178 rt_hw_interrupt_install(uart->irqno, rt_hw_uart_isr, &_serial1, "uart1"); in rt_hw_uart_init()
/bsp/at91/at91sam9g45/drivers/
A Dusart.c310 rt_hw_interrupt_install(uart0.irq, rt_at91_usart_handler, in rt_hw_uart_init()
329 rt_hw_interrupt_install(uart1.irq, rt_at91_usart_handler, in rt_hw_uart_init()
348 rt_hw_interrupt_install(uart2.irq, rt_at91_usart_handler, in rt_hw_uart_init()
367 rt_hw_interrupt_install(uart3.irq, rt_at91_usart_handler, in rt_hw_uart_init()
/bsp/raspberry-pi/raspi2/driver/
A Ddrv_uart.c169 rt_hw_interrupt_install(uart->irqno, rt_hw_uart_isr, &_serial0, "uart0"); in rt_hw_uart_init()
181 rt_hw_interrupt_install(uart->irqno, rt_hw_uart_isr, &_serial1, "uart1"); in rt_hw_uart_init()

Completed in 55 milliseconds

12345678910