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