Kconfig 972 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #
  2. # Intel PINCTRL drivers
  3. #
  4. if PINCTRL_INTEL
  5. config INTEL_PINCTRL_DUAL_ROUTE_SUPPORT
  6. bool
  7. default y
  8. config INTEL_PINCTRL_PADCFG_PADTOL
  9. bool n
  10. config INTEL_PINCTRL_IOSTANDBY
  11. bool
  12. default y
  13. config INTEL_PINCTRL_MULTI_ACPI_DEVICES
  14. bool
  15. default y
  16. help
  17. Enable this if the pinctrl devices are modelled as multiple,
  18. separate ACPI devices in the ACPI tables. If enabled, the ACPI
  19. devices match the U-Boot pinctrl devices and the pin 'offset' is
  20. relative to a particular pinctrl device. If disabled, there is a
  21. single ACPI pinctrl device which includes all U-Boot pinctrl devices
  22. and the pin 'offset' is in effect a global pin number.
  23. config PINCTRL_INTEL_APL
  24. bool "Support Intel Apollo Lake (APL)"
  25. help
  26. Add support for Intel Apollo Lake pin-control and pin-mux settings.
  27. These are mostly read from the device tree, with the early-pads
  28. property in the host bridge and the pads property in the fsp-s
  29. subnode of the host bridge.
  30. endif