Kconfig 616 B

1234567891011121314151617181920212223242526
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. if (ARCH_PXA || COMPILE_TEST)
  3. config PINCTRL_PXA
  4. bool
  5. select PINMUX
  6. select PINCONF
  7. select GENERIC_PINCONF
  8. config PINCTRL_PXA25X
  9. tristate "Marvell PXA25x pin controller driver"
  10. select PINCTRL_PXA
  11. default y if PXA25x
  12. help
  13. This is the pinctrl, pinmux, pinconf driver for the Marvell
  14. PXA2xx block found in the pxa25x platforms.
  15. config PINCTRL_PXA27X
  16. tristate "Marvell PXA27x pin controller driver"
  17. select PINCTRL_PXA
  18. default y if PXA27x
  19. help
  20. This is the pinctrl, pinmux, pinconf driver for the Marvell
  21. PXA2xx block found in the pxa27x platforms.
  22. endif