File tree Expand file tree Collapse file tree 6 files changed +878
-0
lines changed
Documentation/devicetree/bindings/tty/serial Expand file tree Collapse file tree 6 files changed +878
-0
lines changed Original file line number Diff line number Diff line change
1
+ * Energymicro efm32 UART
2
+
3
+ Required properties:
4
+ - compatible : Should be "efm32,uart"
5
+ - reg : Address and length of the register set
6
+ - interrupts : Should contain uart interrupt
7
+
8
+ Example:
9
+
10
+ uart@0x4000c400 {
11
+ compatible = "efm32,uart";
12
+ reg = <0x4000c400 0x400>;
13
+ interrupts = <15>;
14
+ };
Original file line number Diff line number Diff line change @@ -1628,4 +1628,17 @@ config SERIAL_AR933X_NR_UARTS
1628
1628
Set this to the number of serial ports you want the driver
1629
1629
to support.
1630
1630
1631
+ config SERIAL_EFM32_UART
1632
+ tristate "EFM32 UART/USART port."
1633
+ depends on ARCH_EFM32
1634
+ select SERIAL_CORE
1635
+ help
1636
+ This driver support the USART and UART ports on
1637
+ Energy Micro's efm32 SoCs.
1638
+
1639
+ config SERIAL_EFM32_UART_CONSOLE
1640
+ bool "EFM32 UART/USART console support"
1641
+ depends on SERIAL_EFM32_UART=y
1642
+ select SERIAL_CORE_CONSOLE
1643
+
1631
1644
endmenu
Original file line number Diff line number Diff line change @@ -92,3 +92,4 @@ obj-$(CONFIG_SERIAL_LANTIQ) += lantiq.o
92
92
obj-$(CONFIG_SERIAL_XILINX_PS_UART) += xilinx_uartps.o
93
93
obj-$(CONFIG_SERIAL_SIRFSOC) += sirfsoc_uart.o
94
94
obj-$(CONFIG_SERIAL_AR933X) += ar933x_uart.o
95
+ obj-$(CONFIG_SERIAL_EFM32_UART) += efm32-uart.o
You can’t perform that action at this time.
0 commit comments