···11+* Energymicro efm32 UART22+33+Required properties:44+- compatible : Should be "efm32,uart"55+- reg : Address and length of the register set66+- interrupts : Should contain uart interrupt77+88+Example:99+1010+uart@0x4000c400 {1111+ compatible = "efm32,uart";1212+ reg = <0x4000c400 0x400>;1313+ interrupts = <15>;1414+};
+13
drivers/tty/serial/Kconfig
···16281628 Set this to the number of serial ports you want the driver16291629 to support.1630163016311631+config SERIAL_EFM32_UART16321632+ tristate "EFM32 UART/USART port."16331633+ depends on ARCH_EFM3216341634+ select SERIAL_CORE16351635+ help16361636+ This driver support the USART and UART ports on16371637+ Energy Micro's efm32 SoCs.16381638+16391639+config SERIAL_EFM32_UART_CONSOLE16401640+ bool "EFM32 UART/USART console support"16411641+ depends on SERIAL_EFM32_UART=y16421642+ select SERIAL_CORE_CONSOLE16431643+16311644endmenu