xref: /openbmc/u-boot/drivers/pinctrl/nxp/Kconfig (revision 39665bee)
1config PINCTRL_IMX
2	bool
3
4config PINCTRL_IMX5
5	bool "IMX5 pinctrl driver"
6	depends on ARCH_MX5 && PINCTRL_FULL
7	select DEVRES
8	select PINCTRL_IMX
9	help
10	  Say Y here to enable the imx5 pinctrl driver
11
12	  This provides a simple pinctrl driver for i.MX 53SoC familiy,
13	  i.MX53. This feature depends on device tree
14	  configuration. This driver is different from the linux one,
15	  this is a simple implementation, only parses the 'fsl,pins'
16	  property and configure related registers.
17
18config PINCTRL_IMX6
19	bool "IMX6 pinctrl driver"
20	depends on ARCH_MX6 && PINCTRL_FULL
21	select DEVRES
22	select PINCTRL_IMX
23	help
24	  Say Y here to enable the imx6 pinctrl driver
25
26	  This provides a simple pinctrl driver for i.MX6 SoC familiy,
27	  i.MX6DQ/SL/SX/UL/DQP. This feature depends on device tree
28	  configuration. This driver is different from the linux one,
29	  this is a simple implementation, only parses the 'fsl,pins'
30	  property and configure related registers.
31
32config PINCTRL_IMX7
33	bool "IMX7 pinctrl driver"
34	depends on ARCH_MX7 && PINCTRL_FULL
35	select DEVRES
36	select PINCTRL_IMX
37	help
38	  Say Y here to enable the imx7 pinctrl driver
39
40	  This provides a simple pinctrl driver for i.MX7 SoC familiy,
41	  i.MX7D. This feature depends on device tree
42	  configuration. This driver is different from the linux one,
43	  this is a simple implementation, only parses the 'fsl,pins'
44	  property and configure related registers.
45
46config PINCTRL_IMX7ULP
47	bool "IMX7ULP pinctrl driver"
48	depends on ARCH_MX7ULP && PINCTRL_FULL
49	select DEVRES
50	select PINCTRL_IMX
51	help
52	  Say Y here to enable the imx7ulp pinctrl driver
53
54	  This provides a simple pinctrl driver for i.MX7ULP SoC familiy.
55	  This feature depends on device tree configuration. This driver
56	  is different from the linux one, this is a simple implementation,
57	  only parses the 'fsl,pins' property and configure related
58	  registers.
59