mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
a1d1e0e3d8
This driver is based on the one for NPCM7xx, because the WPCM450 is a predecessor of those SoCs. Notable differences: - On WPCM450, the GPIO registers are not organized in multiple banks, but rather placed continually into the same register block. This affects how register offsets are computed. - Pinmux nodes can explicitly select GPIO mode, whereas in the npcm7xx driver, this happens automatically when a GPIO is requested. Some functionality implemented in the hardware was (for now) left unused in the driver, specifically blinking and pull-up/down. Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net> Reported-by: kernel test robot <lkp@intel.com> Link: https://lore.kernel.org/r/20220129115228.2257310-6-j.neuschaefer@gmx.net Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
6 lines
164 B
Makefile
6 lines
164 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Nuvoton pinctrl support
|
|
|
|
obj-$(CONFIG_PINCTRL_WPCM450) += pinctrl-wpcm450.o
|
|
obj-$(CONFIG_PINCTRL_NPCM7XX) += pinctrl-npcm7xx.o
|