Rabin Vincent | fe05203 | 2011-02-11 17:07:21 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) ST-Ericsson SA 2010 |
| 3 | * |
| 4 | * License terms: GNU General Public License (GPL) version 2 |
| 5 | */ |
| 6 | |
| 7 | #include <linux/kernel.h> |
| 8 | #include <linux/init.h> |
Paul Gortmaker | 50af5ea | 2012-01-20 18:35:53 -0500 | [diff] [blame] | 9 | #include <linux/bug.h> |
Linus Walleij | 1baa574 | 2012-04-19 18:27:38 +0200 | [diff] [blame] | 10 | #include <linux/string.h> |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 11 | #include <linux/pinctrl/machine.h> |
Rabin Vincent | fe05203 | 2011-02-11 17:07:21 -0700 | [diff] [blame] | 12 | |
Bibek Basu | 4bc3a69 | 2011-02-15 10:46:59 +0100 | [diff] [blame] | 13 | #include <asm/mach-types.h> |
Rabin Vincent | fe05203 | 2011-02-11 17:07:21 -0700 | [diff] [blame] | 14 | #include <plat/pincfg.h> |
Linus Walleij | 0f33286 | 2011-08-22 08:33:30 +0100 | [diff] [blame] | 15 | #include <plat/gpio-nomadik.h> |
Linus Walleij | 1baa574 | 2012-04-19 18:27:38 +0200 | [diff] [blame] | 16 | |
Rabin Vincent | fe05203 | 2011-02-11 17:07:21 -0700 | [diff] [blame] | 17 | #include <mach/hardware.h> |
| 18 | |
| 19 | #include "pins-db8500.h" |
Linus Walleij | 1baa574 | 2012-04-19 18:27:38 +0200 | [diff] [blame] | 20 | #include "board-mop500.h" |
| 21 | |
| 22 | enum custom_pin_cfg_t { |
| 23 | PINS_FOR_DEFAULT, |
| 24 | PINS_FOR_U9500, |
| 25 | }; |
| 26 | |
| 27 | static enum custom_pin_cfg_t pinsfor; |
Rabin Vincent | fe05203 | 2011-02-11 17:07:21 -0700 | [diff] [blame] | 28 | |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 29 | /* These simply sets bias for pins */ |
| 30 | #define BIAS(a,b) static unsigned long a[] = { b } |
Bibek Basu | 4bc3a69 | 2011-02-15 10:46:59 +0100 | [diff] [blame] | 31 | |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 32 | BIAS(pd, PIN_PULL_DOWN); |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 33 | BIAS(in_nopull, PIN_INPUT_NOPULL); |
Linus Walleij | 4c85472 | 2012-09-18 13:23:02 +0200 | [diff] [blame] | 34 | BIAS(in_nopull_slpm_nowkup, PIN_INPUT_NOPULL|PIN_SLPM_WAKEUP_DISABLE); |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 35 | BIAS(in_pu, PIN_INPUT_PULLUP); |
| 36 | BIAS(in_pd, PIN_INPUT_PULLDOWN); |
| 37 | BIAS(in_pd_slpm_in_pu, PIN_INPUT_PULLDOWN|PIN_SLPM_INPUT_PULLUP); |
| 38 | BIAS(in_pu_slpm_out_lo, PIN_INPUT_PULLUP|PIN_SLPM_OUTPUT_LOW); |
| 39 | BIAS(out_hi, PIN_OUTPUT_HIGH); |
| 40 | BIAS(out_lo, PIN_OUTPUT_LOW); |
Linus Walleij | 4c85472 | 2012-09-18 13:23:02 +0200 | [diff] [blame] | 41 | BIAS(out_lo_slpm_nowkup, PIN_OUTPUT_LOW|PIN_SLPM_WAKEUP_DISABLE); |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 42 | /* These also force them into GPIO mode */ |
| 43 | BIAS(gpio_in_pu, PIN_INPUT_PULLUP|PIN_GPIOMODE_ENABLED); |
| 44 | BIAS(gpio_in_pd, PIN_INPUT_PULLDOWN|PIN_GPIOMODE_ENABLED); |
| 45 | BIAS(gpio_in_pu_slpm_gpio_nopull, PIN_INPUT_PULLUP|PIN_GPIOMODE_ENABLED|PIN_SLPM_GPIO|PIN_SLPM_INPUT_NOPULL); |
| 46 | BIAS(gpio_in_pd_slpm_gpio_nopull, PIN_INPUT_PULLDOWN|PIN_GPIOMODE_ENABLED|PIN_SLPM_GPIO|PIN_SLPM_INPUT_NOPULL); |
| 47 | BIAS(gpio_out_hi, PIN_OUTPUT_HIGH|PIN_GPIOMODE_ENABLED); |
| 48 | BIAS(gpio_out_lo, PIN_OUTPUT_LOW|PIN_GPIOMODE_ENABLED); |
Linus Walleij | a098066 | 2012-05-07 01:33:24 +0200 | [diff] [blame] | 49 | /* Sleep modes */ |
Linus Walleij | 4c85472 | 2012-09-18 13:23:02 +0200 | [diff] [blame] | 50 | BIAS(slpm_in_wkup_pdis, PIN_SLEEPMODE_ENABLED|PIN_SLPM_DIR_INPUT|PIN_SLPM_WAKEUP_ENABLE|PIN_SLPM_PDIS_DISABLED); |
| 51 | BIAS(slpm_in_nopull_wkup, PIN_SLEEPMODE_ENABLED|PIN_SLPM_DIR_INPUT|PIN_SLPM_PULL_NONE|PIN_SLPM_WAKEUP_ENABLE); |
| 52 | BIAS(slpm_wkup_pdis, PIN_SLEEPMODE_ENABLED|PIN_SLPM_WAKEUP_ENABLE|PIN_SLPM_PDIS_DISABLED); |
| 53 | BIAS(slpm_out_hi_wkup_pdis, PIN_SLEEPMODE_ENABLED|PIN_SLPM_OUTPUT_HIGH|PIN_SLPM_WAKEUP_ENABLE|PIN_SLPM_PDIS_DISABLED); |
| 54 | BIAS(slpm_out_wkup_pdis, PIN_SLEEPMODE_ENABLED|PIN_SLPM_WAKEUP_ENABLE|PIN_SLPM_PDIS_DISABLED); |
| 55 | BIAS(slpm_out_lo_wkup, PIN_SLEEPMODE_ENABLED|PIN_SLPM_OUTPUT_LOW|PIN_SLPM_WAKEUP_ENABLE); |
| 56 | BIAS(slpm_out_lo_wkup_pdis, PIN_SLEEPMODE_ENABLED|PIN_SLPM_OUTPUT_LOW|PIN_SLPM_WAKEUP_ENABLE|PIN_SLPM_PDIS_DISABLED); |
Patrice Chotard | 4401e29 | 2012-09-20 13:55:27 +0200 | [diff] [blame] | 57 | BIAS(slpm_in_nopull_wkup_pdis, PIN_SLEEPMODE_ENABLED|PIN_SLPM_INPUT_NOPULL|PIN_SLPM_WAKEUP_ENABLE|PIN_SLPM_PDIS_DISABLED); |
Bibek Basu | 4bc3a69 | 2011-02-15 10:46:59 +0100 | [diff] [blame] | 58 | |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 59 | /* We use these to define hog settings that are always done on boot */ |
| 60 | #define DB8500_MUX_HOG(group,func) \ |
| 61 | PIN_MAP_MUX_GROUP_HOG_DEFAULT("pinctrl-db8500", group, func) |
| 62 | #define DB8500_PIN_HOG(pin,conf) \ |
| 63 | PIN_MAP_CONFIGS_PIN_HOG_DEFAULT("pinctrl-db8500", pin, conf) |
Patrice Chotard | 4401e29 | 2012-09-20 13:55:27 +0200 | [diff] [blame] | 64 | #define DB8500_PIN_SLEEP(pin, conf, dev) \ |
| 65 | PIN_MAP_CONFIGS_PIN(dev, PINCTRL_STATE_SLEEP, "pinctrl-db8500", \ |
| 66 | pin, conf) |
Linus Walleij | 1baa574 | 2012-04-19 18:27:38 +0200 | [diff] [blame] | 67 | |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 68 | /* These are default states associated with device and changed runtime */ |
| 69 | #define DB8500_MUX(group,func,dev) \ |
| 70 | PIN_MAP_MUX_GROUP_DEFAULT(dev, "pinctrl-db8500", group, func) |
| 71 | #define DB8500_PIN(pin,conf,dev) \ |
| 72 | PIN_MAP_CONFIGS_PIN_DEFAULT(dev, "pinctrl-db8500", pin, conf) |
Linus Walleij | 4c85472 | 2012-09-18 13:23:02 +0200 | [diff] [blame] | 73 | #define DB8500_PIN_SLEEP(pin, conf, dev) \ |
| 74 | PIN_MAP_CONFIGS_PIN(dev, PINCTRL_STATE_SLEEP, "pinctrl-db8500", \ |
| 75 | pin, conf) |
Bibek Basu | 4bc3a69 | 2011-02-15 10:46:59 +0100 | [diff] [blame] | 76 | |
Linus Walleij | a098066 | 2012-05-07 01:33:24 +0200 | [diff] [blame] | 77 | #define DB8500_PIN_SLEEP(pin,conf,dev) \ |
| 78 | PIN_MAP_CONFIGS_PIN(dev, PINCTRL_STATE_SLEEP, "pinctrl-db8500", \ |
| 79 | pin, conf) |
| 80 | |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 81 | /* Pin control settings */ |
| 82 | static struct pinctrl_map __initdata mop500_family_pinmap[] = { |
| 83 | /* |
| 84 | * uMSP0, mux in 4 pins, regular placement of RX/TX |
| 85 | * explicitly set the pins to no pull |
Shreshtha Kumar Sahu | 1a7d436 | 2011-06-13 10:11:44 +0200 | [diff] [blame] | 86 | */ |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 87 | DB8500_MUX_HOG("msp0txrx_a_1", "msp0"), |
| 88 | DB8500_MUX_HOG("msp0tfstck_a_1", "msp0"), |
| 89 | DB8500_PIN_HOG("GPIO12_AC4", in_nopull), /* TXD */ |
| 90 | DB8500_PIN_HOG("GPIO15_AC3", in_nopull), /* RXD */ |
| 91 | DB8500_PIN_HOG("GPIO13_AF3", in_nopull), /* TFS */ |
| 92 | DB8500_PIN_HOG("GPIO14_AE3", in_nopull), /* TCK */ |
| 93 | /* MSP2 for HDMI, pull down TXD, TCK, TFS */ |
| 94 | DB8500_MUX_HOG("msp2_a_1", "msp2"), |
| 95 | DB8500_PIN_HOG("GPIO193_AH27", in_pd), /* TXD */ |
| 96 | DB8500_PIN_HOG("GPIO194_AF27", in_pd), /* TCK */ |
| 97 | DB8500_PIN_HOG("GPIO195_AG28", in_pd), /* TFS */ |
| 98 | DB8500_PIN_HOG("GPIO196_AG26", out_lo), /* RXD */ |
| 99 | /* |
| 100 | * LCD, set TE0 (using LCD VSI0) and D14 (touch screen interrupt) to |
| 101 | * pull-up |
| 102 | * TODO: is this really correct? Snowball doesn't have a LCD. |
| 103 | */ |
| 104 | DB8500_MUX_HOG("lcdvsi0_a_1", "lcd"), |
| 105 | DB8500_PIN_HOG("GPIO68_E1", in_pu), |
| 106 | DB8500_PIN_HOG("GPIO84_C2", gpio_in_pu), |
| 107 | /* |
| 108 | * STMPE1601/tc35893 keypad IRQ GPIO 218 |
| 109 | * TODO: set for snowball and HREF really?? |
| 110 | */ |
| 111 | DB8500_PIN_HOG("GPIO218_AH11", gpio_in_pu), |
| 112 | /* |
| 113 | * UART0, we do not mux in u0 here. |
| 114 | * uart-0 pins gpio configuration should be kept intact to prevent |
| 115 | * a glitch in tx line when the tty dev is opened. Later these pins |
| 116 | * are configured to uart mop500_pins_uart0 |
| 117 | */ |
| 118 | DB8500_PIN_HOG("GPIO0_AJ5", in_pu), /* CTS */ |
| 119 | DB8500_PIN_HOG("GPIO1_AJ3", out_hi), /* RTS */ |
| 120 | DB8500_PIN_HOG("GPIO2_AH4", in_pu), /* RXD */ |
| 121 | DB8500_PIN_HOG("GPIO3_AH3", out_hi), /* TXD */ |
| 122 | /* |
| 123 | * Mux in UART2 on altfunction C and set pull-ups. |
| 124 | * TODO: is this used on U8500 variants and Snowball really? |
| 125 | * The setting on GPIO31 conflicts with magnetometer use on hrefv60 |
| 126 | */ |
| 127 | DB8500_MUX_HOG("u2rxtx_c_1", "u2"), |
| 128 | DB8500_MUX_HOG("u2ctsrts_c_1", "u2"), |
| 129 | DB8500_PIN_HOG("GPIO29_W2", in_pu), /* RXD */ |
| 130 | DB8500_PIN_HOG("GPIO30_W3", out_hi), /* TXD */ |
| 131 | DB8500_PIN_HOG("GPIO31_V3", in_pu), /* CTS */ |
| 132 | DB8500_PIN_HOG("GPIO32_V2", out_hi), /* RTS */ |
| 133 | /* |
| 134 | * The following pin sets were known as "runtime pins" before being |
| 135 | * converted to the pinctrl model. Here we model them as "default" |
| 136 | * states. |
| 137 | */ |
Linus Walleij | a098066 | 2012-05-07 01:33:24 +0200 | [diff] [blame] | 138 | /* Mux in UART0 after initialization */ |
| 139 | DB8500_MUX("u0_a_1", "u0", "uart0"), |
| 140 | DB8500_PIN("GPIO0_AJ5", in_pu, "uart0"), /* CTS */ |
| 141 | DB8500_PIN("GPIO1_AJ3", out_hi, "uart0"), /* RTS */ |
| 142 | DB8500_PIN("GPIO2_AH4", in_pu, "uart0"), /* RXD */ |
| 143 | DB8500_PIN("GPIO3_AH3", out_hi, "uart0"), /* TXD */ |
Linus Walleij | 08d98fe | 2012-05-07 10:34:16 +0200 | [diff] [blame] | 144 | /* UART0 sleep state */ |
Linus Walleij | 4c85472 | 2012-09-18 13:23:02 +0200 | [diff] [blame] | 145 | DB8500_PIN_SLEEP("GPIO0_AJ5", slpm_in_wkup_pdis, "uart0"), |
| 146 | DB8500_PIN_SLEEP("GPIO1_AJ3", slpm_out_hi_wkup_pdis, "uart0"), |
| 147 | DB8500_PIN_SLEEP("GPIO2_AH4", slpm_in_wkup_pdis, "uart0"), |
| 148 | DB8500_PIN_SLEEP("GPIO3_AH3", slpm_out_wkup_pdis, "uart0"), |
Linus Walleij | 08d98fe | 2012-05-07 10:34:16 +0200 | [diff] [blame] | 149 | /* MSP1 for ALSA codec */ |
| 150 | DB8500_MUX("msp1txrx_a_1", "msp1", "ux500-msp-i2s.1"), |
| 151 | DB8500_MUX("msp1_a_1", "msp1", "ux500-msp-i2s.1"), |
Linus Walleij | 4c85472 | 2012-09-18 13:23:02 +0200 | [diff] [blame] | 152 | DB8500_PIN("GPIO33_AF2", out_lo_slpm_nowkup, "ux500-msp-i2s.1"), |
| 153 | DB8500_PIN("GPIO34_AE1", in_nopull_slpm_nowkup, "ux500-msp-i2s.1"), |
| 154 | DB8500_PIN("GPIO35_AE2", in_nopull_slpm_nowkup, "ux500-msp-i2s.1"), |
| 155 | DB8500_PIN("GPIO36_AG2", in_nopull_slpm_nowkup, "ux500-msp-i2s.1"), |
Linus Walleij | 08d98fe | 2012-05-07 10:34:16 +0200 | [diff] [blame] | 156 | /* MSP1 sleep state */ |
Linus Walleij | 4c85472 | 2012-09-18 13:23:02 +0200 | [diff] [blame] | 157 | DB8500_PIN_SLEEP("GPIO33_AF2", slpm_out_lo_wkup, "ux500-msp-i2s.1"), |
| 158 | DB8500_PIN_SLEEP("GPIO34_AE1", slpm_in_nopull_wkup, "ux500-msp-i2s.1"), |
| 159 | DB8500_PIN_SLEEP("GPIO35_AE2", slpm_in_nopull_wkup, "ux500-msp-i2s.1"), |
| 160 | DB8500_PIN_SLEEP("GPIO36_AG2", slpm_in_nopull_wkup, "ux500-msp-i2s.1"), |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 161 | /* Mux in LCD data lines 8 thru 11 and LCDA CLK for MCDE TVOUT */ |
| 162 | DB8500_MUX("lcd_d8_d11_a_1", "lcd", "mcde-tvout"), |
| 163 | DB8500_MUX("lcdaclk_b_1", "lcda", "mcde-tvout"), |
| 164 | /* Mux in LCD VSI1 and pull it up for MCDE HDMI output */ |
| 165 | DB8500_MUX("lcdvsi1_a_1", "lcd", "av8100-hdmi"), |
Patrice Chotard | 4401e29 | 2012-09-20 13:55:27 +0200 | [diff] [blame] | 166 | /* Mux in i2c0 block, default state */ |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 167 | DB8500_MUX("i2c0_a_1", "i2c0", "nmk-i2c.0"), |
Patrice Chotard | 4401e29 | 2012-09-20 13:55:27 +0200 | [diff] [blame] | 168 | /* i2c0 sleep state */ |
| 169 | DB8500_PIN_SLEEP("GPIO147_C15", slpm_in_nopull_wkup_pdis, "nmk-i2c.0"), /* SDA */ |
| 170 | DB8500_PIN_SLEEP("GPIO148_B16", slpm_in_nopull_wkup_pdis, "nmk-i2c.0"), /* SCL */ |
| 171 | /* Mux in i2c1 block, default state */ |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 172 | DB8500_MUX("i2c1_b_2", "i2c1", "nmk-i2c.1"), |
Patrice Chotard | 4401e29 | 2012-09-20 13:55:27 +0200 | [diff] [blame] | 173 | /* i2c1 sleep state */ |
| 174 | DB8500_PIN_SLEEP("GPIO16_AD3", slpm_in_nopull_wkup_pdis, "nmk-i2c.1"), /* SDA */ |
| 175 | DB8500_PIN_SLEEP("GPIO17_AD4", slpm_in_nopull_wkup_pdis, "nmk-i2c.1"), /* SCL */ |
| 176 | /* Mux in i2c2 block, default state */ |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 177 | DB8500_MUX("i2c2_b_2", "i2c2", "nmk-i2c.2"), |
Patrice Chotard | 4401e29 | 2012-09-20 13:55:27 +0200 | [diff] [blame] | 178 | /* i2c2 sleep state */ |
| 179 | DB8500_PIN_SLEEP("GPIO10_AF5", slpm_in_nopull_wkup_pdis, "nmk-i2c.2"), /* SDA */ |
| 180 | DB8500_PIN_SLEEP("GPIO11_AG4", slpm_in_nopull_wkup_pdis, "nmk-i2c.2"), /* SCL */ |
| 181 | /* Mux in i2c3 block, default state */ |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 182 | DB8500_MUX("i2c3_c_2", "i2c3", "nmk-i2c.3"), |
Patrice Chotard | 4401e29 | 2012-09-20 13:55:27 +0200 | [diff] [blame] | 183 | /* i2c3 sleep state */ |
| 184 | DB8500_PIN_SLEEP("GPIO229_AG7", slpm_in_nopull_wkup_pdis, "nmk-i2c.3"), /* SDA */ |
| 185 | DB8500_PIN_SLEEP("GPIO230_AF7", slpm_in_nopull_wkup_pdis, "nmk-i2c.3"), /* SCL */ |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 186 | /* Mux in SDI0 (here called MC0) used for removable MMC/SD/SDIO cards */ |
| 187 | DB8500_MUX("mc0_a_1", "mc0", "sdi0"), |
| 188 | DB8500_PIN("GPIO18_AC2", out_hi, "sdi0"), /* CMDDIR */ |
| 189 | DB8500_PIN("GPIO19_AC1", out_hi, "sdi0"), /* DAT0DIR */ |
| 190 | DB8500_PIN("GPIO20_AB4", out_hi, "sdi0"), /* DAT2DIR */ |
| 191 | DB8500_PIN("GPIO22_AA3", in_nopull, "sdi0"), /* FBCLK */ |
| 192 | DB8500_PIN("GPIO23_AA4", out_lo, "sdi0"), /* CLK */ |
| 193 | DB8500_PIN("GPIO24_AB2", in_pu, "sdi0"), /* CMD */ |
| 194 | DB8500_PIN("GPIO25_Y4", in_pu, "sdi0"), /* DAT0 */ |
| 195 | DB8500_PIN("GPIO26_Y2", in_pu, "sdi0"), /* DAT1 */ |
| 196 | DB8500_PIN("GPIO27_AA2", in_pu, "sdi0"), /* DAT2 */ |
| 197 | DB8500_PIN("GPIO28_AA1", in_pu, "sdi0"), /* DAT3 */ |
| 198 | /* Mux in SDI1 (here called MC1) used for SDIO for CW1200 WLAN */ |
| 199 | DB8500_MUX("mc1_a_1", "mc1", "sdi1"), |
| 200 | DB8500_PIN("GPIO208_AH16", out_lo, "sdi1"), /* CLK */ |
| 201 | DB8500_PIN("GPIO209_AG15", in_nopull, "sdi1"), /* FBCLK */ |
| 202 | DB8500_PIN("GPIO210_AJ15", in_pu, "sdi1"), /* CMD */ |
| 203 | DB8500_PIN("GPIO211_AG14", in_pu, "sdi1"), /* DAT0 */ |
| 204 | DB8500_PIN("GPIO212_AF13", in_pu, "sdi1"), /* DAT1 */ |
| 205 | DB8500_PIN("GPIO213_AG13", in_pu, "sdi1"), /* DAT2 */ |
| 206 | DB8500_PIN("GPIO214_AH15", in_pu, "sdi1"), /* DAT3 */ |
| 207 | /* Mux in SDI2 (here called MC2) used for for PoP eMMC */ |
| 208 | DB8500_MUX("mc2_a_1", "mc2", "sdi2"), |
| 209 | DB8500_PIN("GPIO128_A5", out_lo, "sdi2"), /* CLK */ |
| 210 | DB8500_PIN("GPIO129_B4", in_pu, "sdi2"), /* CMD */ |
| 211 | DB8500_PIN("GPIO130_C8", in_nopull, "sdi2"), /* FBCLK */ |
| 212 | DB8500_PIN("GPIO131_A12", in_pu, "sdi2"), /* DAT0 */ |
| 213 | DB8500_PIN("GPIO132_C10", in_pu, "sdi2"), /* DAT1 */ |
| 214 | DB8500_PIN("GPIO133_B10", in_pu, "sdi2"), /* DAT2 */ |
| 215 | DB8500_PIN("GPIO134_B9", in_pu, "sdi2"), /* DAT3 */ |
| 216 | DB8500_PIN("GPIO135_A9", in_pu, "sdi2"), /* DAT4 */ |
| 217 | DB8500_PIN("GPIO136_C7", in_pu, "sdi2"), /* DAT5 */ |
| 218 | DB8500_PIN("GPIO137_A7", in_pu, "sdi2"), /* DAT6 */ |
| 219 | DB8500_PIN("GPIO138_C5", in_pu, "sdi2"), /* DAT7 */ |
| 220 | /* Mux in SDI4 (here called MC4) used for for PCB-mounted eMMC */ |
| 221 | DB8500_MUX("mc4_a_1", "mc4", "sdi4"), |
| 222 | DB8500_PIN("GPIO197_AH24", in_pu, "sdi4"), /* DAT3 */ |
| 223 | DB8500_PIN("GPIO198_AG25", in_pu, "sdi4"), /* DAT2 */ |
| 224 | DB8500_PIN("GPIO199_AH23", in_pu, "sdi4"), /* DAT1 */ |
| 225 | DB8500_PIN("GPIO200_AH26", in_pu, "sdi4"), /* DAT0 */ |
| 226 | DB8500_PIN("GPIO201_AF24", in_pu, "sdi4"), /* CMD */ |
| 227 | DB8500_PIN("GPIO202_AF25", in_nopull, "sdi4"), /* FBCLK */ |
| 228 | DB8500_PIN("GPIO203_AE23", out_lo, "sdi4"), /* CLK */ |
| 229 | DB8500_PIN("GPIO204_AF23", in_pu, "sdi4"), /* DAT7 */ |
| 230 | DB8500_PIN("GPIO205_AG23", in_pu, "sdi4"), /* DAT6 */ |
| 231 | DB8500_PIN("GPIO206_AG24", in_pu, "sdi4"), /* DAT5 */ |
| 232 | DB8500_PIN("GPIO207_AJ23", in_pu, "sdi4"), /* DAT4 */ |
| 233 | /* Mux in USB pins, drive STP high */ |
| 234 | DB8500_MUX("usb_a_1", "usb", "musb-ux500.0"), |
| 235 | DB8500_PIN("GPIO257_AE29", out_hi, "musb-ux500.0"), /* STP */ |
| 236 | /* Mux in SPI2 pins on the "other C1" altfunction */ |
Patrice Chotard | 0fda8f0 | 2012-09-17 18:52:15 +0200 | [diff] [blame] | 237 | DB8500_MUX("spi2_oc1_2", "spi2", "spi2"), |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 238 | DB8500_PIN("GPIO216_AG12", gpio_out_hi, "spi2"), /* FRM */ |
| 239 | DB8500_PIN("GPIO218_AH11", in_pd, "spi2"), /* RXD */ |
| 240 | DB8500_PIN("GPIO215_AH13", out_lo, "spi2"), /* TXD */ |
| 241 | DB8500_PIN("GPIO217_AH12", out_lo, "spi2"), /* CLK */ |
Linus Walleij | 4c85472 | 2012-09-18 13:23:02 +0200 | [diff] [blame] | 242 | /* SPI2 sleep state */ |
| 243 | DB8500_PIN_SLEEP("GPIO218_AH11", slpm_in_wkup_pdis, "spi2"), /* RXD */ |
| 244 | DB8500_PIN_SLEEP("GPIO215_AH13", slpm_out_lo_wkup_pdis, "spi2"), /* TXD */ |
| 245 | DB8500_PIN_SLEEP("GPIO217_AH12", slpm_wkup_pdis, "spi2"), /* CLK */ |
Robert Marklund | c41fac8 | 2011-06-21 09:39:13 +0200 | [diff] [blame] | 246 | }; |
| 247 | |
Linus Walleij | 1baa574 | 2012-04-19 18:27:38 +0200 | [diff] [blame] | 248 | /* |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 249 | * These are specifically for the MOP500 and HREFP (pre-v60) version of the |
| 250 | * board, which utilized a TC35892 GPIO expander instead of using a lot of |
| 251 | * on-chip pins as the HREFv60 and later does. |
Linus Walleij | 1baa574 | 2012-04-19 18:27:38 +0200 | [diff] [blame] | 252 | */ |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 253 | static struct pinctrl_map __initdata mop500_pinmap[] = { |
| 254 | /* Mux in SSP0, pull down RXD pin */ |
| 255 | DB8500_MUX_HOG("ssp0_a_1", "ssp0"), |
| 256 | DB8500_PIN_HOG("GPIO145_C13", pd), |
| 257 | /* |
| 258 | * XENON Flashgun on image processor GPIO (controlled from image |
| 259 | * processor firmware), mux in these image processor GPIO lines 0 |
| 260 | * (XENON_FLASH_ID) and 1 (XENON_READY) on altfunction C and pull up |
| 261 | * the pins. |
| 262 | */ |
| 263 | DB8500_MUX_HOG("ipgpio0_c_1", "ipgpio"), |
| 264 | DB8500_MUX_HOG("ipgpio1_c_1", "ipgpio"), |
| 265 | DB8500_PIN_HOG("GPIO6_AF6", in_pu), |
| 266 | DB8500_PIN_HOG("GPIO7_AG5", in_pu), |
| 267 | /* TC35892 IRQ, pull up the line, let the driver mux in the pin */ |
| 268 | DB8500_PIN_HOG("GPIO217_AH12", gpio_in_pu), |
| 269 | /* Mux in UART1 and set the pull-ups */ |
| 270 | DB8500_MUX_HOG("u1rxtx_a_1", "u1"), |
| 271 | DB8500_MUX_HOG("u1ctsrts_a_1", "u1"), |
| 272 | DB8500_PIN_HOG("GPIO4_AH6", in_pu), /* RXD */ |
| 273 | DB8500_PIN_HOG("GPIO5_AG6", out_hi), /* TXD */ |
| 274 | DB8500_PIN_HOG("GPIO6_AF6", in_pu), /* CTS */ |
| 275 | DB8500_PIN_HOG("GPIO7_AG5", out_hi), /* RTS */ |
| 276 | /* |
| 277 | * Runtime stuff: make it possible to mux in the SKE keypad |
| 278 | * and bias the pins |
| 279 | */ |
| 280 | DB8500_MUX("kp_a_2", "kp", "ske"), |
| 281 | DB8500_PIN("GPIO153_B17", in_pd_slpm_in_pu, "ske"), /* I7 */ |
| 282 | DB8500_PIN("GPIO154_C16", in_pd_slpm_in_pu, "ske"), /* I6 */ |
| 283 | DB8500_PIN("GPIO155_C19", in_pd_slpm_in_pu, "ske"), /* I5 */ |
| 284 | DB8500_PIN("GPIO156_C17", in_pd_slpm_in_pu, "ske"), /* I4 */ |
| 285 | DB8500_PIN("GPIO161_D21", in_pd_slpm_in_pu, "ske"), /* I3 */ |
| 286 | DB8500_PIN("GPIO162_D20", in_pd_slpm_in_pu, "ske"), /* I2 */ |
| 287 | DB8500_PIN("GPIO163_C20", in_pd_slpm_in_pu, "ske"), /* I1 */ |
| 288 | DB8500_PIN("GPIO164_B21", in_pd_slpm_in_pu, "ske"), /* I0 */ |
| 289 | DB8500_PIN("GPIO157_A18", in_pu_slpm_out_lo, "ske"), /* O7 */ |
| 290 | DB8500_PIN("GPIO158_C18", in_pu_slpm_out_lo, "ske"), /* O6 */ |
| 291 | DB8500_PIN("GPIO159_B19", in_pu_slpm_out_lo, "ske"), /* O5 */ |
| 292 | DB8500_PIN("GPIO160_B20", in_pu_slpm_out_lo, "ske"), /* O4 */ |
| 293 | DB8500_PIN("GPIO165_C21", in_pu_slpm_out_lo, "ske"), /* O3 */ |
| 294 | DB8500_PIN("GPIO166_A22", in_pu_slpm_out_lo, "ske"), /* O2 */ |
| 295 | DB8500_PIN("GPIO167_B24", in_pu_slpm_out_lo, "ske"), /* O1 */ |
| 296 | DB8500_PIN("GPIO168_C22", in_pu_slpm_out_lo, "ske"), /* O0 */ |
| 297 | /* Mux in and drive the SDI0 DAT31DIR line high at runtime */ |
| 298 | DB8500_MUX("mc0dat31dir_a_1", "mc0", "sdi0"), |
| 299 | DB8500_PIN("GPIO21_AB3", out_hi, "sdi0"), |
Linus Walleij | 1baa574 | 2012-04-19 18:27:38 +0200 | [diff] [blame] | 300 | }; |
| 301 | |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 302 | /* |
| 303 | * The HREFv60 series of platforms is using available pins on the DB8500 |
| 304 | * insteaf of the Toshiba I2C GPIO expander, reusing some pins like the SSP0 |
| 305 | * and SSP1 ports (previously connected to the AB8500) as generic GPIO lines. |
| 306 | */ |
| 307 | static struct pinctrl_map __initdata hrefv60_pinmap[] = { |
| 308 | /* Drive WLAN_ENA low */ |
| 309 | DB8500_PIN_HOG("GPIO85_D5", gpio_out_lo), /* WLAN_ENA */ |
| 310 | /* |
| 311 | * XENON Flashgun on image processor GPIO (controlled from image |
| 312 | * processor firmware), mux in these image processor GPIO lines 0 |
| 313 | * (XENON_FLASH_ID), 1 (XENON_READY) and there is an assistant |
| 314 | * LED on IP GPIO 4 (XENON_EN2) on altfunction C, that need bias |
| 315 | * from GPIO21 so pull up 0, 1 and drive 4 and GPIO21 low as output. |
| 316 | */ |
| 317 | DB8500_MUX_HOG("ipgpio0_c_1", "ipgpio"), |
| 318 | DB8500_MUX_HOG("ipgpio1_c_1", "ipgpio"), |
| 319 | DB8500_MUX_HOG("ipgpio4_c_1", "ipgpio"), |
| 320 | DB8500_PIN_HOG("GPIO6_AF6", in_pu), /* XENON_FLASH_ID */ |
| 321 | DB8500_PIN_HOG("GPIO7_AG5", in_pu), /* XENON_READY */ |
| 322 | DB8500_PIN_HOG("GPIO21_AB3", gpio_out_lo), /* XENON_EN1 */ |
| 323 | DB8500_PIN_HOG("GPIO64_F3", out_lo), /* XENON_EN2 */ |
| 324 | /* Magnetometer uses GPIO 31 and 32, pull these up/down respectively */ |
| 325 | DB8500_PIN_HOG("GPIO31_V3", gpio_in_pu), /* EN1 */ |
| 326 | DB8500_PIN_HOG("GPIO32_V2", gpio_in_pd), /* DRDY */ |
| 327 | /* |
| 328 | * Display Interface 1 uses GPIO 65 for RST (reset). |
| 329 | * Display Interface 2 uses GPIO 66 for RST (reset). |
| 330 | * Drive DISP1 reset high (not reset), driver DISP2 reset low (reset) |
| 331 | */ |
| 332 | DB8500_PIN_HOG("GPIO65_F1", gpio_out_hi), /* DISP1 NO RST */ |
| 333 | DB8500_PIN_HOG("GPIO66_G3", gpio_out_lo), /* DISP2 RST */ |
| 334 | /* |
| 335 | * Touch screen uses GPIO 143 for RST1, GPIO 146 for RST2 and |
| 336 | * GPIO 67 for interrupts. Pull-up the IRQ line and drive both |
| 337 | * reset signals low. |
| 338 | */ |
| 339 | DB8500_PIN_HOG("GPIO143_D12", gpio_out_lo), /* TOUCH_RST1 */ |
| 340 | DB8500_PIN_HOG("GPIO67_G2", gpio_in_pu), /* TOUCH_INT2 */ |
| 341 | DB8500_PIN_HOG("GPIO146_D13", gpio_out_lo), /* TOUCH_RST2 */ |
| 342 | /* |
| 343 | * Drive D19-D23 for the ETM PTM trace interface low, |
| 344 | * (presumably pins are unconnected therefore grounded here, |
| 345 | * the "other alt C1" setting enables these pins) |
| 346 | */ |
| 347 | DB8500_PIN_HOG("GPIO70_G5", gpio_out_lo), |
| 348 | DB8500_PIN_HOG("GPIO71_G4", gpio_out_lo), |
| 349 | DB8500_PIN_HOG("GPIO72_H4", gpio_out_lo), |
| 350 | DB8500_PIN_HOG("GPIO73_H3", gpio_out_lo), |
| 351 | DB8500_PIN_HOG("GPIO74_J3", gpio_out_lo), |
| 352 | /* NAHJ CTRL on GPIO 76 to low, CTRL_INV on GPIO216 to high */ |
| 353 | DB8500_PIN_HOG("GPIO76_J2", gpio_out_lo), /* CTRL */ |
| 354 | DB8500_PIN_HOG("GPIO216_AG12", gpio_out_hi), /* CTRL_INV */ |
| 355 | /* NFC ENA and RESET to low, pulldown IRQ line */ |
| 356 | DB8500_PIN_HOG("GPIO77_H1", gpio_out_lo), /* NFC_ENA */ |
| 357 | DB8500_PIN_HOG("GPIO144_B13", gpio_in_pd), /* NFC_IRQ */ |
| 358 | DB8500_PIN_HOG("GPIO142_C11", gpio_out_lo), /* NFC_RESET */ |
| 359 | /* |
| 360 | * SKE keyboard partly on alt A and partly on "Other alt C1" |
| 361 | * Driver KP_O1,2,3,6,7 low and pull up KP_I 0,2,3 for three |
| 362 | * rows of 6 keys, then pull up force sensing interrup and |
| 363 | * drive reset and force sensing WU low. |
| 364 | */ |
| 365 | DB8500_MUX_HOG("kp_a_1", "kp"), |
| 366 | DB8500_MUX_HOG("kp_oc1_1", "kp"), |
| 367 | DB8500_PIN_HOG("GPIO90_A3", out_lo), /* KP_O1 */ |
| 368 | DB8500_PIN_HOG("GPIO87_B3", out_lo), /* KP_O2 */ |
| 369 | DB8500_PIN_HOG("GPIO86_C6", out_lo), /* KP_O3 */ |
| 370 | DB8500_PIN_HOG("GPIO96_D8", out_lo), /* KP_O6 */ |
| 371 | DB8500_PIN_HOG("GPIO94_D7", out_lo), /* KP_O7 */ |
| 372 | DB8500_PIN_HOG("GPIO93_B7", in_pu), /* KP_I0 */ |
| 373 | DB8500_PIN_HOG("GPIO89_E6", in_pu), /* KP_I2 */ |
| 374 | DB8500_PIN_HOG("GPIO88_C4", in_pu), /* KP_I3 */ |
| 375 | DB8500_PIN_HOG("GPIO91_B6", gpio_in_pu), /* FORCE_SENSING_INT */ |
| 376 | DB8500_PIN_HOG("GPIO92_D6", gpio_out_lo), /* FORCE_SENSING_RST */ |
| 377 | DB8500_PIN_HOG("GPIO97_D9", gpio_out_lo), /* FORCE_SENSING_WU */ |
| 378 | /* DiPro Sensor interrupt */ |
| 379 | DB8500_PIN_HOG("GPIO139_C9", gpio_in_pu), /* DIPRO_INT */ |
| 380 | /* Audio Amplifier HF enable */ |
| 381 | DB8500_PIN_HOG("GPIO149_B14", gpio_out_hi), /* VAUDIO_HF_EN, enable MAX8968 */ |
| 382 | /* GBF interface, pull low to reset state */ |
| 383 | DB8500_PIN_HOG("GPIO171_D23", gpio_out_lo), /* GBF_ENA_RESET */ |
| 384 | /* MSP : HDTV INTERFACE GPIO line */ |
| 385 | DB8500_PIN_HOG("GPIO192_AJ27", gpio_in_pd), |
| 386 | /* Accelerometer interrupt lines */ |
| 387 | DB8500_PIN_HOG("GPIO82_C1", gpio_in_pu), /* ACC_INT1 */ |
| 388 | DB8500_PIN_HOG("GPIO83_D3", gpio_in_pu), /* ACC_INT2 */ |
| 389 | /* SD card detect GPIO pin */ |
| 390 | DB8500_PIN_HOG("GPIO95_E8", gpio_in_pu), |
| 391 | /* |
| 392 | * Runtime stuff |
| 393 | * Pull up/down of some sensor GPIO pins, for proximity, HAL sensor |
| 394 | * etc. |
| 395 | */ |
| 396 | DB8500_PIN("GPIO217_AH12", gpio_in_pu_slpm_gpio_nopull, "gpio-keys.0"), |
| 397 | DB8500_PIN("GPIO145_C13", gpio_in_pd_slpm_gpio_nopull, "gpio-keys.0"), |
| 398 | DB8500_PIN("GPIO139_C9", gpio_in_pu_slpm_gpio_nopull, "gpio-keys.0"), |
| 399 | /* |
| 400 | * Make it possible to mux in the SKE keypad and bias the pins |
| 401 | * FIXME: what's the point with this on HREFv60? KP/SKE is already |
| 402 | * muxed in at another place! Enabling this will bork. |
| 403 | */ |
| 404 | DB8500_MUX("kp_a_2", "kp", "ske"), |
| 405 | DB8500_PIN("GPIO153_B17", in_pd_slpm_in_pu, "ske"), /* I7 */ |
| 406 | DB8500_PIN("GPIO154_C16", in_pd_slpm_in_pu, "ske"), /* I6 */ |
| 407 | DB8500_PIN("GPIO155_C19", in_pd_slpm_in_pu, "ske"), /* I5 */ |
| 408 | DB8500_PIN("GPIO156_C17", in_pd_slpm_in_pu, "ske"), /* I4 */ |
| 409 | DB8500_PIN("GPIO161_D21", in_pd_slpm_in_pu, "ske"), /* I3 */ |
| 410 | DB8500_PIN("GPIO162_D20", in_pd_slpm_in_pu, "ske"), /* I2 */ |
| 411 | DB8500_PIN("GPIO163_C20", in_pd_slpm_in_pu, "ske"), /* I1 */ |
| 412 | DB8500_PIN("GPIO164_B21", in_pd_slpm_in_pu, "ske"), /* I0 */ |
| 413 | DB8500_PIN("GPIO157_A18", in_pu_slpm_out_lo, "ske"), /* O7 */ |
| 414 | DB8500_PIN("GPIO158_C18", in_pu_slpm_out_lo, "ske"), /* O6 */ |
| 415 | DB8500_PIN("GPIO159_B19", in_pu_slpm_out_lo, "ske"), /* O5 */ |
| 416 | DB8500_PIN("GPIO160_B20", in_pu_slpm_out_lo, "ske"), /* O4 */ |
| 417 | DB8500_PIN("GPIO165_C21", in_pu_slpm_out_lo, "ske"), /* O3 */ |
| 418 | DB8500_PIN("GPIO166_A22", in_pu_slpm_out_lo, "ske"), /* O2 */ |
| 419 | DB8500_PIN("GPIO167_B24", in_pu_slpm_out_lo, "ske"), /* O1 */ |
| 420 | DB8500_PIN("GPIO168_C22", in_pu_slpm_out_lo, "ske"), /* O0 */ |
Linus Walleij | 1baa574 | 2012-04-19 18:27:38 +0200 | [diff] [blame] | 421 | }; |
| 422 | |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 423 | static struct pinctrl_map __initdata u9500_pinmap[] = { |
| 424 | /* Mux in UART1 (just RX/TX) and set the pull-ups */ |
| 425 | DB8500_MUX_HOG("u1rxtx_a_1", "u1"), |
| 426 | DB8500_PIN_HOG("GPIO4_AH6", in_pu), |
| 427 | DB8500_PIN_HOG("GPIO5_AG6", out_hi), |
| 428 | /* WLAN_IRQ line */ |
| 429 | DB8500_PIN_HOG("GPIO144_B13", gpio_in_pu), |
| 430 | /* HSI */ |
| 431 | DB8500_MUX_HOG("hsir_a_1", "hsi"), |
Patrice Chotard | 6fc84b841 | 2012-09-05 10:52:25 +0200 | [diff] [blame] | 432 | DB8500_MUX_HOG("hsit_a_2", "hsi"), |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 433 | DB8500_PIN_HOG("GPIO219_AG10", in_pd), /* RX FLA0 */ |
| 434 | DB8500_PIN_HOG("GPIO220_AH10", in_pd), /* RX DAT0 */ |
| 435 | DB8500_PIN_HOG("GPIO221_AJ11", out_lo), /* RX RDY0 */ |
| 436 | DB8500_PIN_HOG("GPIO222_AJ9", out_lo), /* TX FLA0 */ |
| 437 | DB8500_PIN_HOG("GPIO223_AH9", out_lo), /* TX DAT0 */ |
| 438 | DB8500_PIN_HOG("GPIO224_AG9", in_pd), /* TX RDY0 */ |
| 439 | DB8500_PIN_HOG("GPIO225_AG8", in_pd), /* CAWAKE0 */ |
Patrice Chotard | 6fc84b841 | 2012-09-05 10:52:25 +0200 | [diff] [blame] | 440 | DB8500_PIN_HOG("GPIO226_AF8", gpio_out_hi), /* ACWAKE0 */ |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 441 | }; |
| 442 | |
| 443 | static struct pinctrl_map __initdata u8500_pinmap[] = { |
| 444 | DB8500_PIN_HOG("GPIO226_AF8", gpio_out_lo), /* WLAN_PMU_EN */ |
| 445 | DB8500_PIN_HOG("GPIO4_AH6", gpio_in_pu), /* WLAN_IRQ */ |
| 446 | }; |
| 447 | |
| 448 | static struct pinctrl_map __initdata snowball_pinmap[] = { |
| 449 | /* Mux in SSP0 connected to AB8500, pull down RXD pin */ |
| 450 | DB8500_MUX_HOG("ssp0_a_1", "ssp0"), |
| 451 | DB8500_PIN_HOG("GPIO145_C13", pd), |
| 452 | /* Always drive the MC0 DAT31DIR line high on these boards */ |
| 453 | DB8500_PIN_HOG("GPIO21_AB3", out_hi), |
| 454 | /* Mux in "SM" which is used for the SMSC911x Ethernet adapter */ |
| 455 | DB8500_MUX_HOG("sm_b_1", "sm"), |
| 456 | /* Drive RSTn_LAN high */ |
| 457 | DB8500_PIN_HOG("GPIO141_C12", gpio_out_hi), |
| 458 | /* Accelerometer/Magnetometer */ |
| 459 | DB8500_PIN_HOG("GPIO163_C20", gpio_in_pu), /* ACCEL_IRQ1 */ |
| 460 | DB8500_PIN_HOG("GPIO164_B21", gpio_in_pu), /* ACCEL_IRQ2 */ |
| 461 | DB8500_PIN_HOG("GPIO165_C21", gpio_in_pu), /* MAG_DRDY */ |
| 462 | /* WLAN/GBF */ |
| 463 | DB8500_PIN_HOG("GPIO161_D21", gpio_out_lo), /* WLAN_PMU_EN */ |
| 464 | DB8500_PIN_HOG("GPIO171_D23", gpio_out_hi), /* GBF_ENA */ |
| 465 | DB8500_PIN_HOG("GPIO215_AH13", gpio_out_lo), /* WLAN_ENA */ |
| 466 | DB8500_PIN_HOG("GPIO216_AG12", gpio_in_pu), /* WLAN_IRQ */ |
Linus Walleij | 1baa574 | 2012-04-19 18:27:38 +0200 | [diff] [blame] | 467 | }; |
| 468 | |
| 469 | /* |
| 470 | * passing "pinsfor=" in kernel cmdline allows for custom |
| 471 | * configuration of GPIOs on u8500 derived boards. |
| 472 | */ |
| 473 | static int __init early_pinsfor(char *p) |
| 474 | { |
| 475 | pinsfor = PINS_FOR_DEFAULT; |
| 476 | |
| 477 | if (strcmp(p, "u9500-21") == 0) |
| 478 | pinsfor = PINS_FOR_U9500; |
| 479 | |
| 480 | return 0; |
| 481 | } |
| 482 | early_param("pinsfor", early_pinsfor); |
| 483 | |
| 484 | int pins_for_u9500(void) |
| 485 | { |
| 486 | if (pinsfor == PINS_FOR_U9500) |
| 487 | return 1; |
| 488 | |
| 489 | return 0; |
| 490 | } |
| 491 | |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 492 | static void __init mop500_href_family_pinmaps_init(void) |
Rabin Vincent | fe05203 | 2011-02-11 17:07:21 -0700 | [diff] [blame] | 493 | { |
Linus Walleij | 1baa574 | 2012-04-19 18:27:38 +0200 | [diff] [blame] | 494 | switch (pinsfor) { |
| 495 | case PINS_FOR_U9500: |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 496 | pinctrl_register_mappings(u9500_pinmap, |
| 497 | ARRAY_SIZE(u9500_pinmap)); |
Linus Walleij | 1baa574 | 2012-04-19 18:27:38 +0200 | [diff] [blame] | 498 | break; |
Linus Walleij | 1baa574 | 2012-04-19 18:27:38 +0200 | [diff] [blame] | 499 | case PINS_FOR_DEFAULT: |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 500 | pinctrl_register_mappings(u8500_pinmap, |
| 501 | ARRAY_SIZE(u8500_pinmap)); |
Linus Walleij | 1baa574 | 2012-04-19 18:27:38 +0200 | [diff] [blame] | 502 | default: |
| 503 | break; |
| 504 | } |
Lee Jones | 110c2c2 | 2011-08-26 16:54:07 +0100 | [diff] [blame] | 505 | } |
| 506 | |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 507 | void __init mop500_pinmaps_init(void) |
Lee Jones | 110c2c2 | 2011-08-26 16:54:07 +0100 | [diff] [blame] | 508 | { |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 509 | pinctrl_register_mappings(mop500_family_pinmap, |
| 510 | ARRAY_SIZE(mop500_family_pinmap)); |
| 511 | pinctrl_register_mappings(mop500_pinmap, |
| 512 | ARRAY_SIZE(mop500_pinmap)); |
| 513 | mop500_href_family_pinmaps_init(); |
Lee Jones | 110c2c2 | 2011-08-26 16:54:07 +0100 | [diff] [blame] | 514 | } |
| 515 | |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 516 | void __init snowball_pinmaps_init(void) |
Lee Jones | 110c2c2 | 2011-08-26 16:54:07 +0100 | [diff] [blame] | 517 | { |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 518 | pinctrl_register_mappings(mop500_family_pinmap, |
| 519 | ARRAY_SIZE(mop500_family_pinmap)); |
| 520 | pinctrl_register_mappings(snowball_pinmap, |
| 521 | ARRAY_SIZE(snowball_pinmap)); |
| 522 | pinctrl_register_mappings(u8500_pinmap, |
| 523 | ARRAY_SIZE(u8500_pinmap)); |
| 524 | } |
Lee Jones | 110c2c2 | 2011-08-26 16:54:07 +0100 | [diff] [blame] | 525 | |
Linus Walleij | ed781d39 | 2012-05-03 00:44:52 +0200 | [diff] [blame] | 526 | void __init hrefv60_pinmaps_init(void) |
| 527 | { |
| 528 | pinctrl_register_mappings(mop500_family_pinmap, |
| 529 | ARRAY_SIZE(mop500_family_pinmap)); |
| 530 | pinctrl_register_mappings(hrefv60_pinmap, |
| 531 | ARRAY_SIZE(hrefv60_pinmap)); |
| 532 | mop500_href_family_pinmaps_init(); |
Rabin Vincent | fe05203 | 2011-02-11 17:07:21 -0700 | [diff] [blame] | 533 | } |