mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
0f66653310
The code responsible for setting proper values in the MUX registers (in the mxs_pinctrl_set_state()) has been ported from Linux kernel - SHA1: 17bb763e7eaf tag v5.1.11 from linux-stable. As the pinctrl node in the imx28.dtsi file has gpio pins nodes as subnodes, it was necessary to use 'dm_scan_fdt_dev()' (as a .bind method) to also make them 'visible' by the DM's "gpio_mxs" driver. Signed-off-by: Lukasz Majewski <lukma@denx.de> Reviewed-by: Marek Vasut <marex@denx.de>
10 lines
469 B
Makefile
10 lines
469 B
Makefile
obj-$(CONFIG_PINCTRL_IMX) += pinctrl-imx.o
|
|
obj-$(CONFIG_PINCTRL_IMX5) += pinctrl-imx5.o
|
|
obj-$(CONFIG_PINCTRL_IMX6) += pinctrl-imx6.o
|
|
obj-$(CONFIG_PINCTRL_IMX7) += pinctrl-imx7.o
|
|
obj-$(CONFIG_PINCTRL_IMX7ULP) += pinctrl-imx7ulp.o
|
|
obj-$(CONFIG_PINCTRL_IMX_SCU) += pinctrl-scu.o
|
|
obj-$(CONFIG_PINCTRL_IMX8) += pinctrl-imx8.o
|
|
obj-$(CONFIG_PINCTRL_IMX8M) += pinctrl-imx8m.o
|
|
obj-$(CONFIG_PINCTRL_MXS) += pinctrl-mxs.o
|
|
obj-$(CONFIG_PINCTRL_VYBRID) += pinctrl-vf610.o
|