429ca9d665
These were designed to facilitate testing but should provide enough function to be useful in other contexts. Only a subset of the functions of each peripheral is implemented, mainly due to the lack of a standard way to handle electrical connections (like GPIO pins). [AM: Remove word 'Atmel' from filenames and all elements of code] Suggested-by: Aleksandar Markovic <aleksandar.m.mail@gmail.com> Signed-off-by: Michael Rolnik <mrolnik@gmail.com> Signed-off-by: Sarah Harris <S.E.Harris@kent.ac.uk> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> [rth: Squash I/O size fix and file rename from f4bug] Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Aleksandar Markovic <aleksandar.m.mail@gmail.com> Reviewed-by: Aleksandar Markovic <aleksandar.m.mail@gmail.com> Signed-off-by: Thomas Huth <huth@tuxfamily.org> Message-Id: <20200705140315.260514-20-huth@tuxfamily.org>
40 lines
1.6 KiB
Makefile
40 lines
1.6 KiB
Makefile
common-obj-$(CONFIG_IPACK) += ipoctal232.o
|
|
common-obj-$(CONFIG_ESCC) += escc.o
|
|
common-obj-$(CONFIG_NRF51_SOC) += nrf51_uart.o
|
|
common-obj-$(CONFIG_PARALLEL) += parallel.o
|
|
common-obj-$(CONFIG_ISA_BUS) += parallel-isa.o
|
|
common-obj-$(CONFIG_PL011) += pl011.o
|
|
common-obj-$(CONFIG_SERIAL) += serial.o
|
|
common-obj-$(CONFIG_SERIAL_ISA) += serial-isa.o
|
|
common-obj-$(CONFIG_SERIAL_PCI) += serial-pci.o
|
|
common-obj-$(CONFIG_SERIAL_PCI_MULTI) += serial-pci-multi.o
|
|
common-obj-$(CONFIG_VIRTIO_SERIAL) += virtio-console.o
|
|
common-obj-$(CONFIG_XILINX) += xilinx_uartlite.o
|
|
common-obj-$(CONFIG_XEN) += xen_console.o
|
|
common-obj-$(CONFIG_CADENCE) += cadence_uart.o
|
|
common-obj-$(CONFIG_IBEX) += ibex_uart.o
|
|
|
|
common-obj-$(CONFIG_EXYNOS4) += exynos4210_uart.o
|
|
common-obj-$(CONFIG_COLDFIRE) += mcf_uart.o
|
|
common-obj-$(CONFIG_OMAP) += omap_uart.o
|
|
common-obj-$(CONFIG_SH4) += sh_serial.o
|
|
common-obj-$(CONFIG_DIGIC) += digic-uart.o
|
|
common-obj-$(CONFIG_STM32F2XX_USART) += stm32f2xx_usart.o
|
|
common-obj-$(CONFIG_RASPI) += bcm2835_aux.o
|
|
common-obj-$(CONFIG_RENESAS_SCI) += renesas_sci.o
|
|
common-obj-$(CONFIG_AVR_USART) += avr_usart.o
|
|
|
|
common-obj-$(CONFIG_CMSDK_APB_UART) += cmsdk-apb-uart.o
|
|
common-obj-$(CONFIG_ETRAXFS) += etraxfs_ser.o
|
|
common-obj-$(CONFIG_ISA_DEBUG) += debugcon.o
|
|
common-obj-$(CONFIG_GRLIB) += grlib_apbuart.o
|
|
common-obj-$(CONFIG_IMX) += imx_serial.o
|
|
common-obj-$(CONFIG_LM32) += lm32_juart.o
|
|
common-obj-$(CONFIG_LM32) += lm32_uart.o
|
|
common-obj-$(CONFIG_MILKYMIST) += milkymist-uart.o
|
|
common-obj-$(CONFIG_SCLPCONSOLE) += sclpconsole.o sclpconsole-lm.o
|
|
|
|
obj-$(CONFIG_VIRTIO) += virtio-serial-bus.o
|
|
obj-$(CONFIG_PSERIES) += spapr_vty.o
|
|
obj-$(CONFIG_TERMINAL3270) += terminal3270.o
|