162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0+ 262306a36Sopenharmony_ci// 362306a36Sopenharmony_ci// imx51 pinctrl driver based on imx pinmux core 462306a36Sopenharmony_ci// 562306a36Sopenharmony_ci// Copyright (C) 2012 Freescale Semiconductor, Inc. 662306a36Sopenharmony_ci// Copyright (C) 2012 Linaro, Inc. 762306a36Sopenharmony_ci// 862306a36Sopenharmony_ci// Author: Dong Aisheng <dong.aisheng@linaro.org> 962306a36Sopenharmony_ci 1062306a36Sopenharmony_ci#include <linux/err.h> 1162306a36Sopenharmony_ci#include <linux/init.h> 1262306a36Sopenharmony_ci#include <linux/io.h> 1362306a36Sopenharmony_ci#include <linux/mod_devicetable.h> 1462306a36Sopenharmony_ci#include <linux/platform_device.h> 1562306a36Sopenharmony_ci#include <linux/pinctrl/pinctrl.h> 1662306a36Sopenharmony_ci 1762306a36Sopenharmony_ci#include "pinctrl-imx.h" 1862306a36Sopenharmony_ci 1962306a36Sopenharmony_cienum imx51_pads { 2062306a36Sopenharmony_ci MX51_PAD_RESERVE0 = 0, 2162306a36Sopenharmony_ci MX51_PAD_RESERVE1 = 1, 2262306a36Sopenharmony_ci MX51_PAD_RESERVE2 = 2, 2362306a36Sopenharmony_ci MX51_PAD_RESERVE3 = 3, 2462306a36Sopenharmony_ci MX51_PAD_RESERVE4 = 4, 2562306a36Sopenharmony_ci MX51_PAD_RESERVE5 = 5, 2662306a36Sopenharmony_ci MX51_PAD_RESERVE6 = 6, 2762306a36Sopenharmony_ci MX51_PAD_EIM_DA0 = 7, 2862306a36Sopenharmony_ci MX51_PAD_EIM_DA1 = 8, 2962306a36Sopenharmony_ci MX51_PAD_EIM_DA2 = 9, 3062306a36Sopenharmony_ci MX51_PAD_EIM_DA3 = 10, 3162306a36Sopenharmony_ci MX51_PAD_EIM_DA4 = 11, 3262306a36Sopenharmony_ci MX51_PAD_EIM_DA5 = 12, 3362306a36Sopenharmony_ci MX51_PAD_EIM_DA6 = 13, 3462306a36Sopenharmony_ci MX51_PAD_EIM_DA7 = 14, 3562306a36Sopenharmony_ci MX51_PAD_EIM_DA8 = 15, 3662306a36Sopenharmony_ci MX51_PAD_EIM_DA9 = 16, 3762306a36Sopenharmony_ci MX51_PAD_EIM_DA10 = 17, 3862306a36Sopenharmony_ci MX51_PAD_EIM_DA11 = 18, 3962306a36Sopenharmony_ci MX51_PAD_EIM_DA12 = 19, 4062306a36Sopenharmony_ci MX51_PAD_EIM_DA13 = 20, 4162306a36Sopenharmony_ci MX51_PAD_EIM_DA14 = 21, 4262306a36Sopenharmony_ci MX51_PAD_EIM_DA15 = 22, 4362306a36Sopenharmony_ci MX51_PAD_EIM_D16 = 23, 4462306a36Sopenharmony_ci MX51_PAD_EIM_D17 = 24, 4562306a36Sopenharmony_ci MX51_PAD_EIM_D18 = 25, 4662306a36Sopenharmony_ci MX51_PAD_EIM_D19 = 26, 4762306a36Sopenharmony_ci MX51_PAD_EIM_D20 = 27, 4862306a36Sopenharmony_ci MX51_PAD_EIM_D21 = 28, 4962306a36Sopenharmony_ci MX51_PAD_EIM_D22 = 29, 5062306a36Sopenharmony_ci MX51_PAD_EIM_D23 = 30, 5162306a36Sopenharmony_ci MX51_PAD_EIM_D24 = 31, 5262306a36Sopenharmony_ci MX51_PAD_EIM_D25 = 32, 5362306a36Sopenharmony_ci MX51_PAD_EIM_D26 = 33, 5462306a36Sopenharmony_ci MX51_PAD_EIM_D27 = 34, 5562306a36Sopenharmony_ci MX51_PAD_EIM_D28 = 35, 5662306a36Sopenharmony_ci MX51_PAD_EIM_D29 = 36, 5762306a36Sopenharmony_ci MX51_PAD_EIM_D30 = 37, 5862306a36Sopenharmony_ci MX51_PAD_EIM_D31 = 38, 5962306a36Sopenharmony_ci MX51_PAD_EIM_A16 = 39, 6062306a36Sopenharmony_ci MX51_PAD_EIM_A17 = 40, 6162306a36Sopenharmony_ci MX51_PAD_EIM_A18 = 41, 6262306a36Sopenharmony_ci MX51_PAD_EIM_A19 = 42, 6362306a36Sopenharmony_ci MX51_PAD_EIM_A20 = 43, 6462306a36Sopenharmony_ci MX51_PAD_EIM_A21 = 44, 6562306a36Sopenharmony_ci MX51_PAD_EIM_A22 = 45, 6662306a36Sopenharmony_ci MX51_PAD_EIM_A23 = 46, 6762306a36Sopenharmony_ci MX51_PAD_EIM_A24 = 47, 6862306a36Sopenharmony_ci MX51_PAD_EIM_A25 = 48, 6962306a36Sopenharmony_ci MX51_PAD_EIM_A26 = 49, 7062306a36Sopenharmony_ci MX51_PAD_EIM_A27 = 50, 7162306a36Sopenharmony_ci MX51_PAD_EIM_EB0 = 51, 7262306a36Sopenharmony_ci MX51_PAD_EIM_EB1 = 52, 7362306a36Sopenharmony_ci MX51_PAD_EIM_EB2 = 53, 7462306a36Sopenharmony_ci MX51_PAD_EIM_EB3 = 54, 7562306a36Sopenharmony_ci MX51_PAD_EIM_OE = 55, 7662306a36Sopenharmony_ci MX51_PAD_EIM_CS0 = 56, 7762306a36Sopenharmony_ci MX51_PAD_EIM_CS1 = 57, 7862306a36Sopenharmony_ci MX51_PAD_EIM_CS2 = 58, 7962306a36Sopenharmony_ci MX51_PAD_EIM_CS3 = 59, 8062306a36Sopenharmony_ci MX51_PAD_EIM_CS4 = 60, 8162306a36Sopenharmony_ci MX51_PAD_EIM_CS5 = 61, 8262306a36Sopenharmony_ci MX51_PAD_EIM_DTACK = 62, 8362306a36Sopenharmony_ci MX51_PAD_EIM_LBA = 63, 8462306a36Sopenharmony_ci MX51_PAD_EIM_CRE = 64, 8562306a36Sopenharmony_ci MX51_PAD_DRAM_CS1 = 65, 8662306a36Sopenharmony_ci MX51_PAD_NANDF_WE_B = 66, 8762306a36Sopenharmony_ci MX51_PAD_NANDF_RE_B = 67, 8862306a36Sopenharmony_ci MX51_PAD_NANDF_ALE = 68, 8962306a36Sopenharmony_ci MX51_PAD_NANDF_CLE = 69, 9062306a36Sopenharmony_ci MX51_PAD_NANDF_WP_B = 70, 9162306a36Sopenharmony_ci MX51_PAD_NANDF_RB0 = 71, 9262306a36Sopenharmony_ci MX51_PAD_NANDF_RB1 = 72, 9362306a36Sopenharmony_ci MX51_PAD_NANDF_RB2 = 73, 9462306a36Sopenharmony_ci MX51_PAD_NANDF_RB3 = 74, 9562306a36Sopenharmony_ci MX51_PAD_GPIO_NAND = 75, 9662306a36Sopenharmony_ci MX51_PAD_NANDF_CS0 = 76, 9762306a36Sopenharmony_ci MX51_PAD_NANDF_CS1 = 77, 9862306a36Sopenharmony_ci MX51_PAD_NANDF_CS2 = 78, 9962306a36Sopenharmony_ci MX51_PAD_NANDF_CS3 = 79, 10062306a36Sopenharmony_ci MX51_PAD_NANDF_CS4 = 80, 10162306a36Sopenharmony_ci MX51_PAD_NANDF_CS5 = 81, 10262306a36Sopenharmony_ci MX51_PAD_NANDF_CS6 = 82, 10362306a36Sopenharmony_ci MX51_PAD_NANDF_CS7 = 83, 10462306a36Sopenharmony_ci MX51_PAD_NANDF_RDY_INT = 84, 10562306a36Sopenharmony_ci MX51_PAD_NANDF_D15 = 85, 10662306a36Sopenharmony_ci MX51_PAD_NANDF_D14 = 86, 10762306a36Sopenharmony_ci MX51_PAD_NANDF_D13 = 87, 10862306a36Sopenharmony_ci MX51_PAD_NANDF_D12 = 88, 10962306a36Sopenharmony_ci MX51_PAD_NANDF_D11 = 89, 11062306a36Sopenharmony_ci MX51_PAD_NANDF_D10 = 90, 11162306a36Sopenharmony_ci MX51_PAD_NANDF_D9 = 91, 11262306a36Sopenharmony_ci MX51_PAD_NANDF_D8 = 92, 11362306a36Sopenharmony_ci MX51_PAD_NANDF_D7 = 93, 11462306a36Sopenharmony_ci MX51_PAD_NANDF_D6 = 94, 11562306a36Sopenharmony_ci MX51_PAD_NANDF_D5 = 95, 11662306a36Sopenharmony_ci MX51_PAD_NANDF_D4 = 96, 11762306a36Sopenharmony_ci MX51_PAD_NANDF_D3 = 97, 11862306a36Sopenharmony_ci MX51_PAD_NANDF_D2 = 98, 11962306a36Sopenharmony_ci MX51_PAD_NANDF_D1 = 99, 12062306a36Sopenharmony_ci MX51_PAD_NANDF_D0 = 100, 12162306a36Sopenharmony_ci MX51_PAD_CSI1_D8 = 101, 12262306a36Sopenharmony_ci MX51_PAD_CSI1_D9 = 102, 12362306a36Sopenharmony_ci MX51_PAD_CSI1_D10 = 103, 12462306a36Sopenharmony_ci MX51_PAD_CSI1_D11 = 104, 12562306a36Sopenharmony_ci MX51_PAD_CSI1_D12 = 105, 12662306a36Sopenharmony_ci MX51_PAD_CSI1_D13 = 106, 12762306a36Sopenharmony_ci MX51_PAD_CSI1_D14 = 107, 12862306a36Sopenharmony_ci MX51_PAD_CSI1_D15 = 108, 12962306a36Sopenharmony_ci MX51_PAD_CSI1_D16 = 109, 13062306a36Sopenharmony_ci MX51_PAD_CSI1_D17 = 110, 13162306a36Sopenharmony_ci MX51_PAD_CSI1_D18 = 111, 13262306a36Sopenharmony_ci MX51_PAD_CSI1_D19 = 112, 13362306a36Sopenharmony_ci MX51_PAD_CSI1_VSYNC = 113, 13462306a36Sopenharmony_ci MX51_PAD_CSI1_HSYNC = 114, 13562306a36Sopenharmony_ci MX51_PAD_CSI2_D12 = 115, 13662306a36Sopenharmony_ci MX51_PAD_CSI2_D13 = 116, 13762306a36Sopenharmony_ci MX51_PAD_CSI2_D14 = 117, 13862306a36Sopenharmony_ci MX51_PAD_CSI2_D15 = 118, 13962306a36Sopenharmony_ci MX51_PAD_CSI2_D16 = 119, 14062306a36Sopenharmony_ci MX51_PAD_CSI2_D17 = 120, 14162306a36Sopenharmony_ci MX51_PAD_CSI2_D18 = 121, 14262306a36Sopenharmony_ci MX51_PAD_CSI2_D19 = 122, 14362306a36Sopenharmony_ci MX51_PAD_CSI2_VSYNC = 123, 14462306a36Sopenharmony_ci MX51_PAD_CSI2_HSYNC = 124, 14562306a36Sopenharmony_ci MX51_PAD_CSI2_PIXCLK = 125, 14662306a36Sopenharmony_ci MX51_PAD_I2C1_CLK = 126, 14762306a36Sopenharmony_ci MX51_PAD_I2C1_DAT = 127, 14862306a36Sopenharmony_ci MX51_PAD_AUD3_BB_TXD = 128, 14962306a36Sopenharmony_ci MX51_PAD_AUD3_BB_RXD = 129, 15062306a36Sopenharmony_ci MX51_PAD_AUD3_BB_CK = 130, 15162306a36Sopenharmony_ci MX51_PAD_AUD3_BB_FS = 131, 15262306a36Sopenharmony_ci MX51_PAD_CSPI1_MOSI = 132, 15362306a36Sopenharmony_ci MX51_PAD_CSPI1_MISO = 133, 15462306a36Sopenharmony_ci MX51_PAD_CSPI1_SS0 = 134, 15562306a36Sopenharmony_ci MX51_PAD_CSPI1_SS1 = 135, 15662306a36Sopenharmony_ci MX51_PAD_CSPI1_RDY = 136, 15762306a36Sopenharmony_ci MX51_PAD_CSPI1_SCLK = 137, 15862306a36Sopenharmony_ci MX51_PAD_UART1_RXD = 138, 15962306a36Sopenharmony_ci MX51_PAD_UART1_TXD = 139, 16062306a36Sopenharmony_ci MX51_PAD_UART1_RTS = 140, 16162306a36Sopenharmony_ci MX51_PAD_UART1_CTS = 141, 16262306a36Sopenharmony_ci MX51_PAD_UART2_RXD = 142, 16362306a36Sopenharmony_ci MX51_PAD_UART2_TXD = 143, 16462306a36Sopenharmony_ci MX51_PAD_UART3_RXD = 144, 16562306a36Sopenharmony_ci MX51_PAD_UART3_TXD = 145, 16662306a36Sopenharmony_ci MX51_PAD_OWIRE_LINE = 146, 16762306a36Sopenharmony_ci MX51_PAD_KEY_ROW0 = 147, 16862306a36Sopenharmony_ci MX51_PAD_KEY_ROW1 = 148, 16962306a36Sopenharmony_ci MX51_PAD_KEY_ROW2 = 149, 17062306a36Sopenharmony_ci MX51_PAD_KEY_ROW3 = 150, 17162306a36Sopenharmony_ci MX51_PAD_KEY_COL0 = 151, 17262306a36Sopenharmony_ci MX51_PAD_KEY_COL1 = 152, 17362306a36Sopenharmony_ci MX51_PAD_KEY_COL2 = 153, 17462306a36Sopenharmony_ci MX51_PAD_KEY_COL3 = 154, 17562306a36Sopenharmony_ci MX51_PAD_KEY_COL4 = 155, 17662306a36Sopenharmony_ci MX51_PAD_KEY_COL5 = 156, 17762306a36Sopenharmony_ci MX51_PAD_RESERVE7 = 157, 17862306a36Sopenharmony_ci MX51_PAD_USBH1_CLK = 158, 17962306a36Sopenharmony_ci MX51_PAD_USBH1_DIR = 159, 18062306a36Sopenharmony_ci MX51_PAD_USBH1_STP = 160, 18162306a36Sopenharmony_ci MX51_PAD_USBH1_NXT = 161, 18262306a36Sopenharmony_ci MX51_PAD_USBH1_DATA0 = 162, 18362306a36Sopenharmony_ci MX51_PAD_USBH1_DATA1 = 163, 18462306a36Sopenharmony_ci MX51_PAD_USBH1_DATA2 = 164, 18562306a36Sopenharmony_ci MX51_PAD_USBH1_DATA3 = 165, 18662306a36Sopenharmony_ci MX51_PAD_USBH1_DATA4 = 166, 18762306a36Sopenharmony_ci MX51_PAD_USBH1_DATA5 = 167, 18862306a36Sopenharmony_ci MX51_PAD_USBH1_DATA6 = 168, 18962306a36Sopenharmony_ci MX51_PAD_USBH1_DATA7 = 169, 19062306a36Sopenharmony_ci MX51_PAD_DI1_PIN11 = 170, 19162306a36Sopenharmony_ci MX51_PAD_DI1_PIN12 = 171, 19262306a36Sopenharmony_ci MX51_PAD_DI1_PIN13 = 172, 19362306a36Sopenharmony_ci MX51_PAD_DI1_D0_CS = 173, 19462306a36Sopenharmony_ci MX51_PAD_DI1_D1_CS = 174, 19562306a36Sopenharmony_ci MX51_PAD_DISPB2_SER_DIN = 175, 19662306a36Sopenharmony_ci MX51_PAD_DISPB2_SER_DIO = 176, 19762306a36Sopenharmony_ci MX51_PAD_DISPB2_SER_CLK = 177, 19862306a36Sopenharmony_ci MX51_PAD_DISPB2_SER_RS = 178, 19962306a36Sopenharmony_ci MX51_PAD_DISP1_DAT0 = 179, 20062306a36Sopenharmony_ci MX51_PAD_DISP1_DAT1 = 180, 20162306a36Sopenharmony_ci MX51_PAD_DISP1_DAT2 = 181, 20262306a36Sopenharmony_ci MX51_PAD_DISP1_DAT3 = 182, 20362306a36Sopenharmony_ci MX51_PAD_DISP1_DAT4 = 183, 20462306a36Sopenharmony_ci MX51_PAD_DISP1_DAT5 = 184, 20562306a36Sopenharmony_ci MX51_PAD_DISP1_DAT6 = 185, 20662306a36Sopenharmony_ci MX51_PAD_DISP1_DAT7 = 186, 20762306a36Sopenharmony_ci MX51_PAD_DISP1_DAT8 = 187, 20862306a36Sopenharmony_ci MX51_PAD_DISP1_DAT9 = 188, 20962306a36Sopenharmony_ci MX51_PAD_DISP1_DAT10 = 189, 21062306a36Sopenharmony_ci MX51_PAD_DISP1_DAT11 = 190, 21162306a36Sopenharmony_ci MX51_PAD_DISP1_DAT12 = 191, 21262306a36Sopenharmony_ci MX51_PAD_DISP1_DAT13 = 192, 21362306a36Sopenharmony_ci MX51_PAD_DISP1_DAT14 = 193, 21462306a36Sopenharmony_ci MX51_PAD_DISP1_DAT15 = 194, 21562306a36Sopenharmony_ci MX51_PAD_DISP1_DAT16 = 195, 21662306a36Sopenharmony_ci MX51_PAD_DISP1_DAT17 = 196, 21762306a36Sopenharmony_ci MX51_PAD_DISP1_DAT18 = 197, 21862306a36Sopenharmony_ci MX51_PAD_DISP1_DAT19 = 198, 21962306a36Sopenharmony_ci MX51_PAD_DISP1_DAT20 = 199, 22062306a36Sopenharmony_ci MX51_PAD_DISP1_DAT21 = 200, 22162306a36Sopenharmony_ci MX51_PAD_DISP1_DAT22 = 201, 22262306a36Sopenharmony_ci MX51_PAD_DISP1_DAT23 = 202, 22362306a36Sopenharmony_ci MX51_PAD_DI1_PIN3 = 203, 22462306a36Sopenharmony_ci MX51_PAD_DI1_PIN2 = 204, 22562306a36Sopenharmony_ci MX51_PAD_RESERVE8 = 205, 22662306a36Sopenharmony_ci MX51_PAD_DI_GP2 = 206, 22762306a36Sopenharmony_ci MX51_PAD_DI_GP3 = 207, 22862306a36Sopenharmony_ci MX51_PAD_DI2_PIN4 = 208, 22962306a36Sopenharmony_ci MX51_PAD_DI2_PIN2 = 209, 23062306a36Sopenharmony_ci MX51_PAD_DI2_PIN3 = 210, 23162306a36Sopenharmony_ci MX51_PAD_DI2_DISP_CLK = 211, 23262306a36Sopenharmony_ci MX51_PAD_DI_GP4 = 212, 23362306a36Sopenharmony_ci MX51_PAD_DISP2_DAT0 = 213, 23462306a36Sopenharmony_ci MX51_PAD_DISP2_DAT1 = 214, 23562306a36Sopenharmony_ci MX51_PAD_DISP2_DAT2 = 215, 23662306a36Sopenharmony_ci MX51_PAD_DISP2_DAT3 = 216, 23762306a36Sopenharmony_ci MX51_PAD_DISP2_DAT4 = 217, 23862306a36Sopenharmony_ci MX51_PAD_DISP2_DAT5 = 218, 23962306a36Sopenharmony_ci MX51_PAD_DISP2_DAT6 = 219, 24062306a36Sopenharmony_ci MX51_PAD_DISP2_DAT7 = 220, 24162306a36Sopenharmony_ci MX51_PAD_DISP2_DAT8 = 221, 24262306a36Sopenharmony_ci MX51_PAD_DISP2_DAT9 = 222, 24362306a36Sopenharmony_ci MX51_PAD_DISP2_DAT10 = 223, 24462306a36Sopenharmony_ci MX51_PAD_DISP2_DAT11 = 224, 24562306a36Sopenharmony_ci MX51_PAD_DISP2_DAT12 = 225, 24662306a36Sopenharmony_ci MX51_PAD_DISP2_DAT13 = 226, 24762306a36Sopenharmony_ci MX51_PAD_DISP2_DAT14 = 227, 24862306a36Sopenharmony_ci MX51_PAD_DISP2_DAT15 = 228, 24962306a36Sopenharmony_ci MX51_PAD_SD1_CMD = 229, 25062306a36Sopenharmony_ci MX51_PAD_SD1_CLK = 230, 25162306a36Sopenharmony_ci MX51_PAD_SD1_DATA0 = 231, 25262306a36Sopenharmony_ci MX51_PAD_SD1_DATA1 = 232, 25362306a36Sopenharmony_ci MX51_PAD_SD1_DATA2 = 233, 25462306a36Sopenharmony_ci MX51_PAD_SD1_DATA3 = 234, 25562306a36Sopenharmony_ci MX51_PAD_GPIO1_0 = 235, 25662306a36Sopenharmony_ci MX51_PAD_GPIO1_1 = 236, 25762306a36Sopenharmony_ci MX51_PAD_SD2_CMD = 237, 25862306a36Sopenharmony_ci MX51_PAD_SD2_CLK = 238, 25962306a36Sopenharmony_ci MX51_PAD_SD2_DATA0 = 239, 26062306a36Sopenharmony_ci MX51_PAD_SD2_DATA1 = 240, 26162306a36Sopenharmony_ci MX51_PAD_SD2_DATA2 = 241, 26262306a36Sopenharmony_ci MX51_PAD_SD2_DATA3 = 242, 26362306a36Sopenharmony_ci MX51_PAD_GPIO1_2 = 243, 26462306a36Sopenharmony_ci MX51_PAD_GPIO1_3 = 244, 26562306a36Sopenharmony_ci MX51_PAD_PMIC_INT_REQ = 245, 26662306a36Sopenharmony_ci MX51_PAD_GPIO1_4 = 246, 26762306a36Sopenharmony_ci MX51_PAD_GPIO1_5 = 247, 26862306a36Sopenharmony_ci MX51_PAD_GPIO1_6 = 248, 26962306a36Sopenharmony_ci MX51_PAD_GPIO1_7 = 249, 27062306a36Sopenharmony_ci MX51_PAD_GPIO1_8 = 250, 27162306a36Sopenharmony_ci MX51_PAD_GPIO1_9 = 251, 27262306a36Sopenharmony_ci MX51_PAD_RESERVE9 = 252, 27362306a36Sopenharmony_ci MX51_PAD_RESERVE10 = 253, 27462306a36Sopenharmony_ci MX51_PAD_RESERVE11 = 254, 27562306a36Sopenharmony_ci MX51_PAD_RESERVE12 = 255, 27662306a36Sopenharmony_ci MX51_PAD_RESERVE13 = 256, 27762306a36Sopenharmony_ci MX51_PAD_RESERVE14 = 257, 27862306a36Sopenharmony_ci MX51_PAD_RESERVE15 = 258, 27962306a36Sopenharmony_ci MX51_PAD_RESERVE16 = 259, 28062306a36Sopenharmony_ci MX51_PAD_RESERVE17 = 260, 28162306a36Sopenharmony_ci MX51_PAD_RESERVE18 = 261, 28262306a36Sopenharmony_ci MX51_PAD_RESERVE19 = 262, 28362306a36Sopenharmony_ci MX51_PAD_RESERVE20 = 263, 28462306a36Sopenharmony_ci MX51_PAD_RESERVE21 = 264, 28562306a36Sopenharmony_ci MX51_PAD_RESERVE22 = 265, 28662306a36Sopenharmony_ci MX51_PAD_RESERVE23 = 266, 28762306a36Sopenharmony_ci MX51_PAD_RESERVE24 = 267, 28862306a36Sopenharmony_ci MX51_PAD_RESERVE25 = 268, 28962306a36Sopenharmony_ci MX51_PAD_RESERVE26 = 269, 29062306a36Sopenharmony_ci MX51_PAD_RESERVE27 = 270, 29162306a36Sopenharmony_ci MX51_PAD_RESERVE28 = 271, 29262306a36Sopenharmony_ci MX51_PAD_RESERVE29 = 272, 29362306a36Sopenharmony_ci MX51_PAD_RESERVE30 = 273, 29462306a36Sopenharmony_ci MX51_PAD_RESERVE31 = 274, 29562306a36Sopenharmony_ci MX51_PAD_RESERVE32 = 275, 29662306a36Sopenharmony_ci MX51_PAD_RESERVE33 = 276, 29762306a36Sopenharmony_ci MX51_PAD_RESERVE34 = 277, 29862306a36Sopenharmony_ci MX51_PAD_RESERVE35 = 278, 29962306a36Sopenharmony_ci MX51_PAD_RESERVE36 = 279, 30062306a36Sopenharmony_ci MX51_PAD_RESERVE37 = 280, 30162306a36Sopenharmony_ci MX51_PAD_RESERVE38 = 281, 30262306a36Sopenharmony_ci MX51_PAD_RESERVE39 = 282, 30362306a36Sopenharmony_ci MX51_PAD_RESERVE40 = 283, 30462306a36Sopenharmony_ci MX51_PAD_RESERVE41 = 284, 30562306a36Sopenharmony_ci MX51_PAD_RESERVE42 = 285, 30662306a36Sopenharmony_ci MX51_PAD_RESERVE43 = 286, 30762306a36Sopenharmony_ci MX51_PAD_RESERVE44 = 287, 30862306a36Sopenharmony_ci MX51_PAD_RESERVE45 = 288, 30962306a36Sopenharmony_ci MX51_PAD_RESERVE46 = 289, 31062306a36Sopenharmony_ci MX51_PAD_RESERVE47 = 290, 31162306a36Sopenharmony_ci MX51_PAD_RESERVE48 = 291, 31262306a36Sopenharmony_ci MX51_PAD_RESERVE49 = 292, 31362306a36Sopenharmony_ci MX51_PAD_RESERVE50 = 293, 31462306a36Sopenharmony_ci MX51_PAD_RESERVE51 = 294, 31562306a36Sopenharmony_ci MX51_PAD_RESERVE52 = 295, 31662306a36Sopenharmony_ci MX51_PAD_RESERVE53 = 296, 31762306a36Sopenharmony_ci MX51_PAD_RESERVE54 = 297, 31862306a36Sopenharmony_ci MX51_PAD_RESERVE55 = 298, 31962306a36Sopenharmony_ci MX51_PAD_RESERVE56 = 299, 32062306a36Sopenharmony_ci MX51_PAD_RESERVE57 = 300, 32162306a36Sopenharmony_ci MX51_PAD_RESERVE58 = 301, 32262306a36Sopenharmony_ci MX51_PAD_RESERVE59 = 302, 32362306a36Sopenharmony_ci MX51_PAD_RESERVE60 = 303, 32462306a36Sopenharmony_ci MX51_PAD_RESERVE61 = 304, 32562306a36Sopenharmony_ci MX51_PAD_RESERVE62 = 305, 32662306a36Sopenharmony_ci MX51_PAD_RESERVE63 = 306, 32762306a36Sopenharmony_ci MX51_PAD_RESERVE64 = 307, 32862306a36Sopenharmony_ci MX51_PAD_RESERVE65 = 308, 32962306a36Sopenharmony_ci MX51_PAD_RESERVE66 = 309, 33062306a36Sopenharmony_ci MX51_PAD_RESERVE67 = 310, 33162306a36Sopenharmony_ci MX51_PAD_RESERVE68 = 311, 33262306a36Sopenharmony_ci MX51_PAD_RESERVE69 = 312, 33362306a36Sopenharmony_ci MX51_PAD_RESERVE70 = 313, 33462306a36Sopenharmony_ci MX51_PAD_RESERVE71 = 314, 33562306a36Sopenharmony_ci MX51_PAD_RESERVE72 = 315, 33662306a36Sopenharmony_ci MX51_PAD_RESERVE73 = 316, 33762306a36Sopenharmony_ci MX51_PAD_RESERVE74 = 317, 33862306a36Sopenharmony_ci MX51_PAD_RESERVE75 = 318, 33962306a36Sopenharmony_ci MX51_PAD_RESERVE76 = 319, 34062306a36Sopenharmony_ci MX51_PAD_RESERVE77 = 320, 34162306a36Sopenharmony_ci MX51_PAD_RESERVE78 = 321, 34262306a36Sopenharmony_ci MX51_PAD_RESERVE79 = 322, 34362306a36Sopenharmony_ci MX51_PAD_RESERVE80 = 323, 34462306a36Sopenharmony_ci MX51_PAD_RESERVE81 = 324, 34562306a36Sopenharmony_ci MX51_PAD_RESERVE82 = 325, 34662306a36Sopenharmony_ci MX51_PAD_RESERVE83 = 326, 34762306a36Sopenharmony_ci MX51_PAD_RESERVE84 = 327, 34862306a36Sopenharmony_ci MX51_PAD_RESERVE85 = 328, 34962306a36Sopenharmony_ci MX51_PAD_RESERVE86 = 329, 35062306a36Sopenharmony_ci MX51_PAD_RESERVE87 = 330, 35162306a36Sopenharmony_ci MX51_PAD_RESERVE88 = 331, 35262306a36Sopenharmony_ci MX51_PAD_RESERVE89 = 332, 35362306a36Sopenharmony_ci MX51_PAD_RESERVE90 = 333, 35462306a36Sopenharmony_ci MX51_PAD_RESERVE91 = 334, 35562306a36Sopenharmony_ci MX51_PAD_RESERVE92 = 335, 35662306a36Sopenharmony_ci MX51_PAD_RESERVE93 = 336, 35762306a36Sopenharmony_ci MX51_PAD_RESERVE94 = 337, 35862306a36Sopenharmony_ci MX51_PAD_RESERVE95 = 338, 35962306a36Sopenharmony_ci MX51_PAD_RESERVE96 = 339, 36062306a36Sopenharmony_ci MX51_PAD_RESERVE97 = 340, 36162306a36Sopenharmony_ci MX51_PAD_RESERVE98 = 341, 36262306a36Sopenharmony_ci MX51_PAD_RESERVE99 = 342, 36362306a36Sopenharmony_ci MX51_PAD_RESERVE100 = 343, 36462306a36Sopenharmony_ci MX51_PAD_RESERVE101 = 344, 36562306a36Sopenharmony_ci MX51_PAD_RESERVE102 = 345, 36662306a36Sopenharmony_ci MX51_PAD_RESERVE103 = 346, 36762306a36Sopenharmony_ci MX51_PAD_RESERVE104 = 347, 36862306a36Sopenharmony_ci MX51_PAD_RESERVE105 = 348, 36962306a36Sopenharmony_ci MX51_PAD_RESERVE106 = 349, 37062306a36Sopenharmony_ci MX51_PAD_RESERVE107 = 350, 37162306a36Sopenharmony_ci MX51_PAD_RESERVE108 = 351, 37262306a36Sopenharmony_ci MX51_PAD_RESERVE109 = 352, 37362306a36Sopenharmony_ci MX51_PAD_RESERVE110 = 353, 37462306a36Sopenharmony_ci MX51_PAD_RESERVE111 = 354, 37562306a36Sopenharmony_ci MX51_PAD_RESERVE112 = 355, 37662306a36Sopenharmony_ci MX51_PAD_RESERVE113 = 356, 37762306a36Sopenharmony_ci MX51_PAD_RESERVE114 = 357, 37862306a36Sopenharmony_ci MX51_PAD_RESERVE115 = 358, 37962306a36Sopenharmony_ci MX51_PAD_RESERVE116 = 359, 38062306a36Sopenharmony_ci MX51_PAD_RESERVE117 = 360, 38162306a36Sopenharmony_ci MX51_PAD_RESERVE118 = 361, 38262306a36Sopenharmony_ci MX51_PAD_RESERVE119 = 362, 38362306a36Sopenharmony_ci MX51_PAD_RESERVE120 = 363, 38462306a36Sopenharmony_ci MX51_PAD_RESERVE121 = 364, 38562306a36Sopenharmony_ci MX51_PAD_CSI1_PIXCLK = 365, 38662306a36Sopenharmony_ci MX51_PAD_CSI1_MCLK = 366, 38762306a36Sopenharmony_ci}; 38862306a36Sopenharmony_ci 38962306a36Sopenharmony_ci/* Pad names for the pinmux subsystem */ 39062306a36Sopenharmony_cistatic const struct pinctrl_pin_desc imx51_pinctrl_pads[] = { 39162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE0), 39262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE1), 39362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE2), 39462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE3), 39562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE4), 39662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE5), 39762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE6), 39862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA0), 39962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA1), 40062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA2), 40162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA3), 40262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA4), 40362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA5), 40462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA6), 40562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA7), 40662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA8), 40762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA9), 40862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA10), 40962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA11), 41062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA12), 41162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA13), 41262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA14), 41362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DA15), 41462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D16), 41562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D17), 41662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D18), 41762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D19), 41862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D20), 41962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D21), 42062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D22), 42162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D23), 42262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D24), 42362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D25), 42462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D26), 42562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D27), 42662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D28), 42762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D29), 42862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D30), 42962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_D31), 43062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_A16), 43162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_A17), 43262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_A18), 43362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_A19), 43462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_A20), 43562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_A21), 43662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_A22), 43762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_A23), 43862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_A24), 43962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_A25), 44062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_A26), 44162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_A27), 44262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_EB0), 44362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_EB1), 44462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_EB2), 44562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_EB3), 44662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_OE), 44762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_CS0), 44862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_CS1), 44962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_CS2), 45062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_CS3), 45162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_CS4), 45262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_CS5), 45362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_DTACK), 45462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_LBA), 45562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_EIM_CRE), 45662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DRAM_CS1), 45762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_WE_B), 45862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_RE_B), 45962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_ALE), 46062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_CLE), 46162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_WP_B), 46262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_RB0), 46362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_RB1), 46462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_RB2), 46562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_RB3), 46662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_GPIO_NAND), 46762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_CS0), 46862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_CS1), 46962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_CS2), 47062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_CS3), 47162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_CS4), 47262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_CS5), 47362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_CS6), 47462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_CS7), 47562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_RDY_INT), 47662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D15), 47762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D14), 47862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D13), 47962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D12), 48062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D11), 48162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D10), 48262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D9), 48362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D8), 48462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D7), 48562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D6), 48662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D5), 48762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D4), 48862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D3), 48962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D2), 49062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D1), 49162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_NANDF_D0), 49262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_D8), 49362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_D9), 49462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_D10), 49562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_D11), 49662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_D12), 49762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_D13), 49862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_D14), 49962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_D15), 50062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_D16), 50162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_D17), 50262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_D18), 50362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_D19), 50462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_VSYNC), 50562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_HSYNC), 50662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI2_D12), 50762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI2_D13), 50862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI2_D14), 50962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI2_D15), 51062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI2_D16), 51162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI2_D17), 51262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI2_D18), 51362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI2_D19), 51462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI2_VSYNC), 51562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI2_HSYNC), 51662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI2_PIXCLK), 51762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_I2C1_CLK), 51862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_I2C1_DAT), 51962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_AUD3_BB_TXD), 52062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_AUD3_BB_RXD), 52162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_AUD3_BB_CK), 52262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_AUD3_BB_FS), 52362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSPI1_MOSI), 52462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSPI1_MISO), 52562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSPI1_SS0), 52662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSPI1_SS1), 52762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSPI1_RDY), 52862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSPI1_SCLK), 52962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_UART1_RXD), 53062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_UART1_TXD), 53162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_UART1_RTS), 53262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_UART1_CTS), 53362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_UART2_RXD), 53462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_UART2_TXD), 53562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_UART3_RXD), 53662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_UART3_TXD), 53762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_OWIRE_LINE), 53862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_KEY_ROW0), 53962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_KEY_ROW1), 54062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_KEY_ROW2), 54162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_KEY_ROW3), 54262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_KEY_COL0), 54362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_KEY_COL1), 54462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_KEY_COL2), 54562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_KEY_COL3), 54662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_KEY_COL4), 54762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_KEY_COL5), 54862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE7), 54962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_USBH1_CLK), 55062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_USBH1_DIR), 55162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_USBH1_STP), 55262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_USBH1_NXT), 55362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_USBH1_DATA0), 55462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_USBH1_DATA1), 55562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_USBH1_DATA2), 55662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_USBH1_DATA3), 55762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_USBH1_DATA4), 55862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_USBH1_DATA5), 55962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_USBH1_DATA6), 56062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_USBH1_DATA7), 56162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DI1_PIN11), 56262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DI1_PIN12), 56362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DI1_PIN13), 56462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DI1_D0_CS), 56562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DI1_D1_CS), 56662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISPB2_SER_DIN), 56762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISPB2_SER_DIO), 56862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISPB2_SER_CLK), 56962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISPB2_SER_RS), 57062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT0), 57162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT1), 57262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT2), 57362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT3), 57462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT4), 57562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT5), 57662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT6), 57762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT7), 57862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT8), 57962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT9), 58062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT10), 58162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT11), 58262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT12), 58362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT13), 58462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT14), 58562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT15), 58662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT16), 58762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT17), 58862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT18), 58962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT19), 59062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT20), 59162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT21), 59262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT22), 59362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP1_DAT23), 59462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DI1_PIN3), 59562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DI1_PIN2), 59662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE8), 59762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DI_GP2), 59862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DI_GP3), 59962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DI2_PIN4), 60062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DI2_PIN2), 60162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DI2_PIN3), 60262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DI2_DISP_CLK), 60362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DI_GP4), 60462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT0), 60562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT1), 60662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT2), 60762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT3), 60862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT4), 60962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT5), 61062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT6), 61162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT7), 61262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT8), 61362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT9), 61462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT10), 61562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT11), 61662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT12), 61762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT13), 61862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT14), 61962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_DISP2_DAT15), 62062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_SD1_CMD), 62162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_SD1_CLK), 62262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_SD1_DATA0), 62362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_SD1_DATA1), 62462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_SD1_DATA2), 62562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_SD1_DATA3), 62662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_GPIO1_0), 62762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_GPIO1_1), 62862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_SD2_CMD), 62962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_SD2_CLK), 63062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_SD2_DATA0), 63162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_SD2_DATA1), 63262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_SD2_DATA2), 63362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_SD2_DATA3), 63462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_GPIO1_2), 63562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_GPIO1_3), 63662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_PMIC_INT_REQ), 63762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_GPIO1_4), 63862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_GPIO1_5), 63962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_GPIO1_6), 64062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_GPIO1_7), 64162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_GPIO1_8), 64262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_GPIO1_9), 64362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE9), 64462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE10), 64562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE11), 64662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE12), 64762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE13), 64862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE14), 64962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE15), 65062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE16), 65162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE17), 65262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE18), 65362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE19), 65462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE20), 65562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE21), 65662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE22), 65762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE23), 65862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE24), 65962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE25), 66062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE26), 66162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE27), 66262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE28), 66362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE29), 66462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE30), 66562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE31), 66662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE32), 66762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE33), 66862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE34), 66962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE35), 67062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE36), 67162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE37), 67262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE38), 67362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE39), 67462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE40), 67562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE41), 67662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE42), 67762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE43), 67862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE44), 67962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE45), 68062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE46), 68162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE47), 68262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE48), 68362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE49), 68462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE50), 68562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE51), 68662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE52), 68762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE53), 68862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE54), 68962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE55), 69062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE56), 69162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE57), 69262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE58), 69362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE59), 69462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE60), 69562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE61), 69662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE62), 69762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE63), 69862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE64), 69962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE65), 70062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE66), 70162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE67), 70262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE68), 70362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE69), 70462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE70), 70562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE71), 70662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE72), 70762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE73), 70862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE74), 70962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE75), 71062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE76), 71162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE77), 71262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE78), 71362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE79), 71462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE80), 71562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE81), 71662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE82), 71762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE83), 71862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE84), 71962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE85), 72062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE86), 72162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE87), 72262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE88), 72362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE89), 72462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE90), 72562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE91), 72662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE92), 72762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE93), 72862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE94), 72962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE95), 73062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE96), 73162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE97), 73262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE98), 73362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE99), 73462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE100), 73562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE101), 73662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE102), 73762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE103), 73862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE104), 73962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE105), 74062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE106), 74162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE107), 74262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE108), 74362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE109), 74462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE110), 74562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE111), 74662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE112), 74762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE113), 74862306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE114), 74962306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE115), 75062306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE116), 75162306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE117), 75262306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE118), 75362306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE119), 75462306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE120), 75562306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_RESERVE121), 75662306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_PIXCLK), 75762306a36Sopenharmony_ci IMX_PINCTRL_PIN(MX51_PAD_CSI1_MCLK), 75862306a36Sopenharmony_ci}; 75962306a36Sopenharmony_ci 76062306a36Sopenharmony_cistatic const struct imx_pinctrl_soc_info imx51_pinctrl_info = { 76162306a36Sopenharmony_ci .pins = imx51_pinctrl_pads, 76262306a36Sopenharmony_ci .npins = ARRAY_SIZE(imx51_pinctrl_pads), 76362306a36Sopenharmony_ci}; 76462306a36Sopenharmony_ci 76562306a36Sopenharmony_cistatic const struct of_device_id imx51_pinctrl_of_match[] = { 76662306a36Sopenharmony_ci { .compatible = "fsl,imx51-iomuxc", }, 76762306a36Sopenharmony_ci { /* sentinel */ } 76862306a36Sopenharmony_ci}; 76962306a36Sopenharmony_ci 77062306a36Sopenharmony_cistatic int imx51_pinctrl_probe(struct platform_device *pdev) 77162306a36Sopenharmony_ci{ 77262306a36Sopenharmony_ci return imx_pinctrl_probe(pdev, &imx51_pinctrl_info); 77362306a36Sopenharmony_ci} 77462306a36Sopenharmony_ci 77562306a36Sopenharmony_cistatic struct platform_driver imx51_pinctrl_driver = { 77662306a36Sopenharmony_ci .driver = { 77762306a36Sopenharmony_ci .name = "imx51-pinctrl", 77862306a36Sopenharmony_ci .of_match_table = imx51_pinctrl_of_match, 77962306a36Sopenharmony_ci .suppress_bind_attrs = true, 78062306a36Sopenharmony_ci }, 78162306a36Sopenharmony_ci .probe = imx51_pinctrl_probe, 78262306a36Sopenharmony_ci}; 78362306a36Sopenharmony_ci 78462306a36Sopenharmony_cistatic int __init imx51_pinctrl_init(void) 78562306a36Sopenharmony_ci{ 78662306a36Sopenharmony_ci return platform_driver_register(&imx51_pinctrl_driver); 78762306a36Sopenharmony_ci} 78862306a36Sopenharmony_ciarch_initcall(imx51_pinctrl_init); 789