Kconfig 576 B

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