Add a DRIVERS_PS2_KEYBOARD option which controls the PS2 keyboard
[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 PS2 init code) once payloads
36 # reliably support PS2 init themselves.
37 config DRIVERS_PS2_KEYBOARD
38         bool "PS2 Keyboard init"
39         default y
40         help
41           Enable this option to initialize PS2 keyboards found connected
42           to the PS2 port.  Some payloads (eg, filo) require this
43           option.  Other payloads (eg, SeaBIOS, Linux) do not require
44           it.  Initializing a PS2 keyboard can take several hundred
45           milliseconds.
46           If you know you will only use a payload which does not require
47           this option, then you can say "n" here to speed up boot time.
48           Otherwise say "y".