Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 1 | /* |
| 2 | * MediaTek MT7622 Pinctrl Driver |
| 3 | * |
| 4 | * Copyright (C) 2017 Sean Wang <sean.wang@mediatek.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | */ |
| 15 | |
| 16 | #include <linux/gpio.h> |
| 17 | #include <linux/gpio/driver.h> |
| 18 | #include <linux/io.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/mfd/syscon.h> |
| 21 | #include <linux/of.h> |
Sean Wang | e6dabd3 | 2018-05-21 01:01:49 +0800 | [diff] [blame] | 22 | #include <linux/of_irq.h> |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 23 | #include <linux/of_platform.h> |
| 24 | #include <linux/platform_device.h> |
| 25 | #include <linux/pinctrl/pinctrl.h> |
| 26 | #include <linux/pinctrl/pinmux.h> |
| 27 | #include <linux/pinctrl/pinconf.h> |
| 28 | #include <linux/pinctrl/pinconf-generic.h> |
| 29 | #include <linux/regmap.h> |
| 30 | |
| 31 | #include "../core.h" |
| 32 | #include "../pinconf.h" |
| 33 | #include "../pinmux.h" |
Sean Wang | e6dabd3 | 2018-05-21 01:01:49 +0800 | [diff] [blame] | 34 | #include "mtk-eint.h" |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 35 | |
| 36 | #define PINCTRL_PINCTRL_DEV KBUILD_MODNAME |
| 37 | #define MTK_RANGE(_a) { .range = (_a), .nranges = ARRAY_SIZE(_a), } |
| 38 | #define PINCTRL_PIN_GROUP(name, id) \ |
| 39 | { \ |
| 40 | name, \ |
| 41 | id##_pins, \ |
| 42 | ARRAY_SIZE(id##_pins), \ |
| 43 | id##_funcs, \ |
| 44 | } |
| 45 | |
| 46 | #define MTK_GPIO_MODE 1 |
| 47 | #define MTK_INPUT 0 |
| 48 | #define MTK_OUTPUT 1 |
| 49 | #define MTK_DISABLE 0 |
| 50 | #define MTK_ENABLE 1 |
| 51 | |
| 52 | /* Custom pinconf parameters */ |
| 53 | #define MTK_PIN_CONFIG_TDSEL (PIN_CONFIG_END + 1) |
| 54 | #define MTK_PIN_CONFIG_RDSEL (PIN_CONFIG_END + 2) |
| 55 | |
| 56 | /* List these attributes which could be modified for the pin */ |
| 57 | enum { |
| 58 | PINCTRL_PIN_REG_MODE, |
| 59 | PINCTRL_PIN_REG_DIR, |
| 60 | PINCTRL_PIN_REG_DI, |
| 61 | PINCTRL_PIN_REG_DO, |
| 62 | PINCTRL_PIN_REG_SR, |
| 63 | PINCTRL_PIN_REG_SMT, |
| 64 | PINCTRL_PIN_REG_PD, |
| 65 | PINCTRL_PIN_REG_PU, |
| 66 | PINCTRL_PIN_REG_E4, |
| 67 | PINCTRL_PIN_REG_E8, |
| 68 | PINCTRL_PIN_REG_TDSEL, |
| 69 | PINCTRL_PIN_REG_RDSEL, |
| 70 | PINCTRL_PIN_REG_MAX, |
| 71 | }; |
| 72 | |
| 73 | /* struct mtk_pin_field - the structure that holds the information of the field |
| 74 | * used to describe the attribute for the pin |
| 75 | * @offset: the register offset relative to the base address |
| 76 | * @mask: the mask used to filter out the field from the register |
| 77 | * @bitpos: the start bit relative to the register |
| 78 | * @next: the indication that the field would be extended to the |
| 79 | next register |
| 80 | */ |
| 81 | struct mtk_pin_field { |
| 82 | u32 offset; |
| 83 | u32 mask; |
| 84 | u8 bitpos; |
| 85 | u8 next; |
| 86 | }; |
| 87 | |
| 88 | /* struct mtk_pin_field_calc - the structure that holds the range providing |
| 89 | * the guide used to look up the relevant field |
| 90 | * @s_pin: the start pin within the range |
| 91 | * @e_pin: the end pin within the range |
| 92 | * @s_addr: the start address for the range |
| 93 | * @x_addrs: the address distance between two consecutive registers |
| 94 | * within the range |
| 95 | * @s_bit: the start bit for the first register within the range |
| 96 | * @x_bits: the bit distance between two consecutive pins within |
| 97 | * the range |
| 98 | */ |
| 99 | struct mtk_pin_field_calc { |
| 100 | u16 s_pin; |
| 101 | u16 e_pin; |
| 102 | u32 s_addr; |
| 103 | u8 x_addrs; |
| 104 | u8 s_bit; |
| 105 | u8 x_bits; |
| 106 | }; |
| 107 | |
| 108 | /* struct mtk_pin_reg_calc - the structure that holds all ranges used to |
| 109 | * determine which register the pin would make use of |
| 110 | * for certain pin attribute. |
| 111 | * @range: the start address for the range |
| 112 | * @nranges: the number of items in the range |
| 113 | */ |
| 114 | struct mtk_pin_reg_calc { |
| 115 | const struct mtk_pin_field_calc *range; |
| 116 | unsigned int nranges; |
| 117 | }; |
| 118 | |
| 119 | /* struct mtk_pin_soc - the structure that holds SoC-specific data */ |
| 120 | struct mtk_pin_soc { |
| 121 | const struct mtk_pin_reg_calc *reg_cal; |
| 122 | const struct pinctrl_pin_desc *pins; |
| 123 | unsigned int npins; |
| 124 | const struct group_desc *grps; |
| 125 | unsigned int ngrps; |
| 126 | const struct function_desc *funcs; |
| 127 | unsigned int nfuncs; |
Sean Wang | e6dabd3 | 2018-05-21 01:01:49 +0800 | [diff] [blame] | 128 | const struct mtk_eint_regs *eint_regs; |
| 129 | const struct mtk_eint_hw *eint_hw; |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 130 | }; |
| 131 | |
| 132 | struct mtk_pinctrl { |
| 133 | struct pinctrl_dev *pctrl; |
| 134 | void __iomem *base; |
| 135 | struct device *dev; |
| 136 | struct gpio_chip chip; |
| 137 | const struct mtk_pin_soc *soc; |
Sean Wang | e6dabd3 | 2018-05-21 01:01:49 +0800 | [diff] [blame] | 138 | struct mtk_eint *eint; |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 139 | }; |
| 140 | |
| 141 | static const struct mtk_pin_field_calc mt7622_pin_mode_range[] = { |
| 142 | {0, 0, 0x320, 0x10, 16, 4}, |
| 143 | {1, 4, 0x3a0, 0x10, 16, 4}, |
| 144 | {5, 5, 0x320, 0x10, 0, 4}, |
| 145 | {6, 6, 0x300, 0x10, 4, 4}, |
| 146 | {7, 7, 0x300, 0x10, 4, 4}, |
| 147 | {8, 9, 0x350, 0x10, 20, 4}, |
| 148 | {10, 10, 0x300, 0x10, 8, 4}, |
| 149 | {11, 11, 0x300, 0x10, 8, 4}, |
| 150 | {12, 12, 0x300, 0x10, 8, 4}, |
| 151 | {13, 13, 0x300, 0x10, 8, 4}, |
| 152 | {14, 15, 0x320, 0x10, 4, 4}, |
| 153 | {16, 17, 0x320, 0x10, 20, 4}, |
| 154 | {18, 21, 0x310, 0x10, 16, 4}, |
| 155 | {22, 22, 0x380, 0x10, 16, 4}, |
| 156 | {23, 23, 0x300, 0x10, 24, 4}, |
| 157 | {24, 24, 0x300, 0x10, 24, 4}, |
| 158 | {25, 25, 0x300, 0x10, 12, 4}, |
| 159 | {25, 25, 0x300, 0x10, 12, 4}, |
| 160 | {26, 26, 0x300, 0x10, 12, 4}, |
| 161 | {27, 27, 0x300, 0x10, 12, 4}, |
| 162 | {28, 28, 0x300, 0x10, 12, 4}, |
| 163 | {29, 29, 0x300, 0x10, 12, 4}, |
| 164 | {30, 30, 0x300, 0x10, 12, 4}, |
| 165 | {31, 31, 0x300, 0x10, 12, 4}, |
| 166 | {32, 32, 0x300, 0x10, 12, 4}, |
| 167 | {33, 33, 0x300, 0x10, 12, 4}, |
| 168 | {34, 34, 0x300, 0x10, 12, 4}, |
| 169 | {35, 35, 0x300, 0x10, 12, 4}, |
| 170 | {36, 36, 0x300, 0x10, 12, 4}, |
| 171 | {37, 37, 0x300, 0x10, 20, 4}, |
| 172 | {38, 38, 0x300, 0x10, 20, 4}, |
| 173 | {39, 39, 0x300, 0x10, 20, 4}, |
| 174 | {40, 40, 0x300, 0x10, 20, 4}, |
| 175 | {41, 41, 0x300, 0x10, 20, 4}, |
| 176 | {42, 42, 0x300, 0x10, 20, 4}, |
| 177 | {43, 43, 0x300, 0x10, 20, 4}, |
| 178 | {44, 44, 0x300, 0x10, 20, 4}, |
| 179 | {45, 46, 0x300, 0x10, 20, 4}, |
| 180 | {47, 47, 0x300, 0x10, 20, 4}, |
| 181 | {48, 48, 0x300, 0x10, 20, 4}, |
| 182 | {49, 49, 0x300, 0x10, 20, 4}, |
| 183 | {50, 50, 0x300, 0x10, 20, 4}, |
| 184 | {51, 70, 0x330, 0x10, 4, 4}, |
| 185 | {71, 71, 0x300, 0x10, 16, 4}, |
| 186 | {72, 72, 0x300, 0x10, 16, 4}, |
| 187 | {73, 76, 0x310, 0x10, 0, 4}, |
| 188 | {77, 77, 0x320, 0x10, 28, 4}, |
| 189 | {78, 78, 0x320, 0x10, 12, 4}, |
| 190 | {79, 82, 0x3a0, 0x10, 0, 4}, |
| 191 | {83, 83, 0x350, 0x10, 28, 4}, |
| 192 | {84, 84, 0x330, 0x10, 0, 4}, |
| 193 | {85, 90, 0x360, 0x10, 4, 4}, |
| 194 | {91, 94, 0x390, 0x10, 16, 4}, |
| 195 | {95, 97, 0x380, 0x10, 20, 4}, |
| 196 | {98, 101, 0x390, 0x10, 0, 4}, |
| 197 | {102, 102, 0x360, 0x10, 0, 4}, |
| 198 | }; |
| 199 | |
| 200 | static const struct mtk_pin_field_calc mt7622_pin_dir_range[] = { |
| 201 | {0, 102, 0x0, 0x10, 0, 1}, |
| 202 | }; |
| 203 | |
| 204 | static const struct mtk_pin_field_calc mt7622_pin_di_range[] = { |
| 205 | {0, 102, 0x200, 0x10, 0, 1}, |
| 206 | }; |
| 207 | |
| 208 | static const struct mtk_pin_field_calc mt7622_pin_do_range[] = { |
| 209 | {0, 102, 0x100, 0x10, 0, 1}, |
| 210 | }; |
| 211 | |
| 212 | static const struct mtk_pin_field_calc mt7622_pin_sr_range[] = { |
| 213 | {0, 31, 0x910, 0x10, 0, 1}, |
| 214 | {32, 50, 0xa10, 0x10, 0, 1}, |
| 215 | {51, 70, 0x810, 0x10, 0, 1}, |
| 216 | {71, 72, 0xb10, 0x10, 0, 1}, |
| 217 | {73, 86, 0xb10, 0x10, 4, 1}, |
| 218 | {87, 90, 0xc10, 0x10, 0, 1}, |
| 219 | {91, 102, 0xb10, 0x10, 18, 1}, |
| 220 | }; |
| 221 | |
| 222 | static const struct mtk_pin_field_calc mt7622_pin_smt_range[] = { |
| 223 | {0, 31, 0x920, 0x10, 0, 1}, |
| 224 | {32, 50, 0xa20, 0x10, 0, 1}, |
| 225 | {51, 70, 0x820, 0x10, 0, 1}, |
| 226 | {71, 72, 0xb20, 0x10, 0, 1}, |
| 227 | {73, 86, 0xb20, 0x10, 4, 1}, |
| 228 | {87, 90, 0xc20, 0x10, 0, 1}, |
| 229 | {91, 102, 0xb20, 0x10, 18, 1}, |
| 230 | }; |
| 231 | |
| 232 | static const struct mtk_pin_field_calc mt7622_pin_pu_range[] = { |
| 233 | {0, 31, 0x930, 0x10, 0, 1}, |
| 234 | {32, 50, 0xa30, 0x10, 0, 1}, |
| 235 | {51, 70, 0x830, 0x10, 0, 1}, |
| 236 | {71, 72, 0xb30, 0x10, 0, 1}, |
| 237 | {73, 86, 0xb30, 0x10, 4, 1}, |
| 238 | {87, 90, 0xc30, 0x10, 0, 1}, |
| 239 | {91, 102, 0xb30, 0x10, 18, 1}, |
| 240 | }; |
| 241 | |
| 242 | static const struct mtk_pin_field_calc mt7622_pin_pd_range[] = { |
| 243 | {0, 31, 0x940, 0x10, 0, 1}, |
| 244 | {32, 50, 0xa40, 0x10, 0, 1}, |
| 245 | {51, 70, 0x840, 0x10, 0, 1}, |
| 246 | {71, 72, 0xb40, 0x10, 0, 1}, |
| 247 | {73, 86, 0xb40, 0x10, 4, 1}, |
| 248 | {87, 90, 0xc40, 0x10, 0, 1}, |
| 249 | {91, 102, 0xb40, 0x10, 18, 1}, |
| 250 | }; |
| 251 | |
| 252 | static const struct mtk_pin_field_calc mt7622_pin_e4_range[] = { |
| 253 | {0, 31, 0x960, 0x10, 0, 1}, |
| 254 | {32, 50, 0xa60, 0x10, 0, 1}, |
| 255 | {51, 70, 0x860, 0x10, 0, 1}, |
| 256 | {71, 72, 0xb60, 0x10, 0, 1}, |
| 257 | {73, 86, 0xb60, 0x10, 4, 1}, |
| 258 | {87, 90, 0xc60, 0x10, 0, 1}, |
| 259 | {91, 102, 0xb60, 0x10, 18, 1}, |
| 260 | }; |
| 261 | |
| 262 | static const struct mtk_pin_field_calc mt7622_pin_e8_range[] = { |
| 263 | {0, 31, 0x970, 0x10, 0, 1}, |
| 264 | {32, 50, 0xa70, 0x10, 0, 1}, |
| 265 | {51, 70, 0x870, 0x10, 0, 1}, |
| 266 | {71, 72, 0xb70, 0x10, 0, 1}, |
| 267 | {73, 86, 0xb70, 0x10, 4, 1}, |
| 268 | {87, 90, 0xc70, 0x10, 0, 1}, |
| 269 | {91, 102, 0xb70, 0x10, 18, 1}, |
| 270 | }; |
| 271 | |
| 272 | static const struct mtk_pin_field_calc mt7622_pin_tdsel_range[] = { |
| 273 | {0, 31, 0x980, 0x4, 0, 4}, |
| 274 | {32, 50, 0xa80, 0x4, 0, 4}, |
| 275 | {51, 70, 0x880, 0x4, 0, 4}, |
| 276 | {71, 72, 0xb80, 0x4, 0, 4}, |
| 277 | {73, 86, 0xb80, 0x4, 16, 4}, |
| 278 | {87, 90, 0xc80, 0x4, 0, 4}, |
| 279 | {91, 102, 0xb88, 0x4, 8, 4}, |
| 280 | }; |
| 281 | |
| 282 | static const struct mtk_pin_field_calc mt7622_pin_rdsel_range[] = { |
| 283 | {0, 31, 0x990, 0x4, 0, 6}, |
| 284 | {32, 50, 0xa90, 0x4, 0, 6}, |
| 285 | {51, 58, 0x890, 0x4, 0, 6}, |
| 286 | {59, 60, 0x894, 0x4, 28, 6}, |
| 287 | {61, 62, 0x894, 0x4, 16, 6}, |
| 288 | {63, 66, 0x898, 0x4, 8, 6}, |
| 289 | {67, 68, 0x89c, 0x4, 12, 6}, |
| 290 | {69, 70, 0x89c, 0x4, 0, 6}, |
| 291 | {71, 72, 0xb90, 0x4, 0, 6}, |
| 292 | {73, 86, 0xb90, 0x4, 24, 6}, |
| 293 | {87, 90, 0xc90, 0x4, 0, 6}, |
| 294 | {91, 102, 0xb9c, 0x4, 12, 6}, |
| 295 | }; |
| 296 | |
| 297 | static const struct mtk_pin_reg_calc mt7622_reg_cals[PINCTRL_PIN_REG_MAX] = { |
| 298 | [PINCTRL_PIN_REG_MODE] = MTK_RANGE(mt7622_pin_mode_range), |
| 299 | [PINCTRL_PIN_REG_DIR] = MTK_RANGE(mt7622_pin_dir_range), |
| 300 | [PINCTRL_PIN_REG_DI] = MTK_RANGE(mt7622_pin_di_range), |
| 301 | [PINCTRL_PIN_REG_DO] = MTK_RANGE(mt7622_pin_do_range), |
| 302 | [PINCTRL_PIN_REG_SR] = MTK_RANGE(mt7622_pin_sr_range), |
| 303 | [PINCTRL_PIN_REG_SMT] = MTK_RANGE(mt7622_pin_smt_range), |
| 304 | [PINCTRL_PIN_REG_PU] = MTK_RANGE(mt7622_pin_pu_range), |
| 305 | [PINCTRL_PIN_REG_PD] = MTK_RANGE(mt7622_pin_pd_range), |
| 306 | [PINCTRL_PIN_REG_E4] = MTK_RANGE(mt7622_pin_e4_range), |
| 307 | [PINCTRL_PIN_REG_E8] = MTK_RANGE(mt7622_pin_e8_range), |
| 308 | [PINCTRL_PIN_REG_TDSEL] = MTK_RANGE(mt7622_pin_tdsel_range), |
| 309 | [PINCTRL_PIN_REG_RDSEL] = MTK_RANGE(mt7622_pin_rdsel_range), |
| 310 | }; |
| 311 | |
| 312 | static const struct pinctrl_pin_desc mt7622_pins[] = { |
| 313 | PINCTRL_PIN(0, "GPIO_A"), |
| 314 | PINCTRL_PIN(1, "I2S1_IN"), |
| 315 | PINCTRL_PIN(2, "I2S1_OUT"), |
| 316 | PINCTRL_PIN(3, "I2S_BCLK"), |
| 317 | PINCTRL_PIN(4, "I2S_WS"), |
| 318 | PINCTRL_PIN(5, "I2S_MCLK"), |
| 319 | PINCTRL_PIN(6, "TXD0"), |
| 320 | PINCTRL_PIN(7, "RXD0"), |
| 321 | PINCTRL_PIN(8, "SPI_WP"), |
| 322 | PINCTRL_PIN(9, "SPI_HOLD"), |
| 323 | PINCTRL_PIN(10, "SPI_CLK"), |
| 324 | PINCTRL_PIN(11, "SPI_MOSI"), |
| 325 | PINCTRL_PIN(12, "SPI_MISO"), |
| 326 | PINCTRL_PIN(13, "SPI_CS"), |
| 327 | PINCTRL_PIN(14, "I2C_SDA"), |
| 328 | PINCTRL_PIN(15, "I2C_SCL"), |
| 329 | PINCTRL_PIN(16, "I2S2_IN"), |
| 330 | PINCTRL_PIN(17, "I2S3_IN"), |
| 331 | PINCTRL_PIN(18, "I2S4_IN"), |
| 332 | PINCTRL_PIN(19, "I2S2_OUT"), |
| 333 | PINCTRL_PIN(20, "I2S3_OUT"), |
| 334 | PINCTRL_PIN(21, "I2S4_OUT"), |
| 335 | PINCTRL_PIN(22, "GPIO_B"), |
| 336 | PINCTRL_PIN(23, "MDC"), |
| 337 | PINCTRL_PIN(24, "MDIO"), |
| 338 | PINCTRL_PIN(25, "G2_TXD0"), |
| 339 | PINCTRL_PIN(26, "G2_TXD1"), |
| 340 | PINCTRL_PIN(27, "G2_TXD2"), |
| 341 | PINCTRL_PIN(28, "G2_TXD3"), |
| 342 | PINCTRL_PIN(29, "G2_TXEN"), |
| 343 | PINCTRL_PIN(30, "G2_TXC"), |
| 344 | PINCTRL_PIN(31, "G2_RXD0"), |
| 345 | PINCTRL_PIN(32, "G2_RXD1"), |
| 346 | PINCTRL_PIN(33, "G2_RXD2"), |
| 347 | PINCTRL_PIN(34, "G2_RXD3"), |
| 348 | PINCTRL_PIN(35, "G2_RXDV"), |
| 349 | PINCTRL_PIN(36, "G2_RXC"), |
| 350 | PINCTRL_PIN(37, "NCEB"), |
| 351 | PINCTRL_PIN(38, "NWEB"), |
| 352 | PINCTRL_PIN(39, "NREB"), |
| 353 | PINCTRL_PIN(40, "NDL4"), |
| 354 | PINCTRL_PIN(41, "NDL5"), |
| 355 | PINCTRL_PIN(42, "NDL6"), |
| 356 | PINCTRL_PIN(43, "NDL7"), |
| 357 | PINCTRL_PIN(44, "NRB"), |
| 358 | PINCTRL_PIN(45, "NCLE"), |
| 359 | PINCTRL_PIN(46, "NALE"), |
| 360 | PINCTRL_PIN(47, "NDL0"), |
| 361 | PINCTRL_PIN(48, "NDL1"), |
| 362 | PINCTRL_PIN(49, "NDL2"), |
| 363 | PINCTRL_PIN(50, "NDL3"), |
| 364 | PINCTRL_PIN(51, "MDI_TP_P0"), |
| 365 | PINCTRL_PIN(52, "MDI_TN_P0"), |
| 366 | PINCTRL_PIN(53, "MDI_RP_P0"), |
| 367 | PINCTRL_PIN(54, "MDI_RN_P0"), |
| 368 | PINCTRL_PIN(55, "MDI_TP_P1"), |
| 369 | PINCTRL_PIN(56, "MDI_TN_P1"), |
| 370 | PINCTRL_PIN(57, "MDI_RP_P1"), |
| 371 | PINCTRL_PIN(58, "MDI_RN_P1"), |
| 372 | PINCTRL_PIN(59, "MDI_RP_P2"), |
| 373 | PINCTRL_PIN(60, "MDI_RN_P2"), |
| 374 | PINCTRL_PIN(61, "MDI_TP_P2"), |
| 375 | PINCTRL_PIN(62, "MDI_TN_P2"), |
| 376 | PINCTRL_PIN(63, "MDI_TP_P3"), |
| 377 | PINCTRL_PIN(64, "MDI_TN_P3"), |
| 378 | PINCTRL_PIN(65, "MDI_RP_P3"), |
| 379 | PINCTRL_PIN(66, "MDI_RN_P3"), |
| 380 | PINCTRL_PIN(67, "MDI_RP_P4"), |
| 381 | PINCTRL_PIN(68, "MDI_RN_P4"), |
| 382 | PINCTRL_PIN(69, "MDI_TP_P4"), |
| 383 | PINCTRL_PIN(70, "MDI_TN_P4"), |
| 384 | PINCTRL_PIN(71, "PMIC_SCL"), |
| 385 | PINCTRL_PIN(72, "PMIC_SDA"), |
| 386 | PINCTRL_PIN(73, "SPIC1_CLK"), |
| 387 | PINCTRL_PIN(74, "SPIC1_MOSI"), |
| 388 | PINCTRL_PIN(75, "SPIC1_MISO"), |
| 389 | PINCTRL_PIN(76, "SPIC1_CS"), |
| 390 | PINCTRL_PIN(77, "GPIO_D"), |
| 391 | PINCTRL_PIN(78, "WATCHDOG"), |
| 392 | PINCTRL_PIN(79, "RTS3_N"), |
| 393 | PINCTRL_PIN(80, "CTS3_N"), |
| 394 | PINCTRL_PIN(81, "TXD3"), |
| 395 | PINCTRL_PIN(82, "RXD3"), |
| 396 | PINCTRL_PIN(83, "PERST0_N"), |
| 397 | PINCTRL_PIN(84, "PERST1_N"), |
| 398 | PINCTRL_PIN(85, "WLED_N"), |
| 399 | PINCTRL_PIN(86, "EPHY_LED0_N"), |
| 400 | PINCTRL_PIN(87, "AUXIN0"), |
| 401 | PINCTRL_PIN(88, "AUXIN1"), |
| 402 | PINCTRL_PIN(89, "AUXIN2"), |
| 403 | PINCTRL_PIN(90, "AUXIN3"), |
| 404 | PINCTRL_PIN(91, "TXD4"), |
| 405 | PINCTRL_PIN(92, "RXD4"), |
| 406 | PINCTRL_PIN(93, "RTS4_N"), |
| 407 | PINCTRL_PIN(94, "CTS4_N"), |
| 408 | PINCTRL_PIN(95, "PWM1"), |
| 409 | PINCTRL_PIN(96, "PWM2"), |
| 410 | PINCTRL_PIN(97, "PWM3"), |
| 411 | PINCTRL_PIN(98, "PWM4"), |
| 412 | PINCTRL_PIN(99, "PWM5"), |
| 413 | PINCTRL_PIN(100, "PWM6"), |
| 414 | PINCTRL_PIN(101, "PWM7"), |
| 415 | PINCTRL_PIN(102, "GPIO_E"), |
| 416 | }; |
| 417 | |
| 418 | /* List all groups consisting of these pins dedicated to the enablement of |
| 419 | * certain hardware block and the corresponding mode for all of the pins. The |
| 420 | * hardware probably has multiple combinations of these pinouts. |
| 421 | */ |
| 422 | |
| 423 | /* EMMC */ |
| 424 | static int mt7622_emmc_pins[] = { 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, }; |
| 425 | static int mt7622_emmc_funcs[] = { 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }; |
| 426 | |
| 427 | static int mt7622_emmc_rst_pins[] = { 37, }; |
| 428 | static int mt7622_emmc_rst_funcs[] = { 1, }; |
| 429 | |
| 430 | /* LED for EPHY */ |
| 431 | static int mt7622_ephy_leds_pins[] = { 86, 91, 92, 93, 94, }; |
| 432 | static int mt7622_ephy_leds_funcs[] = { 0, 0, 0, 0, 0, }; |
| 433 | static int mt7622_ephy0_led_pins[] = { 86, }; |
| 434 | static int mt7622_ephy0_led_funcs[] = { 0, }; |
| 435 | static int mt7622_ephy1_led_pins[] = { 91, }; |
| 436 | static int mt7622_ephy1_led_funcs[] = { 2, }; |
| 437 | static int mt7622_ephy2_led_pins[] = { 92, }; |
| 438 | static int mt7622_ephy2_led_funcs[] = { 2, }; |
| 439 | static int mt7622_ephy3_led_pins[] = { 93, }; |
| 440 | static int mt7622_ephy3_led_funcs[] = { 2, }; |
| 441 | static int mt7622_ephy4_led_pins[] = { 94, }; |
| 442 | static int mt7622_ephy4_led_funcs[] = { 2, }; |
| 443 | |
| 444 | /* Embedded Switch */ |
| 445 | static int mt7622_esw_pins[] = { 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, |
| 446 | 62, 63, 64, 65, 66, 67, 68, 69, 70, }; |
| 447 | static int mt7622_esw_funcs[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 448 | 0, 0, 0, 0, 0, 0, 0, 0, 0, }; |
| 449 | static int mt7622_esw_p0_p1_pins[] = { 51, 52, 53, 54, 55, 56, 57, 58, }; |
| 450 | static int mt7622_esw_p0_p1_funcs[] = { 0, 0, 0, 0, 0, 0, 0, 0, }; |
| 451 | static int mt7622_esw_p2_p3_p4_pins[] = { 59, 60, 61, 62, 63, 64, 65, 66, 67, |
| 452 | 68, 69, 70, }; |
| 453 | static int mt7622_esw_p2_p3_p4_funcs[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 454 | 0, 0, 0, }; |
| 455 | /* RGMII via ESW */ |
| 456 | static int mt7622_rgmii_via_esw_pins[] = { 59, 60, 61, 62, 63, 64, 65, 66, |
| 457 | 67, 68, 69, 70, }; |
| 458 | static int mt7622_rgmii_via_esw_funcs[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 459 | 0, }; |
| 460 | |
| 461 | /* RGMII via GMAC1 */ |
| 462 | static int mt7622_rgmii_via_gmac1_pins[] = { 59, 60, 61, 62, 63, 64, 65, 66, |
| 463 | 67, 68, 69, 70, }; |
| 464 | static int mt7622_rgmii_via_gmac1_funcs[] = { 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 465 | 2, }; |
| 466 | |
| 467 | /* RGMII via GMAC2 */ |
| 468 | static int mt7622_rgmii_via_gmac2_pins[] = { 25, 26, 27, 28, 29, 30, 31, 32, |
| 469 | 33, 34, 35, 36, }; |
| 470 | static int mt7622_rgmii_via_gmac2_funcs[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 471 | 0, }; |
| 472 | |
| 473 | /* I2C */ |
| 474 | static int mt7622_i2c0_pins[] = { 14, 15, }; |
| 475 | static int mt7622_i2c0_funcs[] = { 0, 0, }; |
| 476 | static int mt7622_i2c1_0_pins[] = { 55, 56, }; |
| 477 | static int mt7622_i2c1_0_funcs[] = { 0, 0, }; |
| 478 | static int mt7622_i2c1_1_pins[] = { 73, 74, }; |
| 479 | static int mt7622_i2c1_1_funcs[] = { 3, 3, }; |
| 480 | static int mt7622_i2c1_2_pins[] = { 87, 88, }; |
| 481 | static int mt7622_i2c1_2_funcs[] = { 0, 0, }; |
| 482 | static int mt7622_i2c2_0_pins[] = { 57, 58, }; |
| 483 | static int mt7622_i2c2_0_funcs[] = { 0, 0, }; |
| 484 | static int mt7622_i2c2_1_pins[] = { 75, 76, }; |
| 485 | static int mt7622_i2c2_1_funcs[] = { 3, 3, }; |
| 486 | static int mt7622_i2c2_2_pins[] = { 89, 90, }; |
| 487 | static int mt7622_i2c2_2_funcs[] = { 0, 0, }; |
| 488 | |
| 489 | /* I2S */ |
| 490 | static int mt7622_i2s_in_mclk_bclk_ws_pins[] = { 3, 4, 5, }; |
| 491 | static int mt7622_i2s_in_mclk_bclk_ws_funcs[] = { 3, 3, 0, }; |
| 492 | static int mt7622_i2s1_in_data_pins[] = { 1, }; |
| 493 | static int mt7622_i2s1_in_data_funcs[] = { 0, }; |
| 494 | static int mt7622_i2s2_in_data_pins[] = { 16, }; |
| 495 | static int mt7622_i2s2_in_data_funcs[] = { 0, }; |
| 496 | static int mt7622_i2s3_in_data_pins[] = { 17, }; |
| 497 | static int mt7622_i2s3_in_data_funcs[] = { 0, }; |
| 498 | static int mt7622_i2s4_in_data_pins[] = { 18, }; |
| 499 | static int mt7622_i2s4_in_data_funcs[] = { 0, }; |
| 500 | static int mt7622_i2s_out_mclk_bclk_ws_pins[] = { 3, 4, 5, }; |
| 501 | static int mt7622_i2s_out_mclk_bclk_ws_funcs[] = { 0, 0, 0, }; |
| 502 | static int mt7622_i2s1_out_data_pins[] = { 2, }; |
| 503 | static int mt7622_i2s1_out_data_funcs[] = { 0, }; |
| 504 | static int mt7622_i2s2_out_data_pins[] = { 19, }; |
| 505 | static int mt7622_i2s2_out_data_funcs[] = { 0, }; |
| 506 | static int mt7622_i2s3_out_data_pins[] = { 20, }; |
| 507 | static int mt7622_i2s3_out_data_funcs[] = { 0, }; |
| 508 | static int mt7622_i2s4_out_data_pins[] = { 21, }; |
| 509 | static int mt7622_i2s4_out_data_funcs[] = { 0, }; |
| 510 | |
| 511 | /* IR */ |
| 512 | static int mt7622_ir_0_tx_pins[] = { 16, }; |
| 513 | static int mt7622_ir_0_tx_funcs[] = { 4, }; |
| 514 | static int mt7622_ir_1_tx_pins[] = { 59, }; |
| 515 | static int mt7622_ir_1_tx_funcs[] = { 5, }; |
| 516 | static int mt7622_ir_2_tx_pins[] = { 99, }; |
| 517 | static int mt7622_ir_2_tx_funcs[] = { 3, }; |
| 518 | static int mt7622_ir_0_rx_pins[] = { 17, }; |
| 519 | static int mt7622_ir_0_rx_funcs[] = { 4, }; |
| 520 | static int mt7622_ir_1_rx_pins[] = { 60, }; |
| 521 | static int mt7622_ir_1_rx_funcs[] = { 5, }; |
| 522 | static int mt7622_ir_2_rx_pins[] = { 100, }; |
| 523 | static int mt7622_ir_2_rx_funcs[] = { 3, }; |
| 524 | |
| 525 | /* MDIO */ |
| 526 | static int mt7622_mdc_mdio_pins[] = { 23, 24, }; |
| 527 | static int mt7622_mdc_mdio_funcs[] = { 0, 0, }; |
| 528 | |
| 529 | /* PCIE */ |
| 530 | static int mt7622_pcie0_0_waken_pins[] = { 14, }; |
| 531 | static int mt7622_pcie0_0_waken_funcs[] = { 2, }; |
| 532 | static int mt7622_pcie0_0_clkreq_pins[] = { 15, }; |
| 533 | static int mt7622_pcie0_0_clkreq_funcs[] = { 2, }; |
| 534 | static int mt7622_pcie0_1_waken_pins[] = { 79, }; |
| 535 | static int mt7622_pcie0_1_waken_funcs[] = { 4, }; |
| 536 | static int mt7622_pcie0_1_clkreq_pins[] = { 80, }; |
| 537 | static int mt7622_pcie0_1_clkreq_funcs[] = { 4, }; |
| 538 | static int mt7622_pcie1_0_waken_pins[] = { 14, }; |
| 539 | static int mt7622_pcie1_0_waken_funcs[] = { 3, }; |
| 540 | static int mt7622_pcie1_0_clkreq_pins[] = { 15, }; |
| 541 | static int mt7622_pcie1_0_clkreq_funcs[] = { 3, }; |
| 542 | |
| 543 | static int mt7622_pcie0_pad_perst_pins[] = { 83, }; |
| 544 | static int mt7622_pcie0_pad_perst_funcs[] = { 0, }; |
| 545 | static int mt7622_pcie1_pad_perst_pins[] = { 84, }; |
| 546 | static int mt7622_pcie1_pad_perst_funcs[] = { 0, }; |
| 547 | |
| 548 | /* PMIC bus */ |
| 549 | static int mt7622_pmic_bus_pins[] = { 71, 72, }; |
| 550 | static int mt7622_pmic_bus_funcs[] = { 0, 0, }; |
| 551 | |
| 552 | /* Parallel NAND */ |
| 553 | static int mt7622_pnand_pins[] = { 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, |
| 554 | 48, 49, 50, }; |
| 555 | static int mt7622_pnand_funcs[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 556 | 0, }; |
| 557 | |
| 558 | /* PWM */ |
| 559 | static int mt7622_pwm_ch1_0_pins[] = { 51, }; |
| 560 | static int mt7622_pwm_ch1_0_funcs[] = { 3, }; |
| 561 | static int mt7622_pwm_ch1_1_pins[] = { 73, }; |
| 562 | static int mt7622_pwm_ch1_1_funcs[] = { 4, }; |
| 563 | static int mt7622_pwm_ch1_2_pins[] = { 95, }; |
| 564 | static int mt7622_pwm_ch1_2_funcs[] = { 0, }; |
| 565 | static int mt7622_pwm_ch2_0_pins[] = { 52, }; |
| 566 | static int mt7622_pwm_ch2_0_funcs[] = { 3, }; |
| 567 | static int mt7622_pwm_ch2_1_pins[] = { 74, }; |
| 568 | static int mt7622_pwm_ch2_1_funcs[] = { 4, }; |
| 569 | static int mt7622_pwm_ch2_2_pins[] = { 96, }; |
| 570 | static int mt7622_pwm_ch2_2_funcs[] = { 0, }; |
| 571 | static int mt7622_pwm_ch3_0_pins[] = { 53, }; |
| 572 | static int mt7622_pwm_ch3_0_funcs[] = { 3, }; |
| 573 | static int mt7622_pwm_ch3_1_pins[] = { 75, }; |
| 574 | static int mt7622_pwm_ch3_1_funcs[] = { 4, }; |
| 575 | static int mt7622_pwm_ch3_2_pins[] = { 97, }; |
| 576 | static int mt7622_pwm_ch3_2_funcs[] = { 0, }; |
| 577 | static int mt7622_pwm_ch4_0_pins[] = { 54, }; |
| 578 | static int mt7622_pwm_ch4_0_funcs[] = { 3, }; |
| 579 | static int mt7622_pwm_ch4_1_pins[] = { 67, }; |
| 580 | static int mt7622_pwm_ch4_1_funcs[] = { 3, }; |
| 581 | static int mt7622_pwm_ch4_2_pins[] = { 76, }; |
| 582 | static int mt7622_pwm_ch4_2_funcs[] = { 4, }; |
| 583 | static int mt7622_pwm_ch4_3_pins[] = { 98, }; |
| 584 | static int mt7622_pwm_ch4_3_funcs[] = { 0, }; |
| 585 | static int mt7622_pwm_ch5_0_pins[] = { 68, }; |
| 586 | static int mt7622_pwm_ch5_0_funcs[] = { 3, }; |
| 587 | static int mt7622_pwm_ch5_1_pins[] = { 77, }; |
| 588 | static int mt7622_pwm_ch5_1_funcs[] = { 4, }; |
| 589 | static int mt7622_pwm_ch5_2_pins[] = { 99, }; |
| 590 | static int mt7622_pwm_ch5_2_funcs[] = { 0, }; |
| 591 | static int mt7622_pwm_ch6_0_pins[] = { 69, }; |
| 592 | static int mt7622_pwm_ch6_0_funcs[] = { 3, }; |
| 593 | static int mt7622_pwm_ch6_1_pins[] = { 78, }; |
| 594 | static int mt7622_pwm_ch6_1_funcs[] = { 4, }; |
| 595 | static int mt7622_pwm_ch6_2_pins[] = { 81, }; |
| 596 | static int mt7622_pwm_ch6_2_funcs[] = { 4, }; |
| 597 | static int mt7622_pwm_ch6_3_pins[] = { 100, }; |
| 598 | static int mt7622_pwm_ch6_3_funcs[] = { 0, }; |
| 599 | static int mt7622_pwm_ch7_0_pins[] = { 70, }; |
| 600 | static int mt7622_pwm_ch7_0_funcs[] = { 3, }; |
| 601 | static int mt7622_pwm_ch7_1_pins[] = { 82, }; |
| 602 | static int mt7622_pwm_ch7_1_funcs[] = { 4, }; |
| 603 | static int mt7622_pwm_ch7_2_pins[] = { 101, }; |
| 604 | static int mt7622_pwm_ch7_2_funcs[] = { 0, }; |
| 605 | |
| 606 | /* SD */ |
| 607 | static int mt7622_sd_0_pins[] = { 16, 17, 18, 19, 20, 21, }; |
| 608 | static int mt7622_sd_0_funcs[] = { 2, 2, 2, 2, 2, 2, }; |
| 609 | static int mt7622_sd_1_pins[] = { 25, 26, 27, 28, 29, 30, }; |
| 610 | static int mt7622_sd_1_funcs[] = { 2, 2, 2, 2, 2, 2, }; |
| 611 | |
| 612 | /* Serial NAND */ |
| 613 | static int mt7622_snfi_pins[] = { 8, 9, 10, 11, 12, 13, }; |
| 614 | static int mt7622_snfi_funcs[] = { 2, 2, 2, 2, 2, 2, }; |
| 615 | |
| 616 | /* SPI NOR */ |
| 617 | static int mt7622_spi_pins[] = { 8, 9, 10, 11, 12, 13 }; |
| 618 | static int mt7622_spi_funcs[] = { 0, 0, 0, 0, 0, 0, }; |
| 619 | |
| 620 | /* SPIC */ |
| 621 | static int mt7622_spic0_0_pins[] = { 63, 64, 65, 66, }; |
| 622 | static int mt7622_spic0_0_funcs[] = { 4, 4, 4, 4, }; |
| 623 | static int mt7622_spic0_1_pins[] = { 79, 80, 81, 82, }; |
| 624 | static int mt7622_spic0_1_funcs[] = { 3, 3, 3, 3, }; |
| 625 | static int mt7622_spic1_0_pins[] = { 67, 68, 69, 70, }; |
| 626 | static int mt7622_spic1_0_funcs[] = { 4, 4, 4, 4, }; |
| 627 | static int mt7622_spic1_1_pins[] = { 73, 74, 75, 76, }; |
| 628 | static int mt7622_spic1_1_funcs[] = { 0, 0, 0, 0, }; |
| 629 | static int mt7622_spic2_0_pins[] = { 10, 11, 12, 13, }; |
| 630 | static int mt7622_spic2_0_funcs[] = { 0, 0, 0, 0, }; |
| 631 | static int mt7622_spic2_0_wp_hold_pins[] = { 8, 9, }; |
| 632 | static int mt7622_spic2_0_wp_hold_funcs[] = { 0, 0, }; |
| 633 | |
| 634 | /* TDM */ |
| 635 | static int mt7622_tdm_0_out_mclk_bclk_ws_pins[] = { 8, 9, 10, }; |
| 636 | static int mt7622_tdm_0_out_mclk_bclk_ws_funcs[] = { 3, 3, 3, }; |
| 637 | static int mt7622_tdm_0_in_mclk_bclk_ws_pins[] = { 11, 12, 13, }; |
| 638 | static int mt7622_tdm_0_in_mclk_bclk_ws_funcs[] = { 3, 3, 3, }; |
| 639 | static int mt7622_tdm_0_out_data_pins[] = { 20, }; |
| 640 | static int mt7622_tdm_0_out_data_funcs[] = { 3, }; |
| 641 | static int mt7622_tdm_0_in_data_pins[] = { 21, }; |
| 642 | static int mt7622_tdm_0_in_data_funcs[] = { 3, }; |
| 643 | static int mt7622_tdm_1_out_mclk_bclk_ws_pins[] = { 57, 58, 59, }; |
| 644 | static int mt7622_tdm_1_out_mclk_bclk_ws_funcs[] = { 3, 3, 3, }; |
| 645 | static int mt7622_tdm_1_in_mclk_bclk_ws_pins[] = { 60, 61, 62, }; |
| 646 | static int mt7622_tdm_1_in_mclk_bclk_ws_funcs[] = { 3, 3, 3, }; |
| 647 | static int mt7622_tdm_1_out_data_pins[] = { 55, }; |
| 648 | static int mt7622_tdm_1_out_data_funcs[] = { 3, }; |
| 649 | static int mt7622_tdm_1_in_data_pins[] = { 56, }; |
| 650 | static int mt7622_tdm_1_in_data_funcs[] = { 3, }; |
| 651 | |
| 652 | /* UART */ |
| 653 | static int mt7622_uart0_0_tx_rx_pins[] = { 6, 7, }; |
| 654 | static int mt7622_uart0_0_tx_rx_funcs[] = { 0, 0, }; |
| 655 | static int mt7622_uart1_0_tx_rx_pins[] = { 55, 56, }; |
| 656 | static int mt7622_uart1_0_tx_rx_funcs[] = { 2, 2, }; |
| 657 | static int mt7622_uart1_0_rts_cts_pins[] = { 57, 58, }; |
| 658 | static int mt7622_uart1_0_rts_cts_funcs[] = { 2, 2, }; |
| 659 | static int mt7622_uart1_1_tx_rx_pins[] = { 73, 74, }; |
| 660 | static int mt7622_uart1_1_tx_rx_funcs[] = { 2, 2, }; |
| 661 | static int mt7622_uart1_1_rts_cts_pins[] = { 75, 76, }; |
| 662 | static int mt7622_uart1_1_rts_cts_funcs[] = { 2, 2, }; |
| 663 | static int mt7622_uart2_0_tx_rx_pins[] = { 3, 4, }; |
| 664 | static int mt7622_uart2_0_tx_rx_funcs[] = { 2, 2, }; |
| 665 | static int mt7622_uart2_0_rts_cts_pins[] = { 1, 2, }; |
| 666 | static int mt7622_uart2_0_rts_cts_funcs[] = { 2, 2, }; |
| 667 | static int mt7622_uart2_1_tx_rx_pins[] = { 51, 52, }; |
| 668 | static int mt7622_uart2_1_tx_rx_funcs[] = { 0, 0, }; |
| 669 | static int mt7622_uart2_1_rts_cts_pins[] = { 53, 54, }; |
| 670 | static int mt7622_uart2_1_rts_cts_funcs[] = { 0, 0, }; |
| 671 | static int mt7622_uart2_2_tx_rx_pins[] = { 59, 60, }; |
| 672 | static int mt7622_uart2_2_tx_rx_funcs[] = { 4, 4, }; |
| 673 | static int mt7622_uart2_2_rts_cts_pins[] = { 61, 62, }; |
| 674 | static int mt7622_uart2_2_rts_cts_funcs[] = { 4, 4, }; |
| 675 | static int mt7622_uart2_3_tx_rx_pins[] = { 95, 96, }; |
| 676 | static int mt7622_uart2_3_tx_rx_funcs[] = { 3, 3, }; |
| 677 | static int mt7622_uart3_0_tx_rx_pins[] = { 57, 58, }; |
| 678 | static int mt7622_uart3_0_tx_rx_funcs[] = { 5, 5, }; |
| 679 | static int mt7622_uart3_1_tx_rx_pins[] = { 81, 82, }; |
| 680 | static int mt7622_uart3_1_tx_rx_funcs[] = { 0, 0, }; |
| 681 | static int mt7622_uart3_1_rts_cts_pins[] = { 79, 80, }; |
| 682 | static int mt7622_uart3_1_rts_cts_funcs[] = { 0, 0, }; |
| 683 | static int mt7622_uart4_0_tx_rx_pins[] = { 61, 62, }; |
| 684 | static int mt7622_uart4_0_tx_rx_funcs[] = { 5, 5, }; |
| 685 | static int mt7622_uart4_1_tx_rx_pins[] = { 91, 92, }; |
| 686 | static int mt7622_uart4_1_tx_rx_funcs[] = { 0, 0, }; |
| 687 | static int mt7622_uart4_1_rts_cts_pins[] = { 93, 94 }; |
| 688 | static int mt7622_uart4_1_rts_cts_funcs[] = { 0, 0, }; |
| 689 | static int mt7622_uart4_2_tx_rx_pins[] = { 97, 98, }; |
| 690 | static int mt7622_uart4_2_tx_rx_funcs[] = { 2, 2, }; |
| 691 | static int mt7622_uart4_2_rts_cts_pins[] = { 95, 96 }; |
| 692 | static int mt7622_uart4_2_rts_cts_funcs[] = { 2, 2, }; |
| 693 | |
| 694 | /* Watchdog */ |
| 695 | static int mt7622_watchdog_pins[] = { 78, }; |
| 696 | static int mt7622_watchdog_funcs[] = { 0, }; |
| 697 | |
| 698 | /* WLAN LED */ |
| 699 | static int mt7622_wled_pins[] = { 85, }; |
| 700 | static int mt7622_wled_funcs[] = { 0, }; |
| 701 | |
| 702 | static const struct group_desc mt7622_groups[] = { |
| 703 | PINCTRL_PIN_GROUP("emmc", mt7622_emmc), |
| 704 | PINCTRL_PIN_GROUP("emmc_rst", mt7622_emmc_rst), |
| 705 | PINCTRL_PIN_GROUP("ephy_leds", mt7622_ephy_leds), |
| 706 | PINCTRL_PIN_GROUP("ephy0_led", mt7622_ephy0_led), |
| 707 | PINCTRL_PIN_GROUP("ephy1_led", mt7622_ephy1_led), |
| 708 | PINCTRL_PIN_GROUP("ephy2_led", mt7622_ephy2_led), |
| 709 | PINCTRL_PIN_GROUP("ephy3_led", mt7622_ephy3_led), |
| 710 | PINCTRL_PIN_GROUP("ephy4_led", mt7622_ephy4_led), |
| 711 | PINCTRL_PIN_GROUP("esw", mt7622_esw), |
| 712 | PINCTRL_PIN_GROUP("esw_p0_p1", mt7622_esw_p0_p1), |
| 713 | PINCTRL_PIN_GROUP("esw_p2_p3_p4", mt7622_esw_p2_p3_p4), |
| 714 | PINCTRL_PIN_GROUP("rgmii_via_esw", mt7622_rgmii_via_esw), |
| 715 | PINCTRL_PIN_GROUP("rgmii_via_gmac1", mt7622_rgmii_via_gmac1), |
| 716 | PINCTRL_PIN_GROUP("rgmii_via_gmac2", mt7622_rgmii_via_gmac2), |
| 717 | PINCTRL_PIN_GROUP("i2c0", mt7622_i2c0), |
| 718 | PINCTRL_PIN_GROUP("i2c1_0", mt7622_i2c1_0), |
| 719 | PINCTRL_PIN_GROUP("i2c1_1", mt7622_i2c1_1), |
| 720 | PINCTRL_PIN_GROUP("i2c1_2", mt7622_i2c1_2), |
| 721 | PINCTRL_PIN_GROUP("i2c2_0", mt7622_i2c2_0), |
| 722 | PINCTRL_PIN_GROUP("i2c2_1", mt7622_i2c2_1), |
| 723 | PINCTRL_PIN_GROUP("i2c2_2", mt7622_i2c2_2), |
| 724 | PINCTRL_PIN_GROUP("i2s_out_mclk_bclk_ws", mt7622_i2s_out_mclk_bclk_ws), |
| 725 | PINCTRL_PIN_GROUP("i2s_in_mclk_bclk_ws", mt7622_i2s_in_mclk_bclk_ws), |
| 726 | PINCTRL_PIN_GROUP("i2s1_in_data", mt7622_i2s1_in_data), |
| 727 | PINCTRL_PIN_GROUP("i2s2_in_data", mt7622_i2s2_in_data), |
| 728 | PINCTRL_PIN_GROUP("i2s3_in_data", mt7622_i2s3_in_data), |
| 729 | PINCTRL_PIN_GROUP("i2s4_in_data", mt7622_i2s4_in_data), |
| 730 | PINCTRL_PIN_GROUP("i2s1_out_data", mt7622_i2s1_out_data), |
| 731 | PINCTRL_PIN_GROUP("i2s2_out_data", mt7622_i2s2_out_data), |
| 732 | PINCTRL_PIN_GROUP("i2s3_out_data", mt7622_i2s3_out_data), |
| 733 | PINCTRL_PIN_GROUP("i2s4_out_data", mt7622_i2s4_out_data), |
| 734 | PINCTRL_PIN_GROUP("ir_0_tx", mt7622_ir_0_tx), |
| 735 | PINCTRL_PIN_GROUP("ir_1_tx", mt7622_ir_1_tx), |
| 736 | PINCTRL_PIN_GROUP("ir_2_tx", mt7622_ir_2_tx), |
| 737 | PINCTRL_PIN_GROUP("ir_0_rx", mt7622_ir_0_rx), |
| 738 | PINCTRL_PIN_GROUP("ir_1_rx", mt7622_ir_1_rx), |
| 739 | PINCTRL_PIN_GROUP("ir_2_rx", mt7622_ir_2_rx), |
| 740 | PINCTRL_PIN_GROUP("mdc_mdio", mt7622_mdc_mdio), |
| 741 | PINCTRL_PIN_GROUP("pcie0_0_waken", mt7622_pcie0_0_waken), |
| 742 | PINCTRL_PIN_GROUP("pcie0_0_clkreq", mt7622_pcie0_0_clkreq), |
| 743 | PINCTRL_PIN_GROUP("pcie0_1_waken", mt7622_pcie0_1_waken), |
| 744 | PINCTRL_PIN_GROUP("pcie0_1_clkreq", mt7622_pcie0_1_clkreq), |
| 745 | PINCTRL_PIN_GROUP("pcie1_0_waken", mt7622_pcie1_0_waken), |
| 746 | PINCTRL_PIN_GROUP("pcie1_0_clkreq", mt7622_pcie1_0_clkreq), |
| 747 | PINCTRL_PIN_GROUP("pcie0_pad_perst", mt7622_pcie0_pad_perst), |
| 748 | PINCTRL_PIN_GROUP("pcie1_pad_perst", mt7622_pcie1_pad_perst), |
| 749 | PINCTRL_PIN_GROUP("par_nand", mt7622_pnand), |
| 750 | PINCTRL_PIN_GROUP("pmic_bus", mt7622_pmic_bus), |
| 751 | PINCTRL_PIN_GROUP("pwm_ch1_0", mt7622_pwm_ch1_0), |
| 752 | PINCTRL_PIN_GROUP("pwm_ch1_1", mt7622_pwm_ch1_1), |
| 753 | PINCTRL_PIN_GROUP("pwm_ch1_2", mt7622_pwm_ch1_2), |
| 754 | PINCTRL_PIN_GROUP("pwm_ch2_0", mt7622_pwm_ch2_0), |
| 755 | PINCTRL_PIN_GROUP("pwm_ch2_1", mt7622_pwm_ch2_1), |
| 756 | PINCTRL_PIN_GROUP("pwm_ch2_2", mt7622_pwm_ch2_2), |
| 757 | PINCTRL_PIN_GROUP("pwm_ch3_0", mt7622_pwm_ch3_0), |
| 758 | PINCTRL_PIN_GROUP("pwm_ch3_1", mt7622_pwm_ch3_1), |
| 759 | PINCTRL_PIN_GROUP("pwm_ch3_2", mt7622_pwm_ch3_2), |
| 760 | PINCTRL_PIN_GROUP("pwm_ch4_0", mt7622_pwm_ch4_0), |
| 761 | PINCTRL_PIN_GROUP("pwm_ch4_1", mt7622_pwm_ch4_1), |
| 762 | PINCTRL_PIN_GROUP("pwm_ch4_2", mt7622_pwm_ch4_2), |
| 763 | PINCTRL_PIN_GROUP("pwm_ch4_3", mt7622_pwm_ch4_3), |
| 764 | PINCTRL_PIN_GROUP("pwm_ch5_0", mt7622_pwm_ch5_0), |
| 765 | PINCTRL_PIN_GROUP("pwm_ch5_1", mt7622_pwm_ch5_1), |
| 766 | PINCTRL_PIN_GROUP("pwm_ch5_2", mt7622_pwm_ch5_2), |
| 767 | PINCTRL_PIN_GROUP("pwm_ch6_0", mt7622_pwm_ch6_0), |
| 768 | PINCTRL_PIN_GROUP("pwm_ch6_1", mt7622_pwm_ch6_1), |
| 769 | PINCTRL_PIN_GROUP("pwm_ch6_2", mt7622_pwm_ch6_2), |
| 770 | PINCTRL_PIN_GROUP("pwm_ch6_3", mt7622_pwm_ch6_3), |
| 771 | PINCTRL_PIN_GROUP("pwm_ch7_0", mt7622_pwm_ch7_0), |
| 772 | PINCTRL_PIN_GROUP("pwm_ch7_1", mt7622_pwm_ch7_1), |
| 773 | PINCTRL_PIN_GROUP("pwm_ch7_2", mt7622_pwm_ch7_2), |
| 774 | PINCTRL_PIN_GROUP("sd_0", mt7622_sd_0), |
| 775 | PINCTRL_PIN_GROUP("sd_1", mt7622_sd_1), |
| 776 | PINCTRL_PIN_GROUP("snfi", mt7622_snfi), |
| 777 | PINCTRL_PIN_GROUP("spi_nor", mt7622_spi), |
| 778 | PINCTRL_PIN_GROUP("spic0_0", mt7622_spic0_0), |
| 779 | PINCTRL_PIN_GROUP("spic0_1", mt7622_spic0_1), |
| 780 | PINCTRL_PIN_GROUP("spic1_0", mt7622_spic1_0), |
| 781 | PINCTRL_PIN_GROUP("spic1_1", mt7622_spic1_1), |
| 782 | PINCTRL_PIN_GROUP("spic2_0", mt7622_spic2_0), |
| 783 | PINCTRL_PIN_GROUP("spic2_0_wp_hold", mt7622_spic2_0_wp_hold), |
| 784 | PINCTRL_PIN_GROUP("tdm_0_out_mclk_bclk_ws", |
| 785 | mt7622_tdm_0_out_mclk_bclk_ws), |
| 786 | PINCTRL_PIN_GROUP("tdm_0_in_mclk_bclk_ws", |
| 787 | mt7622_tdm_0_in_mclk_bclk_ws), |
| 788 | PINCTRL_PIN_GROUP("tdm_0_out_data", mt7622_tdm_0_out_data), |
| 789 | PINCTRL_PIN_GROUP("tdm_0_in_data", mt7622_tdm_0_in_data), |
| 790 | PINCTRL_PIN_GROUP("tdm_1_out_mclk_bclk_ws", |
| 791 | mt7622_tdm_1_out_mclk_bclk_ws), |
| 792 | PINCTRL_PIN_GROUP("tdm_1_in_mclk_bclk_ws", |
| 793 | mt7622_tdm_1_in_mclk_bclk_ws), |
| 794 | PINCTRL_PIN_GROUP("tdm_1_out_data", mt7622_tdm_1_out_data), |
| 795 | PINCTRL_PIN_GROUP("tdm_1_in_data", mt7622_tdm_1_in_data), |
| 796 | PINCTRL_PIN_GROUP("uart0_0_tx_rx", mt7622_uart0_0_tx_rx), |
| 797 | PINCTRL_PIN_GROUP("uart1_0_tx_rx", mt7622_uart1_0_tx_rx), |
| 798 | PINCTRL_PIN_GROUP("uart1_0_rts_cts", mt7622_uart1_0_rts_cts), |
| 799 | PINCTRL_PIN_GROUP("uart1_1_tx_rx", mt7622_uart1_1_tx_rx), |
| 800 | PINCTRL_PIN_GROUP("uart1_1_rts_cts", mt7622_uart1_1_rts_cts), |
| 801 | PINCTRL_PIN_GROUP("uart2_0_tx_rx", mt7622_uart2_0_tx_rx), |
| 802 | PINCTRL_PIN_GROUP("uart2_0_rts_cts", mt7622_uart2_0_rts_cts), |
| 803 | PINCTRL_PIN_GROUP("uart2_1_tx_rx", mt7622_uart2_1_tx_rx), |
| 804 | PINCTRL_PIN_GROUP("uart2_1_rts_cts", mt7622_uart2_1_rts_cts), |
| 805 | PINCTRL_PIN_GROUP("uart2_2_tx_rx", mt7622_uart2_2_tx_rx), |
| 806 | PINCTRL_PIN_GROUP("uart2_2_rts_cts", mt7622_uart2_2_rts_cts), |
| 807 | PINCTRL_PIN_GROUP("uart2_3_tx_rx", mt7622_uart2_3_tx_rx), |
| 808 | PINCTRL_PIN_GROUP("uart3_0_tx_rx", mt7622_uart3_0_tx_rx), |
| 809 | PINCTRL_PIN_GROUP("uart3_1_tx_rx", mt7622_uart3_1_tx_rx), |
| 810 | PINCTRL_PIN_GROUP("uart3_1_rts_cts", mt7622_uart3_1_rts_cts), |
| 811 | PINCTRL_PIN_GROUP("uart4_0_tx_rx", mt7622_uart4_0_tx_rx), |
| 812 | PINCTRL_PIN_GROUP("uart4_1_tx_rx", mt7622_uart4_1_tx_rx), |
| 813 | PINCTRL_PIN_GROUP("uart4_1_rts_cts", mt7622_uart4_1_rts_cts), |
| 814 | PINCTRL_PIN_GROUP("uart4_2_tx_rx", mt7622_uart4_2_tx_rx), |
| 815 | PINCTRL_PIN_GROUP("uart4_2_rts_cts", mt7622_uart4_2_rts_cts), |
| 816 | PINCTRL_PIN_GROUP("watchdog", mt7622_watchdog), |
| 817 | PINCTRL_PIN_GROUP("wled", mt7622_wled), |
| 818 | }; |
| 819 | |
| 820 | /* Joint those groups owning the same capability in user point of view which |
| 821 | * allows that people tend to use through the device tree. |
| 822 | */ |
| 823 | static const char *mt7622_emmc_groups[] = { "emmc", "emmc_rst", }; |
| 824 | static const char *mt7622_ethernet_groups[] = { "esw", "esw_p0_p1", |
| 825 | "esw_p2_p3_p4", "mdc_mdio", |
| 826 | "rgmii_via_gmac1", |
| 827 | "rgmii_via_gmac2", |
| 828 | "rgmii_via_esw", }; |
| 829 | static const char *mt7622_i2c_groups[] = { "i2c0", "i2c1_0", "i2c1_1", |
| 830 | "i2c1_2", "i2c2_0", "i2c2_1", |
| 831 | "i2c2_2", }; |
| 832 | static const char *mt7622_i2s_groups[] = { "i2s_out_mclk_bclk_ws", |
| 833 | "i2s_in_mclk_bclk_ws", |
| 834 | "i2s1_in_data", "i2s2_in_data", |
| 835 | "i2s3_in_data", "i2s4_in_data", |
| 836 | "i2s1_out_data", "i2s2_out_data", |
| 837 | "i2s3_out_data", "i2s4_out_data", }; |
| 838 | static const char *mt7622_ir_groups[] = { "ir_0_tx", "ir_1_tx", "ir_2_tx", |
| 839 | "ir_0_rx", "ir_1_rx", "ir_2_rx"}; |
| 840 | static const char *mt7622_led_groups[] = { "ephy_leds", "ephy0_led", |
| 841 | "ephy1_led", "ephy2_led", |
| 842 | "ephy3_led", "ephy4_led", |
| 843 | "wled", }; |
| 844 | static const char *mt7622_flash_groups[] = { "par_nand", "snfi", "spi_nor"}; |
| 845 | static const char *mt7622_pcie_groups[] = { "pcie0_0_waken", "pcie0_0_clkreq", |
| 846 | "pcie0_1_waken", "pcie0_1_clkreq", |
| 847 | "pcie1_0_waken", "pcie1_0_clkreq", |
| 848 | "pcie0_pad_perst", |
| 849 | "pcie1_pad_perst", }; |
| 850 | static const char *mt7622_pmic_bus_groups[] = { "pmic_bus", }; |
| 851 | static const char *mt7622_pwm_groups[] = { "pwm_ch1_0", "pwm_ch1_1", |
| 852 | "pwm_ch1_2", "pwm_ch2_0", |
| 853 | "pwm_ch2_1", "pwm_ch2_2", |
| 854 | "pwm_ch3_0", "pwm_ch3_1", |
| 855 | "pwm_ch3_2", "pwm_ch4_0", |
| 856 | "pwm_ch4_1", "pwm_ch4_2", |
| 857 | "pwm_ch4_3", "pwm_ch5_0", |
| 858 | "pwm_ch5_1", "pwm_ch5_2", |
| 859 | "pwm_ch6_0", "pwm_ch6_1", |
| 860 | "pwm_ch6_2", "pwm_ch6_3", |
| 861 | "pwm_ch7_0", "pwm_ch7_1", |
| 862 | "pwm_ch7_2", }; |
| 863 | static const char *mt7622_sd_groups[] = { "sd_0", "sd_1", }; |
| 864 | static const char *mt7622_spic_groups[] = { "spic0_0", "spic0_1", "spic1_0", |
| 865 | "spic1_1", "spic2_0", |
| 866 | "spic2_0_wp_hold", }; |
| 867 | static const char *mt7622_tdm_groups[] = { "tdm_0_out_mclk_bclk_ws", |
| 868 | "tdm_0_in_mclk_bclk_ws", |
| 869 | "tdm_0_out_data", |
| 870 | "tdm_0_in_data", |
| 871 | "tdm_1_out_mclk_bclk_ws", |
| 872 | "tdm_1_in_mclk_bclk_ws", |
| 873 | "tdm_1_out_data", |
| 874 | "tdm_1_in_data", }; |
| 875 | |
| 876 | static const char *mt7622_uart_groups[] = { "uart0_0_tx_rx", |
| 877 | "uart1_0_tx_rx", "uart1_0_rts_cts", |
| 878 | "uart1_1_tx_rx", "uart1_1_rts_cts", |
| 879 | "uart2_0_tx_rx", "uart2_0_rts_cts", |
| 880 | "uart2_1_tx_rx", "uart2_1_rts_cts", |
| 881 | "uart2_2_tx_rx", "uart2_2_rts_cts", |
| 882 | "uart2_3_tx_rx", |
| 883 | "uart3_0_tx_rx", |
| 884 | "uart3_1_tx_rx", "uart3_1_rts_cts", |
| 885 | "uart4_0_tx_rx", |
| 886 | "uart4_1_tx_rx", "uart4_1_rts_cts", |
| 887 | "uart4_2_tx_rx", |
| 888 | "uart4_2_rts_cts",}; |
| 889 | static const char *mt7622_wdt_groups[] = { "watchdog", }; |
| 890 | |
| 891 | static const struct function_desc mt7622_functions[] = { |
| 892 | {"emmc", mt7622_emmc_groups, ARRAY_SIZE(mt7622_emmc_groups)}, |
| 893 | {"eth", mt7622_ethernet_groups, ARRAY_SIZE(mt7622_ethernet_groups)}, |
| 894 | {"i2c", mt7622_i2c_groups, ARRAY_SIZE(mt7622_i2c_groups)}, |
| 895 | {"i2s", mt7622_i2s_groups, ARRAY_SIZE(mt7622_i2s_groups)}, |
| 896 | {"ir", mt7622_ir_groups, ARRAY_SIZE(mt7622_ir_groups)}, |
| 897 | {"led", mt7622_led_groups, ARRAY_SIZE(mt7622_led_groups)}, |
| 898 | {"flash", mt7622_flash_groups, ARRAY_SIZE(mt7622_flash_groups)}, |
| 899 | {"pcie", mt7622_pcie_groups, ARRAY_SIZE(mt7622_pcie_groups)}, |
| 900 | {"pmic", mt7622_pmic_bus_groups, ARRAY_SIZE(mt7622_pmic_bus_groups)}, |
| 901 | {"pwm", mt7622_pwm_groups, ARRAY_SIZE(mt7622_pwm_groups)}, |
| 902 | {"sd", mt7622_sd_groups, ARRAY_SIZE(mt7622_sd_groups)}, |
| 903 | {"spi", mt7622_spic_groups, ARRAY_SIZE(mt7622_spic_groups)}, |
| 904 | {"tdm", mt7622_tdm_groups, ARRAY_SIZE(mt7622_tdm_groups)}, |
| 905 | {"uart", mt7622_uart_groups, ARRAY_SIZE(mt7622_uart_groups)}, |
| 906 | {"watchdog", mt7622_wdt_groups, ARRAY_SIZE(mt7622_wdt_groups)}, |
| 907 | }; |
| 908 | |
| 909 | static const struct pinconf_generic_params mtk_custom_bindings[] = { |
| 910 | {"mediatek,tdsel", MTK_PIN_CONFIG_TDSEL, 0}, |
| 911 | {"mediatek,rdsel", MTK_PIN_CONFIG_RDSEL, 0}, |
| 912 | }; |
| 913 | |
| 914 | #ifdef CONFIG_DEBUG_FS |
| 915 | static const struct pin_config_item mtk_conf_items[] = { |
| 916 | PCONFDUMP(MTK_PIN_CONFIG_TDSEL, "tdsel", NULL, true), |
| 917 | PCONFDUMP(MTK_PIN_CONFIG_RDSEL, "rdsel", NULL, true), |
| 918 | }; |
| 919 | #endif |
| 920 | |
Sean Wang | e6dabd3 | 2018-05-21 01:01:49 +0800 | [diff] [blame] | 921 | static const struct mtk_eint_hw mt7622_eint_hw = { |
| 922 | .port_mask = 7, |
| 923 | .ports = 7, |
| 924 | .ap_num = ARRAY_SIZE(mt7622_pins), |
| 925 | .db_cnt = 20, |
| 926 | }; |
| 927 | |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 928 | static const struct mtk_pin_soc mt7622_data = { |
| 929 | .reg_cal = mt7622_reg_cals, |
| 930 | .pins = mt7622_pins, |
| 931 | .npins = ARRAY_SIZE(mt7622_pins), |
| 932 | .grps = mt7622_groups, |
| 933 | .ngrps = ARRAY_SIZE(mt7622_groups), |
| 934 | .funcs = mt7622_functions, |
| 935 | .nfuncs = ARRAY_SIZE(mt7622_functions), |
Sean Wang | e6dabd3 | 2018-05-21 01:01:49 +0800 | [diff] [blame] | 936 | .eint_hw = &mt7622_eint_hw, |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 937 | }; |
| 938 | |
| 939 | static void mtk_w32(struct mtk_pinctrl *pctl, u32 reg, u32 val) |
| 940 | { |
| 941 | writel_relaxed(val, pctl->base + reg); |
| 942 | } |
| 943 | |
| 944 | static u32 mtk_r32(struct mtk_pinctrl *pctl, u32 reg) |
| 945 | { |
| 946 | return readl_relaxed(pctl->base + reg); |
| 947 | } |
| 948 | |
| 949 | static void mtk_rmw(struct mtk_pinctrl *pctl, u32 reg, u32 mask, u32 set) |
| 950 | { |
| 951 | u32 val; |
| 952 | |
| 953 | val = mtk_r32(pctl, reg); |
| 954 | val &= ~mask; |
| 955 | val |= set; |
| 956 | mtk_w32(pctl, reg, val); |
| 957 | } |
| 958 | |
| 959 | static int mtk_hw_pin_field_lookup(struct mtk_pinctrl *hw, int pin, |
| 960 | const struct mtk_pin_reg_calc *rc, |
| 961 | struct mtk_pin_field *pfd) |
| 962 | { |
| 963 | const struct mtk_pin_field_calc *c, *e; |
| 964 | u32 bits; |
| 965 | |
| 966 | c = rc->range; |
| 967 | e = c + rc->nranges; |
| 968 | |
| 969 | while (c < e) { |
| 970 | if (pin >= c->s_pin && pin <= c->e_pin) |
| 971 | break; |
| 972 | c++; |
| 973 | } |
| 974 | |
| 975 | if (c >= e) { |
| 976 | dev_err(hw->dev, "Out of range for pin = %d\n", pin); |
| 977 | return -EINVAL; |
| 978 | } |
| 979 | |
| 980 | /* Caculated bits as the overall offset the pin is located at */ |
| 981 | bits = c->s_bit + (pin - c->s_pin) * (c->x_bits); |
| 982 | |
| 983 | /* Fill pfd from bits and 32-bit register applied is assumed */ |
| 984 | pfd->offset = c->s_addr + c->x_addrs * (bits / 32); |
| 985 | pfd->bitpos = bits % 32; |
| 986 | pfd->mask = (1 << c->x_bits) - 1; |
| 987 | |
| 988 | /* pfd->next is used for indicating that bit wrapping-around happens |
| 989 | * which requires the manipulation for bit 0 starting in the next |
| 990 | * register to form the complete field read/write. |
| 991 | */ |
| 992 | pfd->next = pfd->bitpos + c->x_bits - 1 > 31 ? c->x_addrs : 0; |
| 993 | |
| 994 | return 0; |
| 995 | } |
| 996 | |
| 997 | static int mtk_hw_pin_field_get(struct mtk_pinctrl *hw, int pin, |
| 998 | int field, struct mtk_pin_field *pfd) |
| 999 | { |
| 1000 | const struct mtk_pin_reg_calc *rc; |
| 1001 | |
| 1002 | if (field < 0 || field >= PINCTRL_PIN_REG_MAX) { |
| 1003 | dev_err(hw->dev, "Invalid Field %d\n", field); |
| 1004 | return -EINVAL; |
| 1005 | } |
| 1006 | |
| 1007 | if (hw->soc->reg_cal && hw->soc->reg_cal[field].range) { |
| 1008 | rc = &hw->soc->reg_cal[field]; |
| 1009 | } else { |
| 1010 | dev_err(hw->dev, "Undefined range for field %d\n", field); |
| 1011 | return -EINVAL; |
| 1012 | } |
| 1013 | |
| 1014 | return mtk_hw_pin_field_lookup(hw, pin, rc, pfd); |
| 1015 | } |
| 1016 | |
| 1017 | static void mtk_hw_bits_part(struct mtk_pin_field *pf, int *h, int *l) |
| 1018 | { |
| 1019 | *l = 32 - pf->bitpos; |
| 1020 | *h = get_count_order(pf->mask) - *l; |
| 1021 | } |
| 1022 | |
| 1023 | static void mtk_hw_write_cross_field(struct mtk_pinctrl *hw, |
| 1024 | struct mtk_pin_field *pf, int value) |
| 1025 | { |
| 1026 | int nbits_l, nbits_h; |
| 1027 | |
| 1028 | mtk_hw_bits_part(pf, &nbits_h, &nbits_l); |
| 1029 | |
| 1030 | mtk_rmw(hw, pf->offset, pf->mask << pf->bitpos, |
| 1031 | (value & pf->mask) << pf->bitpos); |
| 1032 | |
| 1033 | mtk_rmw(hw, pf->offset + pf->next, BIT(nbits_h) - 1, |
| 1034 | (value & pf->mask) >> nbits_l); |
| 1035 | } |
| 1036 | |
| 1037 | static void mtk_hw_read_cross_field(struct mtk_pinctrl *hw, |
| 1038 | struct mtk_pin_field *pf, int *value) |
| 1039 | { |
| 1040 | int nbits_l, nbits_h, h, l; |
| 1041 | |
| 1042 | mtk_hw_bits_part(pf, &nbits_h, &nbits_l); |
| 1043 | |
| 1044 | l = (mtk_r32(hw, pf->offset) >> pf->bitpos) & (BIT(nbits_l) - 1); |
| 1045 | h = (mtk_r32(hw, pf->offset + pf->next)) & (BIT(nbits_h) - 1); |
| 1046 | |
| 1047 | *value = (h << nbits_l) | l; |
| 1048 | } |
| 1049 | |
| 1050 | static int mtk_hw_set_value(struct mtk_pinctrl *hw, int pin, int field, |
| 1051 | int value) |
| 1052 | { |
| 1053 | struct mtk_pin_field pf; |
| 1054 | int err; |
| 1055 | |
| 1056 | err = mtk_hw_pin_field_get(hw, pin, field, &pf); |
| 1057 | if (err) |
| 1058 | return err; |
| 1059 | |
| 1060 | if (!pf.next) |
| 1061 | mtk_rmw(hw, pf.offset, pf.mask << pf.bitpos, |
| 1062 | (value & pf.mask) << pf.bitpos); |
| 1063 | else |
| 1064 | mtk_hw_write_cross_field(hw, &pf, value); |
| 1065 | |
| 1066 | return 0; |
| 1067 | } |
| 1068 | |
| 1069 | static int mtk_hw_get_value(struct mtk_pinctrl *hw, int pin, int field, |
| 1070 | int *value) |
| 1071 | { |
| 1072 | struct mtk_pin_field pf; |
| 1073 | int err; |
| 1074 | |
| 1075 | err = mtk_hw_pin_field_get(hw, pin, field, &pf); |
| 1076 | if (err) |
| 1077 | return err; |
| 1078 | |
| 1079 | if (!pf.next) |
| 1080 | *value = (mtk_r32(hw, pf.offset) >> pf.bitpos) & pf.mask; |
| 1081 | else |
| 1082 | mtk_hw_read_cross_field(hw, &pf, value); |
| 1083 | |
| 1084 | return 0; |
| 1085 | } |
| 1086 | |
| 1087 | static int mtk_pinmux_set_mux(struct pinctrl_dev *pctldev, |
| 1088 | unsigned int selector, unsigned int group) |
| 1089 | { |
| 1090 | struct mtk_pinctrl *hw = pinctrl_dev_get_drvdata(pctldev); |
| 1091 | struct function_desc *func; |
| 1092 | struct group_desc *grp; |
| 1093 | int i; |
| 1094 | |
| 1095 | func = pinmux_generic_get_function(pctldev, selector); |
| 1096 | if (!func) |
| 1097 | return -EINVAL; |
| 1098 | |
| 1099 | grp = pinctrl_generic_get_group(pctldev, group); |
| 1100 | if (!grp) |
| 1101 | return -EINVAL; |
| 1102 | |
| 1103 | dev_dbg(pctldev->dev, "enable function %s group %s\n", |
| 1104 | func->name, grp->name); |
| 1105 | |
| 1106 | for (i = 0; i < grp->num_pins; i++) { |
| 1107 | int *pin_modes = grp->data; |
| 1108 | |
| 1109 | mtk_hw_set_value(hw, grp->pins[i], PINCTRL_PIN_REG_MODE, |
| 1110 | pin_modes[i]); |
| 1111 | } |
| 1112 | |
| 1113 | return 0; |
| 1114 | } |
| 1115 | |
| 1116 | static int mtk_pinmux_gpio_request_enable(struct pinctrl_dev *pctldev, |
| 1117 | struct pinctrl_gpio_range *range, |
| 1118 | unsigned int pin) |
| 1119 | { |
| 1120 | struct mtk_pinctrl *hw = pinctrl_dev_get_drvdata(pctldev); |
| 1121 | |
| 1122 | return mtk_hw_set_value(hw, pin, PINCTRL_PIN_REG_MODE, MTK_GPIO_MODE); |
| 1123 | } |
| 1124 | |
| 1125 | static int mtk_pinmux_gpio_set_direction(struct pinctrl_dev *pctldev, |
| 1126 | struct pinctrl_gpio_range *range, |
| 1127 | unsigned int pin, bool input) |
| 1128 | { |
| 1129 | struct mtk_pinctrl *hw = pinctrl_dev_get_drvdata(pctldev); |
| 1130 | |
| 1131 | /* hardware would take 0 as input direction */ |
| 1132 | return mtk_hw_set_value(hw, pin, PINCTRL_PIN_REG_DIR, !input); |
| 1133 | } |
| 1134 | |
| 1135 | static int mtk_pinconf_get(struct pinctrl_dev *pctldev, |
| 1136 | unsigned int pin, unsigned long *config) |
| 1137 | { |
| 1138 | struct mtk_pinctrl *hw = pinctrl_dev_get_drvdata(pctldev); |
| 1139 | u32 param = pinconf_to_config_param(*config); |
| 1140 | int val, val2, err, reg, ret = 1; |
| 1141 | |
| 1142 | switch (param) { |
| 1143 | case PIN_CONFIG_BIAS_DISABLE: |
| 1144 | err = mtk_hw_get_value(hw, pin, PINCTRL_PIN_REG_PU, &val); |
| 1145 | if (err) |
| 1146 | return err; |
| 1147 | |
| 1148 | err = mtk_hw_get_value(hw, pin, PINCTRL_PIN_REG_PD, &val2); |
| 1149 | if (err) |
| 1150 | return err; |
| 1151 | |
| 1152 | if (val || val2) |
| 1153 | return -EINVAL; |
| 1154 | |
| 1155 | break; |
| 1156 | case PIN_CONFIG_BIAS_PULL_UP: |
| 1157 | case PIN_CONFIG_BIAS_PULL_DOWN: |
| 1158 | case PIN_CONFIG_SLEW_RATE: |
| 1159 | reg = (param == PIN_CONFIG_BIAS_PULL_UP) ? |
| 1160 | PINCTRL_PIN_REG_PU : |
| 1161 | (param == PIN_CONFIG_BIAS_PULL_DOWN) ? |
| 1162 | PINCTRL_PIN_REG_PD : PINCTRL_PIN_REG_SR; |
| 1163 | |
| 1164 | err = mtk_hw_get_value(hw, pin, reg, &val); |
| 1165 | if (err) |
| 1166 | return err; |
| 1167 | |
| 1168 | if (!val) |
| 1169 | return -EINVAL; |
| 1170 | |
| 1171 | break; |
| 1172 | case PIN_CONFIG_INPUT_ENABLE: |
| 1173 | case PIN_CONFIG_OUTPUT_ENABLE: |
| 1174 | err = mtk_hw_get_value(hw, pin, PINCTRL_PIN_REG_DIR, &val); |
| 1175 | if (err) |
Sean Wang | 8b3d9cd4 | 2018-01-10 00:28:25 +0800 | [diff] [blame] | 1176 | return err; |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 1177 | |
| 1178 | /* HW takes input mode as zero; output mode as non-zero */ |
| 1179 | if ((val && param == PIN_CONFIG_INPUT_ENABLE) || |
| 1180 | (!val && param == PIN_CONFIG_OUTPUT_ENABLE)) |
| 1181 | return -EINVAL; |
| 1182 | |
| 1183 | break; |
| 1184 | case PIN_CONFIG_INPUT_SCHMITT_ENABLE: |
| 1185 | err = mtk_hw_get_value(hw, pin, PINCTRL_PIN_REG_DIR, &val); |
| 1186 | if (err) |
| 1187 | return err; |
| 1188 | |
| 1189 | err = mtk_hw_get_value(hw, pin, PINCTRL_PIN_REG_SMT, &val2); |
| 1190 | if (err) |
| 1191 | return err; |
| 1192 | |
| 1193 | if (val || !val2) |
| 1194 | return -EINVAL; |
| 1195 | |
| 1196 | break; |
| 1197 | case PIN_CONFIG_DRIVE_STRENGTH: |
| 1198 | err = mtk_hw_get_value(hw, pin, PINCTRL_PIN_REG_E4, &val); |
| 1199 | if (err) |
Sean Wang | 8b3d9cd4 | 2018-01-10 00:28:25 +0800 | [diff] [blame] | 1200 | return err; |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 1201 | |
| 1202 | err = mtk_hw_get_value(hw, pin, PINCTRL_PIN_REG_E8, &val2); |
| 1203 | if (err) |
Sean Wang | 8b3d9cd4 | 2018-01-10 00:28:25 +0800 | [diff] [blame] | 1204 | return err; |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 1205 | |
| 1206 | /* 4mA when (e8, e4) = (0, 0); 8mA when (e8, e4) = (0, 1) |
| 1207 | * 12mA when (e8, e4) = (1, 0); 16mA when (e8, e4) = (1, 1) |
| 1208 | */ |
| 1209 | ret = ((val2 << 1) + val + 1) * 4; |
| 1210 | |
| 1211 | break; |
| 1212 | case MTK_PIN_CONFIG_TDSEL: |
| 1213 | case MTK_PIN_CONFIG_RDSEL: |
| 1214 | reg = (param == MTK_PIN_CONFIG_TDSEL) ? |
| 1215 | PINCTRL_PIN_REG_TDSEL : PINCTRL_PIN_REG_RDSEL; |
| 1216 | |
| 1217 | err = mtk_hw_get_value(hw, pin, reg, &val); |
| 1218 | if (err) |
Sean Wang | 8b3d9cd4 | 2018-01-10 00:28:25 +0800 | [diff] [blame] | 1219 | return err; |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 1220 | |
| 1221 | ret = val; |
| 1222 | |
| 1223 | break; |
| 1224 | default: |
| 1225 | return -ENOTSUPP; |
| 1226 | } |
| 1227 | |
| 1228 | *config = pinconf_to_config_packed(param, ret); |
| 1229 | |
| 1230 | return 0; |
| 1231 | } |
| 1232 | |
| 1233 | static int mtk_pinconf_set(struct pinctrl_dev *pctldev, unsigned int pin, |
| 1234 | unsigned long *configs, unsigned int num_configs) |
| 1235 | { |
| 1236 | struct mtk_pinctrl *hw = pinctrl_dev_get_drvdata(pctldev); |
| 1237 | u32 reg, param, arg; |
| 1238 | int cfg, err = 0; |
| 1239 | |
| 1240 | for (cfg = 0; cfg < num_configs; cfg++) { |
| 1241 | param = pinconf_to_config_param(configs[cfg]); |
| 1242 | arg = pinconf_to_config_argument(configs[cfg]); |
| 1243 | |
| 1244 | switch (param) { |
| 1245 | case PIN_CONFIG_BIAS_DISABLE: |
| 1246 | case PIN_CONFIG_BIAS_PULL_UP: |
| 1247 | case PIN_CONFIG_BIAS_PULL_DOWN: |
| 1248 | arg = (param == PIN_CONFIG_BIAS_DISABLE) ? 0 : |
| 1249 | (param == PIN_CONFIG_BIAS_PULL_UP) ? 1 : 2; |
| 1250 | |
| 1251 | err = mtk_hw_set_value(hw, pin, PINCTRL_PIN_REG_PU, |
| 1252 | arg & 1); |
| 1253 | if (err) |
| 1254 | goto err; |
| 1255 | |
| 1256 | err = mtk_hw_set_value(hw, pin, PINCTRL_PIN_REG_PD, |
| 1257 | !!(arg & 2)); |
| 1258 | if (err) |
| 1259 | goto err; |
| 1260 | break; |
| 1261 | case PIN_CONFIG_OUTPUT_ENABLE: |
| 1262 | err = mtk_hw_set_value(hw, pin, PINCTRL_PIN_REG_SMT, |
| 1263 | MTK_DISABLE); |
| 1264 | if (err) |
| 1265 | goto err; |
| 1266 | case PIN_CONFIG_INPUT_ENABLE: |
| 1267 | case PIN_CONFIG_SLEW_RATE: |
| 1268 | reg = (param == PIN_CONFIG_SLEW_RATE) ? |
| 1269 | PINCTRL_PIN_REG_SR : PINCTRL_PIN_REG_DIR; |
| 1270 | |
| 1271 | arg = (param == PIN_CONFIG_INPUT_ENABLE) ? 0 : |
| 1272 | (param == PIN_CONFIG_OUTPUT_ENABLE) ? 1 : arg; |
| 1273 | err = mtk_hw_set_value(hw, pin, reg, arg); |
| 1274 | if (err) |
| 1275 | goto err; |
| 1276 | |
| 1277 | break; |
| 1278 | case PIN_CONFIG_OUTPUT: |
| 1279 | err = mtk_hw_set_value(hw, pin, PINCTRL_PIN_REG_DIR, |
| 1280 | MTK_OUTPUT); |
| 1281 | if (err) |
| 1282 | goto err; |
| 1283 | |
| 1284 | err = mtk_hw_set_value(hw, pin, PINCTRL_PIN_REG_DO, |
| 1285 | arg); |
| 1286 | if (err) |
| 1287 | goto err; |
| 1288 | break; |
| 1289 | case PIN_CONFIG_INPUT_SCHMITT_ENABLE: |
| 1290 | /* arg = 1: Input mode & SMT enable ; |
| 1291 | * arg = 0: Output mode & SMT disable |
| 1292 | */ |
| 1293 | arg = arg ? 2 : 1; |
| 1294 | err = mtk_hw_set_value(hw, pin, PINCTRL_PIN_REG_DIR, |
| 1295 | arg & 1); |
| 1296 | if (err) |
| 1297 | goto err; |
| 1298 | |
| 1299 | err = mtk_hw_set_value(hw, pin, PINCTRL_PIN_REG_SMT, |
| 1300 | !!(arg & 2)); |
| 1301 | if (err) |
| 1302 | goto err; |
| 1303 | break; |
| 1304 | case PIN_CONFIG_DRIVE_STRENGTH: |
| 1305 | /* 4mA when (e8, e4) = (0, 0); |
| 1306 | * 8mA when (e8, e4) = (0, 1); |
| 1307 | * 12mA when (e8, e4) = (1, 0); |
| 1308 | * 16mA when (e8, e4) = (1, 1) |
| 1309 | */ |
| 1310 | if (!(arg % 4) && (arg >= 4 && arg <= 16)) { |
| 1311 | arg = arg / 4 - 1; |
| 1312 | err = mtk_hw_set_value(hw, pin, |
| 1313 | PINCTRL_PIN_REG_E4, |
| 1314 | arg & 0x1); |
| 1315 | if (err) |
| 1316 | goto err; |
| 1317 | |
| 1318 | err = mtk_hw_set_value(hw, pin, |
| 1319 | PINCTRL_PIN_REG_E8, |
| 1320 | (arg & 0x2) >> 1); |
| 1321 | if (err) |
| 1322 | goto err; |
| 1323 | } else { |
| 1324 | err = -ENOTSUPP; |
| 1325 | } |
| 1326 | break; |
| 1327 | case MTK_PIN_CONFIG_TDSEL: |
| 1328 | case MTK_PIN_CONFIG_RDSEL: |
| 1329 | reg = (param == MTK_PIN_CONFIG_TDSEL) ? |
| 1330 | PINCTRL_PIN_REG_TDSEL : PINCTRL_PIN_REG_RDSEL; |
| 1331 | |
| 1332 | err = mtk_hw_set_value(hw, pin, reg, arg); |
| 1333 | if (err) |
| 1334 | goto err; |
| 1335 | break; |
| 1336 | default: |
| 1337 | err = -ENOTSUPP; |
| 1338 | } |
| 1339 | } |
| 1340 | err: |
| 1341 | return err; |
| 1342 | } |
| 1343 | |
| 1344 | static int mtk_pinconf_group_get(struct pinctrl_dev *pctldev, |
| 1345 | unsigned int group, unsigned long *config) |
| 1346 | { |
| 1347 | const unsigned int *pins; |
| 1348 | unsigned int i, npins, old = 0; |
| 1349 | int ret; |
| 1350 | |
| 1351 | ret = pinctrl_generic_get_group_pins(pctldev, group, &pins, &npins); |
| 1352 | if (ret) |
| 1353 | return ret; |
| 1354 | |
| 1355 | for (i = 0; i < npins; i++) { |
| 1356 | if (mtk_pinconf_get(pctldev, pins[i], config)) |
| 1357 | return -ENOTSUPP; |
| 1358 | |
| 1359 | /* configs do not match between two pins */ |
| 1360 | if (i && old != *config) |
| 1361 | return -ENOTSUPP; |
| 1362 | |
| 1363 | old = *config; |
| 1364 | } |
| 1365 | |
| 1366 | return 0; |
| 1367 | } |
| 1368 | |
| 1369 | static int mtk_pinconf_group_set(struct pinctrl_dev *pctldev, |
| 1370 | unsigned int group, unsigned long *configs, |
| 1371 | unsigned int num_configs) |
| 1372 | { |
| 1373 | const unsigned int *pins; |
| 1374 | unsigned int i, npins; |
| 1375 | int ret; |
| 1376 | |
| 1377 | ret = pinctrl_generic_get_group_pins(pctldev, group, &pins, &npins); |
| 1378 | if (ret) |
| 1379 | return ret; |
| 1380 | |
| 1381 | for (i = 0; i < npins; i++) { |
| 1382 | ret = mtk_pinconf_set(pctldev, pins[i], configs, num_configs); |
| 1383 | if (ret) |
| 1384 | return ret; |
| 1385 | } |
| 1386 | |
| 1387 | return 0; |
| 1388 | } |
| 1389 | |
| 1390 | static const struct pinctrl_ops mtk_pctlops = { |
| 1391 | .get_groups_count = pinctrl_generic_get_group_count, |
| 1392 | .get_group_name = pinctrl_generic_get_group_name, |
| 1393 | .get_group_pins = pinctrl_generic_get_group_pins, |
| 1394 | .dt_node_to_map = pinconf_generic_dt_node_to_map_all, |
| 1395 | .dt_free_map = pinconf_generic_dt_free_map, |
| 1396 | }; |
| 1397 | |
| 1398 | static const struct pinmux_ops mtk_pmxops = { |
| 1399 | .get_functions_count = pinmux_generic_get_function_count, |
| 1400 | .get_function_name = pinmux_generic_get_function_name, |
| 1401 | .get_function_groups = pinmux_generic_get_function_groups, |
| 1402 | .set_mux = mtk_pinmux_set_mux, |
| 1403 | .gpio_request_enable = mtk_pinmux_gpio_request_enable, |
| 1404 | .gpio_set_direction = mtk_pinmux_gpio_set_direction, |
| 1405 | .strict = true, |
| 1406 | }; |
| 1407 | |
| 1408 | static const struct pinconf_ops mtk_confops = { |
| 1409 | .is_generic = true, |
| 1410 | .pin_config_get = mtk_pinconf_get, |
| 1411 | .pin_config_set = mtk_pinconf_set, |
| 1412 | .pin_config_group_get = mtk_pinconf_group_get, |
| 1413 | .pin_config_group_set = mtk_pinconf_group_set, |
| 1414 | .pin_config_config_dbg_show = pinconf_generic_dump_config, |
| 1415 | }; |
| 1416 | |
| 1417 | static struct pinctrl_desc mtk_desc = { |
| 1418 | .name = PINCTRL_PINCTRL_DEV, |
| 1419 | .pctlops = &mtk_pctlops, |
| 1420 | .pmxops = &mtk_pmxops, |
| 1421 | .confops = &mtk_confops, |
| 1422 | .owner = THIS_MODULE, |
| 1423 | }; |
| 1424 | |
| 1425 | static int mtk_gpio_get(struct gpio_chip *chip, unsigned int gpio) |
| 1426 | { |
| 1427 | struct mtk_pinctrl *hw = dev_get_drvdata(chip->parent); |
Sean Wang | 181cdac | 2018-01-10 00:28:24 +0800 | [diff] [blame] | 1428 | int value, err; |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 1429 | |
Sean Wang | 181cdac | 2018-01-10 00:28:24 +0800 | [diff] [blame] | 1430 | err = mtk_hw_get_value(hw, gpio, PINCTRL_PIN_REG_DI, &value); |
| 1431 | if (err) |
| 1432 | return err; |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 1433 | |
| 1434 | return !!value; |
| 1435 | } |
| 1436 | |
| 1437 | static void mtk_gpio_set(struct gpio_chip *chip, unsigned int gpio, int value) |
| 1438 | { |
| 1439 | struct mtk_pinctrl *hw = dev_get_drvdata(chip->parent); |
| 1440 | |
| 1441 | mtk_hw_set_value(hw, gpio, PINCTRL_PIN_REG_DO, !!value); |
| 1442 | } |
| 1443 | |
| 1444 | static int mtk_gpio_direction_input(struct gpio_chip *chip, unsigned int gpio) |
| 1445 | { |
| 1446 | return pinctrl_gpio_direction_input(chip->base + gpio); |
| 1447 | } |
| 1448 | |
| 1449 | static int mtk_gpio_direction_output(struct gpio_chip *chip, unsigned int gpio, |
| 1450 | int value) |
| 1451 | { |
| 1452 | mtk_gpio_set(chip, gpio, value); |
| 1453 | |
| 1454 | return pinctrl_gpio_direction_output(chip->base + gpio); |
| 1455 | } |
| 1456 | |
Sean Wang | e6dabd3 | 2018-05-21 01:01:49 +0800 | [diff] [blame] | 1457 | static int mtk_gpio_to_irq(struct gpio_chip *chip, unsigned int offset) |
| 1458 | { |
| 1459 | struct mtk_pinctrl *hw = gpiochip_get_data(chip); |
| 1460 | unsigned long eint_n; |
| 1461 | |
Sean Wang | 5f59154 | 2018-06-14 16:55:49 +0800 | [diff] [blame] | 1462 | if (!hw->eint) |
| 1463 | return -ENOTSUPP; |
| 1464 | |
Sean Wang | e6dabd3 | 2018-05-21 01:01:49 +0800 | [diff] [blame] | 1465 | eint_n = offset; |
| 1466 | |
| 1467 | return mtk_eint_find_irq(hw->eint, eint_n); |
| 1468 | } |
| 1469 | |
| 1470 | static int mtk_gpio_set_config(struct gpio_chip *chip, unsigned int offset, |
| 1471 | unsigned long config) |
| 1472 | { |
| 1473 | struct mtk_pinctrl *hw = gpiochip_get_data(chip); |
| 1474 | unsigned long eint_n; |
| 1475 | u32 debounce; |
| 1476 | |
Sean Wang | 5f59154 | 2018-06-14 16:55:49 +0800 | [diff] [blame] | 1477 | if (!hw->eint || |
| 1478 | pinconf_to_config_param(config) != PIN_CONFIG_INPUT_DEBOUNCE) |
Sean Wang | e6dabd3 | 2018-05-21 01:01:49 +0800 | [diff] [blame] | 1479 | return -ENOTSUPP; |
| 1480 | |
| 1481 | debounce = pinconf_to_config_argument(config); |
| 1482 | eint_n = offset; |
| 1483 | |
| 1484 | return mtk_eint_set_debounce(hw->eint, eint_n, debounce); |
| 1485 | } |
| 1486 | |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 1487 | static int mtk_build_gpiochip(struct mtk_pinctrl *hw, struct device_node *np) |
| 1488 | { |
| 1489 | struct gpio_chip *chip = &hw->chip; |
| 1490 | int ret; |
| 1491 | |
| 1492 | chip->label = PINCTRL_PINCTRL_DEV; |
| 1493 | chip->parent = hw->dev; |
| 1494 | chip->request = gpiochip_generic_request; |
| 1495 | chip->free = gpiochip_generic_free; |
| 1496 | chip->direction_input = mtk_gpio_direction_input; |
| 1497 | chip->direction_output = mtk_gpio_direction_output; |
| 1498 | chip->get = mtk_gpio_get; |
| 1499 | chip->set = mtk_gpio_set; |
Sean Wang | e6dabd3 | 2018-05-21 01:01:49 +0800 | [diff] [blame] | 1500 | chip->to_irq = mtk_gpio_to_irq, |
| 1501 | chip->set_config = mtk_gpio_set_config, |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 1502 | chip->base = -1; |
| 1503 | chip->ngpio = hw->soc->npins; |
| 1504 | chip->of_node = np; |
| 1505 | chip->of_gpio_n_cells = 2; |
| 1506 | |
| 1507 | ret = gpiochip_add_data(chip, hw); |
| 1508 | if (ret < 0) |
| 1509 | return ret; |
| 1510 | |
| 1511 | ret = gpiochip_add_pin_range(chip, dev_name(hw->dev), 0, 0, |
| 1512 | chip->ngpio); |
| 1513 | if (ret < 0) { |
| 1514 | gpiochip_remove(chip); |
| 1515 | return ret; |
| 1516 | } |
| 1517 | |
| 1518 | return 0; |
| 1519 | } |
| 1520 | |
| 1521 | static int mtk_build_groups(struct mtk_pinctrl *hw) |
| 1522 | { |
| 1523 | int err, i; |
| 1524 | |
| 1525 | for (i = 0; i < hw->soc->ngrps; i++) { |
| 1526 | const struct group_desc *group = hw->soc->grps + i; |
| 1527 | |
| 1528 | err = pinctrl_generic_add_group(hw->pctrl, group->name, |
| 1529 | group->pins, group->num_pins, |
| 1530 | group->data); |
| 1531 | if (err) { |
| 1532 | dev_err(hw->dev, "Failed to register group %s\n", |
| 1533 | group->name); |
| 1534 | return err; |
| 1535 | } |
| 1536 | } |
| 1537 | |
| 1538 | return 0; |
| 1539 | } |
| 1540 | |
| 1541 | static int mtk_build_functions(struct mtk_pinctrl *hw) |
| 1542 | { |
| 1543 | int i, err; |
| 1544 | |
| 1545 | for (i = 0; i < hw->soc->nfuncs ; i++) { |
| 1546 | const struct function_desc *func = hw->soc->funcs + i; |
| 1547 | |
| 1548 | err = pinmux_generic_add_function(hw->pctrl, func->name, |
| 1549 | func->group_names, |
| 1550 | func->num_group_names, |
| 1551 | func->data); |
| 1552 | if (err) { |
| 1553 | dev_err(hw->dev, "Failed to register function %s\n", |
| 1554 | func->name); |
| 1555 | return err; |
| 1556 | } |
| 1557 | } |
| 1558 | |
| 1559 | return 0; |
| 1560 | } |
| 1561 | |
Sean Wang | e6dabd3 | 2018-05-21 01:01:49 +0800 | [diff] [blame] | 1562 | static int mtk_xt_get_gpio_n(void *data, unsigned long eint_n, |
| 1563 | unsigned int *gpio_n, |
| 1564 | struct gpio_chip **gpio_chip) |
| 1565 | { |
| 1566 | struct mtk_pinctrl *hw = (struct mtk_pinctrl *)data; |
| 1567 | |
| 1568 | *gpio_chip = &hw->chip; |
| 1569 | *gpio_n = eint_n; |
| 1570 | |
| 1571 | return 0; |
| 1572 | } |
| 1573 | |
| 1574 | static int mtk_xt_get_gpio_state(void *data, unsigned long eint_n) |
| 1575 | { |
| 1576 | struct mtk_pinctrl *hw = (struct mtk_pinctrl *)data; |
| 1577 | struct gpio_chip *gpio_chip; |
| 1578 | unsigned int gpio_n; |
| 1579 | int err; |
| 1580 | |
| 1581 | err = mtk_xt_get_gpio_n(hw, eint_n, &gpio_n, &gpio_chip); |
| 1582 | if (err) |
| 1583 | return err; |
| 1584 | |
| 1585 | return mtk_gpio_get(gpio_chip, gpio_n); |
| 1586 | } |
| 1587 | |
| 1588 | static int mtk_xt_set_gpio_as_eint(void *data, unsigned long eint_n) |
| 1589 | { |
| 1590 | struct mtk_pinctrl *hw = (struct mtk_pinctrl *)data; |
| 1591 | struct gpio_chip *gpio_chip; |
| 1592 | unsigned int gpio_n; |
| 1593 | int err; |
| 1594 | |
| 1595 | err = mtk_xt_get_gpio_n(hw, eint_n, &gpio_n, &gpio_chip); |
| 1596 | if (err) |
| 1597 | return err; |
| 1598 | |
| 1599 | err = mtk_hw_set_value(hw, gpio_n, PINCTRL_PIN_REG_MODE, |
| 1600 | MTK_GPIO_MODE); |
| 1601 | if (err) |
| 1602 | return err; |
| 1603 | |
| 1604 | err = mtk_hw_set_value(hw, gpio_n, PINCTRL_PIN_REG_DIR, MTK_INPUT); |
| 1605 | if (err) |
| 1606 | return err; |
| 1607 | |
| 1608 | err = mtk_hw_set_value(hw, gpio_n, PINCTRL_PIN_REG_SMT, MTK_ENABLE); |
| 1609 | if (err) |
| 1610 | return err; |
| 1611 | |
| 1612 | return 0; |
| 1613 | } |
| 1614 | |
| 1615 | static const struct mtk_eint_xt mtk_eint_xt = { |
| 1616 | .get_gpio_n = mtk_xt_get_gpio_n, |
| 1617 | .get_gpio_state = mtk_xt_get_gpio_state, |
| 1618 | .set_gpio_as_eint = mtk_xt_set_gpio_as_eint, |
| 1619 | }; |
| 1620 | |
| 1621 | static int |
| 1622 | mtk_build_eint(struct mtk_pinctrl *hw, struct platform_device *pdev) |
| 1623 | { |
| 1624 | struct device_node *np = pdev->dev.of_node; |
| 1625 | struct resource *res; |
| 1626 | |
| 1627 | if (!IS_ENABLED(CONFIG_EINT_MTK)) |
| 1628 | return 0; |
| 1629 | |
| 1630 | if (!of_property_read_bool(np, "interrupt-controller")) |
| 1631 | return -ENODEV; |
| 1632 | |
| 1633 | hw->eint = devm_kzalloc(hw->dev, sizeof(*hw->eint), GFP_KERNEL); |
| 1634 | if (!hw->eint) |
| 1635 | return -ENOMEM; |
| 1636 | |
| 1637 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "eint"); |
| 1638 | if (!res) { |
| 1639 | dev_err(&pdev->dev, "Unable to get eint resource\n"); |
| 1640 | return -ENODEV; |
| 1641 | } |
| 1642 | |
| 1643 | hw->eint->base = devm_ioremap_resource(&pdev->dev, res); |
| 1644 | if (IS_ERR(hw->eint->base)) |
| 1645 | return PTR_ERR(hw->eint->base); |
| 1646 | |
| 1647 | hw->eint->irq = irq_of_parse_and_map(np, 0); |
| 1648 | if (!hw->eint->irq) |
| 1649 | return -EINVAL; |
| 1650 | |
| 1651 | hw->eint->dev = &pdev->dev; |
| 1652 | hw->eint->hw = hw->soc->eint_hw; |
| 1653 | hw->eint->pctl = hw; |
| 1654 | hw->eint->gpio_xlate = &mtk_eint_xt; |
| 1655 | |
| 1656 | return mtk_eint_do_init(hw->eint); |
| 1657 | } |
| 1658 | |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 1659 | static const struct of_device_id mtk_pinctrl_of_match[] = { |
| 1660 | { .compatible = "mediatek,mt7622-pinctrl", .data = &mt7622_data}, |
| 1661 | { } |
| 1662 | }; |
| 1663 | |
| 1664 | static int mtk_pinctrl_probe(struct platform_device *pdev) |
| 1665 | { |
| 1666 | struct resource *res; |
| 1667 | struct mtk_pinctrl *hw; |
| 1668 | const struct of_device_id *of_id = |
| 1669 | of_match_device(mtk_pinctrl_of_match, &pdev->dev); |
| 1670 | int err; |
| 1671 | |
| 1672 | hw = devm_kzalloc(&pdev->dev, sizeof(*hw), GFP_KERNEL); |
| 1673 | if (!hw) |
| 1674 | return -ENOMEM; |
| 1675 | |
| 1676 | hw->soc = of_id->data; |
| 1677 | |
| 1678 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 1679 | if (!res) { |
| 1680 | dev_err(&pdev->dev, "missing IO resource\n"); |
| 1681 | return -ENXIO; |
| 1682 | } |
| 1683 | |
| 1684 | hw->dev = &pdev->dev; |
| 1685 | hw->base = devm_ioremap_resource(&pdev->dev, res); |
| 1686 | if (IS_ERR(hw->base)) |
| 1687 | return PTR_ERR(hw->base); |
| 1688 | |
| 1689 | /* Setup pins descriptions per SoC types */ |
| 1690 | mtk_desc.pins = hw->soc->pins; |
| 1691 | mtk_desc.npins = hw->soc->npins; |
| 1692 | mtk_desc.num_custom_params = ARRAY_SIZE(mtk_custom_bindings); |
| 1693 | mtk_desc.custom_params = mtk_custom_bindings; |
| 1694 | #ifdef CONFIG_DEBUG_FS |
| 1695 | mtk_desc.custom_conf_items = mtk_conf_items; |
| 1696 | #endif |
| 1697 | |
| 1698 | hw->pctrl = devm_pinctrl_register(&pdev->dev, &mtk_desc, hw); |
| 1699 | if (IS_ERR(hw->pctrl)) |
| 1700 | return PTR_ERR(hw->pctrl); |
| 1701 | |
| 1702 | /* Setup groups descriptions per SoC types */ |
| 1703 | err = mtk_build_groups(hw); |
| 1704 | if (err) { |
| 1705 | dev_err(&pdev->dev, "Failed to build groups\n"); |
| 1706 | return 0; |
| 1707 | } |
| 1708 | |
| 1709 | /* Setup functions descriptions per SoC types */ |
| 1710 | err = mtk_build_functions(hw); |
| 1711 | if (err) { |
| 1712 | dev_err(&pdev->dev, "Failed to build functions\n"); |
| 1713 | return err; |
| 1714 | } |
| 1715 | |
| 1716 | err = mtk_build_gpiochip(hw, pdev->dev.of_node); |
| 1717 | if (err) { |
| 1718 | dev_err(&pdev->dev, "Failed to add gpio_chip\n"); |
| 1719 | return err; |
| 1720 | } |
| 1721 | |
Sean Wang | e6dabd3 | 2018-05-21 01:01:49 +0800 | [diff] [blame] | 1722 | err = mtk_build_eint(hw, pdev); |
| 1723 | if (err) |
| 1724 | dev_warn(&pdev->dev, |
| 1725 | "Failed to add EINT, but pinctrl still can work\n"); |
| 1726 | |
Sean Wang | d6ed935 | 2017-12-12 14:24:20 +0800 | [diff] [blame] | 1727 | platform_set_drvdata(pdev, hw); |
| 1728 | |
| 1729 | return 0; |
| 1730 | } |
| 1731 | |
| 1732 | static struct platform_driver mtk_pinctrl_driver = { |
| 1733 | .driver = { |
| 1734 | .name = "mtk-pinctrl", |
| 1735 | .of_match_table = mtk_pinctrl_of_match, |
| 1736 | }, |
| 1737 | .probe = mtk_pinctrl_probe, |
| 1738 | }; |
| 1739 | |
| 1740 | static int __init mtk_pinctrl_init(void) |
| 1741 | { |
| 1742 | return platform_driver_register(&mtk_pinctrl_driver); |
| 1743 | } |
| 1744 | arch_initcall(mtk_pinctrl_init); |