mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
6ec006ede5
The TILE-Gx chip includes an on-chip UART. This change adds support for using the UART from within the kernel. The UART shim has more functionality than is exposed here, but to keep the kernel code and binary simpler, this is a subset of the full API designed to enable a standard Linux tty serial driver only. Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
10 lines
392 B
Makefile
10 lines
392 B
Makefile
#
|
|
# Makefile for the Tile-Gx device access support.
|
|
#
|
|
|
|
obj-$(CONFIG_TILE_GXIO) += iorpc_globals.o kiorpc.o
|
|
obj-$(CONFIG_TILE_GXIO_DMA) += dma_queue.o
|
|
obj-$(CONFIG_TILE_GXIO_MPIPE) += mpipe.o iorpc_mpipe.o iorpc_mpipe_info.o
|
|
obj-$(CONFIG_TILE_GXIO_TRIO) += trio.o iorpc_trio.o
|
|
obj-$(CONFIG_TILE_GXIO_UART) += uart.o iorpc_uart.o
|
|
obj-$(CONFIG_TILE_GXIO_USB_HOST) += usb_host.o iorpc_usb_host.o
|