Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.6-rc2 33 lines 925 B view raw
1# SPDX-License-Identifier: GPL-2.0-only 2# Intel Tangier and compatible pin control drivers 3 4if X86_INTEL_MID || COMPILE_TEST 5 6config PINCTRL_TANGIER 7 tristate 8 select PINMUX 9 select PINCONF 10 select GENERIC_PINCONF 11 help 12 This is a library driver for Intel Tangier pin controller and to 13 be selected and used by respective compatible platform drivers. 14 15 If built as a module its name will be pinctrl-tangier. 16 17config PINCTRL_MERRIFIELD 18 tristate "Intel Merrifield pinctrl driver" 19 select PINCTRL_TANGIER 20 help 21 Intel Merrifield Family-Level Interface Shim (FLIS) driver provides 22 an interface that allows configuring of SoC pins and using them as 23 GPIOs. 24 25config PINCTRL_MOOREFIELD 26 tristate "Intel Moorefield pinctrl driver" 27 select PINCTRL_TANGIER 28 help 29 Intel Moorefield Family-Level Interface Shim (FLIS) driver provides 30 an interface that allows configuring of SoC pins and using them as 31 GPIOs. 32 33endif