1config ESCC 2 bool 3 4config HTIF 5 bool 6 7config PARALLEL 8 bool 9 default y 10 depends on ISA_BUS 11 12config PL011 13 bool 14 # The PL011 has both a Rust and a C implementation 15 select PL011_C if !HAVE_RUST 16 select X_PL011_RUST if HAVE_RUST 17 18config PL011_C 19 bool 20 21config SERIAL 22 bool 23 24config SERIAL_ISA 25 bool 26 default y 27 depends on ISA_BUS 28 select SERIAL 29 30config SERIAL_MM 31 bool 32 select SERIAL 33 34config SERIAL_PCI 35 bool 36 default y if PCI_DEVICES 37 depends on PCI 38 select SERIAL 39 40config SERIAL_PCI_MULTI 41 bool 42 default y if PCI_DEVICES 43 depends on PCI 44 select SERIAL 45 46config VIRTIO_SERIAL 47 bool 48 default y 49 depends on VIRTIO 50 51config STM32F2XX_USART 52 bool 53 54config STM32L4X5_USART 55 bool 56 57config CMSDK_APB_UART 58 bool 59 60config SCLPCONSOLE 61 bool 62 63config TERMINAL3270 64 bool 65 66config SH_SCI 67 bool 68 69config RENESAS_SCI 70 bool 71 72config AVR_USART 73 bool 74 75config DIVA_GSP 76 bool 77 78config MCHP_PFSOC_MMUART 79 bool 80 select SERIAL 81 82config SIFIVE_UART 83 bool 84 85config GOLDFISH_TTY 86 bool 87 88config SHAKTI_UART 89 bool 90 91config IP_OCTAL_232 92 bool 93 default y 94 depends on IPACK 95