2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2015-11-10 01:06:16 +00:00
|
|
|
|
pinctrl: add pin control uclass support
This creates a new framework for handling of pin control devices,
i.e. devices that control different aspects of package pins.
This uclass handles pinmuxing and pin configuration; pinmuxing
controls switching among silicon blocks that share certain physical
pins, pin configuration handles electronic properties such as pin-
biasing, load capacitance etc.
This framework can support the same device tree bindings, but if you
do not need full interface support, you can disable some features to
reduce memory foot print. Typically around 1.5KB is necessary to
include full-featured uclass support on ARM board (CONFIG_PINCTRL +
CONFIG_PINCTRL_FULL + CONFIG_PINCTRL_GENERIC + CONFIG_PINCTRL_PINMUX),
for example.
We are often limited on code size for SPL. Besides, we still have
many boards that do not support device tree configuration. The full
pinctrl, which requires OF_CONTROL, does not make sense for those
boards. So, this framework also has a Do-It-Yourself (let's say
simple pinctrl) interface. With CONFIG_PINCTRL_FULL disabled, the
uclass itself provides no systematic mechanism for identifying the
peripheral device, applying pinctrl settings, etc. They must be
done in each low-level driver. In return, you can save much memory
footprint and it might be useful especially for SPL.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Simon Glass <sjg@chromium.org>
2015-08-27 03:44:29 +00:00
|
|
|
obj-y += pinctrl-uclass.o
|
|
|
|
obj-$(CONFIG_$(SPL_)PINCTRL_GENERIC) += pinctrl-generic.o
|
2015-08-27 03:44:30 +00:00
|
|
|
|
2017-03-23 04:44:37 +00:00
|
|
|
obj-$(CONFIG_PINCTRL_AT91) += pinctrl-at91.o
|
2016-07-20 09:16:27 +00:00
|
|
|
obj-$(CONFIG_PINCTRL_AT91PIO4) += pinctrl-at91-pio4.o
|
pinctrl: imx: Introduce pinctrl driver for i.MX6
Introduce pinctrl for i.MX6
1. pinctrl-imx.c is for common usage. It's used by i.MX6/7.
2. Add PINCTRL_IMX PINCTRL_IMX6 Kconfig entry.
3. To the pinctrl_ops implementation, only set_state is implemented.
To i.MX6/7, the pinctrl dts entry is as following:
&iomuxc {
pinctrl-names = "default";
pinctrl_csi1: csi1grp {
fsl,pins = <
MX6UL_PAD_CSI_MCLK__CSI_MCLK 0x1b088
MX6UL_PAD_CSI_PIXCLK__CSI_PIXCLK 0x1b088
MX6UL_PAD_CSI_VSYNC__CSI_VSYNC 0x1b088
>;
};
[.....]
};
there is no property named function or groups. So pinctrl_generic_set_state
can not be used here.
5. This driver is a simple implementation for i.mx iomux controller,
only parse the fsl,pins property and write value to registers.
6. With DEBUG enabled, we can see log when "i2c bus 0":
"
set_state_simple op missing
imx_pinctrl_set_state: i2c1grp
mux_reg 0x14c, conf_reg 0x3bc, input_reg 0x5d8, mux_mode 0x0, input_val 0x1, config_val 0x4000007f
write mux: offset 0x14c val 0x10
select_input: offset 0x5d8 val 0x1
write config: offset 0x3bc val 0x7f
mux_reg 0x148, conf_reg 0x3b8, input_reg 0x5d4, mux_mode 0x0, input_val 0x1, config_val 0x4000007f
write mux: offset 0x148 val 0x10
select_input: offset 0x5d4 val 0x1
write config: offset 0x3b8 val 0x7f
"
this means imx6 pinctrl driver works as expected.
Signed-off-by: Peng Fan <van.freenix@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
2016-02-03 02:06:07 +00:00
|
|
|
obj-y += nxp/
|
2019-01-02 13:00:55 +00:00
|
|
|
obj-$(CONFIG_$(SPL_)PINCTRL_ROCKCHIP) += rockchip/
|
2017-04-17 19:00:27 +00:00
|
|
|
obj-$(CONFIG_ARCH_ASPEED) += aspeed/
|
2016-03-16 08:59:55 +00:00
|
|
|
obj-$(CONFIG_ARCH_ATH79) += ath79/
|
2019-12-07 04:42:53 +00:00
|
|
|
obj-$(CONFIG_PINCTRL_INTEL) += intel/
|
2019-09-25 09:45:26 +00:00
|
|
|
obj-$(CONFIG_ARCH_MTMIPS) += mtmips/
|
2017-09-15 19:13:55 +00:00
|
|
|
obj-$(CONFIG_ARCH_RMOBILE) += renesas/
|
2015-08-27 03:44:30 +00:00
|
|
|
obj-$(CONFIG_PINCTRL_SANDBOX) += pinctrl-sandbox.o
|
2015-09-11 11:17:32 +00:00
|
|
|
|
2016-03-04 06:56:31 +00:00
|
|
|
obj-$(CONFIG_PINCTRL_UNIPHIER) += uniphier/
|
2017-04-19 14:46:37 +00:00
|
|
|
obj-$(CONFIG_PINCTRL_PIC32) += pinctrl_pic32.o
|
2016-04-23 16:48:08 +00:00
|
|
|
obj-$(CONFIG_PINCTRL_EXYNOS) += exynos/
|
2016-08-16 09:49:49 +00:00
|
|
|
obj-$(CONFIG_PINCTRL_MESON) += meson/
|
2018-11-15 02:07:58 +00:00
|
|
|
obj-$(CONFIG_PINCTRL_MTK) += mediatek/
|
2018-12-08 08:59:01 +00:00
|
|
|
obj-$(CONFIG_PINCTRL_MSCC) += mscc/
|
2017-05-09 11:35:44 +00:00
|
|
|
obj-$(CONFIG_ARCH_MVEBU) += mvebu/
|
2020-07-10 17:07:30 +00:00
|
|
|
obj-$(CONFIG_ARCH_NEXELL) += nexell/
|
2020-02-03 09:23:53 +00:00
|
|
|
obj-$(CONFIG_PINCTRL_QE) += pinctrl-qe-io.o
|
2017-03-22 10:26:44 +00:00
|
|
|
obj-$(CONFIG_PINCTRL_SINGLE) += pinctrl-single.o
|
2017-02-21 12:37:10 +00:00
|
|
|
obj-$(CONFIG_PINCTRL_STI) += pinctrl-sti.o
|
2017-02-12 18:25:49 +00:00
|
|
|
obj-$(CONFIG_PINCTRL_STM32) += pinctrl_stm32.o
|
2019-03-11 10:13:15 +00:00
|
|
|
obj-$(CONFIG_$(SPL_)PINCTRL_STMFX) += pinctrl-stmfx.o
|
2018-01-23 17:05:21 +00:00
|
|
|
obj-y += broadcom/
|