blob: 844aa585b9662a0f82acee8cba672077cfde1e0b [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002if ARCH_FOOTBRIDGE
3
4menu "Footbridge Implementations"
5
6config ARCH_CATS
7 bool "CATS"
Thomas Gleixner8560a6c2011-06-09 13:08:28 +00008 select CLKEVT_I8253
Peter Hüwea7b0ab52011-09-05 21:03:02 +01009 select CLKSRC_I8253
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 select FOOTBRIDGE_HOST
Russell Kingf7e68bb2005-05-05 14:49:01 +010011 select ISA
12 select ISA_DMA
Christoph Hellwigeb01d422018-11-15 20:05:32 +010013 select FORCE_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 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
Russell Kingf7e68bb2005-05-05 14:49:01 +010022 select ISA
23 select ISA_DMA
Christoph Hellwigeb01d422018-11-15 20:05:32 +010024 select FORCE_PCI
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090025 help
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 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
Russell Kingf7e68bb2005-05-05 14:49:01 +010054 select ISA
55 select ISA_DMA
Arnd Bergmannad9faf42014-02-17 20:25:45 +010056 select ARCH_MAY_HAVE_PC_FDC
Christoph Hellwigeb01d422018-11-15 20:05:32 +010057 select FORCE_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 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"
Axel Lin6c58add2011-08-17 10:07:58 +010066 select CLKEVT_I8253
Peter Hüwea7b0ab52011-09-05 21:03:02 +010067 select CLKSRC_I8253
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 select FOOTBRIDGE_HOST
Russell Kingf7e68bb2005-05-05 14:49:01 +010069 select ISA
70 select ISA_DMA
Christoph Hellwigeb01d422018-11-15 20:05:32 +010071 select FORCE_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 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
Mark Salter74072b32014-01-01 11:28:54 -080089 select ARCH_MIGHT_HAVE_PC_SERIO
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91# Footbridge in addin mode
92config FOOTBRIDGE_ADDIN
93 bool
94
95# EBSA285 board in either host or addin mode
96config ARCH_EBSA285
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99endif