summaryrefslogtreecommitdiffstats
path: root/drivers/serial/Kconfig
blob: f61d6708a44af57dd2891cfaad8e74b11218ecde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
menu "serial drivers"
	depends on !CONSOLE_NONE

config DRIVER_SERIAL_ARM_DCC
	depends on ARM
	bool "ARM Debug Communications Channel (DCC) serial driver"

config SERIAL_AMBA_PL011
	bool "ARM AMBA PL011 serial port support"
	depends on ARM_AMBA
	help
	  This selects the ARM(R) AMBA(R) PrimeCell PL011 UART. If you have
	  an Integrator/PP2, Integrator/CP or Versatile platform, say Y here.

	  If unsure, say N.

config DRIVER_SERIAL_IMX
	depends on ARCH_IMX
	default y
	bool "i.MX serial driver"

config DRIVER_SERIAL_STM378X
	depends on ARCH_MXS
	default y
	bool "i.MX23/i.MX28 serial driver"

config DRIVER_SERIAL_NETX
	depends on ARCH_NETX
	default y
	bool "Netx serial driver"

config DRIVER_SERIAL_LINUX_CONSOLE
	depends on LINUX
	default y
	bool "linux console driver"

config DRIVER_SERIAL_MPC5XXX
	depends on MPC5200
	default y
	bool "MPC5200 serial driver"

config DRIVER_SERIAL_BLACKFIN
	depends on BLACKFIN
	default y
	bool "Blackfin serial driver"

config DRIVER_SERIAL_CLPS711X
	depends on ARCH_CLPS711X
	default y
	bool "CLPS711X serial driver"

config DRIVER_SERIAL_ALTERA
	depends on NIOS2
	default y
	bool "Altera serial driver"

config DRIVER_SERIAL_ALTERA_JTAG
	depends on NIOS2
	default n
	bool "Altera JTAG serial driver"

config DRIVER_SERIAL_NS16550
	default n
	bool "NS16550 serial driver"
	help
	  Enable this to get support for NS16550 based serial devices

config DRIVER_SERIAL_ATMEL
	depends on ARCH_AT91
	default y
	bool "Atmel serial driver"

config DRIVER_SERIAL_NS16550_OMAP_EXTENSIONS
	bool "OMAP Extensions for NS16550"
	depends on DRIVER_SERIAL_NS16550
	depends on ARCH_OMAP
	help
	  Say Y here if you are using OMAP extensions to NS16550

config DRIVER_SERIAL_PL010
	depends on ARCH_EP93XX
	default y
	bool "ARM AMBA PL010 support"
	help
	  Enable this to get support for AMBA PL010 based serial devices

config DRIVER_SERIAL_S3C_IMPROVED
	bool

config DRIVER_SERIAL_S3C
	bool "Samsung S3C serial driver"
	depends on ARCH_SAMSUNG
	select DRIVER_SERIAL_S3C_IMPROVED if (CPU_S5PC110 || CPU_S5PV210 || CPU_S3C6410)
	default y
	help
	  Say Y here if you want to use the CONS on a Samsung S3C CPU

config DRIVER_SERIAL_S3C_AUTOSYNC
	bool "Enable auto flow"
	depends on DRIVER_SERIAL_S3C
	help
	  Say Y here if you want to use the auto flow feature of this
	  UART. RTS and CTS will be handled by the hardware when enabled.

config DRIVER_SERIAL_PXA
	bool "PXA serial driver"
	depends on ARCH_PXA

config DRIVER_SERIAL_OMAP4_USBBOOT
	bool "serial driver over omap4 usb"
	default n
	depends on OMAP4_USBBOOT
	help
	  Enable this to get console support over the usb bus used to boot an OMAP4

endmenu