coreboot/src/Kconfig.deprecated_options
<<
>>
Prefs
   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
   5menu "Deprecated"
   6
   7# It might be possible to consolidate hard_reset() to southbridges,
   8# given that it (usually) uses its registers.
   9# The long term goal would be to eliminate hard_reset() from boards.
  10config BOARD_HAS_HARD_RESET
  11        bool
  12        default n
  13        help
  14          This variable specifies whether a given board has a reset.c
  15          file containing a hard_reset() function.
  16
  17# It might be possible to consolidate FADTs to southbridges. This would
  18# improve code reuse in the tree.
  19config BOARD_HAS_FADT
  20        bool
  21        default n
  22        help
  23          This variable specifies whether a given board has a board-local
  24          FADT in fadt.c. Long-term, those should be moved to appropriate
  25          chipset components (eg. southbridge).
  26
  27# There ought to be a better place to put data than code. Also, make this
  28# (or a similar) framework more universally usable, so all boards benefit
  29# from sharing data between the various tables.
  30config HAVE_BUS_CONFIG
  31        bool
  32        default n
  33        help
  34          This variable specifies whether a given board has a get_bus_conf.c
  35          file containing information about bus routing.
  36
  37# Will be removed (alongside with the PS/2 init code) once payloads
  38# reliably support PS/2 init themselves.
  39config DRIVERS_PS2_KEYBOARD
  40        bool "PS/2 keyboard init"
  41        default y
  42        help
  43          Enable this option to initialize PS/2 keyboards found connected
  44          to the PS/2 port.
  45
  46          Some payloads (eg, filo) require this option.  Other payloads
  47          (eg, SeaBIOS, Linux) do not require it.
  48          Initializing a PS/2 keyboard can take several hundred milliseconds.
  49
  50          If you know you will only use a payload which does not require
  51          this option, then you can say N here to speed up boot time.
  52          Otherwise say Y.
  53
  54# This was a config option for a long time, but it never showed up in Kconfig.
  55# It should go away and "tuning" should always be enabled when PCIe is there,
  56# or it should be more fine grained (ie. Enable PCIe ASPM)
  57config PCIE_TUNING
  58        bool
  59        default n
  60        help
  61          This variable enables certain PCIe optimizations. Right now it's
  62          only ASPM and it's untested.
  63
  64endmenu
  65
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.