mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
Replace the custom implementation of dt_node_to_map with pinctrl_generic_dt_node_to_map() to demonstrate its use. spacemit_pin_mux_config didn't provide much value in the first place, because the group contains the information required to look up the spacemit_pin struct corresponding to a pin, so there's no loss in functionality as a result of the generic function carrying only the mux data in the group's data pointer rather than having an array of spacemit_pin_mux_config structs. Signed-off-by: Conor Dooley <conor.dooley@microchip.com> Reviewed-by: Troy Mitchell <troy.mitchell@linux.spacemit.com> Signed-off-by: Linus Walleij <linusw@kernel.org>
17 lines
444 B
Plaintext
17 lines
444 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Sophgo SoC PINCTRL drivers
|
|
#
|
|
|
|
config PINCTRL_SPACEMIT_K1
|
|
bool "SpacemiT K1/K3 SoC Pinctrl driver"
|
|
depends on ARCH_SPACEMIT || COMPILE_TEST
|
|
depends on OF
|
|
default ARCH_SPACEMIT
|
|
select GENERIC_PINCTRL
|
|
help
|
|
Say Y to select the pinctrl driver for K1/K3 SoC.
|
|
This pin controller allows selecting the mux function for
|
|
each pin. This driver can also be built as a module called
|
|
pinctrl-k1.
|