xref: /openbmc/linux/arch/arm/mach-footbridge/Kconfig (revision 14474950)
1# SPDX-License-Identifier: GPL-2.0-only
2if ARCH_FOOTBRIDGE
3
4menu "Footbridge Implementations"
5
6config ARCH_CATS
7	bool "CATS"
8	select CLKEVT_I8253
9	select CLKSRC_I8253
10	select FOOTBRIDGE_HOST
11	select ISA
12	select ISA_DMA
13	select FORCE_PCI
14	help
15	  Say Y here if you intend to run this kernel on the CATS.
16
17	  Saying N will reduce the size of the Footbridge kernel.
18
19config ARCH_PERSONAL_SERVER
20	bool "Compaq Personal Server"
21	select FOOTBRIDGE_HOST
22	select ISA
23	select ISA_DMA
24	select FORCE_PCI
25	help
26	  Say Y here if you intend to run this kernel on the Compaq
27	  Personal Server.
28
29	  Saying N will reduce the size of the Footbridge kernel.
30
31	  The Compaq Personal Server is not available for purchase.
32	  There are no product plans beyond the current research
33	  prototypes at this time.  Information is available at:
34
35	  <http://www.crl.hpl.hp.com/projects/personalserver/>
36
37	  If you have any questions or comments about the  Compaq Personal
38	  Server, send e-mail to <skiff@crl.dec.com>.
39
40config ARCH_EBSA285_ADDIN
41	bool "EBSA285 (addin mode)"
42	select ARCH_EBSA285
43	select FOOTBRIDGE_ADDIN
44	help
45	  Say Y here if you intend to run this kernel on the EBSA285 card
46	  in addin mode.
47
48	  Saying N will reduce the size of the Footbridge kernel.
49
50config ARCH_EBSA285_HOST
51	bool "EBSA285 (host mode)"
52	select ARCH_EBSA285
53	select FOOTBRIDGE_HOST
54	select ISA
55	select ISA_DMA
56	select ARCH_MAY_HAVE_PC_FDC
57	select FORCE_PCI
58	help
59	  Say Y here if you intend to run this kernel on the EBSA285 card
60	  in host ("central function") mode.
61
62	  Saying N will reduce the size of the Footbridge kernel.
63
64config ARCH_NETWINDER
65	bool "NetWinder"
66	select CLKEVT_I8253
67	select CLKSRC_I8253
68	select FOOTBRIDGE_HOST
69	select ISA
70	select ISA_DMA
71	select FORCE_PCI
72	help
73	  Say Y here if you intend to run this kernel on the Rebel.COM
74	  NetWinder.  Information about this machine can be found at:
75
76	  <http://www.netwinder.org/>
77
78	  Saying N will reduce the size of the Footbridge kernel.
79
80endmenu
81
82# Footbridge support
83config FOOTBRIDGE
84	bool
85
86# Footbridge in host mode
87config FOOTBRIDGE_HOST
88	bool
89	select ARCH_MIGHT_HAVE_PC_SERIO
90
91# Footbridge in addin mode
92config FOOTBRIDGE_ADDIN
93	bool
94
95# EBSA285 board in either host or addin mode
96config ARCH_EBSA285
97	bool
98
99endif
100