Whitespace/typo/cosmetic fixes (trivial).
[coreboot.git] / src / Kconfig.deprecated_options
1 # Options in this file are meant to be deprecated. Avoid their use
2 # if possible, and if you find the time, or touch the general area
3 # for other purposes, please consider removing their uses.
4
5 # It might be possible to consolidate hard_reset() to southbridges,
6 # given that it (usually) uses its registers.
7 # The long term goal would be to eliminate hard_reset() from boards.
8 config BOARD_HAS_HARD_RESET
9         bool
10         default n
11         help
12           This variable specifies whether a given board has a reset.c
13           file containing a hard_reset() function.
14
15 # It might be possible to consolidate FADTs to southbridges. This would
16 # improve code reuse in the tree.
17 config BOARD_HAS_FADT
18         bool
19         default n
20         help
21           This variable specifies whether a given board has a board-local
22           FADT in fadt.c. Long-term, those should be moved to appropriate
23           chipset components (eg. southbridge).
24
25 # There ought to be a better place to put data than code. Also, make this
26 # (or a similar) framework more universally usable, so all boards benefit
27 # from sharing data between the various tables.
28 config HAVE_BUS_CONFIG
29         bool
30         default n
31         help
32           This variable specifies whether a given board has a get_bus_conf.c
33           file containing information about bus routing.
34
35 # Will be removed (alongside with the PS/2 init code) once payloads
36 # reliably support PS/2 init themselves.
37 config DRIVERS_PS2_KEYBOARD
38         bool "PS/2 keyboard init"
39         default y
40         help
41           Enable this option to initialize PS/2 keyboards found connected
42           to the PS/2 port.
43
44           Some payloads (eg, filo) require this option.  Other payloads
45           (eg, SeaBIOS, Linux) do not require it.
46           Initializing a PS/2 keyboard can take several hundred milliseconds.
47
48           If you know you will only use a payload which does not require
49           this option, then you can say N here to speed up boot time.
50           Otherwise say Y.
51