162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0
262306a36Sopenharmony_ci//
362306a36Sopenharmony_ci// Freescale imx6dl pinctrl driver
462306a36Sopenharmony_ci//
562306a36Sopenharmony_ci// Author: Shawn Guo <shawn.guo@linaro.org>
662306a36Sopenharmony_ci// Copyright (C) 2013 Freescale Semiconductor, Inc.
762306a36Sopenharmony_ci
862306a36Sopenharmony_ci#include <linux/err.h>
962306a36Sopenharmony_ci#include <linux/init.h>
1062306a36Sopenharmony_ci#include <linux/io.h>
1162306a36Sopenharmony_ci#include <linux/mod_devicetable.h>
1262306a36Sopenharmony_ci#include <linux/platform_device.h>
1362306a36Sopenharmony_ci#include <linux/pinctrl/pinctrl.h>
1462306a36Sopenharmony_ci
1562306a36Sopenharmony_ci#include "pinctrl-imx.h"
1662306a36Sopenharmony_ci
1762306a36Sopenharmony_cienum imx6dl_pads {
1862306a36Sopenharmony_ci	MX6DL_PAD_RESERVE0 = 0,
1962306a36Sopenharmony_ci	MX6DL_PAD_RESERVE1 = 1,
2062306a36Sopenharmony_ci	MX6DL_PAD_RESERVE2 = 2,
2162306a36Sopenharmony_ci	MX6DL_PAD_RESERVE3 = 3,
2262306a36Sopenharmony_ci	MX6DL_PAD_RESERVE4 = 4,
2362306a36Sopenharmony_ci	MX6DL_PAD_RESERVE5 = 5,
2462306a36Sopenharmony_ci	MX6DL_PAD_RESERVE6 = 6,
2562306a36Sopenharmony_ci	MX6DL_PAD_RESERVE7 = 7,
2662306a36Sopenharmony_ci	MX6DL_PAD_RESERVE8 = 8,
2762306a36Sopenharmony_ci	MX6DL_PAD_RESERVE9 = 9,
2862306a36Sopenharmony_ci	MX6DL_PAD_RESERVE10 = 10,
2962306a36Sopenharmony_ci	MX6DL_PAD_RESERVE11 = 11,
3062306a36Sopenharmony_ci	MX6DL_PAD_RESERVE12 = 12,
3162306a36Sopenharmony_ci	MX6DL_PAD_RESERVE13 = 13,
3262306a36Sopenharmony_ci	MX6DL_PAD_RESERVE14 = 14,
3362306a36Sopenharmony_ci	MX6DL_PAD_RESERVE15 = 15,
3462306a36Sopenharmony_ci	MX6DL_PAD_RESERVE16 = 16,
3562306a36Sopenharmony_ci	MX6DL_PAD_RESERVE17 = 17,
3662306a36Sopenharmony_ci	MX6DL_PAD_RESERVE18 = 18,
3762306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT10 = 19,
3862306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT11 = 20,
3962306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT12 = 21,
4062306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT13 = 22,
4162306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT14 = 23,
4262306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT15 = 24,
4362306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT16 = 25,
4462306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT17 = 26,
4562306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT18 = 27,
4662306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT19 = 28,
4762306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT4 = 29,
4862306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT5 = 30,
4962306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT6 = 31,
5062306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT7 = 32,
5162306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT8 = 33,
5262306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DAT9 = 34,
5362306a36Sopenharmony_ci	MX6DL_PAD_CSI0_DATA_EN = 35,
5462306a36Sopenharmony_ci	MX6DL_PAD_CSI0_MCLK = 36,
5562306a36Sopenharmony_ci	MX6DL_PAD_CSI0_PIXCLK = 37,
5662306a36Sopenharmony_ci	MX6DL_PAD_CSI0_VSYNC = 38,
5762306a36Sopenharmony_ci	MX6DL_PAD_DI0_DISP_CLK = 39,
5862306a36Sopenharmony_ci	MX6DL_PAD_DI0_PIN15 = 40,
5962306a36Sopenharmony_ci	MX6DL_PAD_DI0_PIN2 = 41,
6062306a36Sopenharmony_ci	MX6DL_PAD_DI0_PIN3 = 42,
6162306a36Sopenharmony_ci	MX6DL_PAD_DI0_PIN4 = 43,
6262306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT0 = 44,
6362306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT1 = 45,
6462306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT10 = 46,
6562306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT11 = 47,
6662306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT12 = 48,
6762306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT13 = 49,
6862306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT14 = 50,
6962306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT15 = 51,
7062306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT16 = 52,
7162306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT17 = 53,
7262306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT18 = 54,
7362306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT19 = 55,
7462306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT2 = 56,
7562306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT20 = 57,
7662306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT21 = 58,
7762306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT22 = 59,
7862306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT23 = 60,
7962306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT3 = 61,
8062306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT4 = 62,
8162306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT5 = 63,
8262306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT6 = 64,
8362306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT7 = 65,
8462306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT8 = 66,
8562306a36Sopenharmony_ci	MX6DL_PAD_DISP0_DAT9 = 67,
8662306a36Sopenharmony_ci	MX6DL_PAD_EIM_A16 = 68,
8762306a36Sopenharmony_ci	MX6DL_PAD_EIM_A17 = 69,
8862306a36Sopenharmony_ci	MX6DL_PAD_EIM_A18 = 70,
8962306a36Sopenharmony_ci	MX6DL_PAD_EIM_A19 = 71,
9062306a36Sopenharmony_ci	MX6DL_PAD_EIM_A20 = 72,
9162306a36Sopenharmony_ci	MX6DL_PAD_EIM_A21 = 73,
9262306a36Sopenharmony_ci	MX6DL_PAD_EIM_A22 = 74,
9362306a36Sopenharmony_ci	MX6DL_PAD_EIM_A23 = 75,
9462306a36Sopenharmony_ci	MX6DL_PAD_EIM_A24 = 76,
9562306a36Sopenharmony_ci	MX6DL_PAD_EIM_A25 = 77,
9662306a36Sopenharmony_ci	MX6DL_PAD_EIM_BCLK = 78,
9762306a36Sopenharmony_ci	MX6DL_PAD_EIM_CS0 = 79,
9862306a36Sopenharmony_ci	MX6DL_PAD_EIM_CS1 = 80,
9962306a36Sopenharmony_ci	MX6DL_PAD_EIM_D16 = 81,
10062306a36Sopenharmony_ci	MX6DL_PAD_EIM_D17 = 82,
10162306a36Sopenharmony_ci	MX6DL_PAD_EIM_D18 = 83,
10262306a36Sopenharmony_ci	MX6DL_PAD_EIM_D19 = 84,
10362306a36Sopenharmony_ci	MX6DL_PAD_EIM_D20 = 85,
10462306a36Sopenharmony_ci	MX6DL_PAD_EIM_D21 = 86,
10562306a36Sopenharmony_ci	MX6DL_PAD_EIM_D22 = 87,
10662306a36Sopenharmony_ci	MX6DL_PAD_EIM_D23 = 88,
10762306a36Sopenharmony_ci	MX6DL_PAD_EIM_D24 = 89,
10862306a36Sopenharmony_ci	MX6DL_PAD_EIM_D25 = 90,
10962306a36Sopenharmony_ci	MX6DL_PAD_EIM_D26 = 91,
11062306a36Sopenharmony_ci	MX6DL_PAD_EIM_D27 = 92,
11162306a36Sopenharmony_ci	MX6DL_PAD_EIM_D28 = 93,
11262306a36Sopenharmony_ci	MX6DL_PAD_EIM_D29 = 94,
11362306a36Sopenharmony_ci	MX6DL_PAD_EIM_D30 = 95,
11462306a36Sopenharmony_ci	MX6DL_PAD_EIM_D31 = 96,
11562306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA0 = 97,
11662306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA1 = 98,
11762306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA10 = 99,
11862306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA11 = 100,
11962306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA12 = 101,
12062306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA13 = 102,
12162306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA14 = 103,
12262306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA15 = 104,
12362306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA2 = 105,
12462306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA3 = 106,
12562306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA4 = 107,
12662306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA5 = 108,
12762306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA6 = 109,
12862306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA7 = 110,
12962306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA8 = 111,
13062306a36Sopenharmony_ci	MX6DL_PAD_EIM_DA9 = 112,
13162306a36Sopenharmony_ci	MX6DL_PAD_EIM_EB0 = 113,
13262306a36Sopenharmony_ci	MX6DL_PAD_EIM_EB1 = 114,
13362306a36Sopenharmony_ci	MX6DL_PAD_EIM_EB2 = 115,
13462306a36Sopenharmony_ci	MX6DL_PAD_EIM_EB3 = 116,
13562306a36Sopenharmony_ci	MX6DL_PAD_EIM_LBA = 117,
13662306a36Sopenharmony_ci	MX6DL_PAD_EIM_OE = 118,
13762306a36Sopenharmony_ci	MX6DL_PAD_EIM_RW = 119,
13862306a36Sopenharmony_ci	MX6DL_PAD_EIM_WAIT = 120,
13962306a36Sopenharmony_ci	MX6DL_PAD_ENET_CRS_DV = 121,
14062306a36Sopenharmony_ci	MX6DL_PAD_ENET_MDC = 122,
14162306a36Sopenharmony_ci	MX6DL_PAD_ENET_MDIO = 123,
14262306a36Sopenharmony_ci	MX6DL_PAD_ENET_REF_CLK = 124,
14362306a36Sopenharmony_ci	MX6DL_PAD_ENET_RX_ER = 125,
14462306a36Sopenharmony_ci	MX6DL_PAD_ENET_RXD0 = 126,
14562306a36Sopenharmony_ci	MX6DL_PAD_ENET_RXD1 = 127,
14662306a36Sopenharmony_ci	MX6DL_PAD_ENET_TX_EN = 128,
14762306a36Sopenharmony_ci	MX6DL_PAD_ENET_TXD0 = 129,
14862306a36Sopenharmony_ci	MX6DL_PAD_ENET_TXD1 = 130,
14962306a36Sopenharmony_ci	MX6DL_PAD_GPIO_0 = 131,
15062306a36Sopenharmony_ci	MX6DL_PAD_GPIO_1 = 132,
15162306a36Sopenharmony_ci	MX6DL_PAD_GPIO_16 = 133,
15262306a36Sopenharmony_ci	MX6DL_PAD_GPIO_17 = 134,
15362306a36Sopenharmony_ci	MX6DL_PAD_GPIO_18 = 135,
15462306a36Sopenharmony_ci	MX6DL_PAD_GPIO_19 = 136,
15562306a36Sopenharmony_ci	MX6DL_PAD_GPIO_2 = 137,
15662306a36Sopenharmony_ci	MX6DL_PAD_GPIO_3 = 138,
15762306a36Sopenharmony_ci	MX6DL_PAD_GPIO_4 = 139,
15862306a36Sopenharmony_ci	MX6DL_PAD_GPIO_5 = 140,
15962306a36Sopenharmony_ci	MX6DL_PAD_GPIO_6 = 141,
16062306a36Sopenharmony_ci	MX6DL_PAD_GPIO_7 = 142,
16162306a36Sopenharmony_ci	MX6DL_PAD_GPIO_8 = 143,
16262306a36Sopenharmony_ci	MX6DL_PAD_GPIO_9 = 144,
16362306a36Sopenharmony_ci	MX6DL_PAD_KEY_COL0 = 145,
16462306a36Sopenharmony_ci	MX6DL_PAD_KEY_COL1 = 146,
16562306a36Sopenharmony_ci	MX6DL_PAD_KEY_COL2 = 147,
16662306a36Sopenharmony_ci	MX6DL_PAD_KEY_COL3 = 148,
16762306a36Sopenharmony_ci	MX6DL_PAD_KEY_COL4 = 149,
16862306a36Sopenharmony_ci	MX6DL_PAD_KEY_ROW0 = 150,
16962306a36Sopenharmony_ci	MX6DL_PAD_KEY_ROW1 = 151,
17062306a36Sopenharmony_ci	MX6DL_PAD_KEY_ROW2 = 152,
17162306a36Sopenharmony_ci	MX6DL_PAD_KEY_ROW3 = 153,
17262306a36Sopenharmony_ci	MX6DL_PAD_KEY_ROW4 = 154,
17362306a36Sopenharmony_ci	MX6DL_PAD_NANDF_ALE = 155,
17462306a36Sopenharmony_ci	MX6DL_PAD_NANDF_CLE = 156,
17562306a36Sopenharmony_ci	MX6DL_PAD_NANDF_CS0 = 157,
17662306a36Sopenharmony_ci	MX6DL_PAD_NANDF_CS1 = 158,
17762306a36Sopenharmony_ci	MX6DL_PAD_NANDF_CS2 = 159,
17862306a36Sopenharmony_ci	MX6DL_PAD_NANDF_CS3 = 160,
17962306a36Sopenharmony_ci	MX6DL_PAD_NANDF_D0 = 161,
18062306a36Sopenharmony_ci	MX6DL_PAD_NANDF_D1 = 162,
18162306a36Sopenharmony_ci	MX6DL_PAD_NANDF_D2 = 163,
18262306a36Sopenharmony_ci	MX6DL_PAD_NANDF_D3 = 164,
18362306a36Sopenharmony_ci	MX6DL_PAD_NANDF_D4 = 165,
18462306a36Sopenharmony_ci	MX6DL_PAD_NANDF_D5 = 166,
18562306a36Sopenharmony_ci	MX6DL_PAD_NANDF_D6 = 167,
18662306a36Sopenharmony_ci	MX6DL_PAD_NANDF_D7 = 168,
18762306a36Sopenharmony_ci	MX6DL_PAD_NANDF_RB0 = 169,
18862306a36Sopenharmony_ci	MX6DL_PAD_NANDF_WP_B = 170,
18962306a36Sopenharmony_ci	MX6DL_PAD_RGMII_RD0 = 171,
19062306a36Sopenharmony_ci	MX6DL_PAD_RGMII_RD1 = 172,
19162306a36Sopenharmony_ci	MX6DL_PAD_RGMII_RD2 = 173,
19262306a36Sopenharmony_ci	MX6DL_PAD_RGMII_RD3 = 174,
19362306a36Sopenharmony_ci	MX6DL_PAD_RGMII_RX_CTL = 175,
19462306a36Sopenharmony_ci	MX6DL_PAD_RGMII_RXC = 176,
19562306a36Sopenharmony_ci	MX6DL_PAD_RGMII_TD0 = 177,
19662306a36Sopenharmony_ci	MX6DL_PAD_RGMII_TD1 = 178,
19762306a36Sopenharmony_ci	MX6DL_PAD_RGMII_TD2 = 179,
19862306a36Sopenharmony_ci	MX6DL_PAD_RGMII_TD3 = 180,
19962306a36Sopenharmony_ci	MX6DL_PAD_RGMII_TX_CTL = 181,
20062306a36Sopenharmony_ci	MX6DL_PAD_RGMII_TXC = 182,
20162306a36Sopenharmony_ci	MX6DL_PAD_SD1_CLK = 183,
20262306a36Sopenharmony_ci	MX6DL_PAD_SD1_CMD = 184,
20362306a36Sopenharmony_ci	MX6DL_PAD_SD1_DAT0 = 185,
20462306a36Sopenharmony_ci	MX6DL_PAD_SD1_DAT1 = 186,
20562306a36Sopenharmony_ci	MX6DL_PAD_SD1_DAT2 = 187,
20662306a36Sopenharmony_ci	MX6DL_PAD_SD1_DAT3 = 188,
20762306a36Sopenharmony_ci	MX6DL_PAD_SD2_CLK = 189,
20862306a36Sopenharmony_ci	MX6DL_PAD_SD2_CMD = 190,
20962306a36Sopenharmony_ci	MX6DL_PAD_SD2_DAT0 = 191,
21062306a36Sopenharmony_ci	MX6DL_PAD_SD2_DAT1 = 192,
21162306a36Sopenharmony_ci	MX6DL_PAD_SD2_DAT2 = 193,
21262306a36Sopenharmony_ci	MX6DL_PAD_SD2_DAT3 = 194,
21362306a36Sopenharmony_ci	MX6DL_PAD_SD3_CLK = 195,
21462306a36Sopenharmony_ci	MX6DL_PAD_SD3_CMD = 196,
21562306a36Sopenharmony_ci	MX6DL_PAD_SD3_DAT0 = 197,
21662306a36Sopenharmony_ci	MX6DL_PAD_SD3_DAT1 = 198,
21762306a36Sopenharmony_ci	MX6DL_PAD_SD3_DAT2 = 199,
21862306a36Sopenharmony_ci	MX6DL_PAD_SD3_DAT3 = 200,
21962306a36Sopenharmony_ci	MX6DL_PAD_SD3_DAT4 = 201,
22062306a36Sopenharmony_ci	MX6DL_PAD_SD3_DAT5 = 202,
22162306a36Sopenharmony_ci	MX6DL_PAD_SD3_DAT6 = 203,
22262306a36Sopenharmony_ci	MX6DL_PAD_SD3_DAT7 = 204,
22362306a36Sopenharmony_ci	MX6DL_PAD_SD3_RST = 205,
22462306a36Sopenharmony_ci	MX6DL_PAD_SD4_CLK = 206,
22562306a36Sopenharmony_ci	MX6DL_PAD_SD4_CMD = 207,
22662306a36Sopenharmony_ci	MX6DL_PAD_SD4_DAT0 = 208,
22762306a36Sopenharmony_ci	MX6DL_PAD_SD4_DAT1 = 209,
22862306a36Sopenharmony_ci	MX6DL_PAD_SD4_DAT2 = 210,
22962306a36Sopenharmony_ci	MX6DL_PAD_SD4_DAT3 = 211,
23062306a36Sopenharmony_ci	MX6DL_PAD_SD4_DAT4 = 212,
23162306a36Sopenharmony_ci	MX6DL_PAD_SD4_DAT5 = 213,
23262306a36Sopenharmony_ci	MX6DL_PAD_SD4_DAT6 = 214,
23362306a36Sopenharmony_ci	MX6DL_PAD_SD4_DAT7 = 215,
23462306a36Sopenharmony_ci};
23562306a36Sopenharmony_ci
23662306a36Sopenharmony_ci/* Pad names for the pinmux subsystem */
23762306a36Sopenharmony_cistatic const struct pinctrl_pin_desc imx6dl_pinctrl_pads[] = {
23862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE0),
23962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE1),
24062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE2),
24162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE3),
24262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE4),
24362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE5),
24462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE6),
24562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE7),
24662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE8),
24762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE9),
24862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE10),
24962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE11),
25062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE12),
25162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE13),
25262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE14),
25362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE15),
25462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE16),
25562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE17),
25662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RESERVE18),
25762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT10),
25862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT11),
25962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT12),
26062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT13),
26162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT14),
26262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT15),
26362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT16),
26462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT17),
26562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT18),
26662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT19),
26762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT4),
26862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT5),
26962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT6),
27062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT7),
27162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT8),
27262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DAT9),
27362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_DATA_EN),
27462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_MCLK),
27562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_PIXCLK),
27662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_CSI0_VSYNC),
27762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DI0_DISP_CLK),
27862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DI0_PIN15),
27962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DI0_PIN2),
28062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DI0_PIN3),
28162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DI0_PIN4),
28262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT0),
28362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT1),
28462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT10),
28562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT11),
28662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT12),
28762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT13),
28862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT14),
28962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT15),
29062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT16),
29162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT17),
29262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT18),
29362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT19),
29462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT2),
29562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT20),
29662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT21),
29762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT22),
29862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT23),
29962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT3),
30062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT4),
30162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT5),
30262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT6),
30362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT7),
30462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT8),
30562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_DISP0_DAT9),
30662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_A16),
30762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_A17),
30862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_A18),
30962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_A19),
31062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_A20),
31162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_A21),
31262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_A22),
31362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_A23),
31462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_A24),
31562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_A25),
31662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_BCLK),
31762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_CS0),
31862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_CS1),
31962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D16),
32062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D17),
32162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D18),
32262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D19),
32362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D20),
32462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D21),
32562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D22),
32662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D23),
32762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D24),
32862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D25),
32962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D26),
33062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D27),
33162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D28),
33262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D29),
33362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D30),
33462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_D31),
33562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA0),
33662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA1),
33762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA10),
33862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA11),
33962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA12),
34062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA13),
34162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA14),
34262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA15),
34362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA2),
34462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA3),
34562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA4),
34662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA5),
34762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA6),
34862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA7),
34962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA8),
35062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_DA9),
35162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_EB0),
35262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_EB1),
35362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_EB2),
35462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_EB3),
35562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_LBA),
35662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_OE),
35762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_RW),
35862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_EIM_WAIT),
35962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_ENET_CRS_DV),
36062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_ENET_MDC),
36162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_ENET_MDIO),
36262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_ENET_REF_CLK),
36362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_ENET_RX_ER),
36462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_ENET_RXD0),
36562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_ENET_RXD1),
36662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_ENET_TX_EN),
36762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_ENET_TXD0),
36862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_ENET_TXD1),
36962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_GPIO_0),
37062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_GPIO_1),
37162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_GPIO_16),
37262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_GPIO_17),
37362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_GPIO_18),
37462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_GPIO_19),
37562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_GPIO_2),
37662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_GPIO_3),
37762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_GPIO_4),
37862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_GPIO_5),
37962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_GPIO_6),
38062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_GPIO_7),
38162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_GPIO_8),
38262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_GPIO_9),
38362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_KEY_COL0),
38462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_KEY_COL1),
38562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_KEY_COL2),
38662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_KEY_COL3),
38762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_KEY_COL4),
38862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_KEY_ROW0),
38962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_KEY_ROW1),
39062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_KEY_ROW2),
39162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_KEY_ROW3),
39262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_KEY_ROW4),
39362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_ALE),
39462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_CLE),
39562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_CS0),
39662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_CS1),
39762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_CS2),
39862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_CS3),
39962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_D0),
40062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_D1),
40162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_D2),
40262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_D3),
40362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_D4),
40462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_D5),
40562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_D6),
40662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_D7),
40762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_RB0),
40862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_NANDF_WP_B),
40962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RGMII_RD0),
41062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RGMII_RD1),
41162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RGMII_RD2),
41262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RGMII_RD3),
41362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RGMII_RX_CTL),
41462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RGMII_RXC),
41562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RGMII_TD0),
41662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RGMII_TD1),
41762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RGMII_TD2),
41862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RGMII_TD3),
41962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RGMII_TX_CTL),
42062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_RGMII_TXC),
42162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD1_CLK),
42262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD1_CMD),
42362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD1_DAT0),
42462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD1_DAT1),
42562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD1_DAT2),
42662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD1_DAT3),
42762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD2_CLK),
42862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD2_CMD),
42962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD2_DAT0),
43062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD2_DAT1),
43162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD2_DAT2),
43262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD2_DAT3),
43362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD3_CLK),
43462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD3_CMD),
43562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD3_DAT0),
43662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD3_DAT1),
43762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD3_DAT2),
43862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD3_DAT3),
43962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD3_DAT4),
44062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD3_DAT5),
44162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD3_DAT6),
44262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD3_DAT7),
44362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD3_RST),
44462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD4_CLK),
44562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD4_CMD),
44662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD4_DAT0),
44762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD4_DAT1),
44862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD4_DAT2),
44962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD4_DAT3),
45062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD4_DAT4),
45162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD4_DAT5),
45262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD4_DAT6),
45362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX6DL_PAD_SD4_DAT7),
45462306a36Sopenharmony_ci};
45562306a36Sopenharmony_ci
45662306a36Sopenharmony_cistatic const struct imx_pinctrl_soc_info imx6dl_pinctrl_info = {
45762306a36Sopenharmony_ci	.pins = imx6dl_pinctrl_pads,
45862306a36Sopenharmony_ci	.npins = ARRAY_SIZE(imx6dl_pinctrl_pads),
45962306a36Sopenharmony_ci	.gpr_compatible = "fsl,imx6q-iomuxc-gpr",
46062306a36Sopenharmony_ci};
46162306a36Sopenharmony_ci
46262306a36Sopenharmony_cistatic const struct of_device_id imx6dl_pinctrl_of_match[] = {
46362306a36Sopenharmony_ci	{ .compatible = "fsl,imx6dl-iomuxc", },
46462306a36Sopenharmony_ci	{ /* sentinel */ }
46562306a36Sopenharmony_ci};
46662306a36Sopenharmony_ci
46762306a36Sopenharmony_cistatic int imx6dl_pinctrl_probe(struct platform_device *pdev)
46862306a36Sopenharmony_ci{
46962306a36Sopenharmony_ci	return imx_pinctrl_probe(pdev, &imx6dl_pinctrl_info);
47062306a36Sopenharmony_ci}
47162306a36Sopenharmony_ci
47262306a36Sopenharmony_cistatic struct platform_driver imx6dl_pinctrl_driver = {
47362306a36Sopenharmony_ci	.driver = {
47462306a36Sopenharmony_ci		.name = "imx6dl-pinctrl",
47562306a36Sopenharmony_ci		.of_match_table = imx6dl_pinctrl_of_match,
47662306a36Sopenharmony_ci		.suppress_bind_attrs = true,
47762306a36Sopenharmony_ci	},
47862306a36Sopenharmony_ci	.probe = imx6dl_pinctrl_probe,
47962306a36Sopenharmony_ci};
48062306a36Sopenharmony_ci
48162306a36Sopenharmony_cistatic int __init imx6dl_pinctrl_init(void)
48262306a36Sopenharmony_ci{
48362306a36Sopenharmony_ci	return platform_driver_register(&imx6dl_pinctrl_driver);
48462306a36Sopenharmony_ci}
48562306a36Sopenharmony_ciarch_initcall(imx6dl_pinctrl_init);
486