162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0
262306a36Sopenharmony_ci//
362306a36Sopenharmony_ci// imx35 pinctrl driver.
462306a36Sopenharmony_ci//
562306a36Sopenharmony_ci// This driver was mostly copied from the imx51 pinctrl driver which has:
662306a36Sopenharmony_ci//
762306a36Sopenharmony_ci// Copyright (C) 2012 Freescale Semiconductor, Inc.
862306a36Sopenharmony_ci// Copyright (C) 2012 Linaro, Inc.
962306a36Sopenharmony_ci//
1062306a36Sopenharmony_ci// Author: Dong Aisheng <dong.aisheng@linaro.org>
1162306a36Sopenharmony_ci
1262306a36Sopenharmony_ci#include <linux/err.h>
1362306a36Sopenharmony_ci#include <linux/init.h>
1462306a36Sopenharmony_ci#include <linux/io.h>
1562306a36Sopenharmony_ci#include <linux/mod_devicetable.h>
1662306a36Sopenharmony_ci#include <linux/platform_device.h>
1762306a36Sopenharmony_ci#include <linux/pinctrl/pinctrl.h>
1862306a36Sopenharmony_ci
1962306a36Sopenharmony_ci#include "pinctrl-imx.h"
2062306a36Sopenharmony_ci
2162306a36Sopenharmony_cienum imx35_pads {
2262306a36Sopenharmony_ci	MX35_PAD_RESERVE0 = 0,
2362306a36Sopenharmony_ci	MX35_PAD_CAPTURE = 1,
2462306a36Sopenharmony_ci	MX35_PAD_COMPARE = 2,
2562306a36Sopenharmony_ci	MX35_PAD_WDOG_RST = 3,
2662306a36Sopenharmony_ci	MX35_PAD_GPIO1_0 = 4,
2762306a36Sopenharmony_ci	MX35_PAD_GPIO1_1 = 5,
2862306a36Sopenharmony_ci	MX35_PAD_GPIO2_0 = 6,
2962306a36Sopenharmony_ci	MX35_PAD_GPIO3_0 = 7,
3062306a36Sopenharmony_ci	MX35_PAD_CLKO = 8,
3162306a36Sopenharmony_ci	MX35_PAD_VSTBY = 9,
3262306a36Sopenharmony_ci	MX35_PAD_A0 = 10,
3362306a36Sopenharmony_ci	MX35_PAD_A1 = 11,
3462306a36Sopenharmony_ci	MX35_PAD_A2 = 12,
3562306a36Sopenharmony_ci	MX35_PAD_A3 = 13,
3662306a36Sopenharmony_ci	MX35_PAD_A4 = 14,
3762306a36Sopenharmony_ci	MX35_PAD_A5 = 15,
3862306a36Sopenharmony_ci	MX35_PAD_A6 = 16,
3962306a36Sopenharmony_ci	MX35_PAD_A7 = 17,
4062306a36Sopenharmony_ci	MX35_PAD_A8 = 18,
4162306a36Sopenharmony_ci	MX35_PAD_A9 = 19,
4262306a36Sopenharmony_ci	MX35_PAD_A10 = 20,
4362306a36Sopenharmony_ci	MX35_PAD_MA10 = 21,
4462306a36Sopenharmony_ci	MX35_PAD_A11 = 22,
4562306a36Sopenharmony_ci	MX35_PAD_A12 = 23,
4662306a36Sopenharmony_ci	MX35_PAD_A13 = 24,
4762306a36Sopenharmony_ci	MX35_PAD_A14 = 25,
4862306a36Sopenharmony_ci	MX35_PAD_A15 = 26,
4962306a36Sopenharmony_ci	MX35_PAD_A16 = 27,
5062306a36Sopenharmony_ci	MX35_PAD_A17 = 28,
5162306a36Sopenharmony_ci	MX35_PAD_A18 = 29,
5262306a36Sopenharmony_ci	MX35_PAD_A19 = 30,
5362306a36Sopenharmony_ci	MX35_PAD_A20 = 31,
5462306a36Sopenharmony_ci	MX35_PAD_A21 = 32,
5562306a36Sopenharmony_ci	MX35_PAD_A22 = 33,
5662306a36Sopenharmony_ci	MX35_PAD_A23 = 34,
5762306a36Sopenharmony_ci	MX35_PAD_A24 = 35,
5862306a36Sopenharmony_ci	MX35_PAD_A25 = 36,
5962306a36Sopenharmony_ci	MX35_PAD_EB0 = 37,
6062306a36Sopenharmony_ci	MX35_PAD_EB1 = 38,
6162306a36Sopenharmony_ci	MX35_PAD_OE = 39,
6262306a36Sopenharmony_ci	MX35_PAD_CS0 = 40,
6362306a36Sopenharmony_ci	MX35_PAD_CS1 = 41,
6462306a36Sopenharmony_ci	MX35_PAD_CS2 = 42,
6562306a36Sopenharmony_ci	MX35_PAD_CS3 = 43,
6662306a36Sopenharmony_ci	MX35_PAD_CS4 = 44,
6762306a36Sopenharmony_ci	MX35_PAD_CS5 = 45,
6862306a36Sopenharmony_ci	MX35_PAD_NF_CE0 = 46,
6962306a36Sopenharmony_ci	MX35_PAD_LBA = 47,
7062306a36Sopenharmony_ci	MX35_PAD_BCLK = 48,
7162306a36Sopenharmony_ci	MX35_PAD_RW = 49,
7262306a36Sopenharmony_ci	MX35_PAD_NFWE_B = 50,
7362306a36Sopenharmony_ci	MX35_PAD_NFRE_B = 51,
7462306a36Sopenharmony_ci	MX35_PAD_NFALE = 52,
7562306a36Sopenharmony_ci	MX35_PAD_NFCLE = 53,
7662306a36Sopenharmony_ci	MX35_PAD_NFWP_B = 54,
7762306a36Sopenharmony_ci	MX35_PAD_NFRB = 55,
7862306a36Sopenharmony_ci	MX35_PAD_CSI_D8 = 56,
7962306a36Sopenharmony_ci	MX35_PAD_CSI_D9 = 57,
8062306a36Sopenharmony_ci	MX35_PAD_CSI_D10 = 58,
8162306a36Sopenharmony_ci	MX35_PAD_CSI_D11 = 59,
8262306a36Sopenharmony_ci	MX35_PAD_CSI_D12 = 60,
8362306a36Sopenharmony_ci	MX35_PAD_CSI_D13 = 61,
8462306a36Sopenharmony_ci	MX35_PAD_CSI_D14 = 62,
8562306a36Sopenharmony_ci	MX35_PAD_CSI_D15 = 63,
8662306a36Sopenharmony_ci	MX35_PAD_CSI_MCLK = 64,
8762306a36Sopenharmony_ci	MX35_PAD_CSI_VSYNC = 65,
8862306a36Sopenharmony_ci	MX35_PAD_CSI_HSYNC = 66,
8962306a36Sopenharmony_ci	MX35_PAD_CSI_PIXCLK = 67,
9062306a36Sopenharmony_ci	MX35_PAD_I2C1_CLK = 68,
9162306a36Sopenharmony_ci	MX35_PAD_I2C1_DAT = 69,
9262306a36Sopenharmony_ci	MX35_PAD_I2C2_CLK = 70,
9362306a36Sopenharmony_ci	MX35_PAD_I2C2_DAT = 71,
9462306a36Sopenharmony_ci	MX35_PAD_STXD4 = 72,
9562306a36Sopenharmony_ci	MX35_PAD_SRXD4 = 73,
9662306a36Sopenharmony_ci	MX35_PAD_SCK4 = 74,
9762306a36Sopenharmony_ci	MX35_PAD_STXFS4 = 75,
9862306a36Sopenharmony_ci	MX35_PAD_STXD5 = 76,
9962306a36Sopenharmony_ci	MX35_PAD_SRXD5 = 77,
10062306a36Sopenharmony_ci	MX35_PAD_SCK5 = 78,
10162306a36Sopenharmony_ci	MX35_PAD_STXFS5 = 79,
10262306a36Sopenharmony_ci	MX35_PAD_SCKR = 80,
10362306a36Sopenharmony_ci	MX35_PAD_FSR = 81,
10462306a36Sopenharmony_ci	MX35_PAD_HCKR = 82,
10562306a36Sopenharmony_ci	MX35_PAD_SCKT = 83,
10662306a36Sopenharmony_ci	MX35_PAD_FST = 84,
10762306a36Sopenharmony_ci	MX35_PAD_HCKT = 85,
10862306a36Sopenharmony_ci	MX35_PAD_TX5_RX0 = 86,
10962306a36Sopenharmony_ci	MX35_PAD_TX4_RX1 = 87,
11062306a36Sopenharmony_ci	MX35_PAD_TX3_RX2 = 88,
11162306a36Sopenharmony_ci	MX35_PAD_TX2_RX3 = 89,
11262306a36Sopenharmony_ci	MX35_PAD_TX1 = 90,
11362306a36Sopenharmony_ci	MX35_PAD_TX0 = 91,
11462306a36Sopenharmony_ci	MX35_PAD_CSPI1_MOSI = 92,
11562306a36Sopenharmony_ci	MX35_PAD_CSPI1_MISO = 93,
11662306a36Sopenharmony_ci	MX35_PAD_CSPI1_SS0 = 94,
11762306a36Sopenharmony_ci	MX35_PAD_CSPI1_SS1 = 95,
11862306a36Sopenharmony_ci	MX35_PAD_CSPI1_SCLK = 96,
11962306a36Sopenharmony_ci	MX35_PAD_CSPI1_SPI_RDY = 97,
12062306a36Sopenharmony_ci	MX35_PAD_RXD1 = 98,
12162306a36Sopenharmony_ci	MX35_PAD_TXD1 = 99,
12262306a36Sopenharmony_ci	MX35_PAD_RTS1 = 100,
12362306a36Sopenharmony_ci	MX35_PAD_CTS1 = 101,
12462306a36Sopenharmony_ci	MX35_PAD_RXD2 = 102,
12562306a36Sopenharmony_ci	MX35_PAD_TXD2 = 103,
12662306a36Sopenharmony_ci	MX35_PAD_RTS2 = 104,
12762306a36Sopenharmony_ci	MX35_PAD_CTS2 = 105,
12862306a36Sopenharmony_ci	MX35_PAD_USBOTG_PWR = 106,
12962306a36Sopenharmony_ci	MX35_PAD_USBOTG_OC = 107,
13062306a36Sopenharmony_ci	MX35_PAD_LD0 = 108,
13162306a36Sopenharmony_ci	MX35_PAD_LD1 = 109,
13262306a36Sopenharmony_ci	MX35_PAD_LD2 = 110,
13362306a36Sopenharmony_ci	MX35_PAD_LD3 = 111,
13462306a36Sopenharmony_ci	MX35_PAD_LD4 = 112,
13562306a36Sopenharmony_ci	MX35_PAD_LD5 = 113,
13662306a36Sopenharmony_ci	MX35_PAD_LD6 = 114,
13762306a36Sopenharmony_ci	MX35_PAD_LD7 = 115,
13862306a36Sopenharmony_ci	MX35_PAD_LD8 = 116,
13962306a36Sopenharmony_ci	MX35_PAD_LD9 = 117,
14062306a36Sopenharmony_ci	MX35_PAD_LD10 = 118,
14162306a36Sopenharmony_ci	MX35_PAD_LD11 = 119,
14262306a36Sopenharmony_ci	MX35_PAD_LD12 = 120,
14362306a36Sopenharmony_ci	MX35_PAD_LD13 = 121,
14462306a36Sopenharmony_ci	MX35_PAD_LD14 = 122,
14562306a36Sopenharmony_ci	MX35_PAD_LD15 = 123,
14662306a36Sopenharmony_ci	MX35_PAD_LD16 = 124,
14762306a36Sopenharmony_ci	MX35_PAD_LD17 = 125,
14862306a36Sopenharmony_ci	MX35_PAD_LD18 = 126,
14962306a36Sopenharmony_ci	MX35_PAD_LD19 = 127,
15062306a36Sopenharmony_ci	MX35_PAD_LD20 = 128,
15162306a36Sopenharmony_ci	MX35_PAD_LD21 = 129,
15262306a36Sopenharmony_ci	MX35_PAD_LD22 = 130,
15362306a36Sopenharmony_ci	MX35_PAD_LD23 = 131,
15462306a36Sopenharmony_ci	MX35_PAD_D3_HSYNC = 132,
15562306a36Sopenharmony_ci	MX35_PAD_D3_FPSHIFT = 133,
15662306a36Sopenharmony_ci	MX35_PAD_D3_DRDY = 134,
15762306a36Sopenharmony_ci	MX35_PAD_CONTRAST = 135,
15862306a36Sopenharmony_ci	MX35_PAD_D3_VSYNC = 136,
15962306a36Sopenharmony_ci	MX35_PAD_D3_REV = 137,
16062306a36Sopenharmony_ci	MX35_PAD_D3_CLS = 138,
16162306a36Sopenharmony_ci	MX35_PAD_D3_SPL = 139,
16262306a36Sopenharmony_ci	MX35_PAD_SD1_CMD = 140,
16362306a36Sopenharmony_ci	MX35_PAD_SD1_CLK = 141,
16462306a36Sopenharmony_ci	MX35_PAD_SD1_DATA0 = 142,
16562306a36Sopenharmony_ci	MX35_PAD_SD1_DATA1 = 143,
16662306a36Sopenharmony_ci	MX35_PAD_SD1_DATA2 = 144,
16762306a36Sopenharmony_ci	MX35_PAD_SD1_DATA3 = 145,
16862306a36Sopenharmony_ci	MX35_PAD_SD2_CMD = 146,
16962306a36Sopenharmony_ci	MX35_PAD_SD2_CLK = 147,
17062306a36Sopenharmony_ci	MX35_PAD_SD2_DATA0 = 148,
17162306a36Sopenharmony_ci	MX35_PAD_SD2_DATA1 = 149,
17262306a36Sopenharmony_ci	MX35_PAD_SD2_DATA2 = 150,
17362306a36Sopenharmony_ci	MX35_PAD_SD2_DATA3 = 151,
17462306a36Sopenharmony_ci	MX35_PAD_ATA_CS0 = 152,
17562306a36Sopenharmony_ci	MX35_PAD_ATA_CS1 = 153,
17662306a36Sopenharmony_ci	MX35_PAD_ATA_DIOR = 154,
17762306a36Sopenharmony_ci	MX35_PAD_ATA_DIOW = 155,
17862306a36Sopenharmony_ci	MX35_PAD_ATA_DMACK = 156,
17962306a36Sopenharmony_ci	MX35_PAD_ATA_RESET_B = 157,
18062306a36Sopenharmony_ci	MX35_PAD_ATA_IORDY = 158,
18162306a36Sopenharmony_ci	MX35_PAD_ATA_DATA0 = 159,
18262306a36Sopenharmony_ci	MX35_PAD_ATA_DATA1 = 160,
18362306a36Sopenharmony_ci	MX35_PAD_ATA_DATA2 = 161,
18462306a36Sopenharmony_ci	MX35_PAD_ATA_DATA3 = 162,
18562306a36Sopenharmony_ci	MX35_PAD_ATA_DATA4 = 163,
18662306a36Sopenharmony_ci	MX35_PAD_ATA_DATA5 = 164,
18762306a36Sopenharmony_ci	MX35_PAD_ATA_DATA6 = 165,
18862306a36Sopenharmony_ci	MX35_PAD_ATA_DATA7 = 166,
18962306a36Sopenharmony_ci	MX35_PAD_ATA_DATA8 = 167,
19062306a36Sopenharmony_ci	MX35_PAD_ATA_DATA9 = 168,
19162306a36Sopenharmony_ci	MX35_PAD_ATA_DATA10 = 169,
19262306a36Sopenharmony_ci	MX35_PAD_ATA_DATA11 = 170,
19362306a36Sopenharmony_ci	MX35_PAD_ATA_DATA12 = 171,
19462306a36Sopenharmony_ci	MX35_PAD_ATA_DATA13 = 172,
19562306a36Sopenharmony_ci	MX35_PAD_ATA_DATA14 = 173,
19662306a36Sopenharmony_ci	MX35_PAD_ATA_DATA15 = 174,
19762306a36Sopenharmony_ci	MX35_PAD_ATA_INTRQ = 175,
19862306a36Sopenharmony_ci	MX35_PAD_ATA_BUFF_EN = 176,
19962306a36Sopenharmony_ci	MX35_PAD_ATA_DMARQ = 177,
20062306a36Sopenharmony_ci	MX35_PAD_ATA_DA0 = 178,
20162306a36Sopenharmony_ci	MX35_PAD_ATA_DA1 = 179,
20262306a36Sopenharmony_ci	MX35_PAD_ATA_DA2 = 180,
20362306a36Sopenharmony_ci	MX35_PAD_MLB_CLK = 181,
20462306a36Sopenharmony_ci	MX35_PAD_MLB_DAT = 182,
20562306a36Sopenharmony_ci	MX35_PAD_MLB_SIG = 183,
20662306a36Sopenharmony_ci	MX35_PAD_FEC_TX_CLK = 184,
20762306a36Sopenharmony_ci	MX35_PAD_FEC_RX_CLK = 185,
20862306a36Sopenharmony_ci	MX35_PAD_FEC_RX_DV = 186,
20962306a36Sopenharmony_ci	MX35_PAD_FEC_COL = 187,
21062306a36Sopenharmony_ci	MX35_PAD_FEC_RDATA0 = 188,
21162306a36Sopenharmony_ci	MX35_PAD_FEC_TDATA0 = 189,
21262306a36Sopenharmony_ci	MX35_PAD_FEC_TX_EN = 190,
21362306a36Sopenharmony_ci	MX35_PAD_FEC_MDC = 191,
21462306a36Sopenharmony_ci	MX35_PAD_FEC_MDIO = 192,
21562306a36Sopenharmony_ci	MX35_PAD_FEC_TX_ERR = 193,
21662306a36Sopenharmony_ci	MX35_PAD_FEC_RX_ERR = 194,
21762306a36Sopenharmony_ci	MX35_PAD_FEC_CRS = 195,
21862306a36Sopenharmony_ci	MX35_PAD_FEC_RDATA1 = 196,
21962306a36Sopenharmony_ci	MX35_PAD_FEC_TDATA1 = 197,
22062306a36Sopenharmony_ci	MX35_PAD_FEC_RDATA2 = 198,
22162306a36Sopenharmony_ci	MX35_PAD_FEC_TDATA2 = 199,
22262306a36Sopenharmony_ci	MX35_PAD_FEC_RDATA3 = 200,
22362306a36Sopenharmony_ci	MX35_PAD_FEC_TDATA3 = 201,
22462306a36Sopenharmony_ci	MX35_PAD_RESERVE1 = 202,
22562306a36Sopenharmony_ci	MX35_PAD_RESERVE2 = 203,
22662306a36Sopenharmony_ci	MX35_PAD_RESERVE3 = 204,
22762306a36Sopenharmony_ci	MX35_PAD_RESERVE4 = 205,
22862306a36Sopenharmony_ci	MX35_PAD_RESERVE5 = 206,
22962306a36Sopenharmony_ci	MX35_PAD_RESERVE6 = 207,
23062306a36Sopenharmony_ci	MX35_PAD_RESERVE7 = 208,
23162306a36Sopenharmony_ci	MX35_PAD_RESET_IN_B = 209,
23262306a36Sopenharmony_ci	MX35_PAD_POR_B = 210,
23362306a36Sopenharmony_ci	MX35_PAD_RESERVE8 = 211,
23462306a36Sopenharmony_ci	MX35_PAD_BOOT_MODE0 = 212,
23562306a36Sopenharmony_ci	MX35_PAD_BOOT_MODE1 = 213,
23662306a36Sopenharmony_ci	MX35_PAD_CLK_MODE0 = 214,
23762306a36Sopenharmony_ci	MX35_PAD_CLK_MODE1 = 215,
23862306a36Sopenharmony_ci	MX35_PAD_POWER_FAIL = 216,
23962306a36Sopenharmony_ci	MX35_PAD_RESERVE9 = 217,
24062306a36Sopenharmony_ci	MX35_PAD_RESERVE10 = 218,
24162306a36Sopenharmony_ci	MX35_PAD_RESERVE11 = 219,
24262306a36Sopenharmony_ci	MX35_PAD_RESERVE12 = 220,
24362306a36Sopenharmony_ci	MX35_PAD_RESERVE13 = 221,
24462306a36Sopenharmony_ci	MX35_PAD_RESERVE14 = 222,
24562306a36Sopenharmony_ci	MX35_PAD_RESERVE15 = 223,
24662306a36Sopenharmony_ci	MX35_PAD_RESERVE16 = 224,
24762306a36Sopenharmony_ci	MX35_PAD_RESERVE17 = 225,
24862306a36Sopenharmony_ci	MX35_PAD_RESERVE18 = 226,
24962306a36Sopenharmony_ci	MX35_PAD_RESERVE19 = 227,
25062306a36Sopenharmony_ci	MX35_PAD_RESERVE20 = 228,
25162306a36Sopenharmony_ci	MX35_PAD_RESERVE21 = 229,
25262306a36Sopenharmony_ci	MX35_PAD_RESERVE22 = 230,
25362306a36Sopenharmony_ci	MX35_PAD_RESERVE23 = 231,
25462306a36Sopenharmony_ci	MX35_PAD_RESERVE24 = 232,
25562306a36Sopenharmony_ci	MX35_PAD_RESERVE25 = 233,
25662306a36Sopenharmony_ci	MX35_PAD_RESERVE26 = 234,
25762306a36Sopenharmony_ci	MX35_PAD_RESERVE27 = 235,
25862306a36Sopenharmony_ci	MX35_PAD_RESERVE28 = 236,
25962306a36Sopenharmony_ci	MX35_PAD_RESERVE29 = 237,
26062306a36Sopenharmony_ci	MX35_PAD_RESERVE30 = 238,
26162306a36Sopenharmony_ci	MX35_PAD_RESERVE31 = 239,
26262306a36Sopenharmony_ci	MX35_PAD_RESERVE32 = 240,
26362306a36Sopenharmony_ci	MX35_PAD_RESERVE33 = 241,
26462306a36Sopenharmony_ci	MX35_PAD_RESERVE34 = 242,
26562306a36Sopenharmony_ci	MX35_PAD_RESERVE35 = 243,
26662306a36Sopenharmony_ci	MX35_PAD_RESERVE36 = 244,
26762306a36Sopenharmony_ci	MX35_PAD_SDBA1 = 245,
26862306a36Sopenharmony_ci	MX35_PAD_SDBA0 = 246,
26962306a36Sopenharmony_ci	MX35_PAD_SD0 = 247,
27062306a36Sopenharmony_ci	MX35_PAD_SD1 = 248,
27162306a36Sopenharmony_ci	MX35_PAD_SD2 = 249,
27262306a36Sopenharmony_ci	MX35_PAD_SD3 = 250,
27362306a36Sopenharmony_ci	MX35_PAD_SD4 = 251,
27462306a36Sopenharmony_ci	MX35_PAD_SD5 = 252,
27562306a36Sopenharmony_ci	MX35_PAD_SD6 = 253,
27662306a36Sopenharmony_ci	MX35_PAD_SD7 = 254,
27762306a36Sopenharmony_ci	MX35_PAD_SD8 = 255,
27862306a36Sopenharmony_ci	MX35_PAD_SD9 = 256,
27962306a36Sopenharmony_ci	MX35_PAD_SD10 = 257,
28062306a36Sopenharmony_ci	MX35_PAD_SD11 = 258,
28162306a36Sopenharmony_ci	MX35_PAD_SD12 = 259,
28262306a36Sopenharmony_ci	MX35_PAD_SD13 = 260,
28362306a36Sopenharmony_ci	MX35_PAD_SD14 = 261,
28462306a36Sopenharmony_ci	MX35_PAD_SD15 = 262,
28562306a36Sopenharmony_ci	MX35_PAD_SD16 = 263,
28662306a36Sopenharmony_ci	MX35_PAD_SD17 = 264,
28762306a36Sopenharmony_ci	MX35_PAD_SD18 = 265,
28862306a36Sopenharmony_ci	MX35_PAD_SD19 = 266,
28962306a36Sopenharmony_ci	MX35_PAD_SD20 = 267,
29062306a36Sopenharmony_ci	MX35_PAD_SD21 = 268,
29162306a36Sopenharmony_ci	MX35_PAD_SD22 = 269,
29262306a36Sopenharmony_ci	MX35_PAD_SD23 = 270,
29362306a36Sopenharmony_ci	MX35_PAD_SD24 = 271,
29462306a36Sopenharmony_ci	MX35_PAD_SD25 = 272,
29562306a36Sopenharmony_ci	MX35_PAD_SD26 = 273,
29662306a36Sopenharmony_ci	MX35_PAD_SD27 = 274,
29762306a36Sopenharmony_ci	MX35_PAD_SD28 = 275,
29862306a36Sopenharmony_ci	MX35_PAD_SD29 = 276,
29962306a36Sopenharmony_ci	MX35_PAD_SD30 = 277,
30062306a36Sopenharmony_ci	MX35_PAD_SD31 = 278,
30162306a36Sopenharmony_ci	MX35_PAD_DQM0 = 279,
30262306a36Sopenharmony_ci	MX35_PAD_DQM1 = 280,
30362306a36Sopenharmony_ci	MX35_PAD_DQM2 = 281,
30462306a36Sopenharmony_ci	MX35_PAD_DQM3 = 282,
30562306a36Sopenharmony_ci	MX35_PAD_RESERVE37 = 283,
30662306a36Sopenharmony_ci	MX35_PAD_RESERVE38 = 284,
30762306a36Sopenharmony_ci	MX35_PAD_RESERVE39 = 285,
30862306a36Sopenharmony_ci	MX35_PAD_RESERVE40 = 286,
30962306a36Sopenharmony_ci	MX35_PAD_RESERVE41 = 287,
31062306a36Sopenharmony_ci	MX35_PAD_RESERVE42 = 288,
31162306a36Sopenharmony_ci	MX35_PAD_RESERVE43 = 289,
31262306a36Sopenharmony_ci	MX35_PAD_RESERVE44 = 290,
31362306a36Sopenharmony_ci	MX35_PAD_RESERVE45 = 291,
31462306a36Sopenharmony_ci	MX35_PAD_RESERVE46 = 292,
31562306a36Sopenharmony_ci	MX35_PAD_ECB = 293,
31662306a36Sopenharmony_ci	MX35_PAD_RESERVE47 = 294,
31762306a36Sopenharmony_ci	MX35_PAD_RESERVE48 = 295,
31862306a36Sopenharmony_ci	MX35_PAD_RESERVE49 = 296,
31962306a36Sopenharmony_ci	MX35_PAD_RAS = 297,
32062306a36Sopenharmony_ci	MX35_PAD_CAS = 298,
32162306a36Sopenharmony_ci	MX35_PAD_SDWE = 299,
32262306a36Sopenharmony_ci	MX35_PAD_SDCKE0 = 300,
32362306a36Sopenharmony_ci	MX35_PAD_SDCKE1 = 301,
32462306a36Sopenharmony_ci	MX35_PAD_SDCLK = 302,
32562306a36Sopenharmony_ci	MX35_PAD_SDQS0 = 303,
32662306a36Sopenharmony_ci	MX35_PAD_SDQS1 = 304,
32762306a36Sopenharmony_ci	MX35_PAD_SDQS2 = 305,
32862306a36Sopenharmony_ci	MX35_PAD_SDQS3 = 306,
32962306a36Sopenharmony_ci	MX35_PAD_RESERVE50 = 307,
33062306a36Sopenharmony_ci	MX35_PAD_RESERVE51 = 308,
33162306a36Sopenharmony_ci	MX35_PAD_RESERVE52 = 309,
33262306a36Sopenharmony_ci	MX35_PAD_RESERVE53 = 310,
33362306a36Sopenharmony_ci	MX35_PAD_RESERVE54 = 311,
33462306a36Sopenharmony_ci	MX35_PAD_RESERVE55 = 312,
33562306a36Sopenharmony_ci	MX35_PAD_D15 = 313,
33662306a36Sopenharmony_ci	MX35_PAD_D14 = 314,
33762306a36Sopenharmony_ci	MX35_PAD_D13 = 315,
33862306a36Sopenharmony_ci	MX35_PAD_D12 = 316,
33962306a36Sopenharmony_ci	MX35_PAD_D11 = 317,
34062306a36Sopenharmony_ci	MX35_PAD_D10 = 318,
34162306a36Sopenharmony_ci	MX35_PAD_D9 = 319,
34262306a36Sopenharmony_ci	MX35_PAD_D8 = 320,
34362306a36Sopenharmony_ci	MX35_PAD_D7 = 321,
34462306a36Sopenharmony_ci	MX35_PAD_D6 = 322,
34562306a36Sopenharmony_ci	MX35_PAD_D5 = 323,
34662306a36Sopenharmony_ci	MX35_PAD_D4 = 324,
34762306a36Sopenharmony_ci	MX35_PAD_D3 = 325,
34862306a36Sopenharmony_ci	MX35_PAD_D2 = 326,
34962306a36Sopenharmony_ci	MX35_PAD_D1 = 327,
35062306a36Sopenharmony_ci	MX35_PAD_D0 = 328,
35162306a36Sopenharmony_ci	MX35_PAD_RESERVE56 = 329,
35262306a36Sopenharmony_ci	MX35_PAD_RESERVE57 = 330,
35362306a36Sopenharmony_ci	MX35_PAD_RESERVE58 = 331,
35462306a36Sopenharmony_ci	MX35_PAD_RESERVE59 = 332,
35562306a36Sopenharmony_ci	MX35_PAD_RESERVE60 = 333,
35662306a36Sopenharmony_ci	MX35_PAD_RESERVE61 = 334,
35762306a36Sopenharmony_ci	MX35_PAD_RESERVE62 = 335,
35862306a36Sopenharmony_ci	MX35_PAD_RESERVE63 = 336,
35962306a36Sopenharmony_ci	MX35_PAD_RESERVE64 = 337,
36062306a36Sopenharmony_ci	MX35_PAD_RESERVE65 = 338,
36162306a36Sopenharmony_ci	MX35_PAD_RESERVE66 = 339,
36262306a36Sopenharmony_ci	MX35_PAD_RESERVE67 = 340,
36362306a36Sopenharmony_ci	MX35_PAD_RESERVE68 = 341,
36462306a36Sopenharmony_ci	MX35_PAD_RESERVE69 = 342,
36562306a36Sopenharmony_ci	MX35_PAD_RESERVE70 = 343,
36662306a36Sopenharmony_ci	MX35_PAD_RESERVE71 = 344,
36762306a36Sopenharmony_ci	MX35_PAD_RESERVE72 = 345,
36862306a36Sopenharmony_ci	MX35_PAD_RESERVE73 = 346,
36962306a36Sopenharmony_ci	MX35_PAD_RESERVE74 = 347,
37062306a36Sopenharmony_ci	MX35_PAD_RESERVE75 = 348,
37162306a36Sopenharmony_ci	MX35_PAD_RESERVE76 = 349,
37262306a36Sopenharmony_ci	MX35_PAD_RESERVE77 = 350,
37362306a36Sopenharmony_ci	MX35_PAD_RESERVE78 = 351,
37462306a36Sopenharmony_ci	MX35_PAD_RESERVE79 = 352,
37562306a36Sopenharmony_ci	MX35_PAD_RESERVE80 = 353,
37662306a36Sopenharmony_ci	MX35_PAD_RESERVE81 = 354,
37762306a36Sopenharmony_ci	MX35_PAD_RESERVE82 = 355,
37862306a36Sopenharmony_ci	MX35_PAD_RESERVE83 = 356,
37962306a36Sopenharmony_ci	MX35_PAD_RESERVE84 = 357,
38062306a36Sopenharmony_ci	MX35_PAD_RESERVE85 = 358,
38162306a36Sopenharmony_ci	MX35_PAD_RESERVE86 = 359,
38262306a36Sopenharmony_ci	MX35_PAD_RESERVE87 = 360,
38362306a36Sopenharmony_ci	MX35_PAD_RESERVE88 = 361,
38462306a36Sopenharmony_ci	MX35_PAD_RESERVE89 = 362,
38562306a36Sopenharmony_ci	MX35_PAD_RESERVE90 = 363,
38662306a36Sopenharmony_ci	MX35_PAD_RESERVE91 = 364,
38762306a36Sopenharmony_ci	MX35_PAD_RESERVE92 = 365,
38862306a36Sopenharmony_ci	MX35_PAD_RESERVE93 = 366,
38962306a36Sopenharmony_ci	MX35_PAD_RESERVE94 = 367,
39062306a36Sopenharmony_ci	MX35_PAD_RESERVE95 = 368,
39162306a36Sopenharmony_ci	MX35_PAD_RESERVE96 = 369,
39262306a36Sopenharmony_ci	MX35_PAD_RESERVE97 = 370,
39362306a36Sopenharmony_ci	MX35_PAD_RESERVE98 = 371,
39462306a36Sopenharmony_ci	MX35_PAD_RESERVE99 = 372,
39562306a36Sopenharmony_ci	MX35_PAD_RESERVE100 = 373,
39662306a36Sopenharmony_ci	MX35_PAD_RESERVE101 = 374,
39762306a36Sopenharmony_ci	MX35_PAD_RESERVE102 = 375,
39862306a36Sopenharmony_ci	MX35_PAD_RESERVE103 = 376,
39962306a36Sopenharmony_ci	MX35_PAD_RESERVE104 = 377,
40062306a36Sopenharmony_ci	MX35_PAD_RESERVE105 = 378,
40162306a36Sopenharmony_ci	MX35_PAD_RTCK = 379,
40262306a36Sopenharmony_ci	MX35_PAD_TCK = 380,
40362306a36Sopenharmony_ci	MX35_PAD_TMS = 381,
40462306a36Sopenharmony_ci	MX35_PAD_TDI = 382,
40562306a36Sopenharmony_ci	MX35_PAD_TDO = 383,
40662306a36Sopenharmony_ci	MX35_PAD_TRSTB = 384,
40762306a36Sopenharmony_ci	MX35_PAD_DE_B = 385,
40862306a36Sopenharmony_ci	MX35_PAD_SJC_MOD = 386,
40962306a36Sopenharmony_ci	MX35_PAD_RESERVE106 = 387,
41062306a36Sopenharmony_ci	MX35_PAD_RESERVE107 = 388,
41162306a36Sopenharmony_ci	MX35_PAD_RESERVE108 = 389,
41262306a36Sopenharmony_ci	MX35_PAD_RESERVE109 = 390,
41362306a36Sopenharmony_ci	MX35_PAD_RESERVE110 = 391,
41462306a36Sopenharmony_ci	MX35_PAD_RESERVE111 = 392,
41562306a36Sopenharmony_ci	MX35_PAD_RESERVE112 = 393,
41662306a36Sopenharmony_ci	MX35_PAD_RESERVE113 = 394,
41762306a36Sopenharmony_ci	MX35_PAD_RESERVE114 = 395,
41862306a36Sopenharmony_ci	MX35_PAD_RESERVE115 = 396,
41962306a36Sopenharmony_ci	MX35_PAD_RESERVE116 = 397,
42062306a36Sopenharmony_ci	MX35_PAD_RESERVE117 = 398,
42162306a36Sopenharmony_ci	MX35_PAD_RESERVE118 = 399,
42262306a36Sopenharmony_ci	MX35_PAD_RESERVE119 = 400,
42362306a36Sopenharmony_ci	MX35_PAD_RESERVE120 = 401,
42462306a36Sopenharmony_ci	MX35_PAD_RESERVE121 = 402,
42562306a36Sopenharmony_ci	MX35_PAD_RESERVE122 = 403,
42662306a36Sopenharmony_ci	MX35_PAD_RESERVE123 = 404,
42762306a36Sopenharmony_ci	MX35_PAD_RESERVE124 = 405,
42862306a36Sopenharmony_ci	MX35_PAD_RESERVE125 = 406,
42962306a36Sopenharmony_ci	MX35_PAD_RESERVE126 = 407,
43062306a36Sopenharmony_ci	MX35_PAD_RESERVE127 = 408,
43162306a36Sopenharmony_ci	MX35_PAD_RESERVE128 = 409,
43262306a36Sopenharmony_ci	MX35_PAD_RESERVE129 = 410,
43362306a36Sopenharmony_ci	MX35_PAD_RESERVE130 = 411,
43462306a36Sopenharmony_ci	MX35_PAD_RESERVE131 = 412,
43562306a36Sopenharmony_ci	MX35_PAD_RESERVE132 = 413,
43662306a36Sopenharmony_ci	MX35_PAD_RESERVE133 = 414,
43762306a36Sopenharmony_ci	MX35_PAD_RESERVE134 = 415,
43862306a36Sopenharmony_ci	MX35_PAD_RESERVE135 = 416,
43962306a36Sopenharmony_ci	MX35_PAD_RESERVE136 = 417,
44062306a36Sopenharmony_ci	MX35_PAD_RESERVE137 = 418,
44162306a36Sopenharmony_ci	MX35_PAD_RESERVE138 = 419,
44262306a36Sopenharmony_ci	MX35_PAD_RESERVE139 = 420,
44362306a36Sopenharmony_ci	MX35_PAD_RESERVE140 = 421,
44462306a36Sopenharmony_ci	MX35_PAD_RESERVE141 = 422,
44562306a36Sopenharmony_ci	MX35_PAD_RESERVE142 = 423,
44662306a36Sopenharmony_ci	MX35_PAD_RESERVE143 = 424,
44762306a36Sopenharmony_ci	MX35_PAD_RESERVE144 = 425,
44862306a36Sopenharmony_ci	MX35_PAD_RESERVE145 = 426,
44962306a36Sopenharmony_ci	MX35_PAD_RESERVE146 = 427,
45062306a36Sopenharmony_ci	MX35_PAD_RESERVE147 = 428,
45162306a36Sopenharmony_ci	MX35_PAD_RESERVE148 = 429,
45262306a36Sopenharmony_ci	MX35_PAD_RESERVE149 = 430,
45362306a36Sopenharmony_ci	MX35_PAD_RESERVE150 = 431,
45462306a36Sopenharmony_ci	MX35_PAD_RESERVE151 = 432,
45562306a36Sopenharmony_ci	MX35_PAD_RESERVE152 = 433,
45662306a36Sopenharmony_ci	MX35_PAD_RESERVE153 = 434,
45762306a36Sopenharmony_ci	MX35_PAD_RESERVE154 = 435,
45862306a36Sopenharmony_ci	MX35_PAD_RESERVE155 = 436,
45962306a36Sopenharmony_ci	MX35_PAD_RESERVE156 = 437,
46062306a36Sopenharmony_ci	MX35_PAD_RESERVE157 = 438,
46162306a36Sopenharmony_ci	MX35_PAD_RESERVE158 = 439,
46262306a36Sopenharmony_ci	MX35_PAD_RESERVE159 = 440,
46362306a36Sopenharmony_ci	MX35_PAD_RESERVE160 = 441,
46462306a36Sopenharmony_ci	MX35_PAD_RESERVE161 = 442,
46562306a36Sopenharmony_ci	MX35_PAD_RESERVE162 = 443,
46662306a36Sopenharmony_ci	MX35_PAD_RESERVE163 = 444,
46762306a36Sopenharmony_ci	MX35_PAD_RESERVE164 = 445,
46862306a36Sopenharmony_ci	MX35_PAD_RESERVE165 = 446,
46962306a36Sopenharmony_ci	MX35_PAD_RESERVE166 = 447,
47062306a36Sopenharmony_ci	MX35_PAD_RESERVE167 = 448,
47162306a36Sopenharmony_ci	MX35_PAD_RESERVE168 = 449,
47262306a36Sopenharmony_ci	MX35_PAD_RESERVE169 = 450,
47362306a36Sopenharmony_ci	MX35_PAD_RESERVE170 = 451,
47462306a36Sopenharmony_ci	MX35_PAD_RESERVE171 = 452,
47562306a36Sopenharmony_ci	MX35_PAD_RESERVE172 = 453,
47662306a36Sopenharmony_ci	MX35_PAD_RESERVE173 = 454,
47762306a36Sopenharmony_ci	MX35_PAD_RESERVE174 = 455,
47862306a36Sopenharmony_ci	MX35_PAD_RESERVE175 = 456,
47962306a36Sopenharmony_ci	MX35_PAD_RESERVE176 = 457,
48062306a36Sopenharmony_ci	MX35_PAD_RESERVE177 = 458,
48162306a36Sopenharmony_ci	MX35_PAD_RESERVE178 = 459,
48262306a36Sopenharmony_ci	MX35_PAD_RESERVE179 = 460,
48362306a36Sopenharmony_ci	MX35_PAD_RESERVE180 = 461,
48462306a36Sopenharmony_ci	MX35_PAD_RESERVE181 = 462,
48562306a36Sopenharmony_ci	MX35_PAD_RESERVE182 = 463,
48662306a36Sopenharmony_ci	MX35_PAD_RESERVE183 = 464,
48762306a36Sopenharmony_ci	MX35_PAD_RESERVE184 = 465,
48862306a36Sopenharmony_ci	MX35_PAD_RESERVE185 = 466,
48962306a36Sopenharmony_ci	MX35_PAD_RESERVE186 = 467,
49062306a36Sopenharmony_ci	MX35_PAD_RESERVE187 = 468,
49162306a36Sopenharmony_ci	MX35_PAD_RESERVE188 = 469,
49262306a36Sopenharmony_ci	MX35_PAD_RESERVE189 = 470,
49362306a36Sopenharmony_ci	MX35_PAD_RESERVE190 = 471,
49462306a36Sopenharmony_ci	MX35_PAD_RESERVE191 = 472,
49562306a36Sopenharmony_ci	MX35_PAD_RESERVE192 = 473,
49662306a36Sopenharmony_ci	MX35_PAD_RESERVE193 = 474,
49762306a36Sopenharmony_ci	MX35_PAD_RESERVE194 = 475,
49862306a36Sopenharmony_ci	MX35_PAD_RESERVE195 = 476,
49962306a36Sopenharmony_ci	MX35_PAD_RESERVE196 = 477,
50062306a36Sopenharmony_ci	MX35_PAD_RESERVE197 = 478,
50162306a36Sopenharmony_ci	MX35_PAD_RESERVE198 = 479,
50262306a36Sopenharmony_ci	MX35_PAD_RESERVE199 = 480,
50362306a36Sopenharmony_ci	MX35_PAD_RESERVE200 = 481,
50462306a36Sopenharmony_ci	MX35_PAD_RESERVE201 = 482,
50562306a36Sopenharmony_ci	MX35_PAD_EXT_ARMCLK = 483,
50662306a36Sopenharmony_ci	MX35_PAD_TEST_MODE = 484,
50762306a36Sopenharmony_ci};
50862306a36Sopenharmony_ci
50962306a36Sopenharmony_ci/* Pad names for the pinmux subsystem */
51062306a36Sopenharmony_cistatic const struct pinctrl_pin_desc imx35_pinctrl_pads[] = {
51162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE0),
51262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CAPTURE),
51362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_COMPARE),
51462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_WDOG_RST),
51562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_GPIO1_0),
51662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_GPIO1_1),
51762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_GPIO2_0),
51862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_GPIO3_0),
51962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CLKO),
52062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_VSTBY),
52162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A0),
52262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A1),
52362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A2),
52462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A3),
52562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A4),
52662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A5),
52762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A6),
52862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A7),
52962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A8),
53062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A9),
53162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A10),
53262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_MA10),
53362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A11),
53462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A12),
53562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A13),
53662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A14),
53762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A15),
53862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A16),
53962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A17),
54062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A18),
54162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A19),
54262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A20),
54362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A21),
54462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A22),
54562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A23),
54662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A24),
54762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_A25),
54862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_EB0),
54962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_EB1),
55062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_OE),
55162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CS0),
55262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CS1),
55362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CS2),
55462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CS3),
55562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CS4),
55662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CS5),
55762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_NF_CE0),
55862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LBA),
55962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_BCLK),
56062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RW),
56162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_NFWE_B),
56262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_NFRE_B),
56362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_NFALE),
56462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_NFCLE),
56562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_NFWP_B),
56662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_NFRB),
56762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSI_D8),
56862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSI_D9),
56962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSI_D10),
57062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSI_D11),
57162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSI_D12),
57262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSI_D13),
57362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSI_D14),
57462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSI_D15),
57562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSI_MCLK),
57662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSI_VSYNC),
57762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSI_HSYNC),
57862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSI_PIXCLK),
57962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_I2C1_CLK),
58062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_I2C1_DAT),
58162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_I2C2_CLK),
58262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_I2C2_DAT),
58362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_STXD4),
58462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SRXD4),
58562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SCK4),
58662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_STXFS4),
58762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_STXD5),
58862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SRXD5),
58962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SCK5),
59062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_STXFS5),
59162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SCKR),
59262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FSR),
59362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_HCKR),
59462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SCKT),
59562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FST),
59662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_HCKT),
59762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_TX5_RX0),
59862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_TX4_RX1),
59962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_TX3_RX2),
60062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_TX2_RX3),
60162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_TX1),
60262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_TX0),
60362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSPI1_MOSI),
60462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSPI1_MISO),
60562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSPI1_SS0),
60662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSPI1_SS1),
60762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSPI1_SCLK),
60862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CSPI1_SPI_RDY),
60962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RXD1),
61062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_TXD1),
61162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RTS1),
61262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CTS1),
61362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RXD2),
61462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_TXD2),
61562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RTS2),
61662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CTS2),
61762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_USBOTG_PWR),
61862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_USBOTG_OC),
61962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD0),
62062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD1),
62162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD2),
62262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD3),
62362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD4),
62462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD5),
62562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD6),
62662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD7),
62762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD8),
62862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD9),
62962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD10),
63062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD11),
63162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD12),
63262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD13),
63362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD14),
63462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD15),
63562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD16),
63662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD17),
63762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD18),
63862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD19),
63962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD20),
64062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD21),
64162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD22),
64262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_LD23),
64362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D3_HSYNC),
64462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D3_FPSHIFT),
64562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D3_DRDY),
64662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CONTRAST),
64762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D3_VSYNC),
64862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D3_REV),
64962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D3_CLS),
65062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D3_SPL),
65162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD1_CMD),
65262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD1_CLK),
65362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD1_DATA0),
65462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD1_DATA1),
65562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD1_DATA2),
65662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD1_DATA3),
65762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD2_CMD),
65862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD2_CLK),
65962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD2_DATA0),
66062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD2_DATA1),
66162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD2_DATA2),
66262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD2_DATA3),
66362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_CS0),
66462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_CS1),
66562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DIOR),
66662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DIOW),
66762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DMACK),
66862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_RESET_B),
66962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_IORDY),
67062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA0),
67162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA1),
67262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA2),
67362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA3),
67462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA4),
67562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA5),
67662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA6),
67762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA7),
67862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA8),
67962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA9),
68062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA10),
68162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA11),
68262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA12),
68362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA13),
68462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA14),
68562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DATA15),
68662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_INTRQ),
68762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_BUFF_EN),
68862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DMARQ),
68962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DA0),
69062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DA1),
69162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ATA_DA2),
69262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_MLB_CLK),
69362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_MLB_DAT),
69462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_MLB_SIG),
69562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_TX_CLK),
69662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_RX_CLK),
69762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_RX_DV),
69862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_COL),
69962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_RDATA0),
70062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_TDATA0),
70162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_TX_EN),
70262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_MDC),
70362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_MDIO),
70462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_TX_ERR),
70562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_RX_ERR),
70662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_CRS),
70762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_RDATA1),
70862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_TDATA1),
70962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_RDATA2),
71062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_TDATA2),
71162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_RDATA3),
71262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_FEC_TDATA3),
71362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE1),
71462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE2),
71562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE3),
71662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE4),
71762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE5),
71862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE6),
71962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE7),
72062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESET_IN_B),
72162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_POR_B),
72262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE8),
72362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_BOOT_MODE0),
72462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_BOOT_MODE1),
72562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CLK_MODE0),
72662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CLK_MODE1),
72762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_POWER_FAIL),
72862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE9),
72962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE10),
73062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE11),
73162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE12),
73262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE13),
73362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE14),
73462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE15),
73562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE16),
73662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE17),
73762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE18),
73862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE19),
73962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE20),
74062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE21),
74162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE22),
74262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE23),
74362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE24),
74462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE25),
74562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE26),
74662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE27),
74762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE28),
74862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE29),
74962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE30),
75062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE31),
75162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE32),
75262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE33),
75362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE34),
75462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE35),
75562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE36),
75662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SDBA1),
75762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SDBA0),
75862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD0),
75962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD1),
76062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD2),
76162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD3),
76262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD4),
76362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD5),
76462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD6),
76562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD7),
76662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD8),
76762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD9),
76862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD10),
76962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD11),
77062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD12),
77162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD13),
77262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD14),
77362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD15),
77462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD16),
77562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD17),
77662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD18),
77762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD19),
77862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD20),
77962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD21),
78062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD22),
78162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD23),
78262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD24),
78362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD25),
78462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD26),
78562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD27),
78662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD28),
78762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD29),
78862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD30),
78962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SD31),
79062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_DQM0),
79162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_DQM1),
79262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_DQM2),
79362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_DQM3),
79462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE37),
79562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE38),
79662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE39),
79762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE40),
79862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE41),
79962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE42),
80062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE43),
80162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE44),
80262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE45),
80362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE46),
80462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_ECB),
80562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE47),
80662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE48),
80762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE49),
80862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RAS),
80962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_CAS),
81062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SDWE),
81162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SDCKE0),
81262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SDCKE1),
81362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SDCLK),
81462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SDQS0),
81562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SDQS1),
81662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SDQS2),
81762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SDQS3),
81862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE50),
81962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE51),
82062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE52),
82162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE53),
82262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE54),
82362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE55),
82462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D15),
82562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D14),
82662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D13),
82762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D12),
82862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D11),
82962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D10),
83062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D9),
83162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D8),
83262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D7),
83362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D6),
83462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D5),
83562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D4),
83662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D3),
83762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D2),
83862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D1),
83962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_D0),
84062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE56),
84162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE57),
84262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE58),
84362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE59),
84462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE60),
84562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE61),
84662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE62),
84762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE63),
84862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE64),
84962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE65),
85062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE66),
85162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE67),
85262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE68),
85362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE69),
85462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE70),
85562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE71),
85662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE72),
85762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE73),
85862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE74),
85962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE75),
86062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE76),
86162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE77),
86262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE78),
86362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE79),
86462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE80),
86562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE81),
86662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE82),
86762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE83),
86862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE84),
86962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE85),
87062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE86),
87162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE87),
87262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE88),
87362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE89),
87462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE90),
87562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE91),
87662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE92),
87762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE93),
87862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE94),
87962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE95),
88062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE96),
88162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE97),
88262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE98),
88362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE99),
88462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE100),
88562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE101),
88662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE102),
88762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE103),
88862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE104),
88962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE105),
89062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RTCK),
89162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_TCK),
89262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_TMS),
89362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_TDI),
89462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_TDO),
89562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_TRSTB),
89662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_DE_B),
89762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_SJC_MOD),
89862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE106),
89962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE107),
90062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE108),
90162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE109),
90262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE110),
90362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE111),
90462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE112),
90562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE113),
90662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE114),
90762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE115),
90862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE116),
90962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE117),
91062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE118),
91162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE119),
91262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE120),
91362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE121),
91462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE122),
91562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE123),
91662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE124),
91762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE125),
91862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE126),
91962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE127),
92062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE128),
92162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE129),
92262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE130),
92362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE131),
92462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE132),
92562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE133),
92662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE134),
92762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE135),
92862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE136),
92962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE137),
93062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE138),
93162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE139),
93262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE140),
93362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE141),
93462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE142),
93562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE143),
93662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE144),
93762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE145),
93862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE146),
93962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE147),
94062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE148),
94162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE149),
94262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE150),
94362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE151),
94462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE152),
94562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE153),
94662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE154),
94762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE155),
94862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE156),
94962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE157),
95062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE158),
95162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE159),
95262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE160),
95362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE161),
95462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE162),
95562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE163),
95662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE164),
95762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE165),
95862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE166),
95962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE167),
96062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE168),
96162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE169),
96262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE170),
96362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE171),
96462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE172),
96562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE173),
96662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE174),
96762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE175),
96862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE176),
96962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE177),
97062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE178),
97162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE179),
97262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE180),
97362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE181),
97462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE182),
97562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE183),
97662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE184),
97762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE185),
97862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE186),
97962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE187),
98062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE188),
98162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE189),
98262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE190),
98362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE191),
98462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE192),
98562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE193),
98662306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE194),
98762306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE195),
98862306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE196),
98962306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE197),
99062306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE198),
99162306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE199),
99262306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE200),
99362306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_RESERVE201),
99462306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_EXT_ARMCLK),
99562306a36Sopenharmony_ci	IMX_PINCTRL_PIN(MX35_PAD_TEST_MODE),
99662306a36Sopenharmony_ci};
99762306a36Sopenharmony_ci
99862306a36Sopenharmony_cistatic const struct imx_pinctrl_soc_info imx35_pinctrl_info = {
99962306a36Sopenharmony_ci	.pins = imx35_pinctrl_pads,
100062306a36Sopenharmony_ci	.npins = ARRAY_SIZE(imx35_pinctrl_pads),
100162306a36Sopenharmony_ci};
100262306a36Sopenharmony_ci
100362306a36Sopenharmony_cistatic const struct of_device_id imx35_pinctrl_of_match[] = {
100462306a36Sopenharmony_ci	{ .compatible = "fsl,imx35-iomuxc", },
100562306a36Sopenharmony_ci	{ /* sentinel */ }
100662306a36Sopenharmony_ci};
100762306a36Sopenharmony_ci
100862306a36Sopenharmony_cistatic int imx35_pinctrl_probe(struct platform_device *pdev)
100962306a36Sopenharmony_ci{
101062306a36Sopenharmony_ci	return imx_pinctrl_probe(pdev, &imx35_pinctrl_info);
101162306a36Sopenharmony_ci}
101262306a36Sopenharmony_ci
101362306a36Sopenharmony_cistatic struct platform_driver imx35_pinctrl_driver = {
101462306a36Sopenharmony_ci	.driver = {
101562306a36Sopenharmony_ci		.name = "imx35-pinctrl",
101662306a36Sopenharmony_ci		.of_match_table = imx35_pinctrl_of_match,
101762306a36Sopenharmony_ci		.suppress_bind_attrs = true,
101862306a36Sopenharmony_ci	},
101962306a36Sopenharmony_ci	.probe = imx35_pinctrl_probe,
102062306a36Sopenharmony_ci};
102162306a36Sopenharmony_ci
102262306a36Sopenharmony_cistatic int __init imx35_pinctrl_init(void)
102362306a36Sopenharmony_ci{
102462306a36Sopenharmony_ci	return platform_driver_register(&imx35_pinctrl_driver);
102562306a36Sopenharmony_ci}
102662306a36Sopenharmony_ciarch_initcall(imx35_pinctrl_init);
1027