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 MAX78000_UART 52 bool 53 54config STM32F2XX_USART 55 bool 56 57config STM32L4X5_USART 58 bool 59 60config CMSDK_APB_UART 61 bool 62 63config SCLPCONSOLE 64 bool 65 66config TERMINAL3270 67 bool 68 69config SH_SCI 70 bool 71 72config RENESAS_SCI 73 bool 74 75config AVR_USART 76 bool 77 78config DIVA_GSP 79 bool 80 81config MCHP_PFSOC_MMUART 82 bool 83 select SERIAL 84 85config SIFIVE_UART 86 bool 87 88config GOLDFISH_TTY 89 bool 90 91config SHAKTI_UART 92 bool 93 94config IP_OCTAL_232 95 bool 96 default y 97 depends on IPACK 98