File tree Expand file tree Collapse file tree 4 files changed +395
-0
lines changed Expand file tree Collapse file tree 4 files changed +395
-0
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ zephyr_library_sources_ifdef(CONFIG_UART_SEDI uart_sedi.c)
73
73
zephyr_library_sources_ifdef (CONFIG_UART_BCM2711_MU uart_bcm2711.c )
74
74
zephyr_library_sources_ifdef (CONFIG_UART_INTEL_LW uart_intel_lw.c )
75
75
zephyr_library_sources_ifdef (CONFIG_UART_RENESAS_RA uart_renesas_ra.c )
76
+ zephyr_library_sources_ifdef (CONFIG_UART_ENE_KB1200 uart_ene_kb1200.c )
76
77
zephyr_library_sources_ifdef (CONFIG_UART_RZT2M uart_rzt2m.c )
77
78
78
79
zephyr_library_sources_ifdef (CONFIG_USERSPACE uart_handlers.c )
Original file line number Diff line number Diff line change @@ -270,6 +270,8 @@ source "drivers/serial/Kconfig.intel_lw"
270
270
271
271
source "drivers/serial/Kconfig.renesas_ra"
272
272
273
+ source "drivers/serial/Kconfig.ene"
274
+
273
275
source "drivers/serial/Kconfig.rzt2m"
274
276
275
277
endif # SERIAL
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2023 ENE Technology Inc.
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
4
+ config UART_ENE_KB1200
5
+ bool "ENE KB1200 serial driver"
6
+ default y
7
+ depends on DT_HAS_ENE_KB1200_UART_ENABLED
8
+ select SERIAL_HAS_DRIVER
9
+ select SERIAL_SUPPORT_INTERRUPT
10
+ select PINCTRL
11
+ help
12
+ This option enables the KB1200 serial driver.
You can’t perform that action at this time.
0 commit comments