diff options
| author | Joonwoo Park <joonwoop@codeaurora.org> | 2015-01-30 05:04:01 -0500 |
|---|---|---|
| committer | Linus Walleij <linus.walleij@linaro.org> | 2015-01-30 08:35:09 -0500 |
| commit | 5373a2c5abb6e313c472733dc38c424696273951 (patch) | |
| tree | 73cc75136cd13e01711335eff96d1ce160d41470 /drivers/pinctrl/qcom | |
| parent | bb77f06dd3d0ea6c34b2b5e16bfd8dcb524b252e (diff) | |
pinctrl: qcom: Add msm8916 pinctrl driver
Add initial pinctrl driver to support pin configuration with
pinctrl framework for msm8916.
Signed-off-by: Joonwoo Park <joonwoop@codeaurora.org>
Signed-off-by: Stanimir Varbanov <svarbanov@mm-sol.com>
Reviewed-by: Bjorn Andersson <bjorn.andersson@sonymobile.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/qcom')
| -rw-r--r-- | drivers/pinctrl/qcom/Kconfig | 8 | ||||
| -rw-r--r-- | drivers/pinctrl/qcom/Makefile | 1 | ||||
| -rw-r--r-- | drivers/pinctrl/qcom/pinctrl-msm8916.c | 1005 |
3 files changed, 1014 insertions, 0 deletions
diff --git a/drivers/pinctrl/qcom/Kconfig b/drivers/pinctrl/qcom/Kconfig index 3cd243c26b7d..ea575f60f001 100644 --- a/drivers/pinctrl/qcom/Kconfig +++ b/drivers/pinctrl/qcom/Kconfig | |||
| @@ -47,6 +47,14 @@ config PINCTRL_MSM8X74 | |||
| 47 | This is the pinctrl, pinmux, pinconf and gpiolib driver for the | 47 | This is the pinctrl, pinmux, pinconf and gpiolib driver for the |
| 48 | Qualcomm TLMM block found in the Qualcomm 8974 platform. | 48 | Qualcomm TLMM block found in the Qualcomm 8974 platform. |
| 49 | 49 | ||
| 50 | config PINCTRL_MSM8916 | ||
| 51 | tristate "Qualcomm 8916 pin controller driver" | ||
| 52 | depends on GPIOLIB && OF | ||
| 53 | select PINCTRL_MSM | ||
| 54 | help | ||
| 55 | This is the pinctrl, pinmux, pinconf and gpiolib driver for the | ||
| 56 | Qualcomm TLMM block found on the Qualcomm 8916 platform. | ||
| 57 | |||
| 50 | config PINCTRL_QCOM_SPMI_PMIC | 58 | config PINCTRL_QCOM_SPMI_PMIC |
| 51 | tristate "Qualcomm SPMI PMIC pin controller driver" | 59 | tristate "Qualcomm SPMI PMIC pin controller driver" |
| 52 | depends on GPIOLIB && OF && SPMI | 60 | depends on GPIOLIB && OF && SPMI |
diff --git a/drivers/pinctrl/qcom/Makefile b/drivers/pinctrl/qcom/Makefile index bfd79af5f982..68958702917d 100644 --- a/drivers/pinctrl/qcom/Makefile +++ b/drivers/pinctrl/qcom/Makefile | |||
| @@ -5,5 +5,6 @@ obj-$(CONFIG_PINCTRL_APQ8084) += pinctrl-apq8084.o | |||
| 5 | obj-$(CONFIG_PINCTRL_IPQ8064) += pinctrl-ipq8064.o | 5 | obj-$(CONFIG_PINCTRL_IPQ8064) += pinctrl-ipq8064.o |
| 6 | obj-$(CONFIG_PINCTRL_MSM8960) += pinctrl-msm8960.o | 6 | obj-$(CONFIG_PINCTRL_MSM8960) += pinctrl-msm8960.o |
| 7 | obj-$(CONFIG_PINCTRL_MSM8X74) += pinctrl-msm8x74.o | 7 | obj-$(CONFIG_PINCTRL_MSM8X74) += pinctrl-msm8x74.o |
| 8 | obj-$(CONFIG_PINCTRL_MSM8916) += pinctrl-msm8916.o | ||
| 8 | obj-$(CONFIG_PINCTRL_QCOM_SPMI_PMIC) += pinctrl-spmi-gpio.o | 9 | obj-$(CONFIG_PINCTRL_QCOM_SPMI_PMIC) += pinctrl-spmi-gpio.o |
| 9 | obj-$(CONFIG_PINCTRL_QCOM_SPMI_PMIC) += pinctrl-spmi-mpp.o | 10 | obj-$(CONFIG_PINCTRL_QCOM_SPMI_PMIC) += pinctrl-spmi-mpp.o |
diff --git a/drivers/pinctrl/qcom/pinctrl-msm8916.c b/drivers/pinctrl/qcom/pinctrl-msm8916.c new file mode 100644 index 000000000000..20ebf244e80d --- /dev/null +++ b/drivers/pinctrl/qcom/pinctrl-msm8916.c | |||
| @@ -0,0 +1,1005 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2015, The Linux Foundation. All rights reserved. | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License version 2 and | ||
| 6 | * only version 2 as published by the Free Software Foundation. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | */ | ||
| 13 | |||
| 14 | #include <linux/module.h> | ||
| 15 | #include <linux/of.h> | ||
| 16 | #include <linux/platform_device.h> | ||
| 17 | #include <linux/pinctrl/pinctrl.h> | ||
| 18 | |||
| 19 | #include "pinctrl-msm.h" | ||
| 20 | |||
| 21 | static const struct pinctrl_pin_desc msm8916_pins[] = { | ||
| 22 | PINCTRL_PIN(0, "GPIO_0"), | ||
| 23 | PINCTRL_PIN(1, "GPIO_1"), | ||
| 24 | PINCTRL_PIN(2, "GPIO_2"), | ||
| 25 | PINCTRL_PIN(3, "GPIO_3"), | ||
| 26 | PINCTRL_PIN(4, "GPIO_4"), | ||
| 27 | PINCTRL_PIN(5, "GPIO_5"), | ||
| 28 | PINCTRL_PIN(6, "GPIO_6"), | ||
| 29 | PINCTRL_PIN(7, "GPIO_7"), | ||
| 30 | PINCTRL_PIN(8, "GPIO_8"), | ||
| 31 | PINCTRL_PIN(9, "GPIO_9"), | ||
| 32 | PINCTRL_PIN(10, "GPIO_10"), | ||
| 33 | PINCTRL_PIN(11, "GPIO_11"), | ||
| 34 | PINCTRL_PIN(12, "GPIO_12"), | ||
| 35 | PINCTRL_PIN(13, "GPIO_13"), | ||
| 36 | PINCTRL_PIN(14, "GPIO_14"), | ||
| 37 | PINCTRL_PIN(15, "GPIO_15"), | ||
| 38 | PINCTRL_PIN(16, "GPIO_16"), | ||
| 39 | PINCTRL_PIN(17, "GPIO_17"), | ||
| 40 | PINCTRL_PIN(18, "GPIO_18"), | ||
| 41 | PINCTRL_PIN(19, "GPIO_19"), | ||
| 42 | PINCTRL_PIN(20, "GPIO_20"), | ||
| 43 | PINCTRL_PIN(21, "GPIO_21"), | ||
| 44 | PINCTRL_PIN(22, "GPIO_22"), | ||
| 45 | PINCTRL_PIN(23, "GPIO_23"), | ||
| 46 | PINCTRL_PIN(24, "GPIO_24"), | ||
| 47 | PINCTRL_PIN(25, "GPIO_25"), | ||
| 48 | PINCTRL_PIN(26, "GPIO_26"), | ||
| 49 | PINCTRL_PIN(27, "GPIO_27"), | ||
| 50 | PINCTRL_PIN(28, "GPIO_28"), | ||
| 51 | PINCTRL_PIN(29, "GPIO_29"), | ||
| 52 | PINCTRL_PIN(30, "GPIO_30"), | ||
| 53 | PINCTRL_PIN(31, "GPIO_31"), | ||
| 54 | PINCTRL_PIN(32, "GPIO_32"), | ||
| 55 | PINCTRL_PIN(33, "GPIO_33"), | ||
| 56 | PINCTRL_PIN(34, "GPIO_34"), | ||
| 57 | PINCTRL_PIN(35, "GPIO_35"), | ||
| 58 | PINCTRL_PIN(36, "GPIO_36"), | ||
| 59 | PINCTRL_PIN(37, "GPIO_37"), | ||
| 60 | PINCTRL_PIN(38, "GPIO_38"), | ||
| 61 | PINCTRL_PIN(39, "GPIO_39"), | ||
| 62 | PINCTRL_PIN(40, "GPIO_40"), | ||
| 63 | PINCTRL_PIN(41, "GPIO_41"), | ||
| 64 | PINCTRL_PIN(42, "GPIO_42"), | ||
| 65 | PINCTRL_PIN(43, "GPIO_43"), | ||
| 66 | PINCTRL_PIN(44, "GPIO_44"), | ||
| 67 | PINCTRL_PIN(45, "GPIO_45"), | ||
| 68 | PINCTRL_PIN(46, "GPIO_46"), | ||
| 69 | PINCTRL_PIN(47, "GPIO_47"), | ||
| 70 | PINCTRL_PIN(48, "GPIO_48"), | ||
| 71 | PINCTRL_PIN(49, "GPIO_49"), | ||
| 72 | PINCTRL_PIN(50, "GPIO_50"), | ||
| 73 | PINCTRL_PIN(51, "GPIO_51"), | ||
| 74 | PINCTRL_PIN(52, "GPIO_52"), | ||
| 75 | PINCTRL_PIN(53, "GPIO_53"), | ||
| 76 | PINCTRL_PIN(54, "GPIO_54"), | ||
| 77 | PINCTRL_PIN(55, "GPIO_55"), | ||
| 78 | PINCTRL_PIN(56, "GPIO_56"), | ||
| 79 | PINCTRL_PIN(57, "GPIO_57"), | ||
| 80 | PINCTRL_PIN(58, "GPIO_58"), | ||
| 81 | PINCTRL_PIN(59, "GPIO_59"), | ||
| 82 | PINCTRL_PIN(60, "GPIO_60"), | ||
| 83 | PINCTRL_PIN(61, "GPIO_61"), | ||
| 84 | PINCTRL_PIN(62, "GPIO_62"), | ||
| 85 | PINCTRL_PIN(63, "GPIO_63"), | ||
| 86 | PINCTRL_PIN(64, "GPIO_64"), | ||
| 87 | PINCTRL_PIN(65, "GPIO_65"), | ||
| 88 | PINCTRL_PIN(66, "GPIO_66"), | ||
| 89 | PINCTRL_PIN(67, "GPIO_67"), | ||
| 90 | PINCTRL_PIN(68, "GPIO_68"), | ||
| 91 | PINCTRL_PIN(69, "GPIO_69"), | ||
| 92 | PINCTRL_PIN(70, "GPIO_70"), | ||
| 93 | PINCTRL_PIN(71, "GPIO_71"), | ||
| 94 | PINCTRL_PIN(72, "GPIO_72"), | ||
| 95 | PINCTRL_PIN(73, "GPIO_73"), | ||
| 96 | PINCTRL_PIN(74, "GPIO_74"), | ||
| 97 | PINCTRL_PIN(75, "GPIO_75"), | ||
| 98 | PINCTRL_PIN(76, "GPIO_76"), | ||
| 99 | PINCTRL_PIN(77, "GPIO_77"), | ||
| 100 | PINCTRL_PIN(78, "GPIO_78"), | ||
| 101 | PINCTRL_PIN(79, "GPIO_79"), | ||
| 102 | PINCTRL_PIN(80, "GPIO_80"), | ||
| 103 | PINCTRL_PIN(81, "GPIO_81"), | ||
| 104 | PINCTRL_PIN(82, "GPIO_82"), | ||
| 105 | PINCTRL_PIN(83, "GPIO_83"), | ||
| 106 | PINCTRL_PIN(84, "GPIO_84"), | ||
| 107 | PINCTRL_PIN(85, "GPIO_85"), | ||
| 108 | PINCTRL_PIN(86, "GPIO_86"), | ||
| 109 | PINCTRL_PIN(87, "GPIO_87"), | ||
| 110 | PINCTRL_PIN(88, "GPIO_88"), | ||
| 111 | PINCTRL_PIN(89, "GPIO_89"), | ||
| 112 | PINCTRL_PIN(90, "GPIO_90"), | ||
| 113 | PINCTRL_PIN(91, "GPIO_91"), | ||
| 114 | PINCTRL_PIN(92, "GPIO_92"), | ||
| 115 | PINCTRL_PIN(93, "GPIO_93"), | ||
| 116 | PINCTRL_PIN(94, "GPIO_94"), | ||
| 117 | PINCTRL_PIN(95, "GPIO_95"), | ||
| 118 | PINCTRL_PIN(96, "GPIO_96"), | ||
| 119 | PINCTRL_PIN(97, "GPIO_97"), | ||
| 120 | PINCTRL_PIN(98, "GPIO_98"), | ||
| 121 | PINCTRL_PIN(99, "GPIO_99"), | ||
| 122 | PINCTRL_PIN(100, "GPIO_100"), | ||
| 123 | PINCTRL_PIN(101, "GPIO_101"), | ||
| 124 | PINCTRL_PIN(102, "GPIO_102"), | ||
| 125 | PINCTRL_PIN(103, "GPIO_103"), | ||
| 126 | PINCTRL_PIN(104, "GPIO_104"), | ||
| 127 | PINCTRL_PIN(105, "GPIO_105"), | ||
| 128 | PINCTRL_PIN(106, "GPIO_106"), | ||
| 129 | PINCTRL_PIN(107, "GPIO_107"), | ||
| 130 | PINCTRL_PIN(108, "GPIO_108"), | ||
| 131 | PINCTRL_PIN(109, "GPIO_109"), | ||
| 132 | PINCTRL_PIN(110, "GPIO_110"), | ||
| 133 | PINCTRL_PIN(111, "GPIO_111"), | ||
| 134 | PINCTRL_PIN(112, "GPIO_112"), | ||
| 135 | PINCTRL_PIN(113, "GPIO_113"), | ||
| 136 | PINCTRL_PIN(114, "GPIO_114"), | ||
| 137 | PINCTRL_PIN(115, "GPIO_115"), | ||
| 138 | PINCTRL_PIN(116, "GPIO_116"), | ||
| 139 | PINCTRL_PIN(117, "GPIO_117"), | ||
| 140 | PINCTRL_PIN(118, "GPIO_118"), | ||
| 141 | PINCTRL_PIN(119, "GPIO_119"), | ||
| 142 | PINCTRL_PIN(120, "GPIO_120"), | ||
| 143 | PINCTRL_PIN(121, "GPIO_121"), | ||
| 144 | PINCTRL_PIN(122, "SDC1_CLK"), | ||
| 145 | PINCTRL_PIN(123, "SDC1_CMD"), | ||
| 146 | PINCTRL_PIN(124, "SDC1_DATA"), | ||
| 147 | PINCTRL_PIN(125, "SDC2_CLK"), | ||
| 148 | PINCTRL_PIN(126, "SDC2_CMD"), | ||
| 149 | PINCTRL_PIN(127, "SDC2_DATA"), | ||
| 150 | PINCTRL_PIN(128, "QDSD_CLK"), | ||
| 151 | PINCTRL_PIN(129, "QDSD_CMD"), | ||
| 152 | PINCTRL_PIN(130, "QDSD_DATA0"), | ||
| 153 | PINCTRL_PIN(131, "QDSD_DATA1"), | ||
| 154 | PINCTRL_PIN(132, "QDSD_DATA2"), | ||
| 155 | PINCTRL_PIN(133, "QDSD_DATA3"), | ||
| 156 | }; | ||
| 157 | |||
| 158 | #define DECLARE_MSM_GPIO_PINS(pin) \ | ||
| 159 | static const unsigned int gpio##pin##_pins[] = { pin } | ||
| 160 | |||
| 161 | DECLARE_MSM_GPIO_PINS(0); | ||
| 162 | DECLARE_MSM_GPIO_PINS(1); | ||
| 163 | DECLARE_MSM_GPIO_PINS(2); | ||
| 164 | DECLARE_MSM_GPIO_PINS(3); | ||
| 165 | DECLARE_MSM_GPIO_PINS(4); | ||
| 166 | DECLARE_MSM_GPIO_PINS(5); | ||
| 167 | DECLARE_MSM_GPIO_PINS(6); | ||
| 168 | DECLARE_MSM_GPIO_PINS(7); | ||
| 169 | DECLARE_MSM_GPIO_PINS(8); | ||
| 170 | DECLARE_MSM_GPIO_PINS(9); | ||
| 171 | DECLARE_MSM_GPIO_PINS(10); | ||
| 172 | DECLARE_MSM_GPIO_PINS(11); | ||
| 173 | DECLARE_MSM_GPIO_PINS(12); | ||
| 174 | DECLARE_MSM_GPIO_PINS(13); | ||
| 175 | DECLARE_MSM_GPIO_PINS(14); | ||
| 176 | DECLARE_MSM_GPIO_PINS(15); | ||
| 177 | DECLARE_MSM_GPIO_PINS(16); | ||
| 178 | DECLARE_MSM_GPIO_PINS(17); | ||
| 179 | DECLARE_MSM_GPIO_PINS(18); | ||
| 180 | DECLARE_MSM_GPIO_PINS(19); | ||
| 181 | DECLARE_MSM_GPIO_PINS(20); | ||
| 182 | DECLARE_MSM_GPIO_PINS(21); | ||
| 183 | DECLARE_MSM_GPIO_PINS(22); | ||
| 184 | DECLARE_MSM_GPIO_PINS(23); | ||
| 185 | DECLARE_MSM_GPIO_PINS(24); | ||
| 186 | DECLARE_MSM_GPIO_PINS(25); | ||
| 187 | DECLARE_MSM_GPIO_PINS(26); | ||
| 188 | DECLARE_MSM_GPIO_PINS(27); | ||
| 189 | DECLARE_MSM_GPIO_PINS(28); | ||
| 190 | DECLARE_MSM_GPIO_PINS(29); | ||
| 191 | DECLARE_MSM_GPIO_PINS(30); | ||
| 192 | DECLARE_MSM_GPIO_PINS(31); | ||
| 193 | DECLARE_MSM_GPIO_PINS(32); | ||
| 194 | DECLARE_MSM_GPIO_PINS(33); | ||
| 195 | DECLARE_MSM_GPIO_PINS(34); | ||
| 196 | DECLARE_MSM_GPIO_PINS(35); | ||
| 197 | DECLARE_MSM_GPIO_PINS(36); | ||
| 198 | DECLARE_MSM_GPIO_PINS(37); | ||
| 199 | DECLARE_MSM_GPIO_PINS(38); | ||
| 200 | DECLARE_MSM_GPIO_PINS(39); | ||
| 201 | DECLARE_MSM_GPIO_PINS(40); | ||
| 202 | DECLARE_MSM_GPIO_PINS(41); | ||
| 203 | DECLARE_MSM_GPIO_PINS(42); | ||
| 204 | DECLARE_MSM_GPIO_PINS(43); | ||
| 205 | DECLARE_MSM_GPIO_PINS(44); | ||
| 206 | DECLARE_MSM_GPIO_PINS(45); | ||
| 207 | DECLARE_MSM_GPIO_PINS(46); | ||
| 208 | DECLARE_MSM_GPIO_PINS(47); | ||
| 209 | DECLARE_MSM_GPIO_PINS(48); | ||
| 210 | DECLARE_MSM_GPIO_PINS(49); | ||
| 211 | DECLARE_MSM_GPIO_PINS(50); | ||
| 212 | DECLARE_MSM_GPIO_PINS(51); | ||
| 213 | DECLARE_MSM_GPIO_PINS(52); | ||
| 214 | DECLARE_MSM_GPIO_PINS(53); | ||
| 215 | DECLARE_MSM_GPIO_PINS(54); | ||
| 216 | DECLARE_MSM_GPIO_PINS(55); | ||
| 217 | DECLARE_MSM_GPIO_PINS(56); | ||
| 218 | DECLARE_MSM_GPIO_PINS(57); | ||
| 219 | DECLARE_MSM_GPIO_PINS(58); | ||
| 220 | DECLARE_MSM_GPIO_PINS(59); | ||
| 221 | DECLARE_MSM_GPIO_PINS(60); | ||
| 222 | DECLARE_MSM_GPIO_PINS(61); | ||
| 223 | DECLARE_MSM_GPIO_PINS(62); | ||
| 224 | DECLARE_MSM_GPIO_PINS(63); | ||
| 225 | DECLARE_MSM_GPIO_PINS(64); | ||
| 226 | DECLARE_MSM_GPIO_PINS(65); | ||
| 227 | DECLARE_MSM_GPIO_PINS(66); | ||
| 228 | DECLARE_MSM_GPIO_PINS(67); | ||
| 229 | DECLARE_MSM_GPIO_PINS(68); | ||
| 230 | DECLARE_MSM_GPIO_PINS(69); | ||
| 231 | DECLARE_MSM_GPIO_PINS(70); | ||
| 232 | DECLARE_MSM_GPIO_PINS(71); | ||
| 233 | DECLARE_MSM_GPIO_PINS(72); | ||
| 234 | DECLARE_MSM_GPIO_PINS(73); | ||
| 235 | DECLARE_MSM_GPIO_PINS(74); | ||
| 236 | DECLARE_MSM_GPIO_PINS(75); | ||
| 237 | DECLARE_MSM_GPIO_PINS(76); | ||
| 238 | DECLARE_MSM_GPIO_PINS(77); | ||
| 239 | DECLARE_MSM_GPIO_PINS(78); | ||
| 240 | DECLARE_MSM_GPIO_PINS(79); | ||
| 241 | DECLARE_MSM_GPIO_PINS(80); | ||
| 242 | DECLARE_MSM_GPIO_PINS(81); | ||
| 243 | DECLARE_MSM_GPIO_PINS(82); | ||
| 244 | DECLARE_MSM_GPIO_PINS(83); | ||
| 245 | DECLARE_MSM_GPIO_PINS(84); | ||
| 246 | DECLARE_MSM_GPIO_PINS(85); | ||
| 247 | DECLARE_MSM_GPIO_PINS(86); | ||
| 248 | DECLARE_MSM_GPIO_PINS(87); | ||
| 249 | DECLARE_MSM_GPIO_PINS(88); | ||
| 250 | DECLARE_MSM_GPIO_PINS(89); | ||
| 251 | DECLARE_MSM_GPIO_PINS(90); | ||
| 252 | DECLARE_MSM_GPIO_PINS(91); | ||
| 253 | DECLARE_MSM_GPIO_PINS(92); | ||
| 254 | DECLARE_MSM_GPIO_PINS(93); | ||
| 255 | DECLARE_MSM_GPIO_PINS(94); | ||
| 256 | DECLARE_MSM_GPIO_PINS(95); | ||
| 257 | DECLARE_MSM_GPIO_PINS(96); | ||
| 258 | DECLARE_MSM_GPIO_PINS(97); | ||
| 259 | DECLARE_MSM_GPIO_PINS(98); | ||
| 260 | DECLARE_MSM_GPIO_PINS(99); | ||
| 261 | DECLARE_MSM_GPIO_PINS(100); | ||
| 262 | DECLARE_MSM_GPIO_PINS(101); | ||
| 263 | DECLARE_MSM_GPIO_PINS(102); | ||
| 264 | DECLARE_MSM_GPIO_PINS(103); | ||
| 265 | DECLARE_MSM_GPIO_PINS(104); | ||
| 266 | DECLARE_MSM_GPIO_PINS(105); | ||
| 267 | DECLARE_MSM_GPIO_PINS(106); | ||
| 268 | DECLARE_MSM_GPIO_PINS(107); | ||
| 269 | DECLARE_MSM_GPIO_PINS(108); | ||
| 270 | DECLARE_MSM_GPIO_PINS(109); | ||
| 271 | DECLARE_MSM_GPIO_PINS(110); | ||
| 272 | DECLARE_MSM_GPIO_PINS(111); | ||
| 273 | DECLARE_MSM_GPIO_PINS(112); | ||
| 274 | DECLARE_MSM_GPIO_PINS(113); | ||
| 275 | DECLARE_MSM_GPIO_PINS(114); | ||
| 276 | DECLARE_MSM_GPIO_PINS(115); | ||
| 277 | DECLARE_MSM_GPIO_PINS(116); | ||
| 278 | DECLARE_MSM_GPIO_PINS(117); | ||
| 279 | DECLARE_MSM_GPIO_PINS(118); | ||
| 280 | DECLARE_MSM_GPIO_PINS(119); | ||
| 281 | DECLARE_MSM_GPIO_PINS(120); | ||
| 282 | DECLARE_MSM_GPIO_PINS(121); | ||
| 283 | |||
| 284 | static const unsigned int sdc1_clk_pins[] = { 122 }; | ||
| 285 | static const unsigned int sdc1_cmd_pins[] = { 123 }; | ||
| 286 | static const unsigned int sdc1_data_pins[] = { 124 }; | ||
| 287 | static const unsigned int sdc2_clk_pins[] = { 125 }; | ||
| 288 | static const unsigned int sdc2_cmd_pins[] = { 126 }; | ||
| 289 | static const unsigned int sdc2_data_pins[] = { 127 }; | ||
| 290 | static const unsigned int qdsd_clk_pins[] = { 128 }; | ||
| 291 | static const unsigned int qdsd_cmd_pins[] = { 129 }; | ||
| 292 | static const unsigned int qdsd_data0_pins[] = { 130 }; | ||
| 293 | static const unsigned int qdsd_data1_pins[] = { 131 }; | ||
| 294 | static const unsigned int qdsd_data2_pins[] = { 132 }; | ||
| 295 | static const unsigned int qdsd_data3_pins[] = { 133 }; | ||
| 296 | |||
| 297 | #define FUNCTION(fname) \ | ||
| 298 | [MSM_MUX_##fname] = { \ | ||
| 299 | .name = #fname, \ | ||
| 300 | .groups = fname##_groups, \ | ||
| 301 | .ngroups = ARRAY_SIZE(fname##_groups), \ | ||
| 302 | } | ||
| 303 | |||
| 304 | #define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7, f8, f9) \ | ||
| 305 | { \ | ||
| 306 | .name = "gpio" #id, \ | ||
| 307 | .pins = gpio##id##_pins, \ | ||
| 308 | .npins = ARRAY_SIZE(gpio##id##_pins), \ | ||
| 309 | .funcs = (int[]){ \ | ||
| 310 | MSM_MUX_gpio, \ | ||
| 311 | MSM_MUX_##f1, \ | ||
| 312 | MSM_MUX_##f2, \ | ||
| 313 | MSM_MUX_##f3, \ | ||
| 314 | MSM_MUX_##f4, \ | ||
| 315 | MSM_MUX_##f5, \ | ||
| 316 | MSM_MUX_##f6, \ | ||
| 317 | MSM_MUX_##f7, \ | ||
| 318 | MSM_MUX_##f8, \ | ||
| 319 | MSM_MUX_##f9 \ | ||
| 320 | }, \ | ||
| 321 | .nfuncs = 10, \ | ||
| 322 | .ctl_reg = 0x1000 * id, \ | ||
| 323 | .io_reg = 0x4 + 0x1000 * id, \ | ||
| 324 | .intr_cfg_reg = 0x8 + 0x1000 * id, \ | ||
| 325 | .intr_status_reg = 0xc + 0x1000 * id, \ | ||
| 326 | .intr_target_reg = 0x8 + 0x1000 * id, \ | ||
| 327 | .mux_bit = 2, \ | ||
| 328 | .pull_bit = 0, \ | ||
| 329 | .drv_bit = 6, \ | ||
| 330 | .oe_bit = 9, \ | ||
| 331 | .in_bit = 0, \ | ||
| 332 | .out_bit = 1, \ | ||
| 333 | .intr_enable_bit = 0, \ | ||
| 334 | .intr_status_bit = 0, \ | ||
| 335 | .intr_target_bit = 5, \ | ||
| 336 | .intr_target_kpss_val = 4, \ | ||
| 337 | .intr_raw_status_bit = 4, \ | ||
| 338 | .intr_polarity_bit = 1, \ | ||
| 339 | .intr_detection_bit = 2, \ | ||
| 340 | .intr_detection_width = 2, \ | ||
| 341 | } | ||
| 342 | |||
| 343 | #define SDC_PINGROUP(pg_name, ctl, pull, drv) \ | ||
| 344 | { \ | ||
| 345 | .name = #pg_name, \ | ||
| 346 | .pins = pg_name##_pins, \ | ||
| 347 | .npins = ARRAY_SIZE(pg_name##_pins), \ | ||
| 348 | .ctl_reg = ctl, \ | ||
| 349 | .io_reg = 0, \ | ||
| 350 | .intr_cfg_reg = 0, \ | ||
| 351 | .intr_status_reg = 0, \ | ||
| 352 | .intr_target_reg = 0, \ | ||
| 353 | .mux_bit = -1, \ | ||
| 354 | .pull_bit = pull, \ | ||
| 355 | .drv_bit = drv, \ | ||
| 356 | .oe_bit = -1, \ | ||
| 357 | .in_bit = -1, \ | ||
| 358 | .out_bit = -1, \ | ||
| 359 | .intr_enable_bit = -1, \ | ||
| 360 | .intr_status_bit = -1, \ | ||
| 361 | .intr_target_bit = -1, \ | ||
| 362 | .intr_target_kpss_val = -1, \ | ||
| 363 | .intr_raw_status_bit = -1, \ | ||
| 364 | .intr_polarity_bit = -1, \ | ||
| 365 | .intr_detection_bit = -1, \ | ||
| 366 | .intr_detection_width = -1, \ | ||
| 367 | } | ||
| 368 | |||
| 369 | enum msm8916_functions { | ||
| 370 | MSM_MUX_adsp_ext, | ||
| 371 | MSM_MUX_alsp_int, | ||
| 372 | MSM_MUX_atest_bbrx0, | ||
| 373 | MSM_MUX_atest_bbrx1, | ||
| 374 | MSM_MUX_atest_char, | ||
| 375 | MSM_MUX_atest_char0, | ||
| 376 | MSM_MUX_atest_char1, | ||
| 377 | MSM_MUX_atest_char2, | ||
| 378 | MSM_MUX_atest_char3, | ||
| 379 | MSM_MUX_atest_combodac, | ||
| 380 | MSM_MUX_atest_gpsadc0, | ||
| 381 | MSM_MUX_atest_gpsadc1, | ||
| 382 | MSM_MUX_atest_tsens, | ||
| 383 | MSM_MUX_atest_wlan0, | ||
| 384 | MSM_MUX_atest_wlan1, | ||
| 385 | MSM_MUX_backlight_en, | ||
| 386 | MSM_MUX_bimc_dte0, | ||
| 387 | MSM_MUX_bimc_dte1, | ||
| 388 | MSM_MUX_blsp_i2c1, | ||
| 389 | MSM_MUX_blsp_i2c2, | ||
| 390 | MSM_MUX_blsp_i2c3, | ||
| 391 | MSM_MUX_blsp_i2c4, | ||
| 392 | MSM_MUX_blsp_i2c5, | ||
| 393 | MSM_MUX_blsp_i2c6, | ||
| 394 | MSM_MUX_blsp_spi1, | ||
| 395 | MSM_MUX_blsp_spi1_cs1, | ||
| 396 | MSM_MUX_blsp_spi1_cs2, | ||
| 397 | MSM_MUX_blsp_spi1_cs3, | ||
| 398 | MSM_MUX_blsp_spi2, | ||
| 399 | MSM_MUX_blsp_spi2_cs1, | ||
| 400 | MSM_MUX_blsp_spi2_cs2, | ||
| 401 | MSM_MUX_blsp_spi2_cs3, | ||
| 402 | MSM_MUX_blsp_spi3, | ||
| 403 | MSM_MUX_blsp_spi3_cs1, | ||
| 404 | MSM_MUX_blsp_spi3_cs2, | ||
| 405 | MSM_MUX_blsp_spi3_cs3, | ||
| 406 | MSM_MUX_blsp_spi4, | ||
| 407 | MSM_MUX_blsp_spi5, | ||
| 408 | MSM_MUX_blsp_spi6, | ||
| 409 | MSM_MUX_blsp_uart1, | ||
| 410 | MSM_MUX_blsp_uart2, | ||
| 411 | MSM_MUX_blsp_uim1, | ||
| 412 | MSM_MUX_blsp_uim2, | ||
| 413 | MSM_MUX_cam1_rst, | ||
| 414 | MSM_MUX_cam1_standby, | ||
| 415 | MSM_MUX_cam_mclk0, | ||
| 416 | MSM_MUX_cam_mclk1, | ||
| 417 | MSM_MUX_cci_async, | ||
| 418 | MSM_MUX_cci_i2c, | ||
| 419 | MSM_MUX_cci_timer0, | ||
| 420 | MSM_MUX_cci_timer1, | ||
| 421 | MSM_MUX_cci_timer2, | ||
| 422 | MSM_MUX_cdc_pdm0, | ||
| 423 | MSM_MUX_codec_mad, | ||
| 424 | MSM_MUX_dbg_out, | ||
| 425 | MSM_MUX_display_5v, | ||
| 426 | MSM_MUX_dmic0_clk, | ||
| 427 | MSM_MUX_dmic0_data, | ||
| 428 | MSM_MUX_dsi_rst, | ||
| 429 | MSM_MUX_ebi0_wrcdc, | ||
| 430 | MSM_MUX_euro_us, | ||
| 431 | MSM_MUX_ext_lpass, | ||
| 432 | MSM_MUX_flash_strobe, | ||
| 433 | MSM_MUX_gcc_gp1_clk_a, | ||
| 434 | MSM_MUX_gcc_gp1_clk_b, | ||
| 435 | MSM_MUX_gcc_gp2_clk_a, | ||
| 436 | MSM_MUX_gcc_gp2_clk_b, | ||
| 437 | MSM_MUX_gcc_gp3_clk_a, | ||
| 438 | MSM_MUX_gcc_gp3_clk_b, | ||
| 439 | MSM_MUX_gpio, | ||
| 440 | MSM_MUX_gsm0_tx0, | ||
| 441 | MSM_MUX_gsm0_tx1, | ||
| 442 | MSM_MUX_gsm1_tx0, | ||
| 443 | MSM_MUX_gsm1_tx1, | ||
| 444 | MSM_MUX_gyro_accl, | ||
| 445 | MSM_MUX_kpsns0, | ||
| 446 | MSM_MUX_kpsns1, | ||
| 447 | MSM_MUX_kpsns2, | ||
| 448 | MSM_MUX_ldo_en, | ||
| 449 | MSM_MUX_ldo_update, | ||
| 450 | MSM_MUX_mag_int, | ||
| 451 | MSM_MUX_mdp_vsync, | ||
| 452 | MSM_MUX_modem_tsync, | ||
| 453 | MSM_MUX_m_voc, | ||
| 454 | MSM_MUX_nav_pps, | ||
| 455 | MSM_MUX_nav_tsync, | ||
| 456 | MSM_MUX_pa_indicator, | ||
| 457 | MSM_MUX_pbs0, | ||
| 458 | MSM_MUX_pbs1, | ||
| 459 | MSM_MUX_pbs2, | ||
| 460 | MSM_MUX_pri_mi2s, | ||
| 461 | MSM_MUX_pri_mi2s_ws, | ||
| 462 | MSM_MUX_prng_rosc, | ||
| 463 | MSM_MUX_pwr_crypto_enabled_a, | ||
| 464 | MSM_MUX_pwr_crypto_enabled_b, | ||
| 465 | MSM_MUX_pwr_modem_enabled_a, | ||
| 466 | MSM_MUX_pwr_modem_enabled_b, | ||
| 467 | MSM_MUX_pwr_nav_enabled_a, | ||
| 468 | MSM_MUX_pwr_nav_enabled_b, | ||
| 469 | MSM_MUX_qdss_ctitrig_in_a0, | ||
| 470 | MSM_MUX_qdss_ctitrig_in_a1, | ||
| 471 | MSM_MUX_qdss_ctitrig_in_b0, | ||
| 472 | MSM_MUX_qdss_ctitrig_in_b1, | ||
| 473 | MSM_MUX_qdss_ctitrig_out_a0, | ||
| 474 | MSM_MUX_qdss_ctitrig_out_a1, | ||
| 475 | MSM_MUX_qdss_ctitrig_out_b0, | ||
| 476 | MSM_MUX_qdss_ctitrig_out_b1, | ||
| 477 | MSM_MUX_qdss_traceclk_a, | ||
| 478 | MSM_MUX_qdss_traceclk_b, | ||
| 479 | MSM_MUX_qdss_tracectl_a, | ||
| 480 | MSM_MUX_qdss_tracectl_b, | ||
| 481 | MSM_MUX_qdss_tracedata_a, | ||
| 482 | MSM_MUX_qdss_tracedata_b, | ||
| 483 | MSM_MUX_reset_n, | ||
| 484 | MSM_MUX_sd_card, | ||
| 485 | MSM_MUX_sd_write, | ||
| 486 | MSM_MUX_sec_mi2s, | ||
| 487 | MSM_MUX_smb_int, | ||
| 488 | MSM_MUX_ssbi_wtr0, | ||
| 489 | MSM_MUX_ssbi_wtr1, | ||
| 490 | MSM_MUX_uim1, | ||
| 491 | MSM_MUX_uim2, | ||
| 492 | MSM_MUX_uim3, | ||
| 493 | MSM_MUX_uim_batt, | ||
| 494 | MSM_MUX_wcss_bt, | ||
| 495 | MSM_MUX_wcss_fm, | ||
| 496 | MSM_MUX_wcss_wlan, | ||
| 497 | MSM_MUX_webcam1_rst, | ||
| 498 | MSM_MUX_NA, | ||
| 499 | }; | ||
| 500 | |||
| 501 | static const char * const gpio_groups[] = { | ||
| 502 | "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7", | ||
| 503 | "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14", | ||
| 504 | "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21", | ||
| 505 | "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28", | ||
| 506 | "gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35", | ||
| 507 | "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42", | ||
| 508 | "gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49", | ||
| 509 | "gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56", | ||
| 510 | "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63", | ||
| 511 | "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69", "gpio70", | ||
| 512 | "gpio71", "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77", | ||
| 513 | "gpio78", "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84", | ||
| 514 | "gpio85", "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", "gpio91", | ||
| 515 | "gpio92", "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", "gpio98", | ||
| 516 | "gpio99", "gpio100", "gpio101", "gpio102", "gpio103", "gpio104", | ||
| 517 | "gpio105", "gpio106", "gpio107", "gpio108", "gpio109", "gpio110", | ||
| 518 | "gpio111", "gpio112", "gpio113", "gpio114", "gpio115", "gpio116", | ||
| 519 | "gpio117", "gpio118", "gpio119", "gpio120", "gpio121" | ||
| 520 | }; | ||
| 521 | static const char * const adsp_ext_groups[] = { "gpio38" }; | ||
| 522 | static const char * const alsp_int_groups[] = { "gpio113" }; | ||
| 523 | static const char * const atest_bbrx0_groups[] = { "gpio17" }; | ||
| 524 | static const char * const atest_bbrx1_groups[] = { "gpio16" }; | ||
| 525 | static const char * const atest_char_groups[] = { "gpio62" }; | ||
| 526 | static const char * const atest_char0_groups[] = { "gpio60" }; | ||
| 527 | static const char * const atest_char1_groups[] = { "gpio59" }; | ||
| 528 | static const char * const atest_char2_groups[] = { "gpio58" }; | ||
| 529 | static const char * const atest_char3_groups[] = { "gpio57" }; | ||
| 530 | static const char * const atest_combodac_groups[] = { | ||
| 531 | "gpio4", "gpio12", "gpio13", "gpio20", "gpio21", "gpio28", "gpio29", | ||
| 532 | "gpio30", "gpio39", "gpio40", "gpio41", "gpio42", "gpio43", "gpio44", | ||
| 533 | "gpio45", "gpio46", "gpio47", "gpio48", "gpio69", "gpio107" | ||
| 534 | }; | ||
| 535 | static const char * const atest_gpsadc0_groups[] = { "gpio7" }; | ||
| 536 | static const char * const atest_gpsadc1_groups[] = { "gpio18" }; | ||
| 537 | static const char * const atest_tsens_groups[] = { "gpio112" }; | ||
| 538 | static const char * const atest_wlan0_groups[] = { "gpio22" }; | ||
| 539 | static const char * const atest_wlan1_groups[] = { "gpio23" }; | ||
| 540 | static const char * const backlight_en_groups[] = { "gpio98" }; | ||
| 541 | static const char * const bimc_dte0_groups[] = { "gpio63", "gpio65" }; | ||
| 542 | static const char * const bimc_dte1_groups[] = { "gpio64", "gpio66" }; | ||
| 543 | static const char * const blsp_i2c1_groups[] = { "gpio2", "gpio3" }; | ||
| 544 | static const char * const blsp_i2c2_groups[] = { "gpio6", "gpio7" }; | ||
| 545 | static const char * const blsp_i2c3_groups[] = { "gpio10", "gpio11" }; | ||
| 546 | static const char * const blsp_i2c4_groups[] = { "gpio14", "gpio15" }; | ||
| 547 | static const char * const blsp_i2c5_groups[] = { "gpio18", "gpio19" }; | ||
| 548 | static const char * const blsp_i2c6_groups[] = { "gpio22", "gpio23" }; | ||
| 549 | static const char * const blsp_spi1_groups[] = { | ||
| 550 | "gpio0", "gpio1", "gpio2", "gpio3" | ||
| 551 | }; | ||
| 552 | static const char * const blsp_spi1_cs1_groups[] = { "gpio110" }; | ||
| 553 | static const char * const blsp_spi1_cs2_groups[] = { "gpio16" }; | ||
| 554 | static const char * const blsp_spi1_cs3_groups[] = { "gpio4" }; | ||
| 555 | static const char * const blsp_spi2_groups[] = { | ||
| 556 | "gpio4", "gpio5", "gpio6", "gpio7" | ||
| 557 | }; | ||
| 558 | static const char * const blsp_spi2_cs1_groups[] = { "gpio121" }; | ||
| 559 | static const char * const blsp_spi2_cs2_groups[] = { "gpio17" }; | ||
| 560 | static const char * const blsp_spi2_cs3_groups[] = { "gpio5" }; | ||
| 561 | static const char * const blsp_spi3_groups[] = { | ||
| 562 | "gpio8", "gpio9", "gpio10", "gpio11" | ||
| 563 | }; | ||
| 564 | static const char * const blsp_spi3_cs1_groups[] = { "gpio120" }; | ||
| 565 | static const char * const blsp_spi3_cs2_groups[] = { "gpio37" }; | ||
| 566 | static const char * const blsp_spi3_cs3_groups[] = { "gpio69" }; | ||
| 567 | static const char * const blsp_spi4_groups[] = { | ||
| 568 | "gpio12", "gpio13", "gpio14", "gpio15" | ||
| 569 | }; | ||
| 570 | static const char * const blsp_spi5_groups[] = { | ||
| 571 | "gpio16", "gpio17", "gpio18", "gpio19" | ||
| 572 | }; | ||
| 573 | static const char * const blsp_spi6_groups[] = { | ||
| 574 | "gpio20", "gpio21", "gpio22", "gpio23" | ||
| 575 | }; | ||
| 576 | static const char * const blsp_uart1_groups[] = { | ||
| 577 | "gpio0", "gpio1", "gpio2", "gpio3" | ||
| 578 | }; | ||
| 579 | static const char * const blsp_uart2_groups[] = { | ||
| 580 | "gpio4", "gpio5", "gpio6", "gpio7" | ||
| 581 | }; | ||
| 582 | static const char * const blsp_uim1_groups[] = { "gpio0", "gpio1" }; | ||
| 583 | static const char * const blsp_uim2_groups[] = { "gpio4", "gpio5" }; | ||
| 584 | static const char * const cam1_rst_groups[] = { "gpio35" }; | ||
| 585 | static const char * const cam1_standby_groups[] = { "gpio34" }; | ||
| 586 | static const char * const cam_mclk0_groups[] = { "gpio26" }; | ||
| 587 | static const char * const cam_mclk1_groups[] = { "gpio27" }; | ||
| 588 | static const char * const cci_async_groups[] = { "gpio33" }; | ||
| 589 | static const char * const cci_i2c_groups[] = { "gpio29", "gpio30" }; | ||
| 590 | static const char * const cci_timer0_groups[] = { "gpio31" }; | ||
| 591 | static const char * const cci_timer1_groups[] = { "gpio32" }; | ||
| 592 | static const char * const cci_timer2_groups[] = { "gpio38" }; | ||
| 593 | static const char * const cdc_pdm0_groups[] = { | ||
| 594 | "gpio63", "gpio64", "gpio65", "gpio66", "gpio67", "gpio68" | ||
| 595 | }; | ||
| 596 | static const char * const codec_mad_groups[] = { "gpio16" }; | ||
| 597 | static const char * const dbg_out_groups[] = { "gpio47" }; | ||
| 598 | static const char * const display_5v_groups[] = { "gpio97" }; | ||
| 599 | static const char * const dmic0_clk_groups[] = { "gpio0" }; | ||
| 600 | static const char * const dmic0_data_groups[] = { "gpio1" }; | ||
| 601 | static const char * const dsi_rst_groups[] = { "gpio25" }; | ||
| 602 | static const char * const ebi0_wrcdc_groups[] = { "gpio67" }; | ||
| 603 | static const char * const euro_us_groups[] = { "gpio120" }; | ||
| 604 | static const char * const ext_lpass_groups[] = { "gpio45" }; | ||
| 605 | static const char * const flash_strobe_groups[] = { "gpio31", "gpio32" }; | ||
| 606 | static const char * const gcc_gp1_clk_a_groups[] = { "gpio49" }; | ||
| 607 | static const char * const gcc_gp1_clk_b_groups[] = { "gpio97" }; | ||
| 608 | static const char * const gcc_gp2_clk_a_groups[] = { "gpio50" }; | ||
| 609 | static const char * const gcc_gp2_clk_b_groups[] = { "gpio12" }; | ||
| 610 | static const char * const gcc_gp3_clk_a_groups[] = { "gpio51" }; | ||
| 611 | static const char * const gcc_gp3_clk_b_groups[] = { "gpio13" }; | ||
| 612 | static const char * const gsm0_tx0_groups[] = { "gpio99" }; | ||
| 613 | static const char * const gsm0_tx1_groups[] = { "gpio100" }; | ||
| 614 | static const char * const gsm1_tx0_groups[] = { "gpio101" }; | ||
| 615 | static const char * const gsm1_tx1_groups[] = { "gpio102" }; | ||
| 616 | static const char * const gyro_accl_groups[] = {"gpio115" }; | ||
| 617 | static const char * const kpsns0_groups[] = { "gpio107" }; | ||
| 618 | static const char * const kpsns1_groups[] = { "gpio108" }; | ||
| 619 | static const char * const kpsns2_groups[] = { "gpio109" }; | ||
| 620 | static const char * const ldo_en_groups[] = { "gpio121" }; | ||
| 621 | static const char * const ldo_update_groups[] = { "gpio120" }; | ||
| 622 | static const char * const mag_int_groups[] = { "gpio69" }; | ||
| 623 | static const char * const mdp_vsync_groups[] = { "gpio24", "gpio25" }; | ||
| 624 | static const char * const modem_tsync_groups[] = { "gpio95" }; | ||
| 625 | static const char * const m_voc_groups[] = { "gpio8", "gpio119" }; | ||
| 626 | static const char * const nav_pps_groups[] = { "gpio95" }; | ||
| 627 | static const char * const nav_tsync_groups[] = { "gpio95" }; | ||
| 628 | static const char * const pa_indicator_groups[] = { "gpio86" }; | ||
| 629 | static const char * const pbs0_groups[] = { "gpio107" }; | ||
| 630 | static const char * const pbs1_groups[] = { "gpio108" }; | ||
| 631 | static const char * const pbs2_groups[] = { "gpio109" }; | ||
| 632 | static const char * const pri_mi2s_groups[] = { | ||
| 633 | "gpio113", "gpio114", "gpio115", "gpio116" | ||
| 634 | }; | ||
| 635 | static const char * const pri_mi2s_ws_groups[] = { "gpio110" }; | ||
| 636 | static const char * const prng_rosc_groups[] = { "gpio43" }; | ||
| 637 | static const char * const pwr_crypto_enabled_a_groups[] = { "gpio35" }; | ||
| 638 | static const char * const pwr_crypto_enabled_b_groups[] = { "gpio115" }; | ||
| 639 | static const char * const pwr_modem_enabled_a_groups[] = { "gpio28" }; | ||
| 640 | static const char * const pwr_modem_enabled_b_groups[] = { "gpio113" }; | ||
| 641 | static const char * const pwr_nav_enabled_a_groups[] = { "gpio34" }; | ||
| 642 | static const char * const pwr_nav_enabled_b_groups[] = { "gpio114" }; | ||
| 643 | static const char * const qdss_ctitrig_in_a0_groups[] = { "gpio20" }; | ||
| 644 | static const char * const qdss_ctitrig_in_a1_groups[] = { "gpio49" }; | ||
| 645 | static const char * const qdss_ctitrig_in_b0_groups[] = { "gpio21" }; | ||
| 646 | static const char * const qdss_ctitrig_in_b1_groups[] = { "gpio50" }; | ||
| 647 | static const char * const qdss_ctitrig_out_a0_groups[] = { "gpio23" }; | ||
| 648 | static const char * const qdss_ctitrig_out_a1_groups[] = { "gpio52" }; | ||
| 649 | static const char * const qdss_ctitrig_out_b0_groups[] = { "gpio22" }; | ||
| 650 | static const char * const qdss_ctitrig_out_b1_groups[] = { "gpio51" }; | ||
| 651 | static const char * const qdss_traceclk_a_groups[] = { "gpio46" }; | ||
| 652 | static const char * const qdss_traceclk_b_groups[] = { "gpio5" }; | ||
| 653 | static const char * const qdss_tracectl_a_groups[] = { "gpio45" }; | ||
| 654 | static const char * const qdss_tracectl_b_groups[] = { "gpio4" }; | ||
| 655 | static const char * const qdss_tracedata_a_groups[] = { | ||
| 656 | "gpio8", "gpio9", "gpio10", "gpio39", "gpio40", "gpio41", "gpio42", | ||
| 657 | "gpio43", "gpio47", "gpio48", "gpio62", "gpio69", "gpio112", "gpio113", | ||
| 658 | "gpio114", "gpio115" | ||
| 659 | }; | ||
| 660 | static const char * const qdss_tracedata_b_groups[] = { | ||
| 661 | "gpio26", "gpio27", "gpio28", "gpio29", "gpio30", "gpio31", "gpio32", | ||
| 662 | "gpio33", "gpio34", "gpio35", "gpio36", "gpio37", "gpio110", "gpio111", | ||
| 663 | "gpio120", "gpio121" | ||
| 664 | }; | ||
| 665 | static const char * const reset_n_groups[] = { "gpio36" }; | ||
| 666 | static const char * const sd_card_groups[] = { "gpio38" }; | ||
| 667 | static const char * const sd_write_groups[] = { "gpio121" }; | ||
| 668 | static const char * const sec_mi2s_groups[] = { | ||
| 669 | "gpio112", "gpio117", "gpio118", "gpio119" | ||
| 670 | }; | ||
| 671 | static const char * const smb_int_groups[] = { "gpio62" }; | ||
| 672 | static const char * const ssbi_wtr0_groups[] = { "gpio103", "gpio104" }; | ||
| 673 | static const char * const ssbi_wtr1_groups[] = { "gpio105", "gpio106" }; | ||
| 674 | static const char * const uim1_groups[] = { | ||
| 675 | "gpio57", "gpio58", "gpio59", "gpio60" | ||
| 676 | }; | ||
| 677 | |||
| 678 | static const char * const uim2_groups[] = { | ||
| 679 | "gpio53", "gpio54", "gpio55", "gpio56" | ||
| 680 | }; | ||
| 681 | static const char * const uim3_groups[] = { | ||
| 682 | "gpio49", "gpio50", "gpio51", "gpio52" | ||
| 683 | }; | ||
| 684 | static const char * const uim_batt_groups[] = { "gpio61" }; | ||
| 685 | static const char * const wcss_bt_groups[] = { "gpio39", "gpio47", "gpio48" }; | ||
| 686 | static const char * const wcss_fm_groups[] = { "gpio45", "gpio46" }; | ||
| 687 | static const char * const wcss_wlan_groups[] = { | ||
| 688 | "gpio40", "gpio41", "gpio42", "gpio43", "gpio44" | ||
| 689 | }; | ||
| 690 | static const char * const webcam1_rst_groups[] = { "gpio28" }; | ||
| 691 | |||
| 692 | static const struct msm_function msm8916_functions[] = { | ||
| 693 | FUNCTION(adsp_ext), | ||
| 694 | FUNCTION(alsp_int), | ||
| 695 | FUNCTION(atest_bbrx0), | ||
| 696 | FUNCTION(atest_bbrx1), | ||
| 697 | FUNCTION(atest_char), | ||
| 698 | FUNCTION(atest_char0), | ||
| 699 | FUNCTION(atest_char1), | ||
| 700 | FUNCTION(atest_char2), | ||
| 701 | FUNCTION(atest_char3), | ||
| 702 | FUNCTION(atest_combodac), | ||
| 703 | FUNCTION(atest_gpsadc0), | ||
| 704 | FUNCTION(atest_gpsadc1), | ||
| 705 | FUNCTION(atest_tsens), | ||
| 706 | FUNCTION(atest_wlan0), | ||
| 707 | FUNCTION(atest_wlan1), | ||
| 708 | FUNCTION(backlight_en), | ||
| 709 | FUNCTION(bimc_dte0), | ||
| 710 | FUNCTION(bimc_dte1), | ||
| 711 | FUNCTION(blsp_i2c1), | ||
| 712 | FUNCTION(blsp_i2c2), | ||
| 713 | FUNCTION(blsp_i2c3), | ||
| 714 | FUNCTION(blsp_i2c4), | ||
| 715 | FUNCTION(blsp_i2c5), | ||
| 716 | FUNCTION(blsp_i2c6), | ||
| 717 | FUNCTION(blsp_spi1), | ||
| 718 | FUNCTION(blsp_spi1_cs1), | ||
| 719 | FUNCTION(blsp_spi1_cs2), | ||
| 720 | FUNCTION(blsp_spi1_cs3), | ||
| 721 | FUNCTION(blsp_spi2), | ||
| 722 | FUNCTION(blsp_spi2_cs1), | ||
| 723 | FUNCTION(blsp_spi2_cs2), | ||
| 724 | FUNCTION(blsp_spi2_cs3), | ||
| 725 | FUNCTION(blsp_spi3), | ||
| 726 | FUNCTION(blsp_spi3_cs1), | ||
| 727 | FUNCTION(blsp_spi3_cs2), | ||
| 728 | FUNCTION(blsp_spi3_cs3), | ||
| 729 | FUNCTION(blsp_spi4), | ||
| 730 | FUNCTION(blsp_spi5), | ||
| 731 | FUNCTION(blsp_spi6), | ||
| 732 | FUNCTION(blsp_uart1), | ||
| 733 | FUNCTION(blsp_uart2), | ||
| 734 | FUNCTION(blsp_uim1), | ||
| 735 | FUNCTION(blsp_uim2), | ||
| 736 | FUNCTION(cam1_rst), | ||
| 737 | FUNCTION(cam1_standby), | ||
| 738 | FUNCTION(cam_mclk0), | ||
| 739 | FUNCTION(cam_mclk1), | ||
| 740 | FUNCTION(cci_async), | ||
| 741 | FUNCTION(cci_i2c), | ||
| 742 | FUNCTION(cci_timer0), | ||
| 743 | FUNCTION(cci_timer1), | ||
| 744 | FUNCTION(cci_timer2), | ||
| 745 | FUNCTION(cdc_pdm0), | ||
| 746 | FUNCTION(codec_mad), | ||
| 747 | FUNCTION(dbg_out), | ||
| 748 | FUNCTION(display_5v), | ||
| 749 | FUNCTION(dmic0_clk), | ||
| 750 | FUNCTION(dmic0_data), | ||
| 751 | FUNCTION(dsi_rst), | ||
| 752 | FUNCTION(ebi0_wrcdc), | ||
| 753 | FUNCTION(euro_us), | ||
| 754 | FUNCTION(ext_lpass), | ||
| 755 | FUNCTION(flash_strobe), | ||
| 756 | FUNCTION(gcc_gp1_clk_a), | ||
| 757 | FUNCTION(gcc_gp1_clk_b), | ||
| 758 | FUNCTION(gcc_gp2_clk_a), | ||
| 759 | FUNCTION(gcc_gp2_clk_b), | ||
| 760 | FUNCTION(gcc_gp3_clk_a), | ||
| 761 | FUNCTION(gcc_gp3_clk_b), | ||
| 762 | FUNCTION(gpio), | ||
| 763 | FUNCTION(gsm0_tx0), | ||
| 764 | FUNCTION(gsm0_tx1), | ||
| 765 | FUNCTION(gsm1_tx0), | ||
| 766 | FUNCTION(gsm1_tx1), | ||
| 767 | FUNCTION(gyro_accl), | ||
| 768 | FUNCTION(kpsns0), | ||
| 769 | FUNCTION(kpsns1), | ||
| 770 | FUNCTION(kpsns2), | ||
| 771 | FUNCTION(ldo_en), | ||
| 772 | FUNCTION(ldo_update), | ||
| 773 | FUNCTION(mag_int), | ||
| 774 | FUNCTION(mdp_vsync), | ||
| 775 | FUNCTION(modem_tsync), | ||
| 776 | FUNCTION(m_voc), | ||
| 777 | FUNCTION(nav_pps), | ||
| 778 | FUNCTION(nav_tsync), | ||
| 779 | FUNCTION(pa_indicator), | ||
| 780 | FUNCTION(pbs0), | ||
| 781 | FUNCTION(pbs1), | ||
| 782 | FUNCTION(pbs2), | ||
| 783 | FUNCTION(pri_mi2s), | ||
| 784 | FUNCTION(pri_mi2s_ws), | ||
| 785 | FUNCTION(prng_rosc), | ||
| 786 | FUNCTION(pwr_crypto_enabled_a), | ||
| 787 | FUNCTION(pwr_crypto_enabled_b), | ||
| 788 | FUNCTION(pwr_modem_enabled_a), | ||
| 789 | FUNCTION(pwr_modem_enabled_b), | ||
| 790 | FUNCTION(pwr_nav_enabled_a), | ||
| 791 | FUNCTION(pwr_nav_enabled_b), | ||
| 792 | FUNCTION(qdss_ctitrig_in_a0), | ||
| 793 | FUNCTION(qdss_ctitrig_in_a1), | ||
| 794 | FUNCTION(qdss_ctitrig_in_b0), | ||
| 795 | FUNCTION(qdss_ctitrig_in_b1), | ||
| 796 | FUNCTION(qdss_ctitrig_out_a0), | ||
| 797 | FUNCTION(qdss_ctitrig_out_a1), | ||
| 798 | FUNCTION(qdss_ctitrig_out_b0), | ||
| 799 | FUNCTION(qdss_ctitrig_out_b1), | ||
| 800 | FUNCTION(qdss_traceclk_a), | ||
| 801 | FUNCTION(qdss_traceclk_b), | ||
| 802 | FUNCTION(qdss_tracectl_a), | ||
| 803 | FUNCTION(qdss_tracectl_b), | ||
| 804 | FUNCTION(qdss_tracedata_a), | ||
| 805 | FUNCTION(qdss_tracedata_b), | ||
| 806 | FUNCTION(reset_n), | ||
| 807 | FUNCTION(sd_card), | ||
| 808 | FUNCTION(sd_write), | ||
| 809 | FUNCTION(sec_mi2s), | ||
| 810 | FUNCTION(smb_int), | ||
| 811 | FUNCTION(ssbi_wtr0), | ||
| 812 | FUNCTION(ssbi_wtr1), | ||
| 813 | FUNCTION(uim1), | ||
| 814 | FUNCTION(uim2), | ||
| 815 | FUNCTION(uim3), | ||
| 816 | FUNCTION(uim_batt), | ||
| 817 | FUNCTION(wcss_bt), | ||
| 818 | FUNCTION(wcss_fm), | ||
| 819 | FUNCTION(wcss_wlan), | ||
| 820 | FUNCTION(webcam1_rst) | ||
| 821 | }; | ||
| 822 | |||
| 823 | static const struct msm_pingroup msm8916_groups[] = { | ||
| 824 | PINGROUP(0, blsp_spi1, blsp_uart1, blsp_uim1, dmic0_clk, NA, NA, NA, NA, NA), | ||
| 825 | PINGROUP(1, blsp_spi1, blsp_uart1, blsp_uim1, dmic0_data, NA, NA, NA, NA, NA), | ||
| 826 | PINGROUP(2, blsp_spi1, blsp_uart1, blsp_i2c1, NA, NA, NA, NA, NA, NA), | ||
| 827 | PINGROUP(3, blsp_spi1, blsp_uart1, blsp_i2c1, NA, NA, NA, NA, NA, NA), | ||
| 828 | PINGROUP(4, blsp_spi2, blsp_uart2, blsp_uim2, blsp_spi1_cs3, qdss_tracectl_b, NA, atest_combodac, NA, NA), | ||
| 829 | PINGROUP(5, blsp_spi2, blsp_uart2, blsp_uim2, blsp_spi2_cs3, qdss_traceclk_b, NA, NA, NA, NA), | ||
| 830 | PINGROUP(6, blsp_spi2, blsp_uart2, blsp_i2c2, NA, NA, NA, NA, NA, NA), | ||
| 831 | PINGROUP(7, blsp_spi2, blsp_uart2, blsp_i2c2, NA, NA, NA, NA, NA, NA), | ||
| 832 | PINGROUP(8, blsp_spi3, m_voc, qdss_tracedata_a, NA, NA, NA, NA, NA, NA), | ||
| 833 | PINGROUP(9, blsp_spi3, qdss_tracedata_a, NA, NA, NA, NA, NA, NA, NA), | ||
| 834 | PINGROUP(10, blsp_spi3, blsp_i2c3, qdss_tracedata_a, NA, NA, NA, NA, NA, NA), | ||
| 835 | PINGROUP(11, blsp_spi3, blsp_i2c3, NA, NA, NA, NA, NA, NA, NA), | ||
| 836 | PINGROUP(12, blsp_spi4, gcc_gp2_clk_b, NA, atest_combodac, NA, NA, NA, NA, NA), | ||
| 837 | PINGROUP(13, blsp_spi4, gcc_gp3_clk_b, NA, atest_combodac, NA, NA, NA, NA, NA), | ||
| 838 | PINGROUP(14, blsp_spi4, blsp_i2c4, NA, NA, NA, NA, NA, NA, NA), | ||
| 839 | PINGROUP(15, blsp_spi4, blsp_i2c4, NA, NA, NA, NA, NA, NA, NA), | ||
| 840 | PINGROUP(16, blsp_spi5, blsp_spi1_cs2, NA, atest_bbrx1, NA, NA, NA, NA, NA), | ||
| 841 | PINGROUP(17, blsp_spi5, blsp_spi2_cs2, NA, atest_bbrx0, NA, NA, NA, NA, NA), | ||
| 842 | PINGROUP(18, blsp_spi5, blsp_i2c5, NA, atest_gpsadc1, NA, NA, NA, NA, NA), | ||
| 843 | PINGROUP(19, blsp_spi5, blsp_i2c5, NA, NA, NA, NA, NA, NA, NA), | ||
| 844 | PINGROUP(20, blsp_spi6, NA, NA, NA, NA, NA, NA, qdss_ctitrig_in_a0, NA), | ||
| 845 | PINGROUP(21, blsp_spi6, NA, NA, NA, NA, NA, NA, qdss_ctitrig_in_b0, NA), | ||
| 846 | PINGROUP(22, blsp_spi6, blsp_i2c6, NA, NA, NA, NA, NA, NA, NA), | ||
| 847 | PINGROUP(23, blsp_spi6, blsp_i2c6, NA, NA, NA, NA, NA, NA, NA), | ||
| 848 | PINGROUP(24, mdp_vsync, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 849 | PINGROUP(25, mdp_vsync, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 850 | PINGROUP(26, cam_mclk0, NA, NA, NA, NA, NA, qdss_tracedata_b, NA, NA), | ||
| 851 | PINGROUP(27, cam_mclk1, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b), | ||
| 852 | PINGROUP(28, pwr_modem_enabled_a, NA, NA, NA, NA, NA, qdss_tracedata_b, NA, atest_combodac), | ||
| 853 | PINGROUP(29, cci_i2c, NA, NA, NA, NA, NA, qdss_tracedata_b, NA, atest_combodac), | ||
| 854 | PINGROUP(30, cci_i2c, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b), | ||
| 855 | PINGROUP(31, cci_timer0, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 856 | PINGROUP(32, cci_timer1, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 857 | PINGROUP(33, cci_async, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b), | ||
| 858 | PINGROUP(34, pwr_nav_enabled_a, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b), | ||
| 859 | PINGROUP(35, pwr_crypto_enabled_a, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b), | ||
| 860 | PINGROUP(36, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b, NA), | ||
| 861 | PINGROUP(37, blsp_spi3_cs2, NA, NA, NA, NA, NA, qdss_tracedata_b, NA, NA), | ||
| 862 | PINGROUP(38, cci_timer2, adsp_ext, NA, NA, NA, NA, NA, NA, NA), | ||
| 863 | PINGROUP(39, wcss_bt, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA, NA), | ||
| 864 | PINGROUP(40, wcss_wlan, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA, NA), | ||
| 865 | PINGROUP(41, wcss_wlan, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA, NA), | ||
| 866 | PINGROUP(42, wcss_wlan, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA, NA), | ||
| 867 | PINGROUP(43, wcss_wlan, prng_rosc, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA), | ||
| 868 | PINGROUP(44, wcss_wlan, NA, atest_combodac, NA, NA, NA, NA, NA, NA), | ||
| 869 | PINGROUP(45, wcss_fm, ext_lpass, qdss_tracectl_a, NA, atest_combodac, NA, NA, NA, NA), | ||
| 870 | PINGROUP(46, wcss_fm, qdss_traceclk_a, NA, atest_combodac, NA, NA, NA, NA, NA), | ||
| 871 | PINGROUP(47, wcss_bt, dbg_out, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA), | ||
| 872 | PINGROUP(48, wcss_bt, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA, NA), | ||
| 873 | PINGROUP(49, uim3, gcc_gp1_clk_a, qdss_ctitrig_in_a1, NA, NA, NA, NA, NA, NA), | ||
| 874 | PINGROUP(50, uim3, gcc_gp2_clk_a, qdss_ctitrig_in_b1, NA, NA, NA, NA, NA, NA), | ||
| 875 | PINGROUP(51, uim3, gcc_gp3_clk_a, qdss_ctitrig_out_b1, NA, NA, NA, NA, NA, NA), | ||
| 876 | PINGROUP(52, uim3, NA, qdss_ctitrig_out_a1, NA, NA, NA, NA, NA, NA), | ||
| 877 | PINGROUP(53, uim2, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 878 | PINGROUP(54, uim2, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 879 | PINGROUP(55, uim2, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 880 | PINGROUP(56, uim2, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 881 | PINGROUP(57, uim1, atest_char3, NA, NA, NA, NA, NA, NA, NA), | ||
| 882 | PINGROUP(58, uim1, atest_char2, NA, NA, NA, NA, NA, NA, NA), | ||
| 883 | PINGROUP(59, uim1, atest_char1, NA, NA, NA, NA, NA, NA, NA), | ||
| 884 | PINGROUP(60, uim1, atest_char0, NA, NA, NA, NA, NA, NA, NA), | ||
| 885 | PINGROUP(61, uim_batt, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 886 | PINGROUP(62, atest_char, qdss_tracedata_a, NA, NA, NA, NA, NA, NA, NA), | ||
| 887 | PINGROUP(63, cdc_pdm0, bimc_dte0, NA, NA, NA, NA, NA, NA, NA), | ||
| 888 | PINGROUP(64, cdc_pdm0, bimc_dte1, NA, NA, NA, NA, NA, NA, NA), | ||
| 889 | PINGROUP(65, cdc_pdm0, bimc_dte0, NA, NA, NA, NA, NA, NA, NA), | ||
| 890 | PINGROUP(66, cdc_pdm0, bimc_dte1, NA, NA, NA, NA, NA, NA, NA), | ||
| 891 | PINGROUP(67, cdc_pdm0, ebi0_wrcdc, NA, NA, NA, NA, NA, NA, NA), | ||
| 892 | PINGROUP(68, cdc_pdm0, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 893 | PINGROUP(69, blsp_spi3_cs3, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA, NA), | ||
| 894 | PINGROUP(70, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 895 | PINGROUP(71, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 896 | PINGROUP(72, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 897 | PINGROUP(73, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 898 | PINGROUP(74, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 899 | PINGROUP(75, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 900 | PINGROUP(76, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 901 | PINGROUP(77, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 902 | PINGROUP(78, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 903 | PINGROUP(79, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 904 | PINGROUP(80, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 905 | PINGROUP(81, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 906 | PINGROUP(82, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 907 | PINGROUP(83, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 908 | PINGROUP(84, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 909 | PINGROUP(85, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 910 | PINGROUP(86, NA, pa_indicator, NA, NA, NA, NA, NA, NA, NA), | ||
| 911 | PINGROUP(87, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 912 | PINGROUP(88, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 913 | PINGROUP(89, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 914 | PINGROUP(90, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 915 | PINGROUP(91, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 916 | PINGROUP(92, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 917 | PINGROUP(93, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 918 | PINGROUP(94, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 919 | PINGROUP(95, NA, modem_tsync, nav_tsync, nav_pps, NA, NA, NA, NA, NA), | ||
| 920 | PINGROUP(96, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 921 | PINGROUP(97, gcc_gp1_clk_b, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 922 | PINGROUP(98, NA, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 923 | PINGROUP(99, gsm0_tx0, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 924 | PINGROUP(100, gsm0_tx1, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 925 | PINGROUP(101, gsm1_tx0, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 926 | PINGROUP(102, gsm1_tx1, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 927 | PINGROUP(103, ssbi_wtr0, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 928 | PINGROUP(104, ssbi_wtr0, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 929 | PINGROUP(105, ssbi_wtr1, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 930 | PINGROUP(106, ssbi_wtr1, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 931 | PINGROUP(107, pbs0, NA, atest_combodac, NA, NA, NA, NA, NA, NA), | ||
| 932 | PINGROUP(108, pbs1, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 933 | PINGROUP(109, pbs2, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 934 | PINGROUP(110, blsp_spi1_cs1, pri_mi2s_ws, NA, qdss_tracedata_b, NA, NA, NA, NA, NA), | ||
| 935 | PINGROUP(111, qdss_tracedata_b, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 936 | PINGROUP(112, sec_mi2s, NA, NA, NA, qdss_tracedata_a, NA, atest_tsens, NA, NA), | ||
| 937 | PINGROUP(113, pri_mi2s, NA, pwr_modem_enabled_b, NA, NA, NA, NA, NA, qdss_tracedata_a), | ||
| 938 | PINGROUP(114, pri_mi2s, pwr_nav_enabled_b, NA, NA, NA, NA, NA, qdss_tracedata_a, NA), | ||
| 939 | PINGROUP(115, pri_mi2s, pwr_crypto_enabled_b, NA, NA, NA, NA, NA, qdss_tracedata_a, NA), | ||
| 940 | PINGROUP(116, pri_mi2s, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 941 | PINGROUP(117, sec_mi2s, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 942 | PINGROUP(118, sec_mi2s, NA, NA, NA, NA, NA, NA, NA, NA), | ||
| 943 | PINGROUP(119, sec_mi2s, m_voc, NA, NA, NA, NA, NA, NA, NA), | ||
| 944 | PINGROUP(120, blsp_spi3_cs1, ldo_update, NA, NA, NA, NA, NA, NA, NA), | ||
| 945 | PINGROUP(121, sd_write, blsp_spi2_cs1, ldo_en, NA, NA, NA, NA, NA, NA), | ||
| 946 | SDC_PINGROUP(sdc1_clk, 0x10a000, 13, 6), | ||
| 947 | SDC_PINGROUP(sdc1_cmd, 0x10a000, 11, 3), | ||
| 948 | SDC_PINGROUP(sdc1_data, 0x10a000, 9, 0), | ||
| 949 | SDC_PINGROUP(sdc2_clk, 0x109000, 14, 6), | ||
| 950 | SDC_PINGROUP(sdc2_cmd, 0x109000, 11, 3), | ||
| 951 | SDC_PINGROUP(sdc2_data, 0x109000, 9, 0), | ||
| 952 | SDC_PINGROUP(qdsd_clk, 0x19c000, 3, 0), | ||
| 953 | SDC_PINGROUP(qdsd_cmd, 0x19c000, 8, 5), | ||
| 954 | SDC_PINGROUP(qdsd_data0, 0x19c000, 13, 10), | ||
| 955 | SDC_PINGROUP(qdsd_data1, 0x19c000, 18, 15), | ||
| 956 | SDC_PINGROUP(qdsd_data2, 0x19c000, 23, 20), | ||
| 957 | SDC_PINGROUP(qdsd_data3, 0x19c000, 28, 25), | ||
| 958 | }; | ||
| 959 | |||
| 960 | #define NUM_GPIO_PINGROUPS 122 | ||
| 961 | |||
| 962 | static const struct msm_pinctrl_soc_data msm8916_pinctrl = { | ||
| 963 | .pins = msm8916_pins, | ||
| 964 | .npins = ARRAY_SIZE(msm8916_pins), | ||
| 965 | .functions = msm8916_functions, | ||
| 966 | .nfunctions = ARRAY_SIZE(msm8916_functions), | ||
| 967 | .groups = msm8916_groups, | ||
| 968 | .ngroups = ARRAY_SIZE(msm8916_groups), | ||
| 969 | .ngpios = NUM_GPIO_PINGROUPS, | ||
| 970 | }; | ||
| 971 | |||
| 972 | static int msm8916_pinctrl_probe(struct platform_device *pdev) | ||
| 973 | { | ||
| 974 | return msm_pinctrl_probe(pdev, &msm8916_pinctrl); | ||
| 975 | } | ||
| 976 | |||
| 977 | static const struct of_device_id msm8916_pinctrl_of_match[] = { | ||
| 978 | { .compatible = "qcom,msm8916-pinctrl", }, | ||
| 979 | { }, | ||
| 980 | }; | ||
| 981 | |||
| 982 | static struct platform_driver msm8916_pinctrl_driver = { | ||
| 983 | .driver = { | ||
| 984 | .name = "msm8916-pinctrl", | ||
| 985 | .of_match_table = msm8916_pinctrl_of_match, | ||
| 986 | }, | ||
| 987 | .probe = msm8916_pinctrl_probe, | ||
| 988 | .remove = msm_pinctrl_remove, | ||
| 989 | }; | ||
| 990 | |||
| 991 | static int __init msm8916_pinctrl_init(void) | ||
| 992 | { | ||
| 993 | return platform_driver_register(&msm8916_pinctrl_driver); | ||
| 994 | } | ||
| 995 | arch_initcall(msm8916_pinctrl_init); | ||
| 996 | |||
| 997 | static void __exit msm8916_pinctrl_exit(void) | ||
| 998 | { | ||
| 999 | platform_driver_unregister(&msm8916_pinctrl_driver); | ||
| 1000 | } | ||
| 1001 | module_exit(msm8916_pinctrl_exit); | ||
| 1002 | |||
| 1003 | MODULE_DESCRIPTION("Qualcomm msm8916 pinctrl driver"); | ||
| 1004 | MODULE_LICENSE("GPL v2"); | ||
| 1005 | MODULE_DEVICE_TABLE(of, msm8916_pinctrl_of_match); | ||
