Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | # |
| 3 | # EISA configuration |
| 4 | # |
Christoph Hellwig | 6630a8e | 2018-11-15 20:05:37 +0100 | [diff] [blame] | 5 | |
| 6 | config HAVE_EISA |
| 7 | bool |
| 8 | |
| 9 | menuconfig EISA |
| 10 | bool "EISA support" |
| 11 | depends on HAVE_EISA |
| 12 | ---help--- |
| 13 | The Extended Industry Standard Architecture (EISA) bus was |
| 14 | developed as an open alternative to the IBM MicroChannel bus. |
| 15 | |
| 16 | The EISA bus provided some of the features of the IBM MicroChannel |
| 17 | bus while maintaining backward compatibility with cards made for |
| 18 | the older ISA bus. The EISA bus saw limited use between 1988 and |
| 19 | 1995 when it was made obsolete by the PCI bus. |
| 20 | |
| 21 | Say Y here if you are building a kernel for an EISA-based machine. |
| 22 | |
| 23 | Otherwise, say N. |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | config EISA_VLB_PRIMING |
| 26 | bool "Vesa Local Bus priming" |
Yinghai Lu | 4272ebf | 2009-01-29 15:14:46 -0800 | [diff] [blame] | 27 | depends on X86 && EISA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | default n |
| 29 | ---help--- |
| 30 | Activate this option if your system contains a Vesa Local |
| 31 | Bus (VLB) card that identify itself as an EISA card (such as |
| 32 | the Adaptec AHA-284x). |
| 33 | |
| 34 | When in doubt, say N. |
| 35 | |
| 36 | config EISA_PCI_EISA |
| 37 | bool "Generic PCI/EISA bridge" |
| 38 | depends on !PARISC && PCI && EISA |
| 39 | default y |
| 40 | ---help--- |
| 41 | Activate this option if your system contains a PCI to EISA |
| 42 | bridge. If your system have both PCI and EISA slots, you |
| 43 | certainly need this option. |
| 44 | |
| 45 | When in doubt, say Y. |
| 46 | |
| 47 | # Using EISA_VIRTUAL_ROOT on something other than an Alpha or |
Yinghai Lu | 4272ebf | 2009-01-29 15:14:46 -0800 | [diff] [blame] | 48 | # an X86 may lead to crashes... |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | config EISA_VIRTUAL_ROOT |
| 51 | bool "EISA virtual root device" |
Yinghai Lu | 4272ebf | 2009-01-29 15:14:46 -0800 | [diff] [blame] | 52 | depends on EISA && (ALPHA || X86) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | default y |
| 54 | ---help--- |
| 55 | Activate this option if your system only have EISA bus |
| 56 | (no PCI slots). The Alpha Jensen is an example of such |
| 57 | a system. |
| 58 | |
| 59 | When in doubt, say Y. |
| 60 | |
| 61 | config EISA_NAMES |
| 62 | bool "EISA device name database" |
| 63 | depends on EISA |
| 64 | default y |
| 65 | ---help--- |
| 66 | By default, the kernel contains a database of all known EISA |
| 67 | device names to make the information in sysfs comprehensible |
| 68 | to the user. This database increases size of the kernel |
| 69 | image by about 40KB, but it gets freed after the system |
| 70 | boots up, so it doesn't take up kernel memory. Anyway, if |
| 71 | you are building an installation floppy or kernel for an |
| 72 | embedded system where kernel image size really matters, you |
| 73 | can disable this feature and you'll get device ID instead of |
| 74 | names. |
| 75 | |
| 76 | When in doubt, say Y. |