From c383159000a2975dabde43f221deae3d54bc48b0 Mon Sep 17 00:00:00 2001 From: Zihao Yu Date: Wed, 17 Jan 2024 13:36:09 +0800 Subject: [PATCH] am,npc: add uart config function --- am/src/riscv/npc/ioe.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/am/src/riscv/npc/ioe.c b/am/src/riscv/npc/ioe.c index 26bad0a..14ff689 100644 --- a/am/src/riscv/npc/ioe.c +++ b/am/src/riscv/npc/ioe.c @@ -9,6 +9,7 @@ void __am_input_keybrd(AM_INPUT_KEYBRD_T *); static void __am_timer_config(AM_TIMER_CONFIG_T *cfg) { cfg->present = true; cfg->has_rtc = true; } static void __am_input_config(AM_INPUT_CONFIG_T *cfg) { cfg->present = true; } +static void __am_uart_config(AM_INPUT_CONFIG_T *cfg) { cfg->present = false; } typedef void (*handler_t)(void *buf); static void *lut[128] = { @@ -17,6 +18,7 @@ static void *lut[128] = { [AM_TIMER_UPTIME] = __am_timer_uptime, [AM_INPUT_CONFIG] = __am_input_config, [AM_INPUT_KEYBRD] = __am_input_keybrd, + [AM_UART_CONFIG] = __am_uart_config, }; static void fail(void *buf) { panic("access nonexist register"); }