1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Pinctrl driver for Rockchip SoCs
4 *
5 * Copyright (c) 2013 MundoReader S.L.
6 * Author: Heiko Stuebner <heiko@sntech.de>
7 *
8 * With some ideas taken from pinctrl-samsung:
9 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
10 * http://www.samsung.com
11 * Copyright (c) 2012 Linaro Ltd
12 * http://www.linaro.org
13 *
14 * and pinctrl-at91:
15 * Copyright (C) 2011-2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16 */
17
18 #include <linux/init.h>
19 #include <linux/platform_device.h>
20 #include <linux/io.h>
21 #include <linux/bitops.h>
22 #include <linux/gpio/driver.h>
23 #include <linux/of_address.h>
24 #include <linux/of_irq.h>
25 #include <linux/pinctrl/machine.h>
26 #include <linux/pinctrl/pinconf.h>
27 #include <linux/pinctrl/pinctrl.h>
28 #include <linux/pinctrl/pinmux.h>
29 #include <linux/pinctrl/pinconf-generic.h>
30 #include <linux/irqchip/chained_irq.h>
31 #include <linux/clk.h>
32 #include <linux/regmap.h>
33 #include <linux/mfd/syscon.h>
34 #include <dt-bindings/pinctrl/rockchip.h>
35
36 #include "core.h"
37 #include "pinconf.h"
38
39 /* GPIO control registers */
40 #define GPIO_SWPORT_DR 0x00
41 #define GPIO_SWPORT_DDR 0x04
42 #define GPIO_INTEN 0x30
43 #define GPIO_INTMASK 0x34
44 #define GPIO_INTTYPE_LEVEL 0x38
45 #define GPIO_INT_POLARITY 0x3c
46 #define GPIO_INT_STATUS 0x40
47 #define GPIO_INT_RAWSTATUS 0x44
48 #define GPIO_DEBOUNCE 0x48
49 #define GPIO_PORTS_EOI 0x4c
50 #define GPIO_EXT_PORT 0x50
51 #define GPIO_LS_SYNC 0x60
52
53 enum rockchip_pinctrl_type {
54 PX30,
55 RV1108,
56 RK2928,
57 RK3066B,
58 RK3128,
59 RK3188,
60 RK3288,
61 RK3368,
62 RK3399,
63 };
64
65 /**
66 * Encode variants of iomux registers into a type variable
67 */
68 #define IOMUX_GPIO_ONLY BIT(0)
69 #define IOMUX_WIDTH_4BIT BIT(1)
70 #define IOMUX_SOURCE_PMU BIT(2)
71 #define IOMUX_UNROUTED BIT(3)
72 #define IOMUX_WIDTH_3BIT BIT(4)
73
74 /**
75 * @type: iomux variant using IOMUX_* constants
76 * @offset: if initialized to -1 it will be autocalculated, by specifying
77 * an initial offset value the relevant source offset can be reset
78 * to a new value for autocalculating the following iomux registers.
79 */
80 struct rockchip_iomux {
81 int type;
82 int offset;
83 };
84
85 /**
86 * enum type index corresponding to rockchip_perpin_drv_list arrays index.
87 */
88 enum rockchip_pin_drv_type {
89 DRV_TYPE_IO_DEFAULT = 0,
90 DRV_TYPE_IO_1V8_OR_3V0,
91 DRV_TYPE_IO_1V8_ONLY,
92 DRV_TYPE_IO_1V8_3V0_AUTO,
93 DRV_TYPE_IO_3V3_ONLY,
94 DRV_TYPE_MAX
95 };
96
97 /**
98 * enum type index corresponding to rockchip_pull_list arrays index.
99 */
100 enum rockchip_pin_pull_type {
101 PULL_TYPE_IO_DEFAULT = 0,
102 PULL_TYPE_IO_1V8_ONLY,
103 PULL_TYPE_MAX
104 };
105
106 /**
107 * @drv_type: drive strength variant using rockchip_perpin_drv_type
108 * @offset: if initialized to -1 it will be autocalculated, by specifying
109 * an initial offset value the relevant source offset can be reset
110 * to a new value for autocalculating the following drive strength
111 * registers. if used chips own cal_drv func instead to calculate
112 * registers offset, the variant could be ignored.
113 */
114 struct rockchip_drv {
115 enum rockchip_pin_drv_type drv_type;
116 int offset;
117 };
118
119 /**
120 * @reg_base: register base of the gpio bank
121 * @reg_pull: optional separate register for additional pull settings
122 * @clk: clock of the gpio bank
123 * @irq: interrupt of the gpio bank
124 * @saved_masks: Saved content of GPIO_INTEN at suspend time.
125 * @pin_base: first pin number
126 * @nr_pins: number of pins in this bank
127 * @name: name of the bank
128 * @bank_num: number of the bank, to account for holes
129 * @iomux: array describing the 4 iomux sources of the bank
130 * @drv: array describing the 4 drive strength sources of the bank
131 * @pull_type: array describing the 4 pull type sources of the bank
132 * @valid: is all necessary information present
133 * @of_node: dt node of this bank
134 * @drvdata: common pinctrl basedata
135 * @domain: irqdomain of the gpio bank
136 * @gpio_chip: gpiolib chip
137 * @grange: gpio range
138 * @slock: spinlock for the gpio bank
139 * @route_mask: bits describing the routing pins of per bank
140 */
141 struct rockchip_pin_bank {
142 void __iomem *reg_base;
143 struct regmap *regmap_pull;
144 struct clk *clk;
145 int irq;
146 u32 saved_masks;
147 u32 pin_base;
148 u8 nr_pins;
149 char *name;
150 u8 bank_num;
151 struct rockchip_iomux iomux[4];
152 struct rockchip_drv drv[4];
153 enum rockchip_pin_pull_type pull_type[4];
154 bool valid;
155 struct device_node *of_node;
156 struct rockchip_pinctrl *drvdata;
157 struct irq_domain *domain;
158 struct gpio_chip gpio_chip;
159 struct pinctrl_gpio_range grange;
160 raw_spinlock_t slock;
161 u32 toggle_edge_mode;
162 u32 recalced_mask;
163 u32 route_mask;
164 };
165
166 #define PIN_BANK(id, pins, label) \
167 { \
168 .bank_num = id, \
169 .nr_pins = pins, \
170 .name = label, \
171 .iomux = { \
172 { .offset = -1 }, \
173 { .offset = -1 }, \
174 { .offset = -1 }, \
175 { .offset = -1 }, \
176 }, \
177 }
178
179 #define PIN_BANK_IOMUX_FLAGS(id, pins, label, iom0, iom1, iom2, iom3) \
180 { \
181 .bank_num = id, \
182 .nr_pins = pins, \
183 .name = label, \
184 .iomux = { \
185 { .type = iom0, .offset = -1 }, \
186 { .type = iom1, .offset = -1 }, \
187 { .type = iom2, .offset = -1 }, \
188 { .type = iom3, .offset = -1 }, \
189 }, \
190 }
191
192 #define PIN_BANK_DRV_FLAGS(id, pins, label, type0, type1, type2, type3) \
193 { \
194 .bank_num = id, \
195 .nr_pins = pins, \
196 .name = label, \
197 .iomux = { \
198 { .offset = -1 }, \
199 { .offset = -1 }, \
200 { .offset = -1 }, \
201 { .offset = -1 }, \
202 }, \
203 .drv = { \
204 { .drv_type = type0, .offset = -1 }, \
205 { .drv_type = type1, .offset = -1 }, \
206 { .drv_type = type2, .offset = -1 }, \
207 { .drv_type = type3, .offset = -1 }, \
208 }, \
209 }
210
211 #define PIN_BANK_DRV_FLAGS_PULL_FLAGS(id, pins, label, drv0, drv1, \
212 drv2, drv3, pull0, pull1, \
213 pull2, pull3) \
214 { \
215 .bank_num = id, \
216 .nr_pins = pins, \
217 .name = label, \
218 .iomux = { \
219 { .offset = -1 }, \
220 { .offset = -1 }, \
221 { .offset = -1 }, \
222 { .offset = -1 }, \
223 }, \
224 .drv = { \
225 { .drv_type = drv0, .offset = -1 }, \
226 { .drv_type = drv1, .offset = -1 }, \
227 { .drv_type = drv2, .offset = -1 }, \
228 { .drv_type = drv3, .offset = -1 }, \
229 }, \
230 .pull_type[0] = pull0, \
231 .pull_type[1] = pull1, \
232 .pull_type[2] = pull2, \
233 .pull_type[3] = pull3, \
234 }
235
236 #define PIN_BANK_IOMUX_DRV_FLAGS_OFFSET(id, pins, label, iom0, iom1, \
237 iom2, iom3, drv0, drv1, drv2, \
238 drv3, offset0, offset1, \
239 offset2, offset3) \
240 { \
241 .bank_num = id, \
242 .nr_pins = pins, \
243 .name = label, \
244 .iomux = { \
245 { .type = iom0, .offset = -1 }, \
246 { .type = iom1, .offset = -1 }, \
247 { .type = iom2, .offset = -1 }, \
248 { .type = iom3, .offset = -1 }, \
249 }, \
250 .drv = { \
251 { .drv_type = drv0, .offset = offset0 }, \
252 { .drv_type = drv1, .offset = offset1 }, \
253 { .drv_type = drv2, .offset = offset2 }, \
254 { .drv_type = drv3, .offset = offset3 }, \
255 }, \
256 }
257
258 #define PIN_BANK_IOMUX_FLAGS_DRV_FLAGS_OFFSET_PULL_FLAGS(id, pins, \
259 label, iom0, iom1, iom2, \
260 iom3, drv0, drv1, drv2, \
261 drv3, offset0, offset1, \
262 offset2, offset3, pull0, \
263 pull1, pull2, pull3) \
264 { \
265 .bank_num = id, \
266 .nr_pins = pins, \
267 .name = label, \
268 .iomux = { \
269 { .type = iom0, .offset = -1 }, \
270 { .type = iom1, .offset = -1 }, \
271 { .type = iom2, .offset = -1 }, \
272 { .type = iom3, .offset = -1 }, \
273 }, \
274 .drv = { \
275 { .drv_type = drv0, .offset = offset0 }, \
276 { .drv_type = drv1, .offset = offset1 }, \
277 { .drv_type = drv2, .offset = offset2 }, \
278 { .drv_type = drv3, .offset = offset3 }, \
279 }, \
280 .pull_type[0] = pull0, \
281 .pull_type[1] = pull1, \
282 .pull_type[2] = pull2, \
283 .pull_type[3] = pull3, \
284 }
285
286 /**
287 * struct rockchip_mux_recalced_data: represent a pin iomux data.
288 * @num: bank number.
289 * @pin: pin number.
290 * @bit: index at register.
291 * @reg: register offset.
292 * @mask: mask bit
293 */
294 struct rockchip_mux_recalced_data {
295 u8 num;
296 u8 pin;
297 u32 reg;
298 u8 bit;
299 u8 mask;
300 };
301
302 enum rockchip_mux_route_location {
303 ROCKCHIP_ROUTE_SAME = 0,
304 ROCKCHIP_ROUTE_PMU,
305 ROCKCHIP_ROUTE_GRF,
306 };
307
308 /**
309 * struct rockchip_mux_recalced_data: represent a pin iomux data.
310 * @bank_num: bank number.
311 * @pin: index at register or used to calc index.
312 * @func: the min pin.
313 * @route_offset: the max pin.
314 * @route_val: the register offset.
315 */
316 struct rockchip_mux_route_data {
317 u8 bank_num;
318 u8 pin;
319 u8 func;
320 enum rockchip_mux_route_location route_location;
321 u32 route_offset;
322 u32 route_val;
323 };
324
325 /**
326 */
327 struct rockchip_pin_ctrl {
328 struct rockchip_pin_bank *pin_banks;
329 u32 nr_banks;
330 u32 nr_pins;
331 char *label;
332 enum rockchip_pinctrl_type type;
333 int grf_mux_offset;
334 int pmu_mux_offset;
335 int grf_drv_offset;
336 int pmu_drv_offset;
337 struct rockchip_mux_recalced_data *iomux_recalced;
338 u32 niomux_recalced;
339 struct rockchip_mux_route_data *iomux_routes;
340 u32 niomux_routes;
341
342 void (*pull_calc_reg)(struct rockchip_pin_bank *bank,
343 int pin_num, struct regmap **regmap,
344 int *reg, u8 *bit);
345 void (*drv_calc_reg)(struct rockchip_pin_bank *bank,
346 int pin_num, struct regmap **regmap,
347 int *reg, u8 *bit);
348 int (*schmitt_calc_reg)(struct rockchip_pin_bank *bank,
349 int pin_num, struct regmap **regmap,
350 int *reg, u8 *bit);
351 };
352
353 struct rockchip_pin_config {
354 unsigned int func;
355 unsigned long *configs;
356 unsigned int nconfigs;
357 };
358
359 /**
360 * struct rockchip_pin_group: represent group of pins of a pinmux function.
361 * @name: name of the pin group, used to lookup the group.
362 * @pins: the pins included in this group.
363 * @npins: number of pins included in this group.
364 * @func: the mux function number to be programmed when selected.
365 * @configs: the config values to be set for each pin
366 * @nconfigs: number of configs for each pin
367 */
368 struct rockchip_pin_group {
369 const char *name;
370 unsigned int npins;
371 unsigned int *pins;
372 struct rockchip_pin_config *data;
373 };
374
375 /**
376 * struct rockchip_pmx_func: represent a pin function.
377 * @name: name of the pin function, used to lookup the function.
378 * @groups: one or more names of pin groups that provide this function.
379 * @num_groups: number of groups included in @groups.
380 */
381 struct rockchip_pmx_func {
382 const char *name;
383 const char **groups;
384 u8 ngroups;
385 };
386
387 struct rockchip_pinctrl {
388 struct regmap *regmap_base;
389 int reg_size;
390 struct regmap *regmap_pull;
391 struct regmap *regmap_pmu;
392 struct device *dev;
393 struct rockchip_pin_ctrl *ctrl;
394 struct pinctrl_desc pctl;
395 struct pinctrl_dev *pctl_dev;
396 struct rockchip_pin_group *groups;
397 unsigned int ngroups;
398 struct rockchip_pmx_func *functions;
399 unsigned int nfunctions;
400 };
401
402 static struct regmap_config rockchip_regmap_config = {
403 .reg_bits = 32,
404 .val_bits = 32,
405 .reg_stride = 4,
406 };
407
pinctrl_name_to_group(const struct rockchip_pinctrl * info,const char * name)408 static inline const struct rockchip_pin_group *pinctrl_name_to_group(
409 const struct rockchip_pinctrl *info,
410 const char *name)
411 {
412 int i;
413
414 for (i = 0; i < info->ngroups; i++) {
415 if (!strcmp(info->groups[i].name, name))
416 return &info->groups[i];
417 }
418
419 return NULL;
420 }
421
422 /*
423 * given a pin number that is local to a pin controller, find out the pin bank
424 * and the register base of the pin bank.
425 */
pin_to_bank(struct rockchip_pinctrl * info,unsigned pin)426 static struct rockchip_pin_bank *pin_to_bank(struct rockchip_pinctrl *info,
427 unsigned pin)
428 {
429 struct rockchip_pin_bank *b = info->ctrl->pin_banks;
430
431 while (pin >= (b->pin_base + b->nr_pins))
432 b++;
433
434 return b;
435 }
436
bank_num_to_bank(struct rockchip_pinctrl * info,unsigned num)437 static struct rockchip_pin_bank *bank_num_to_bank(
438 struct rockchip_pinctrl *info,
439 unsigned num)
440 {
441 struct rockchip_pin_bank *b = info->ctrl->pin_banks;
442 int i;
443
444 for (i = 0; i < info->ctrl->nr_banks; i++, b++) {
445 if (b->bank_num == num)
446 return b;
447 }
448
449 return ERR_PTR(-EINVAL);
450 }
451
452 /*
453 * Pinctrl_ops handling
454 */
455
rockchip_get_groups_count(struct pinctrl_dev * pctldev)456 static int rockchip_get_groups_count(struct pinctrl_dev *pctldev)
457 {
458 struct rockchip_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
459
460 return info->ngroups;
461 }
462
rockchip_get_group_name(struct pinctrl_dev * pctldev,unsigned selector)463 static const char *rockchip_get_group_name(struct pinctrl_dev *pctldev,
464 unsigned selector)
465 {
466 struct rockchip_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
467
468 return info->groups[selector].name;
469 }
470
rockchip_get_group_pins(struct pinctrl_dev * pctldev,unsigned selector,const unsigned ** pins,unsigned * npins)471 static int rockchip_get_group_pins(struct pinctrl_dev *pctldev,
472 unsigned selector, const unsigned **pins,
473 unsigned *npins)
474 {
475 struct rockchip_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
476
477 if (selector >= info->ngroups)
478 return -EINVAL;
479
480 *pins = info->groups[selector].pins;
481 *npins = info->groups[selector].npins;
482
483 return 0;
484 }
485
rockchip_dt_node_to_map(struct pinctrl_dev * pctldev,struct device_node * np,struct pinctrl_map ** map,unsigned * num_maps)486 static int rockchip_dt_node_to_map(struct pinctrl_dev *pctldev,
487 struct device_node *np,
488 struct pinctrl_map **map, unsigned *num_maps)
489 {
490 struct rockchip_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
491 const struct rockchip_pin_group *grp;
492 struct pinctrl_map *new_map;
493 struct device_node *parent;
494 int map_num = 1;
495 int i;
496
497 /*
498 * first find the group of this node and check if we need to create
499 * config maps for pins
500 */
501 grp = pinctrl_name_to_group(info, np->name);
502 if (!grp) {
503 dev_err(info->dev, "unable to find group for node %pOFn\n",
504 np);
505 return -EINVAL;
506 }
507
508 map_num += grp->npins;
509 new_map = devm_kcalloc(pctldev->dev, map_num, sizeof(*new_map),
510 GFP_KERNEL);
511 if (!new_map)
512 return -ENOMEM;
513
514 *map = new_map;
515 *num_maps = map_num;
516
517 /* create mux map */
518 parent = of_get_parent(np);
519 if (!parent) {
520 devm_kfree(pctldev->dev, new_map);
521 return -EINVAL;
522 }
523 new_map[0].type = PIN_MAP_TYPE_MUX_GROUP;
524 new_map[0].data.mux.function = parent->name;
525 new_map[0].data.mux.group = np->name;
526 of_node_put(parent);
527
528 /* create config map */
529 new_map++;
530 for (i = 0; i < grp->npins; i++) {
531 new_map[i].type = PIN_MAP_TYPE_CONFIGS_PIN;
532 new_map[i].data.configs.group_or_pin =
533 pin_get_name(pctldev, grp->pins[i]);
534 new_map[i].data.configs.configs = grp->data[i].configs;
535 new_map[i].data.configs.num_configs = grp->data[i].nconfigs;
536 }
537
538 dev_dbg(pctldev->dev, "maps: function %s group %s num %d\n",
539 (*map)->data.mux.function, (*map)->data.mux.group, map_num);
540
541 return 0;
542 }
543
rockchip_dt_free_map(struct pinctrl_dev * pctldev,struct pinctrl_map * map,unsigned num_maps)544 static void rockchip_dt_free_map(struct pinctrl_dev *pctldev,
545 struct pinctrl_map *map, unsigned num_maps)
546 {
547 }
548
549 static const struct pinctrl_ops rockchip_pctrl_ops = {
550 .get_groups_count = rockchip_get_groups_count,
551 .get_group_name = rockchip_get_group_name,
552 .get_group_pins = rockchip_get_group_pins,
553 .dt_node_to_map = rockchip_dt_node_to_map,
554 .dt_free_map = rockchip_dt_free_map,
555 };
556
557 /*
558 * Hardware access
559 */
560
561 static struct rockchip_mux_recalced_data rv1108_mux_recalced_data[] = {
562 {
563 .num = 1,
564 .pin = 0,
565 .reg = 0x418,
566 .bit = 0,
567 .mask = 0x3
568 }, {
569 .num = 1,
570 .pin = 1,
571 .reg = 0x418,
572 .bit = 2,
573 .mask = 0x3
574 }, {
575 .num = 1,
576 .pin = 2,
577 .reg = 0x418,
578 .bit = 4,
579 .mask = 0x3
580 }, {
581 .num = 1,
582 .pin = 3,
583 .reg = 0x418,
584 .bit = 6,
585 .mask = 0x3
586 }, {
587 .num = 1,
588 .pin = 4,
589 .reg = 0x418,
590 .bit = 8,
591 .mask = 0x3
592 }, {
593 .num = 1,
594 .pin = 5,
595 .reg = 0x418,
596 .bit = 10,
597 .mask = 0x3
598 }, {
599 .num = 1,
600 .pin = 6,
601 .reg = 0x418,
602 .bit = 12,
603 .mask = 0x3
604 }, {
605 .num = 1,
606 .pin = 7,
607 .reg = 0x418,
608 .bit = 14,
609 .mask = 0x3
610 }, {
611 .num = 1,
612 .pin = 8,
613 .reg = 0x41c,
614 .bit = 0,
615 .mask = 0x3
616 }, {
617 .num = 1,
618 .pin = 9,
619 .reg = 0x41c,
620 .bit = 2,
621 .mask = 0x3
622 },
623 };
624
625 static struct rockchip_mux_recalced_data rk3128_mux_recalced_data[] = {
626 {
627 .num = 2,
628 .pin = 20,
629 .reg = 0xe8,
630 .bit = 0,
631 .mask = 0x7
632 }, {
633 .num = 2,
634 .pin = 21,
635 .reg = 0xe8,
636 .bit = 4,
637 .mask = 0x7
638 }, {
639 .num = 2,
640 .pin = 22,
641 .reg = 0xe8,
642 .bit = 8,
643 .mask = 0x7
644 }, {
645 .num = 2,
646 .pin = 23,
647 .reg = 0xe8,
648 .bit = 12,
649 .mask = 0x7
650 }, {
651 .num = 2,
652 .pin = 24,
653 .reg = 0xd4,
654 .bit = 12,
655 .mask = 0x7
656 },
657 };
658
659 static struct rockchip_mux_recalced_data rk3328_mux_recalced_data[] = {
660 {
661 .num = 2,
662 .pin = 12,
663 .reg = 0x24,
664 .bit = 8,
665 .mask = 0x3
666 }, {
667 .num = 2,
668 .pin = 15,
669 .reg = 0x28,
670 .bit = 0,
671 .mask = 0x7
672 }, {
673 .num = 2,
674 .pin = 23,
675 .reg = 0x30,
676 .bit = 14,
677 .mask = 0x3
678 },
679 };
680
rockchip_get_recalced_mux(struct rockchip_pin_bank * bank,int pin,int * reg,u8 * bit,int * mask)681 static void rockchip_get_recalced_mux(struct rockchip_pin_bank *bank, int pin,
682 int *reg, u8 *bit, int *mask)
683 {
684 struct rockchip_pinctrl *info = bank->drvdata;
685 struct rockchip_pin_ctrl *ctrl = info->ctrl;
686 struct rockchip_mux_recalced_data *data;
687 int i;
688
689 for (i = 0; i < ctrl->niomux_recalced; i++) {
690 data = &ctrl->iomux_recalced[i];
691 if (data->num == bank->bank_num &&
692 data->pin == pin)
693 break;
694 }
695
696 if (i >= ctrl->niomux_recalced)
697 return;
698
699 *reg = data->reg;
700 *mask = data->mask;
701 *bit = data->bit;
702 }
703
704 static struct rockchip_mux_route_data px30_mux_route_data[] = {
705 {
706 /* cif-d2m0 */
707 .bank_num = 2,
708 .pin = 0,
709 .func = 1,
710 .route_offset = 0x184,
711 .route_val = BIT(16 + 7),
712 }, {
713 /* cif-d2m1 */
714 .bank_num = 3,
715 .pin = 3,
716 .func = 3,
717 .route_offset = 0x184,
718 .route_val = BIT(16 + 7) | BIT(7),
719 }, {
720 /* pdm-m0 */
721 .bank_num = 3,
722 .pin = 22,
723 .func = 2,
724 .route_offset = 0x184,
725 .route_val = BIT(16 + 8),
726 }, {
727 /* pdm-m1 */
728 .bank_num = 2,
729 .pin = 22,
730 .func = 1,
731 .route_offset = 0x184,
732 .route_val = BIT(16 + 8) | BIT(8),
733 }, {
734 /* uart2-rxm0 */
735 .bank_num = 1,
736 .pin = 27,
737 .func = 2,
738 .route_offset = 0x184,
739 .route_val = BIT(16 + 10),
740 }, {
741 /* uart2-rxm1 */
742 .bank_num = 2,
743 .pin = 14,
744 .func = 2,
745 .route_offset = 0x184,
746 .route_val = BIT(16 + 10) | BIT(10),
747 }, {
748 /* uart3-rxm0 */
749 .bank_num = 0,
750 .pin = 17,
751 .func = 2,
752 .route_offset = 0x184,
753 .route_val = BIT(16 + 9),
754 }, {
755 /* uart3-rxm1 */
756 .bank_num = 1,
757 .pin = 15,
758 .func = 2,
759 .route_offset = 0x184,
760 .route_val = BIT(16 + 9) | BIT(9),
761 },
762 };
763
764 static struct rockchip_mux_route_data rk3128_mux_route_data[] = {
765 {
766 /* spi-0 */
767 .bank_num = 1,
768 .pin = 10,
769 .func = 1,
770 .route_offset = 0x144,
771 .route_val = BIT(16 + 3) | BIT(16 + 4),
772 }, {
773 /* spi-1 */
774 .bank_num = 1,
775 .pin = 27,
776 .func = 3,
777 .route_offset = 0x144,
778 .route_val = BIT(16 + 3) | BIT(16 + 4) | BIT(3),
779 }, {
780 /* spi-2 */
781 .bank_num = 0,
782 .pin = 13,
783 .func = 2,
784 .route_offset = 0x144,
785 .route_val = BIT(16 + 3) | BIT(16 + 4) | BIT(4),
786 }, {
787 /* i2s-0 */
788 .bank_num = 1,
789 .pin = 5,
790 .func = 1,
791 .route_offset = 0x144,
792 .route_val = BIT(16 + 5),
793 }, {
794 /* i2s-1 */
795 .bank_num = 0,
796 .pin = 14,
797 .func = 1,
798 .route_offset = 0x144,
799 .route_val = BIT(16 + 5) | BIT(5),
800 }, {
801 /* emmc-0 */
802 .bank_num = 1,
803 .pin = 22,
804 .func = 2,
805 .route_offset = 0x144,
806 .route_val = BIT(16 + 6),
807 }, {
808 /* emmc-1 */
809 .bank_num = 2,
810 .pin = 4,
811 .func = 2,
812 .route_offset = 0x144,
813 .route_val = BIT(16 + 6) | BIT(6),
814 },
815 };
816
817 static struct rockchip_mux_route_data rk3188_mux_route_data[] = {
818 {
819 /* non-iomuxed emmc/flash pins on flash-dqs */
820 .bank_num = 0,
821 .pin = 24,
822 .func = 1,
823 .route_location = ROCKCHIP_ROUTE_GRF,
824 .route_offset = 0xa0,
825 .route_val = BIT(16 + 11),
826 }, {
827 /* non-iomuxed emmc/flash pins on emmc-clk */
828 .bank_num = 0,
829 .pin = 24,
830 .func = 2,
831 .route_location = ROCKCHIP_ROUTE_GRF,
832 .route_offset = 0xa0,
833 .route_val = BIT(16 + 11) | BIT(11),
834 },
835 };
836
837 static struct rockchip_mux_route_data rk3228_mux_route_data[] = {
838 {
839 /* pwm0-0 */
840 .bank_num = 0,
841 .pin = 26,
842 .func = 1,
843 .route_offset = 0x50,
844 .route_val = BIT(16),
845 }, {
846 /* pwm0-1 */
847 .bank_num = 3,
848 .pin = 21,
849 .func = 1,
850 .route_offset = 0x50,
851 .route_val = BIT(16) | BIT(0),
852 }, {
853 /* pwm1-0 */
854 .bank_num = 0,
855 .pin = 27,
856 .func = 1,
857 .route_offset = 0x50,
858 .route_val = BIT(16 + 1),
859 }, {
860 /* pwm1-1 */
861 .bank_num = 0,
862 .pin = 30,
863 .func = 2,
864 .route_offset = 0x50,
865 .route_val = BIT(16 + 1) | BIT(1),
866 }, {
867 /* pwm2-0 */
868 .bank_num = 0,
869 .pin = 28,
870 .func = 1,
871 .route_offset = 0x50,
872 .route_val = BIT(16 + 2),
873 }, {
874 /* pwm2-1 */
875 .bank_num = 1,
876 .pin = 12,
877 .func = 2,
878 .route_offset = 0x50,
879 .route_val = BIT(16 + 2) | BIT(2),
880 }, {
881 /* pwm3-0 */
882 .bank_num = 3,
883 .pin = 26,
884 .func = 1,
885 .route_offset = 0x50,
886 .route_val = BIT(16 + 3),
887 }, {
888 /* pwm3-1 */
889 .bank_num = 1,
890 .pin = 11,
891 .func = 2,
892 .route_offset = 0x50,
893 .route_val = BIT(16 + 3) | BIT(3),
894 }, {
895 /* sdio-0_d0 */
896 .bank_num = 1,
897 .pin = 1,
898 .func = 1,
899 .route_offset = 0x50,
900 .route_val = BIT(16 + 4),
901 }, {
902 /* sdio-1_d0 */
903 .bank_num = 3,
904 .pin = 2,
905 .func = 1,
906 .route_offset = 0x50,
907 .route_val = BIT(16 + 4) | BIT(4),
908 }, {
909 /* spi-0_rx */
910 .bank_num = 0,
911 .pin = 13,
912 .func = 2,
913 .route_offset = 0x50,
914 .route_val = BIT(16 + 5),
915 }, {
916 /* spi-1_rx */
917 .bank_num = 2,
918 .pin = 0,
919 .func = 2,
920 .route_offset = 0x50,
921 .route_val = BIT(16 + 5) | BIT(5),
922 }, {
923 /* emmc-0_cmd */
924 .bank_num = 1,
925 .pin = 22,
926 .func = 2,
927 .route_offset = 0x50,
928 .route_val = BIT(16 + 7),
929 }, {
930 /* emmc-1_cmd */
931 .bank_num = 2,
932 .pin = 4,
933 .func = 2,
934 .route_offset = 0x50,
935 .route_val = BIT(16 + 7) | BIT(7),
936 }, {
937 /* uart2-0_rx */
938 .bank_num = 1,
939 .pin = 19,
940 .func = 2,
941 .route_offset = 0x50,
942 .route_val = BIT(16 + 8),
943 }, {
944 /* uart2-1_rx */
945 .bank_num = 1,
946 .pin = 10,
947 .func = 2,
948 .route_offset = 0x50,
949 .route_val = BIT(16 + 8) | BIT(8),
950 }, {
951 /* uart1-0_rx */
952 .bank_num = 1,
953 .pin = 10,
954 .func = 1,
955 .route_offset = 0x50,
956 .route_val = BIT(16 + 11),
957 }, {
958 /* uart1-1_rx */
959 .bank_num = 3,
960 .pin = 13,
961 .func = 1,
962 .route_offset = 0x50,
963 .route_val = BIT(16 + 11) | BIT(11),
964 },
965 };
966
967 static struct rockchip_mux_route_data rk3288_mux_route_data[] = {
968 {
969 /* edphdmi_cecinoutt1 */
970 .bank_num = 7,
971 .pin = 16,
972 .func = 2,
973 .route_offset = 0x264,
974 .route_val = BIT(16 + 12) | BIT(12),
975 }, {
976 /* edphdmi_cecinout */
977 .bank_num = 7,
978 .pin = 23,
979 .func = 4,
980 .route_offset = 0x264,
981 .route_val = BIT(16 + 12),
982 },
983 };
984
985 static struct rockchip_mux_route_data rk3328_mux_route_data[] = {
986 {
987 /* uart2dbg_rxm0 */
988 .bank_num = 1,
989 .pin = 1,
990 .func = 2,
991 .route_offset = 0x50,
992 .route_val = BIT(16) | BIT(16 + 1),
993 }, {
994 /* uart2dbg_rxm1 */
995 .bank_num = 2,
996 .pin = 1,
997 .func = 1,
998 .route_offset = 0x50,
999 .route_val = BIT(16) | BIT(16 + 1) | BIT(0),
1000 }, {
1001 /* gmac-m1_rxd0 */
1002 .bank_num = 1,
1003 .pin = 11,
1004 .func = 2,
1005 .route_offset = 0x50,
1006 .route_val = BIT(16 + 2) | BIT(2),
1007 }, {
1008 /* gmac-m1-optimized_rxd3 */
1009 .bank_num = 1,
1010 .pin = 14,
1011 .func = 2,
1012 .route_offset = 0x50,
1013 .route_val = BIT(16 + 10) | BIT(10),
1014 }, {
1015 /* pdm_sdi0m0 */
1016 .bank_num = 2,
1017 .pin = 19,
1018 .func = 2,
1019 .route_offset = 0x50,
1020 .route_val = BIT(16 + 3),
1021 }, {
1022 /* pdm_sdi0m1 */
1023 .bank_num = 1,
1024 .pin = 23,
1025 .func = 3,
1026 .route_offset = 0x50,
1027 .route_val = BIT(16 + 3) | BIT(3),
1028 }, {
1029 /* spi_rxdm2 */
1030 .bank_num = 3,
1031 .pin = 2,
1032 .func = 4,
1033 .route_offset = 0x50,
1034 .route_val = BIT(16 + 4) | BIT(16 + 5) | BIT(5),
1035 }, {
1036 /* i2s2_sdim0 */
1037 .bank_num = 1,
1038 .pin = 24,
1039 .func = 1,
1040 .route_offset = 0x50,
1041 .route_val = BIT(16 + 6),
1042 }, {
1043 /* i2s2_sdim1 */
1044 .bank_num = 3,
1045 .pin = 2,
1046 .func = 6,
1047 .route_offset = 0x50,
1048 .route_val = BIT(16 + 6) | BIT(6),
1049 }, {
1050 /* card_iom1 */
1051 .bank_num = 2,
1052 .pin = 22,
1053 .func = 3,
1054 .route_offset = 0x50,
1055 .route_val = BIT(16 + 7) | BIT(7),
1056 }, {
1057 /* tsp_d5m1 */
1058 .bank_num = 2,
1059 .pin = 16,
1060 .func = 3,
1061 .route_offset = 0x50,
1062 .route_val = BIT(16 + 8) | BIT(8),
1063 }, {
1064 /* cif_data5m1 */
1065 .bank_num = 2,
1066 .pin = 16,
1067 .func = 4,
1068 .route_offset = 0x50,
1069 .route_val = BIT(16 + 9) | BIT(9),
1070 },
1071 };
1072
1073 static struct rockchip_mux_route_data rk3399_mux_route_data[] = {
1074 {
1075 /* uart2dbga_rx */
1076 .bank_num = 4,
1077 .pin = 8,
1078 .func = 2,
1079 .route_offset = 0xe21c,
1080 .route_val = BIT(16 + 10) | BIT(16 + 11),
1081 }, {
1082 /* uart2dbgb_rx */
1083 .bank_num = 4,
1084 .pin = 16,
1085 .func = 2,
1086 .route_offset = 0xe21c,
1087 .route_val = BIT(16 + 10) | BIT(16 + 11) | BIT(10),
1088 }, {
1089 /* uart2dbgc_rx */
1090 .bank_num = 4,
1091 .pin = 19,
1092 .func = 1,
1093 .route_offset = 0xe21c,
1094 .route_val = BIT(16 + 10) | BIT(16 + 11) | BIT(11),
1095 }, {
1096 /* pcie_clkreqn */
1097 .bank_num = 2,
1098 .pin = 26,
1099 .func = 2,
1100 .route_offset = 0xe21c,
1101 .route_val = BIT(16 + 14),
1102 }, {
1103 /* pcie_clkreqnb */
1104 .bank_num = 4,
1105 .pin = 24,
1106 .func = 1,
1107 .route_offset = 0xe21c,
1108 .route_val = BIT(16 + 14) | BIT(14),
1109 },
1110 };
1111
rockchip_get_mux_route(struct rockchip_pin_bank * bank,int pin,int mux,u32 * loc,u32 * reg,u32 * value)1112 static bool rockchip_get_mux_route(struct rockchip_pin_bank *bank, int pin,
1113 int mux, u32 *loc, u32 *reg, u32 *value)
1114 {
1115 struct rockchip_pinctrl *info = bank->drvdata;
1116 struct rockchip_pin_ctrl *ctrl = info->ctrl;
1117 struct rockchip_mux_route_data *data;
1118 int i;
1119
1120 for (i = 0; i < ctrl->niomux_routes; i++) {
1121 data = &ctrl->iomux_routes[i];
1122 if ((data->bank_num == bank->bank_num) &&
1123 (data->pin == pin) && (data->func == mux))
1124 break;
1125 }
1126
1127 if (i >= ctrl->niomux_routes)
1128 return false;
1129
1130 *loc = data->route_location;
1131 *reg = data->route_offset;
1132 *value = data->route_val;
1133
1134 return true;
1135 }
1136
rockchip_get_mux(struct rockchip_pin_bank * bank,int pin)1137 static int rockchip_get_mux(struct rockchip_pin_bank *bank, int pin)
1138 {
1139 struct rockchip_pinctrl *info = bank->drvdata;
1140 int iomux_num = (pin / 8);
1141 struct regmap *regmap;
1142 unsigned int val;
1143 int reg, ret, mask, mux_type;
1144 u8 bit;
1145
1146 if (iomux_num > 3)
1147 return -EINVAL;
1148
1149 if (bank->iomux[iomux_num].type & IOMUX_UNROUTED) {
1150 dev_err(info->dev, "pin %d is unrouted\n", pin);
1151 return -EINVAL;
1152 }
1153
1154 if (bank->iomux[iomux_num].type & IOMUX_GPIO_ONLY)
1155 return RK_FUNC_GPIO;
1156
1157 regmap = (bank->iomux[iomux_num].type & IOMUX_SOURCE_PMU)
1158 ? info->regmap_pmu : info->regmap_base;
1159
1160 /* get basic quadrupel of mux registers and the correct reg inside */
1161 mux_type = bank->iomux[iomux_num].type;
1162 reg = bank->iomux[iomux_num].offset;
1163 if (mux_type & IOMUX_WIDTH_4BIT) {
1164 if ((pin % 8) >= 4)
1165 reg += 0x4;
1166 bit = (pin % 4) * 4;
1167 mask = 0xf;
1168 } else if (mux_type & IOMUX_WIDTH_3BIT) {
1169 if ((pin % 8) >= 5)
1170 reg += 0x4;
1171 bit = (pin % 8 % 5) * 3;
1172 mask = 0x7;
1173 } else {
1174 bit = (pin % 8) * 2;
1175 mask = 0x3;
1176 }
1177
1178 if (bank->recalced_mask & BIT(pin))
1179 rockchip_get_recalced_mux(bank, pin, ®, &bit, &mask);
1180
1181 ret = regmap_read(regmap, reg, &val);
1182 if (ret)
1183 return ret;
1184
1185 return ((val >> bit) & mask);
1186 }
1187
rockchip_verify_mux(struct rockchip_pin_bank * bank,int pin,int mux)1188 static int rockchip_verify_mux(struct rockchip_pin_bank *bank,
1189 int pin, int mux)
1190 {
1191 struct rockchip_pinctrl *info = bank->drvdata;
1192 int iomux_num = (pin / 8);
1193
1194 if (iomux_num > 3)
1195 return -EINVAL;
1196
1197 if (bank->iomux[iomux_num].type & IOMUX_UNROUTED) {
1198 dev_err(info->dev, "pin %d is unrouted\n", pin);
1199 return -EINVAL;
1200 }
1201
1202 if (bank->iomux[iomux_num].type & IOMUX_GPIO_ONLY) {
1203 if (mux != RK_FUNC_GPIO) {
1204 dev_err(info->dev,
1205 "pin %d only supports a gpio mux\n", pin);
1206 return -ENOTSUPP;
1207 }
1208 }
1209
1210 return 0;
1211 }
1212
1213 /*
1214 * Set a new mux function for a pin.
1215 *
1216 * The register is divided into the upper and lower 16 bit. When changing
1217 * a value, the previous register value is not read and changed. Instead
1218 * it seems the changed bits are marked in the upper 16 bit, while the
1219 * changed value gets set in the same offset in the lower 16 bit.
1220 * All pin settings seem to be 2 bit wide in both the upper and lower
1221 * parts.
1222 * @bank: pin bank to change
1223 * @pin: pin to change
1224 * @mux: new mux function to set
1225 */
rockchip_set_mux(struct rockchip_pin_bank * bank,int pin,int mux)1226 static int rockchip_set_mux(struct rockchip_pin_bank *bank, int pin, int mux)
1227 {
1228 struct rockchip_pinctrl *info = bank->drvdata;
1229 int iomux_num = (pin / 8);
1230 struct regmap *regmap;
1231 int reg, ret, mask, mux_type;
1232 u8 bit;
1233 u32 data, rmask, route_location, route_reg, route_val;
1234
1235 ret = rockchip_verify_mux(bank, pin, mux);
1236 if (ret < 0)
1237 return ret;
1238
1239 if (bank->iomux[iomux_num].type & IOMUX_GPIO_ONLY)
1240 return 0;
1241
1242 dev_dbg(info->dev, "setting mux of GPIO%d-%d to %d\n",
1243 bank->bank_num, pin, mux);
1244
1245 regmap = (bank->iomux[iomux_num].type & IOMUX_SOURCE_PMU)
1246 ? info->regmap_pmu : info->regmap_base;
1247
1248 /* get basic quadrupel of mux registers and the correct reg inside */
1249 mux_type = bank->iomux[iomux_num].type;
1250 reg = bank->iomux[iomux_num].offset;
1251 if (mux_type & IOMUX_WIDTH_4BIT) {
1252 if ((pin % 8) >= 4)
1253 reg += 0x4;
1254 bit = (pin % 4) * 4;
1255 mask = 0xf;
1256 } else if (mux_type & IOMUX_WIDTH_3BIT) {
1257 if ((pin % 8) >= 5)
1258 reg += 0x4;
1259 bit = (pin % 8 % 5) * 3;
1260 mask = 0x7;
1261 } else {
1262 bit = (pin % 8) * 2;
1263 mask = 0x3;
1264 }
1265
1266 if (bank->recalced_mask & BIT(pin))
1267 rockchip_get_recalced_mux(bank, pin, ®, &bit, &mask);
1268
1269 if (bank->route_mask & BIT(pin)) {
1270 if (rockchip_get_mux_route(bank, pin, mux, &route_location,
1271 &route_reg, &route_val)) {
1272 struct regmap *route_regmap = regmap;
1273
1274 /* handle special locations */
1275 switch (route_location) {
1276 case ROCKCHIP_ROUTE_PMU:
1277 route_regmap = info->regmap_pmu;
1278 break;
1279 case ROCKCHIP_ROUTE_GRF:
1280 route_regmap = info->regmap_base;
1281 break;
1282 }
1283
1284 ret = regmap_write(route_regmap, route_reg, route_val);
1285 if (ret)
1286 return ret;
1287 }
1288 }
1289
1290 data = (mask << (bit + 16));
1291 rmask = data | (data >> 16);
1292 data |= (mux & mask) << bit;
1293 ret = regmap_update_bits(regmap, reg, rmask, data);
1294
1295 return ret;
1296 }
1297
1298 #define PX30_PULL_PMU_OFFSET 0x10
1299 #define PX30_PULL_GRF_OFFSET 0x60
1300 #define PX30_PULL_BITS_PER_PIN 2
1301 #define PX30_PULL_PINS_PER_REG 8
1302 #define PX30_PULL_BANK_STRIDE 16
1303
px30_calc_pull_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1304 static void px30_calc_pull_reg_and_bit(struct rockchip_pin_bank *bank,
1305 int pin_num, struct regmap **regmap,
1306 int *reg, u8 *bit)
1307 {
1308 struct rockchip_pinctrl *info = bank->drvdata;
1309
1310 /* The first 32 pins of the first bank are located in PMU */
1311 if (bank->bank_num == 0) {
1312 *regmap = info->regmap_pmu;
1313 *reg = PX30_PULL_PMU_OFFSET;
1314 } else {
1315 *regmap = info->regmap_base;
1316 *reg = PX30_PULL_GRF_OFFSET;
1317
1318 /* correct the offset, as we're starting with the 2nd bank */
1319 *reg -= 0x10;
1320 *reg += bank->bank_num * PX30_PULL_BANK_STRIDE;
1321 }
1322
1323 *reg += ((pin_num / PX30_PULL_PINS_PER_REG) * 4);
1324 *bit = (pin_num % PX30_PULL_PINS_PER_REG);
1325 *bit *= PX30_PULL_BITS_PER_PIN;
1326 }
1327
1328 #define PX30_DRV_PMU_OFFSET 0x20
1329 #define PX30_DRV_GRF_OFFSET 0xf0
1330 #define PX30_DRV_BITS_PER_PIN 2
1331 #define PX30_DRV_PINS_PER_REG 8
1332 #define PX30_DRV_BANK_STRIDE 16
1333
px30_calc_drv_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1334 static void px30_calc_drv_reg_and_bit(struct rockchip_pin_bank *bank,
1335 int pin_num, struct regmap **regmap,
1336 int *reg, u8 *bit)
1337 {
1338 struct rockchip_pinctrl *info = bank->drvdata;
1339
1340 /* The first 32 pins of the first bank are located in PMU */
1341 if (bank->bank_num == 0) {
1342 *regmap = info->regmap_pmu;
1343 *reg = PX30_DRV_PMU_OFFSET;
1344 } else {
1345 *regmap = info->regmap_base;
1346 *reg = PX30_DRV_GRF_OFFSET;
1347
1348 /* correct the offset, as we're starting with the 2nd bank */
1349 *reg -= 0x10;
1350 *reg += bank->bank_num * PX30_DRV_BANK_STRIDE;
1351 }
1352
1353 *reg += ((pin_num / PX30_DRV_PINS_PER_REG) * 4);
1354 *bit = (pin_num % PX30_DRV_PINS_PER_REG);
1355 *bit *= PX30_DRV_BITS_PER_PIN;
1356 }
1357
1358 #define PX30_SCHMITT_PMU_OFFSET 0x38
1359 #define PX30_SCHMITT_GRF_OFFSET 0xc0
1360 #define PX30_SCHMITT_PINS_PER_PMU_REG 16
1361 #define PX30_SCHMITT_BANK_STRIDE 16
1362 #define PX30_SCHMITT_PINS_PER_GRF_REG 8
1363
px30_calc_schmitt_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1364 static int px30_calc_schmitt_reg_and_bit(struct rockchip_pin_bank *bank,
1365 int pin_num,
1366 struct regmap **regmap,
1367 int *reg, u8 *bit)
1368 {
1369 struct rockchip_pinctrl *info = bank->drvdata;
1370 int pins_per_reg;
1371
1372 if (bank->bank_num == 0) {
1373 *regmap = info->regmap_pmu;
1374 *reg = PX30_SCHMITT_PMU_OFFSET;
1375 pins_per_reg = PX30_SCHMITT_PINS_PER_PMU_REG;
1376 } else {
1377 *regmap = info->regmap_base;
1378 *reg = PX30_SCHMITT_GRF_OFFSET;
1379 pins_per_reg = PX30_SCHMITT_PINS_PER_GRF_REG;
1380 *reg += (bank->bank_num - 1) * PX30_SCHMITT_BANK_STRIDE;
1381 }
1382
1383 *reg += ((pin_num / pins_per_reg) * 4);
1384 *bit = pin_num % pins_per_reg;
1385
1386 return 0;
1387 }
1388
1389 #define RV1108_PULL_PMU_OFFSET 0x10
1390 #define RV1108_PULL_OFFSET 0x110
1391 #define RV1108_PULL_PINS_PER_REG 8
1392 #define RV1108_PULL_BITS_PER_PIN 2
1393 #define RV1108_PULL_BANK_STRIDE 16
1394
rv1108_calc_pull_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1395 static void rv1108_calc_pull_reg_and_bit(struct rockchip_pin_bank *bank,
1396 int pin_num, struct regmap **regmap,
1397 int *reg, u8 *bit)
1398 {
1399 struct rockchip_pinctrl *info = bank->drvdata;
1400
1401 /* The first 24 pins of the first bank are located in PMU */
1402 if (bank->bank_num == 0) {
1403 *regmap = info->regmap_pmu;
1404 *reg = RV1108_PULL_PMU_OFFSET;
1405 } else {
1406 *reg = RV1108_PULL_OFFSET;
1407 *regmap = info->regmap_base;
1408 /* correct the offset, as we're starting with the 2nd bank */
1409 *reg -= 0x10;
1410 *reg += bank->bank_num * RV1108_PULL_BANK_STRIDE;
1411 }
1412
1413 *reg += ((pin_num / RV1108_PULL_PINS_PER_REG) * 4);
1414 *bit = (pin_num % RV1108_PULL_PINS_PER_REG);
1415 *bit *= RV1108_PULL_BITS_PER_PIN;
1416 }
1417
1418 #define RV1108_DRV_PMU_OFFSET 0x20
1419 #define RV1108_DRV_GRF_OFFSET 0x210
1420 #define RV1108_DRV_BITS_PER_PIN 2
1421 #define RV1108_DRV_PINS_PER_REG 8
1422 #define RV1108_DRV_BANK_STRIDE 16
1423
rv1108_calc_drv_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1424 static void rv1108_calc_drv_reg_and_bit(struct rockchip_pin_bank *bank,
1425 int pin_num, struct regmap **regmap,
1426 int *reg, u8 *bit)
1427 {
1428 struct rockchip_pinctrl *info = bank->drvdata;
1429
1430 /* The first 24 pins of the first bank are located in PMU */
1431 if (bank->bank_num == 0) {
1432 *regmap = info->regmap_pmu;
1433 *reg = RV1108_DRV_PMU_OFFSET;
1434 } else {
1435 *regmap = info->regmap_base;
1436 *reg = RV1108_DRV_GRF_OFFSET;
1437
1438 /* correct the offset, as we're starting with the 2nd bank */
1439 *reg -= 0x10;
1440 *reg += bank->bank_num * RV1108_DRV_BANK_STRIDE;
1441 }
1442
1443 *reg += ((pin_num / RV1108_DRV_PINS_PER_REG) * 4);
1444 *bit = pin_num % RV1108_DRV_PINS_PER_REG;
1445 *bit *= RV1108_DRV_BITS_PER_PIN;
1446 }
1447
1448 #define RV1108_SCHMITT_PMU_OFFSET 0x30
1449 #define RV1108_SCHMITT_GRF_OFFSET 0x388
1450 #define RV1108_SCHMITT_BANK_STRIDE 8
1451 #define RV1108_SCHMITT_PINS_PER_GRF_REG 16
1452 #define RV1108_SCHMITT_PINS_PER_PMU_REG 8
1453
rv1108_calc_schmitt_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1454 static int rv1108_calc_schmitt_reg_and_bit(struct rockchip_pin_bank *bank,
1455 int pin_num,
1456 struct regmap **regmap,
1457 int *reg, u8 *bit)
1458 {
1459 struct rockchip_pinctrl *info = bank->drvdata;
1460 int pins_per_reg;
1461
1462 if (bank->bank_num == 0) {
1463 *regmap = info->regmap_pmu;
1464 *reg = RV1108_SCHMITT_PMU_OFFSET;
1465 pins_per_reg = RV1108_SCHMITT_PINS_PER_PMU_REG;
1466 } else {
1467 *regmap = info->regmap_base;
1468 *reg = RV1108_SCHMITT_GRF_OFFSET;
1469 pins_per_reg = RV1108_SCHMITT_PINS_PER_GRF_REG;
1470 *reg += (bank->bank_num - 1) * RV1108_SCHMITT_BANK_STRIDE;
1471 }
1472 *reg += ((pin_num / pins_per_reg) * 4);
1473 *bit = pin_num % pins_per_reg;
1474
1475 return 0;
1476 }
1477
1478 #define RK2928_PULL_OFFSET 0x118
1479 #define RK2928_PULL_PINS_PER_REG 16
1480 #define RK2928_PULL_BANK_STRIDE 8
1481
rk2928_calc_pull_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1482 static void rk2928_calc_pull_reg_and_bit(struct rockchip_pin_bank *bank,
1483 int pin_num, struct regmap **regmap,
1484 int *reg, u8 *bit)
1485 {
1486 struct rockchip_pinctrl *info = bank->drvdata;
1487
1488 *regmap = info->regmap_base;
1489 *reg = RK2928_PULL_OFFSET;
1490 *reg += bank->bank_num * RK2928_PULL_BANK_STRIDE;
1491 *reg += (pin_num / RK2928_PULL_PINS_PER_REG) * 4;
1492
1493 *bit = pin_num % RK2928_PULL_PINS_PER_REG;
1494 };
1495
1496 #define RK3128_PULL_OFFSET 0x118
1497
rk3128_calc_pull_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1498 static void rk3128_calc_pull_reg_and_bit(struct rockchip_pin_bank *bank,
1499 int pin_num, struct regmap **regmap,
1500 int *reg, u8 *bit)
1501 {
1502 struct rockchip_pinctrl *info = bank->drvdata;
1503
1504 *regmap = info->regmap_base;
1505 *reg = RK3128_PULL_OFFSET;
1506 *reg += bank->bank_num * RK2928_PULL_BANK_STRIDE;
1507 *reg += ((pin_num / RK2928_PULL_PINS_PER_REG) * 4);
1508
1509 *bit = pin_num % RK2928_PULL_PINS_PER_REG;
1510 }
1511
1512 #define RK3188_PULL_OFFSET 0x164
1513 #define RK3188_PULL_BITS_PER_PIN 2
1514 #define RK3188_PULL_PINS_PER_REG 8
1515 #define RK3188_PULL_BANK_STRIDE 16
1516 #define RK3188_PULL_PMU_OFFSET 0x64
1517
rk3188_calc_pull_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1518 static void rk3188_calc_pull_reg_and_bit(struct rockchip_pin_bank *bank,
1519 int pin_num, struct regmap **regmap,
1520 int *reg, u8 *bit)
1521 {
1522 struct rockchip_pinctrl *info = bank->drvdata;
1523
1524 /* The first 12 pins of the first bank are located elsewhere */
1525 if (bank->bank_num == 0 && pin_num < 12) {
1526 *regmap = info->regmap_pmu ? info->regmap_pmu
1527 : bank->regmap_pull;
1528 *reg = info->regmap_pmu ? RK3188_PULL_PMU_OFFSET : 0;
1529 *reg += ((pin_num / RK3188_PULL_PINS_PER_REG) * 4);
1530 *bit = pin_num % RK3188_PULL_PINS_PER_REG;
1531 *bit *= RK3188_PULL_BITS_PER_PIN;
1532 } else {
1533 *regmap = info->regmap_pull ? info->regmap_pull
1534 : info->regmap_base;
1535 *reg = info->regmap_pull ? 0 : RK3188_PULL_OFFSET;
1536
1537 /* correct the offset, as it is the 2nd pull register */
1538 *reg -= 4;
1539 *reg += bank->bank_num * RK3188_PULL_BANK_STRIDE;
1540 *reg += ((pin_num / RK3188_PULL_PINS_PER_REG) * 4);
1541
1542 /*
1543 * The bits in these registers have an inverse ordering
1544 * with the lowest pin being in bits 15:14 and the highest
1545 * pin in bits 1:0
1546 */
1547 *bit = 7 - (pin_num % RK3188_PULL_PINS_PER_REG);
1548 *bit *= RK3188_PULL_BITS_PER_PIN;
1549 }
1550 }
1551
1552 #define RK3288_PULL_OFFSET 0x140
rk3288_calc_pull_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1553 static void rk3288_calc_pull_reg_and_bit(struct rockchip_pin_bank *bank,
1554 int pin_num, struct regmap **regmap,
1555 int *reg, u8 *bit)
1556 {
1557 struct rockchip_pinctrl *info = bank->drvdata;
1558
1559 /* The first 24 pins of the first bank are located in PMU */
1560 if (bank->bank_num == 0) {
1561 *regmap = info->regmap_pmu;
1562 *reg = RK3188_PULL_PMU_OFFSET;
1563
1564 *reg += ((pin_num / RK3188_PULL_PINS_PER_REG) * 4);
1565 *bit = pin_num % RK3188_PULL_PINS_PER_REG;
1566 *bit *= RK3188_PULL_BITS_PER_PIN;
1567 } else {
1568 *regmap = info->regmap_base;
1569 *reg = RK3288_PULL_OFFSET;
1570
1571 /* correct the offset, as we're starting with the 2nd bank */
1572 *reg -= 0x10;
1573 *reg += bank->bank_num * RK3188_PULL_BANK_STRIDE;
1574 *reg += ((pin_num / RK3188_PULL_PINS_PER_REG) * 4);
1575
1576 *bit = (pin_num % RK3188_PULL_PINS_PER_REG);
1577 *bit *= RK3188_PULL_BITS_PER_PIN;
1578 }
1579 }
1580
1581 #define RK3288_DRV_PMU_OFFSET 0x70
1582 #define RK3288_DRV_GRF_OFFSET 0x1c0
1583 #define RK3288_DRV_BITS_PER_PIN 2
1584 #define RK3288_DRV_PINS_PER_REG 8
1585 #define RK3288_DRV_BANK_STRIDE 16
1586
rk3288_calc_drv_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1587 static void rk3288_calc_drv_reg_and_bit(struct rockchip_pin_bank *bank,
1588 int pin_num, struct regmap **regmap,
1589 int *reg, u8 *bit)
1590 {
1591 struct rockchip_pinctrl *info = bank->drvdata;
1592
1593 /* The first 24 pins of the first bank are located in PMU */
1594 if (bank->bank_num == 0) {
1595 *regmap = info->regmap_pmu;
1596 *reg = RK3288_DRV_PMU_OFFSET;
1597
1598 *reg += ((pin_num / RK3288_DRV_PINS_PER_REG) * 4);
1599 *bit = pin_num % RK3288_DRV_PINS_PER_REG;
1600 *bit *= RK3288_DRV_BITS_PER_PIN;
1601 } else {
1602 *regmap = info->regmap_base;
1603 *reg = RK3288_DRV_GRF_OFFSET;
1604
1605 /* correct the offset, as we're starting with the 2nd bank */
1606 *reg -= 0x10;
1607 *reg += bank->bank_num * RK3288_DRV_BANK_STRIDE;
1608 *reg += ((pin_num / RK3288_DRV_PINS_PER_REG) * 4);
1609
1610 *bit = (pin_num % RK3288_DRV_PINS_PER_REG);
1611 *bit *= RK3288_DRV_BITS_PER_PIN;
1612 }
1613 }
1614
1615 #define RK3228_PULL_OFFSET 0x100
1616
rk3228_calc_pull_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1617 static void rk3228_calc_pull_reg_and_bit(struct rockchip_pin_bank *bank,
1618 int pin_num, struct regmap **regmap,
1619 int *reg, u8 *bit)
1620 {
1621 struct rockchip_pinctrl *info = bank->drvdata;
1622
1623 *regmap = info->regmap_base;
1624 *reg = RK3228_PULL_OFFSET;
1625 *reg += bank->bank_num * RK3188_PULL_BANK_STRIDE;
1626 *reg += ((pin_num / RK3188_PULL_PINS_PER_REG) * 4);
1627
1628 *bit = (pin_num % RK3188_PULL_PINS_PER_REG);
1629 *bit *= RK3188_PULL_BITS_PER_PIN;
1630 }
1631
1632 #define RK3228_DRV_GRF_OFFSET 0x200
1633
rk3228_calc_drv_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1634 static void rk3228_calc_drv_reg_and_bit(struct rockchip_pin_bank *bank,
1635 int pin_num, struct regmap **regmap,
1636 int *reg, u8 *bit)
1637 {
1638 struct rockchip_pinctrl *info = bank->drvdata;
1639
1640 *regmap = info->regmap_base;
1641 *reg = RK3228_DRV_GRF_OFFSET;
1642 *reg += bank->bank_num * RK3288_DRV_BANK_STRIDE;
1643 *reg += ((pin_num / RK3288_DRV_PINS_PER_REG) * 4);
1644
1645 *bit = (pin_num % RK3288_DRV_PINS_PER_REG);
1646 *bit *= RK3288_DRV_BITS_PER_PIN;
1647 }
1648
1649 #define RK3368_PULL_GRF_OFFSET 0x100
1650 #define RK3368_PULL_PMU_OFFSET 0x10
1651
rk3368_calc_pull_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1652 static void rk3368_calc_pull_reg_and_bit(struct rockchip_pin_bank *bank,
1653 int pin_num, struct regmap **regmap,
1654 int *reg, u8 *bit)
1655 {
1656 struct rockchip_pinctrl *info = bank->drvdata;
1657
1658 /* The first 32 pins of the first bank are located in PMU */
1659 if (bank->bank_num == 0) {
1660 *regmap = info->regmap_pmu;
1661 *reg = RK3368_PULL_PMU_OFFSET;
1662
1663 *reg += ((pin_num / RK3188_PULL_PINS_PER_REG) * 4);
1664 *bit = pin_num % RK3188_PULL_PINS_PER_REG;
1665 *bit *= RK3188_PULL_BITS_PER_PIN;
1666 } else {
1667 *regmap = info->regmap_base;
1668 *reg = RK3368_PULL_GRF_OFFSET;
1669
1670 /* correct the offset, as we're starting with the 2nd bank */
1671 *reg -= 0x10;
1672 *reg += bank->bank_num * RK3188_PULL_BANK_STRIDE;
1673 *reg += ((pin_num / RK3188_PULL_PINS_PER_REG) * 4);
1674
1675 *bit = (pin_num % RK3188_PULL_PINS_PER_REG);
1676 *bit *= RK3188_PULL_BITS_PER_PIN;
1677 }
1678 }
1679
1680 #define RK3368_DRV_PMU_OFFSET 0x20
1681 #define RK3368_DRV_GRF_OFFSET 0x200
1682
rk3368_calc_drv_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1683 static void rk3368_calc_drv_reg_and_bit(struct rockchip_pin_bank *bank,
1684 int pin_num, struct regmap **regmap,
1685 int *reg, u8 *bit)
1686 {
1687 struct rockchip_pinctrl *info = bank->drvdata;
1688
1689 /* The first 32 pins of the first bank are located in PMU */
1690 if (bank->bank_num == 0) {
1691 *regmap = info->regmap_pmu;
1692 *reg = RK3368_DRV_PMU_OFFSET;
1693
1694 *reg += ((pin_num / RK3288_DRV_PINS_PER_REG) * 4);
1695 *bit = pin_num % RK3288_DRV_PINS_PER_REG;
1696 *bit *= RK3288_DRV_BITS_PER_PIN;
1697 } else {
1698 *regmap = info->regmap_base;
1699 *reg = RK3368_DRV_GRF_OFFSET;
1700
1701 /* correct the offset, as we're starting with the 2nd bank */
1702 *reg -= 0x10;
1703 *reg += bank->bank_num * RK3288_DRV_BANK_STRIDE;
1704 *reg += ((pin_num / RK3288_DRV_PINS_PER_REG) * 4);
1705
1706 *bit = (pin_num % RK3288_DRV_PINS_PER_REG);
1707 *bit *= RK3288_DRV_BITS_PER_PIN;
1708 }
1709 }
1710
1711 #define RK3399_PULL_GRF_OFFSET 0xe040
1712 #define RK3399_PULL_PMU_OFFSET 0x40
1713 #define RK3399_DRV_3BITS_PER_PIN 3
1714
rk3399_calc_pull_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1715 static void rk3399_calc_pull_reg_and_bit(struct rockchip_pin_bank *bank,
1716 int pin_num, struct regmap **regmap,
1717 int *reg, u8 *bit)
1718 {
1719 struct rockchip_pinctrl *info = bank->drvdata;
1720
1721 /* The bank0:16 and bank1:32 pins are located in PMU */
1722 if ((bank->bank_num == 0) || (bank->bank_num == 1)) {
1723 *regmap = info->regmap_pmu;
1724 *reg = RK3399_PULL_PMU_OFFSET;
1725
1726 *reg += bank->bank_num * RK3188_PULL_BANK_STRIDE;
1727
1728 *reg += ((pin_num / RK3188_PULL_PINS_PER_REG) * 4);
1729 *bit = pin_num % RK3188_PULL_PINS_PER_REG;
1730 *bit *= RK3188_PULL_BITS_PER_PIN;
1731 } else {
1732 *regmap = info->regmap_base;
1733 *reg = RK3399_PULL_GRF_OFFSET;
1734
1735 /* correct the offset, as we're starting with the 3rd bank */
1736 *reg -= 0x20;
1737 *reg += bank->bank_num * RK3188_PULL_BANK_STRIDE;
1738 *reg += ((pin_num / RK3188_PULL_PINS_PER_REG) * 4);
1739
1740 *bit = (pin_num % RK3188_PULL_PINS_PER_REG);
1741 *bit *= RK3188_PULL_BITS_PER_PIN;
1742 }
1743 }
1744
rk3399_calc_drv_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)1745 static void rk3399_calc_drv_reg_and_bit(struct rockchip_pin_bank *bank,
1746 int pin_num, struct regmap **regmap,
1747 int *reg, u8 *bit)
1748 {
1749 struct rockchip_pinctrl *info = bank->drvdata;
1750 int drv_num = (pin_num / 8);
1751
1752 /* The bank0:16 and bank1:32 pins are located in PMU */
1753 if ((bank->bank_num == 0) || (bank->bank_num == 1))
1754 *regmap = info->regmap_pmu;
1755 else
1756 *regmap = info->regmap_base;
1757
1758 *reg = bank->drv[drv_num].offset;
1759 if ((bank->drv[drv_num].drv_type == DRV_TYPE_IO_1V8_3V0_AUTO) ||
1760 (bank->drv[drv_num].drv_type == DRV_TYPE_IO_3V3_ONLY))
1761 *bit = (pin_num % 8) * 3;
1762 else
1763 *bit = (pin_num % 8) * 2;
1764 }
1765
1766 static int rockchip_perpin_drv_list[DRV_TYPE_MAX][8] = {
1767 { 2, 4, 8, 12, -1, -1, -1, -1 },
1768 { 3, 6, 9, 12, -1, -1, -1, -1 },
1769 { 5, 10, 15, 20, -1, -1, -1, -1 },
1770 { 4, 6, 8, 10, 12, 14, 16, 18 },
1771 { 4, 7, 10, 13, 16, 19, 22, 26 }
1772 };
1773
rockchip_get_drive_perpin(struct rockchip_pin_bank * bank,int pin_num)1774 static int rockchip_get_drive_perpin(struct rockchip_pin_bank *bank,
1775 int pin_num)
1776 {
1777 struct rockchip_pinctrl *info = bank->drvdata;
1778 struct rockchip_pin_ctrl *ctrl = info->ctrl;
1779 struct regmap *regmap;
1780 int reg, ret;
1781 u32 data, temp, rmask_bits;
1782 u8 bit;
1783 int drv_type = bank->drv[pin_num / 8].drv_type;
1784
1785 ctrl->drv_calc_reg(bank, pin_num, ®map, ®, &bit);
1786
1787 switch (drv_type) {
1788 case DRV_TYPE_IO_1V8_3V0_AUTO:
1789 case DRV_TYPE_IO_3V3_ONLY:
1790 rmask_bits = RK3399_DRV_3BITS_PER_PIN;
1791 switch (bit) {
1792 case 0 ... 12:
1793 /* regular case, nothing to do */
1794 break;
1795 case 15:
1796 /*
1797 * drive-strength offset is special, as it is
1798 * spread over 2 registers
1799 */
1800 ret = regmap_read(regmap, reg, &data);
1801 if (ret)
1802 return ret;
1803
1804 ret = regmap_read(regmap, reg + 0x4, &temp);
1805 if (ret)
1806 return ret;
1807
1808 /*
1809 * the bit data[15] contains bit 0 of the value
1810 * while temp[1:0] contains bits 2 and 1
1811 */
1812 data >>= 15;
1813 temp &= 0x3;
1814 temp <<= 1;
1815 data |= temp;
1816
1817 return rockchip_perpin_drv_list[drv_type][data];
1818 case 18 ... 21:
1819 /* setting fully enclosed in the second register */
1820 reg += 4;
1821 bit -= 16;
1822 break;
1823 default:
1824 dev_err(info->dev, "unsupported bit: %d for pinctrl drive type: %d\n",
1825 bit, drv_type);
1826 return -EINVAL;
1827 }
1828
1829 break;
1830 case DRV_TYPE_IO_DEFAULT:
1831 case DRV_TYPE_IO_1V8_OR_3V0:
1832 case DRV_TYPE_IO_1V8_ONLY:
1833 rmask_bits = RK3288_DRV_BITS_PER_PIN;
1834 break;
1835 default:
1836 dev_err(info->dev, "unsupported pinctrl drive type: %d\n",
1837 drv_type);
1838 return -EINVAL;
1839 }
1840
1841 ret = regmap_read(regmap, reg, &data);
1842 if (ret)
1843 return ret;
1844
1845 data >>= bit;
1846 data &= (1 << rmask_bits) - 1;
1847
1848 return rockchip_perpin_drv_list[drv_type][data];
1849 }
1850
rockchip_set_drive_perpin(struct rockchip_pin_bank * bank,int pin_num,int strength)1851 static int rockchip_set_drive_perpin(struct rockchip_pin_bank *bank,
1852 int pin_num, int strength)
1853 {
1854 struct rockchip_pinctrl *info = bank->drvdata;
1855 struct rockchip_pin_ctrl *ctrl = info->ctrl;
1856 struct regmap *regmap;
1857 int reg, ret, i;
1858 u32 data, rmask, rmask_bits, temp;
1859 u8 bit;
1860 int drv_type = bank->drv[pin_num / 8].drv_type;
1861
1862 dev_dbg(info->dev, "setting drive of GPIO%d-%d to %d\n",
1863 bank->bank_num, pin_num, strength);
1864
1865 ctrl->drv_calc_reg(bank, pin_num, ®map, ®, &bit);
1866
1867 ret = -EINVAL;
1868 for (i = 0; i < ARRAY_SIZE(rockchip_perpin_drv_list[drv_type]); i++) {
1869 if (rockchip_perpin_drv_list[drv_type][i] == strength) {
1870 ret = i;
1871 break;
1872 } else if (rockchip_perpin_drv_list[drv_type][i] < 0) {
1873 ret = rockchip_perpin_drv_list[drv_type][i];
1874 break;
1875 }
1876 }
1877
1878 if (ret < 0) {
1879 dev_err(info->dev, "unsupported driver strength %d\n",
1880 strength);
1881 return ret;
1882 }
1883
1884 switch (drv_type) {
1885 case DRV_TYPE_IO_1V8_3V0_AUTO:
1886 case DRV_TYPE_IO_3V3_ONLY:
1887 rmask_bits = RK3399_DRV_3BITS_PER_PIN;
1888 switch (bit) {
1889 case 0 ... 12:
1890 /* regular case, nothing to do */
1891 break;
1892 case 15:
1893 /*
1894 * drive-strength offset is special, as it is spread
1895 * over 2 registers, the bit data[15] contains bit 0
1896 * of the value while temp[1:0] contains bits 2 and 1
1897 */
1898 data = (ret & 0x1) << 15;
1899 temp = (ret >> 0x1) & 0x3;
1900
1901 rmask = BIT(15) | BIT(31);
1902 data |= BIT(31);
1903 ret = regmap_update_bits(regmap, reg, rmask, data);
1904 if (ret)
1905 return ret;
1906
1907 rmask = 0x3 | (0x3 << 16);
1908 temp |= (0x3 << 16);
1909 reg += 0x4;
1910 ret = regmap_update_bits(regmap, reg, rmask, temp);
1911
1912 return ret;
1913 case 18 ... 21:
1914 /* setting fully enclosed in the second register */
1915 reg += 4;
1916 bit -= 16;
1917 break;
1918 default:
1919 dev_err(info->dev, "unsupported bit: %d for pinctrl drive type: %d\n",
1920 bit, drv_type);
1921 return -EINVAL;
1922 }
1923 break;
1924 case DRV_TYPE_IO_DEFAULT:
1925 case DRV_TYPE_IO_1V8_OR_3V0:
1926 case DRV_TYPE_IO_1V8_ONLY:
1927 rmask_bits = RK3288_DRV_BITS_PER_PIN;
1928 break;
1929 default:
1930 dev_err(info->dev, "unsupported pinctrl drive type: %d\n",
1931 drv_type);
1932 return -EINVAL;
1933 }
1934
1935 /* enable the write to the equivalent lower bits */
1936 data = ((1 << rmask_bits) - 1) << (bit + 16);
1937 rmask = data | (data >> 16);
1938 data |= (ret << bit);
1939
1940 ret = regmap_update_bits(regmap, reg, rmask, data);
1941
1942 return ret;
1943 }
1944
1945 static int rockchip_pull_list[PULL_TYPE_MAX][4] = {
1946 {
1947 PIN_CONFIG_BIAS_DISABLE,
1948 PIN_CONFIG_BIAS_PULL_UP,
1949 PIN_CONFIG_BIAS_PULL_DOWN,
1950 PIN_CONFIG_BIAS_BUS_HOLD
1951 },
1952 {
1953 PIN_CONFIG_BIAS_DISABLE,
1954 PIN_CONFIG_BIAS_PULL_DOWN,
1955 PIN_CONFIG_BIAS_DISABLE,
1956 PIN_CONFIG_BIAS_PULL_UP
1957 },
1958 };
1959
rockchip_get_pull(struct rockchip_pin_bank * bank,int pin_num)1960 static int rockchip_get_pull(struct rockchip_pin_bank *bank, int pin_num)
1961 {
1962 struct rockchip_pinctrl *info = bank->drvdata;
1963 struct rockchip_pin_ctrl *ctrl = info->ctrl;
1964 struct regmap *regmap;
1965 int reg, ret, pull_type;
1966 u8 bit;
1967 u32 data;
1968
1969 /* rk3066b does support any pulls */
1970 if (ctrl->type == RK3066B)
1971 return PIN_CONFIG_BIAS_DISABLE;
1972
1973 ctrl->pull_calc_reg(bank, pin_num, ®map, ®, &bit);
1974
1975 ret = regmap_read(regmap, reg, &data);
1976 if (ret)
1977 return ret;
1978
1979 switch (ctrl->type) {
1980 case RK2928:
1981 case RK3128:
1982 return !(data & BIT(bit))
1983 ? PIN_CONFIG_BIAS_PULL_PIN_DEFAULT
1984 : PIN_CONFIG_BIAS_DISABLE;
1985 case PX30:
1986 case RV1108:
1987 case RK3188:
1988 case RK3288:
1989 case RK3368:
1990 case RK3399:
1991 pull_type = bank->pull_type[pin_num / 8];
1992 data >>= bit;
1993 data &= (1 << RK3188_PULL_BITS_PER_PIN) - 1;
1994
1995 return rockchip_pull_list[pull_type][data];
1996 default:
1997 dev_err(info->dev, "unsupported pinctrl type\n");
1998 return -EINVAL;
1999 };
2000 }
2001
rockchip_set_pull(struct rockchip_pin_bank * bank,int pin_num,int pull)2002 static int rockchip_set_pull(struct rockchip_pin_bank *bank,
2003 int pin_num, int pull)
2004 {
2005 struct rockchip_pinctrl *info = bank->drvdata;
2006 struct rockchip_pin_ctrl *ctrl = info->ctrl;
2007 struct regmap *regmap;
2008 int reg, ret, i, pull_type;
2009 u8 bit;
2010 u32 data, rmask;
2011
2012 dev_dbg(info->dev, "setting pull of GPIO%d-%d to %d\n",
2013 bank->bank_num, pin_num, pull);
2014
2015 /* rk3066b does support any pulls */
2016 if (ctrl->type == RK3066B)
2017 return pull ? -EINVAL : 0;
2018
2019 ctrl->pull_calc_reg(bank, pin_num, ®map, ®, &bit);
2020
2021 switch (ctrl->type) {
2022 case RK2928:
2023 case RK3128:
2024 data = BIT(bit + 16);
2025 if (pull == PIN_CONFIG_BIAS_DISABLE)
2026 data |= BIT(bit);
2027 ret = regmap_write(regmap, reg, data);
2028 break;
2029 case PX30:
2030 case RV1108:
2031 case RK3188:
2032 case RK3288:
2033 case RK3368:
2034 case RK3399:
2035 pull_type = bank->pull_type[pin_num / 8];
2036 ret = -EINVAL;
2037 for (i = 0; i < ARRAY_SIZE(rockchip_pull_list[pull_type]);
2038 i++) {
2039 if (rockchip_pull_list[pull_type][i] == pull) {
2040 ret = i;
2041 break;
2042 }
2043 }
2044
2045 if (ret < 0) {
2046 dev_err(info->dev, "unsupported pull setting %d\n",
2047 pull);
2048 return ret;
2049 }
2050
2051 /* enable the write to the equivalent lower bits */
2052 data = ((1 << RK3188_PULL_BITS_PER_PIN) - 1) << (bit + 16);
2053 rmask = data | (data >> 16);
2054 data |= (ret << bit);
2055
2056 ret = regmap_update_bits(regmap, reg, rmask, data);
2057 break;
2058 default:
2059 dev_err(info->dev, "unsupported pinctrl type\n");
2060 return -EINVAL;
2061 }
2062
2063 return ret;
2064 }
2065
2066 #define RK3328_SCHMITT_BITS_PER_PIN 1
2067 #define RK3328_SCHMITT_PINS_PER_REG 16
2068 #define RK3328_SCHMITT_BANK_STRIDE 8
2069 #define RK3328_SCHMITT_GRF_OFFSET 0x380
2070
rk3328_calc_schmitt_reg_and_bit(struct rockchip_pin_bank * bank,int pin_num,struct regmap ** regmap,int * reg,u8 * bit)2071 static int rk3328_calc_schmitt_reg_and_bit(struct rockchip_pin_bank *bank,
2072 int pin_num,
2073 struct regmap **regmap,
2074 int *reg, u8 *bit)
2075 {
2076 struct rockchip_pinctrl *info = bank->drvdata;
2077
2078 *regmap = info->regmap_base;
2079 *reg = RK3328_SCHMITT_GRF_OFFSET;
2080
2081 *reg += bank->bank_num * RK3328_SCHMITT_BANK_STRIDE;
2082 *reg += ((pin_num / RK3328_SCHMITT_PINS_PER_REG) * 4);
2083 *bit = pin_num % RK3328_SCHMITT_PINS_PER_REG;
2084
2085 return 0;
2086 }
2087
rockchip_get_schmitt(struct rockchip_pin_bank * bank,int pin_num)2088 static int rockchip_get_schmitt(struct rockchip_pin_bank *bank, int pin_num)
2089 {
2090 struct rockchip_pinctrl *info = bank->drvdata;
2091 struct rockchip_pin_ctrl *ctrl = info->ctrl;
2092 struct regmap *regmap;
2093 int reg, ret;
2094 u8 bit;
2095 u32 data;
2096
2097 ret = ctrl->schmitt_calc_reg(bank, pin_num, ®map, ®, &bit);
2098 if (ret)
2099 return ret;
2100
2101 ret = regmap_read(regmap, reg, &data);
2102 if (ret)
2103 return ret;
2104
2105 data >>= bit;
2106 return data & 0x1;
2107 }
2108
rockchip_set_schmitt(struct rockchip_pin_bank * bank,int pin_num,int enable)2109 static int rockchip_set_schmitt(struct rockchip_pin_bank *bank,
2110 int pin_num, int enable)
2111 {
2112 struct rockchip_pinctrl *info = bank->drvdata;
2113 struct rockchip_pin_ctrl *ctrl = info->ctrl;
2114 struct regmap *regmap;
2115 int reg, ret;
2116 u8 bit;
2117 u32 data, rmask;
2118
2119 dev_dbg(info->dev, "setting input schmitt of GPIO%d-%d to %d\n",
2120 bank->bank_num, pin_num, enable);
2121
2122 ret = ctrl->schmitt_calc_reg(bank, pin_num, ®map, ®, &bit);
2123 if (ret)
2124 return ret;
2125
2126 /* enable the write to the equivalent lower bits */
2127 data = BIT(bit + 16) | (enable << bit);
2128 rmask = BIT(bit + 16) | BIT(bit);
2129
2130 return regmap_update_bits(regmap, reg, rmask, data);
2131 }
2132
2133 /*
2134 * Pinmux_ops handling
2135 */
2136
rockchip_pmx_get_funcs_count(struct pinctrl_dev * pctldev)2137 static int rockchip_pmx_get_funcs_count(struct pinctrl_dev *pctldev)
2138 {
2139 struct rockchip_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
2140
2141 return info->nfunctions;
2142 }
2143
rockchip_pmx_get_func_name(struct pinctrl_dev * pctldev,unsigned selector)2144 static const char *rockchip_pmx_get_func_name(struct pinctrl_dev *pctldev,
2145 unsigned selector)
2146 {
2147 struct rockchip_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
2148
2149 return info->functions[selector].name;
2150 }
2151
rockchip_pmx_get_groups(struct pinctrl_dev * pctldev,unsigned selector,const char * const ** groups,unsigned * const num_groups)2152 static int rockchip_pmx_get_groups(struct pinctrl_dev *pctldev,
2153 unsigned selector, const char * const **groups,
2154 unsigned * const num_groups)
2155 {
2156 struct rockchip_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
2157
2158 *groups = info->functions[selector].groups;
2159 *num_groups = info->functions[selector].ngroups;
2160
2161 return 0;
2162 }
2163
rockchip_pmx_set(struct pinctrl_dev * pctldev,unsigned selector,unsigned group)2164 static int rockchip_pmx_set(struct pinctrl_dev *pctldev, unsigned selector,
2165 unsigned group)
2166 {
2167 struct rockchip_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
2168 const unsigned int *pins = info->groups[group].pins;
2169 const struct rockchip_pin_config *data = info->groups[group].data;
2170 struct rockchip_pin_bank *bank;
2171 int cnt, ret = 0;
2172
2173 dev_dbg(info->dev, "enable function %s group %s\n",
2174 info->functions[selector].name, info->groups[group].name);
2175
2176 /*
2177 * for each pin in the pin group selected, program the corresponding
2178 * pin function number in the config register.
2179 */
2180 for (cnt = 0; cnt < info->groups[group].npins; cnt++) {
2181 bank = pin_to_bank(info, pins[cnt]);
2182 ret = rockchip_set_mux(bank, pins[cnt] - bank->pin_base,
2183 data[cnt].func);
2184 if (ret)
2185 break;
2186 }
2187
2188 if (ret) {
2189 /* revert the already done pin settings */
2190 for (cnt--; cnt >= 0; cnt--)
2191 rockchip_set_mux(bank, pins[cnt] - bank->pin_base, 0);
2192
2193 return ret;
2194 }
2195
2196 return 0;
2197 }
2198
rockchip_gpio_get_direction(struct gpio_chip * chip,unsigned offset)2199 static int rockchip_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
2200 {
2201 struct rockchip_pin_bank *bank = gpiochip_get_data(chip);
2202 u32 data;
2203 int ret;
2204
2205 ret = clk_enable(bank->clk);
2206 if (ret < 0) {
2207 dev_err(bank->drvdata->dev,
2208 "failed to enable clock for bank %s\n", bank->name);
2209 return ret;
2210 }
2211 data = readl_relaxed(bank->reg_base + GPIO_SWPORT_DDR);
2212 clk_disable(bank->clk);
2213
2214 return !(data & BIT(offset));
2215 }
2216
2217 /*
2218 * The calls to gpio_direction_output() and gpio_direction_input()
2219 * leads to this function call (via the pinctrl_gpio_direction_{input|output}()
2220 * function called from the gpiolib interface).
2221 */
_rockchip_pmx_gpio_set_direction(struct gpio_chip * chip,int pin,bool input)2222 static int _rockchip_pmx_gpio_set_direction(struct gpio_chip *chip,
2223 int pin, bool input)
2224 {
2225 struct rockchip_pin_bank *bank;
2226 int ret;
2227 unsigned long flags;
2228 u32 data;
2229
2230 bank = gpiochip_get_data(chip);
2231
2232 ret = rockchip_set_mux(bank, pin, RK_FUNC_GPIO);
2233 if (ret < 0)
2234 return ret;
2235
2236 clk_enable(bank->clk);
2237 raw_spin_lock_irqsave(&bank->slock, flags);
2238
2239 data = readl_relaxed(bank->reg_base + GPIO_SWPORT_DDR);
2240 /* set bit to 1 for output, 0 for input */
2241 if (!input)
2242 data |= BIT(pin);
2243 else
2244 data &= ~BIT(pin);
2245 writel_relaxed(data, bank->reg_base + GPIO_SWPORT_DDR);
2246
2247 raw_spin_unlock_irqrestore(&bank->slock, flags);
2248 clk_disable(bank->clk);
2249
2250 return 0;
2251 }
2252
rockchip_pmx_gpio_set_direction(struct pinctrl_dev * pctldev,struct pinctrl_gpio_range * range,unsigned offset,bool input)2253 static int rockchip_pmx_gpio_set_direction(struct pinctrl_dev *pctldev,
2254 struct pinctrl_gpio_range *range,
2255 unsigned offset, bool input)
2256 {
2257 struct rockchip_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
2258 struct gpio_chip *chip;
2259 int pin;
2260
2261 chip = range->gc;
2262 pin = offset - chip->base;
2263 dev_dbg(info->dev, "gpio_direction for pin %u as %s-%d to %s\n",
2264 offset, range->name, pin, input ? "input" : "output");
2265
2266 return _rockchip_pmx_gpio_set_direction(chip, offset - chip->base,
2267 input);
2268 }
2269
2270 static const struct pinmux_ops rockchip_pmx_ops = {
2271 .get_functions_count = rockchip_pmx_get_funcs_count,
2272 .get_function_name = rockchip_pmx_get_func_name,
2273 .get_function_groups = rockchip_pmx_get_groups,
2274 .set_mux = rockchip_pmx_set,
2275 .gpio_set_direction = rockchip_pmx_gpio_set_direction,
2276 };
2277
2278 /*
2279 * Pinconf_ops handling
2280 */
2281
rockchip_pinconf_pull_valid(struct rockchip_pin_ctrl * ctrl,enum pin_config_param pull)2282 static bool rockchip_pinconf_pull_valid(struct rockchip_pin_ctrl *ctrl,
2283 enum pin_config_param pull)
2284 {
2285 switch (ctrl->type) {
2286 case RK2928:
2287 case RK3128:
2288 return (pull == PIN_CONFIG_BIAS_PULL_PIN_DEFAULT ||
2289 pull == PIN_CONFIG_BIAS_DISABLE);
2290 case RK3066B:
2291 return pull ? false : true;
2292 case PX30:
2293 case RV1108:
2294 case RK3188:
2295 case RK3288:
2296 case RK3368:
2297 case RK3399:
2298 return (pull != PIN_CONFIG_BIAS_PULL_PIN_DEFAULT);
2299 }
2300
2301 return false;
2302 }
2303
2304 static void rockchip_gpio_set(struct gpio_chip *gc, unsigned offset, int value);
2305 static int rockchip_gpio_get(struct gpio_chip *gc, unsigned offset);
2306
2307 /* set the pin config settings for a specified pin */
rockchip_pinconf_set(struct pinctrl_dev * pctldev,unsigned int pin,unsigned long * configs,unsigned num_configs)2308 static int rockchip_pinconf_set(struct pinctrl_dev *pctldev, unsigned int pin,
2309 unsigned long *configs, unsigned num_configs)
2310 {
2311 struct rockchip_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
2312 struct rockchip_pin_bank *bank = pin_to_bank(info, pin);
2313 enum pin_config_param param;
2314 u32 arg;
2315 int i;
2316 int rc;
2317
2318 for (i = 0; i < num_configs; i++) {
2319 param = pinconf_to_config_param(configs[i]);
2320 arg = pinconf_to_config_argument(configs[i]);
2321
2322 switch (param) {
2323 case PIN_CONFIG_BIAS_DISABLE:
2324 rc = rockchip_set_pull(bank, pin - bank->pin_base,
2325 param);
2326 if (rc)
2327 return rc;
2328 break;
2329 case PIN_CONFIG_BIAS_PULL_UP:
2330 case PIN_CONFIG_BIAS_PULL_DOWN:
2331 case PIN_CONFIG_BIAS_PULL_PIN_DEFAULT:
2332 case PIN_CONFIG_BIAS_BUS_HOLD:
2333 if (!rockchip_pinconf_pull_valid(info->ctrl, param))
2334 return -ENOTSUPP;
2335
2336 if (!arg)
2337 return -EINVAL;
2338
2339 rc = rockchip_set_pull(bank, pin - bank->pin_base,
2340 param);
2341 if (rc)
2342 return rc;
2343 break;
2344 case PIN_CONFIG_OUTPUT:
2345 rockchip_gpio_set(&bank->gpio_chip,
2346 pin - bank->pin_base, arg);
2347 rc = _rockchip_pmx_gpio_set_direction(&bank->gpio_chip,
2348 pin - bank->pin_base, false);
2349 if (rc)
2350 return rc;
2351 break;
2352 case PIN_CONFIG_DRIVE_STRENGTH:
2353 /* rk3288 is the first with per-pin drive-strength */
2354 if (!info->ctrl->drv_calc_reg)
2355 return -ENOTSUPP;
2356
2357 rc = rockchip_set_drive_perpin(bank,
2358 pin - bank->pin_base, arg);
2359 if (rc < 0)
2360 return rc;
2361 break;
2362 case PIN_CONFIG_INPUT_SCHMITT_ENABLE:
2363 if (!info->ctrl->schmitt_calc_reg)
2364 return -ENOTSUPP;
2365
2366 rc = rockchip_set_schmitt(bank,
2367 pin - bank->pin_base, arg);
2368 if (rc < 0)
2369 return rc;
2370 break;
2371 default:
2372 return -ENOTSUPP;
2373 break;
2374 }
2375 } /* for each config */
2376
2377 return 0;
2378 }
2379
2380 /* get the pin config settings for a specified pin */
rockchip_pinconf_get(struct pinctrl_dev * pctldev,unsigned int pin,unsigned long * config)2381 static int rockchip_pinconf_get(struct pinctrl_dev *pctldev, unsigned int pin,
2382 unsigned long *config)
2383 {
2384 struct rockchip_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
2385 struct rockchip_pin_bank *bank = pin_to_bank(info, pin);
2386 enum pin_config_param param = pinconf_to_config_param(*config);
2387 u16 arg;
2388 int rc;
2389
2390 switch (param) {
2391 case PIN_CONFIG_BIAS_DISABLE:
2392 if (rockchip_get_pull(bank, pin - bank->pin_base) != param)
2393 return -EINVAL;
2394
2395 arg = 0;
2396 break;
2397 case PIN_CONFIG_BIAS_PULL_UP:
2398 case PIN_CONFIG_BIAS_PULL_DOWN:
2399 case PIN_CONFIG_BIAS_PULL_PIN_DEFAULT:
2400 case PIN_CONFIG_BIAS_BUS_HOLD:
2401 if (!rockchip_pinconf_pull_valid(info->ctrl, param))
2402 return -ENOTSUPP;
2403
2404 if (rockchip_get_pull(bank, pin - bank->pin_base) != param)
2405 return -EINVAL;
2406
2407 arg = 1;
2408 break;
2409 case PIN_CONFIG_OUTPUT:
2410 rc = rockchip_get_mux(bank, pin - bank->pin_base);
2411 if (rc != RK_FUNC_GPIO)
2412 return -EINVAL;
2413
2414 rc = rockchip_gpio_get(&bank->gpio_chip, pin - bank->pin_base);
2415 if (rc < 0)
2416 return rc;
2417
2418 arg = rc ? 1 : 0;
2419 break;
2420 case PIN_CONFIG_DRIVE_STRENGTH:
2421 /* rk3288 is the first with per-pin drive-strength */
2422 if (!info->ctrl->drv_calc_reg)
2423 return -ENOTSUPP;
2424
2425 rc = rockchip_get_drive_perpin(bank, pin - bank->pin_base);
2426 if (rc < 0)
2427 return rc;
2428
2429 arg = rc;
2430 break;
2431 case PIN_CONFIG_INPUT_SCHMITT_ENABLE:
2432 if (!info->ctrl->schmitt_calc_reg)
2433 return -ENOTSUPP;
2434
2435 rc = rockchip_get_schmitt(bank, pin - bank->pin_base);
2436 if (rc < 0)
2437 return rc;
2438
2439 arg = rc;
2440 break;
2441 default:
2442 return -ENOTSUPP;
2443 break;
2444 }
2445
2446 *config = pinconf_to_config_packed(param, arg);
2447
2448 return 0;
2449 }
2450
2451 static const struct pinconf_ops rockchip_pinconf_ops = {
2452 .pin_config_get = rockchip_pinconf_get,
2453 .pin_config_set = rockchip_pinconf_set,
2454 .is_generic = true,
2455 };
2456
2457 static const struct of_device_id rockchip_bank_match[] = {
2458 { .compatible = "rockchip,gpio-bank" },
2459 { .compatible = "rockchip,rk3188-gpio-bank0" },
2460 {},
2461 };
2462
rockchip_pinctrl_child_count(struct rockchip_pinctrl * info,struct device_node * np)2463 static void rockchip_pinctrl_child_count(struct rockchip_pinctrl *info,
2464 struct device_node *np)
2465 {
2466 struct device_node *child;
2467
2468 for_each_child_of_node(np, child) {
2469 if (of_match_node(rockchip_bank_match, child))
2470 continue;
2471
2472 info->nfunctions++;
2473 info->ngroups += of_get_child_count(child);
2474 }
2475 }
2476
rockchip_pinctrl_parse_groups(struct device_node * np,struct rockchip_pin_group * grp,struct rockchip_pinctrl * info,u32 index)2477 static int rockchip_pinctrl_parse_groups(struct device_node *np,
2478 struct rockchip_pin_group *grp,
2479 struct rockchip_pinctrl *info,
2480 u32 index)
2481 {
2482 struct rockchip_pin_bank *bank;
2483 int size;
2484 const __be32 *list;
2485 int num;
2486 int i, j;
2487 int ret;
2488
2489 dev_dbg(info->dev, "group(%d): %pOFn\n", index, np);
2490
2491 /* Initialise group */
2492 grp->name = np->name;
2493
2494 /*
2495 * the binding format is rockchip,pins = <bank pin mux CONFIG>,
2496 * do sanity check and calculate pins number
2497 */
2498 list = of_get_property(np, "rockchip,pins", &size);
2499 /* we do not check return since it's safe node passed down */
2500 size /= sizeof(*list);
2501 if (!size || size % 4) {
2502 dev_err(info->dev, "wrong pins number or pins and configs should be by 4\n");
2503 return -EINVAL;
2504 }
2505
2506 grp->npins = size / 4;
2507
2508 grp->pins = devm_kcalloc(info->dev, grp->npins, sizeof(unsigned int),
2509 GFP_KERNEL);
2510 grp->data = devm_kcalloc(info->dev,
2511 grp->npins,
2512 sizeof(struct rockchip_pin_config),
2513 GFP_KERNEL);
2514 if (!grp->pins || !grp->data)
2515 return -ENOMEM;
2516
2517 for (i = 0, j = 0; i < size; i += 4, j++) {
2518 const __be32 *phandle;
2519 struct device_node *np_config;
2520
2521 num = be32_to_cpu(*list++);
2522 bank = bank_num_to_bank(info, num);
2523 if (IS_ERR(bank))
2524 return PTR_ERR(bank);
2525
2526 grp->pins[j] = bank->pin_base + be32_to_cpu(*list++);
2527 grp->data[j].func = be32_to_cpu(*list++);
2528
2529 phandle = list++;
2530 if (!phandle)
2531 return -EINVAL;
2532
2533 np_config = of_find_node_by_phandle(be32_to_cpup(phandle));
2534 ret = pinconf_generic_parse_dt_config(np_config, NULL,
2535 &grp->data[j].configs, &grp->data[j].nconfigs);
2536 if (ret)
2537 return ret;
2538 }
2539
2540 return 0;
2541 }
2542
rockchip_pinctrl_parse_functions(struct device_node * np,struct rockchip_pinctrl * info,u32 index)2543 static int rockchip_pinctrl_parse_functions(struct device_node *np,
2544 struct rockchip_pinctrl *info,
2545 u32 index)
2546 {
2547 struct device_node *child;
2548 struct rockchip_pmx_func *func;
2549 struct rockchip_pin_group *grp;
2550 int ret;
2551 static u32 grp_index;
2552 u32 i = 0;
2553
2554 dev_dbg(info->dev, "parse function(%d): %pOFn\n", index, np);
2555
2556 func = &info->functions[index];
2557
2558 /* Initialise function */
2559 func->name = np->name;
2560 func->ngroups = of_get_child_count(np);
2561 if (func->ngroups <= 0)
2562 return 0;
2563
2564 func->groups = devm_kcalloc(info->dev,
2565 func->ngroups, sizeof(char *), GFP_KERNEL);
2566 if (!func->groups)
2567 return -ENOMEM;
2568
2569 for_each_child_of_node(np, child) {
2570 func->groups[i] = child->name;
2571 grp = &info->groups[grp_index++];
2572 ret = rockchip_pinctrl_parse_groups(child, grp, info, i++);
2573 if (ret) {
2574 of_node_put(child);
2575 return ret;
2576 }
2577 }
2578
2579 return 0;
2580 }
2581
rockchip_pinctrl_parse_dt(struct platform_device * pdev,struct rockchip_pinctrl * info)2582 static int rockchip_pinctrl_parse_dt(struct platform_device *pdev,
2583 struct rockchip_pinctrl *info)
2584 {
2585 struct device *dev = &pdev->dev;
2586 struct device_node *np = dev->of_node;
2587 struct device_node *child;
2588 int ret;
2589 int i;
2590
2591 rockchip_pinctrl_child_count(info, np);
2592
2593 dev_dbg(&pdev->dev, "nfunctions = %d\n", info->nfunctions);
2594 dev_dbg(&pdev->dev, "ngroups = %d\n", info->ngroups);
2595
2596 info->functions = devm_kcalloc(dev,
2597 info->nfunctions,
2598 sizeof(struct rockchip_pmx_func),
2599 GFP_KERNEL);
2600 if (!info->functions)
2601 return -EINVAL;
2602
2603 info->groups = devm_kcalloc(dev,
2604 info->ngroups,
2605 sizeof(struct rockchip_pin_group),
2606 GFP_KERNEL);
2607 if (!info->groups)
2608 return -EINVAL;
2609
2610 i = 0;
2611
2612 for_each_child_of_node(np, child) {
2613 if (of_match_node(rockchip_bank_match, child))
2614 continue;
2615
2616 ret = rockchip_pinctrl_parse_functions(child, info, i++);
2617 if (ret) {
2618 dev_err(&pdev->dev, "failed to parse function\n");
2619 of_node_put(child);
2620 return ret;
2621 }
2622 }
2623
2624 return 0;
2625 }
2626
rockchip_pinctrl_register(struct platform_device * pdev,struct rockchip_pinctrl * info)2627 static int rockchip_pinctrl_register(struct platform_device *pdev,
2628 struct rockchip_pinctrl *info)
2629 {
2630 struct pinctrl_desc *ctrldesc = &info->pctl;
2631 struct pinctrl_pin_desc *pindesc, *pdesc;
2632 struct rockchip_pin_bank *pin_bank;
2633 int pin, bank, ret;
2634 int k;
2635
2636 ctrldesc->name = "rockchip-pinctrl";
2637 ctrldesc->owner = THIS_MODULE;
2638 ctrldesc->pctlops = &rockchip_pctrl_ops;
2639 ctrldesc->pmxops = &rockchip_pmx_ops;
2640 ctrldesc->confops = &rockchip_pinconf_ops;
2641
2642 pindesc = devm_kcalloc(&pdev->dev,
2643 info->ctrl->nr_pins, sizeof(*pindesc),
2644 GFP_KERNEL);
2645 if (!pindesc)
2646 return -ENOMEM;
2647
2648 ctrldesc->pins = pindesc;
2649 ctrldesc->npins = info->ctrl->nr_pins;
2650
2651 pdesc = pindesc;
2652 for (bank = 0 , k = 0; bank < info->ctrl->nr_banks; bank++) {
2653 pin_bank = &info->ctrl->pin_banks[bank];
2654 for (pin = 0; pin < pin_bank->nr_pins; pin++, k++) {
2655 pdesc->number = k;
2656 pdesc->name = kasprintf(GFP_KERNEL, "%s-%d",
2657 pin_bank->name, pin);
2658 pdesc++;
2659 }
2660 }
2661
2662 ret = rockchip_pinctrl_parse_dt(pdev, info);
2663 if (ret)
2664 return ret;
2665
2666 info->pctl_dev = devm_pinctrl_register(&pdev->dev, ctrldesc, info);
2667 if (IS_ERR(info->pctl_dev)) {
2668 dev_err(&pdev->dev, "could not register pinctrl driver\n");
2669 return PTR_ERR(info->pctl_dev);
2670 }
2671
2672 for (bank = 0; bank < info->ctrl->nr_banks; ++bank) {
2673 pin_bank = &info->ctrl->pin_banks[bank];
2674 pin_bank->grange.name = pin_bank->name;
2675 pin_bank->grange.id = bank;
2676 pin_bank->grange.pin_base = pin_bank->pin_base;
2677 pin_bank->grange.base = pin_bank->gpio_chip.base;
2678 pin_bank->grange.npins = pin_bank->gpio_chip.ngpio;
2679 pin_bank->grange.gc = &pin_bank->gpio_chip;
2680 pinctrl_add_gpio_range(info->pctl_dev, &pin_bank->grange);
2681 }
2682
2683 return 0;
2684 }
2685
2686 /*
2687 * GPIO handling
2688 */
2689
rockchip_gpio_set(struct gpio_chip * gc,unsigned offset,int value)2690 static void rockchip_gpio_set(struct gpio_chip *gc, unsigned offset, int value)
2691 {
2692 struct rockchip_pin_bank *bank = gpiochip_get_data(gc);
2693 void __iomem *reg = bank->reg_base + GPIO_SWPORT_DR;
2694 unsigned long flags;
2695 u32 data;
2696
2697 clk_enable(bank->clk);
2698 raw_spin_lock_irqsave(&bank->slock, flags);
2699
2700 data = readl(reg);
2701 data &= ~BIT(offset);
2702 if (value)
2703 data |= BIT(offset);
2704 writel(data, reg);
2705
2706 raw_spin_unlock_irqrestore(&bank->slock, flags);
2707 clk_disable(bank->clk);
2708 }
2709
2710 /*
2711 * Returns the level of the pin for input direction and setting of the DR
2712 * register for output gpios.
2713 */
rockchip_gpio_get(struct gpio_chip * gc,unsigned offset)2714 static int rockchip_gpio_get(struct gpio_chip *gc, unsigned offset)
2715 {
2716 struct rockchip_pin_bank *bank = gpiochip_get_data(gc);
2717 u32 data;
2718
2719 clk_enable(bank->clk);
2720 data = readl(bank->reg_base + GPIO_EXT_PORT);
2721 clk_disable(bank->clk);
2722 data >>= offset;
2723 data &= 1;
2724 return data;
2725 }
2726
2727 /*
2728 * gpiolib gpio_direction_input callback function. The setting of the pin
2729 * mux function as 'gpio input' will be handled by the pinctrl subsystem
2730 * interface.
2731 */
rockchip_gpio_direction_input(struct gpio_chip * gc,unsigned offset)2732 static int rockchip_gpio_direction_input(struct gpio_chip *gc, unsigned offset)
2733 {
2734 return pinctrl_gpio_direction_input(gc->base + offset);
2735 }
2736
2737 /*
2738 * gpiolib gpio_direction_output callback function. The setting of the pin
2739 * mux function as 'gpio output' will be handled by the pinctrl subsystem
2740 * interface.
2741 */
rockchip_gpio_direction_output(struct gpio_chip * gc,unsigned offset,int value)2742 static int rockchip_gpio_direction_output(struct gpio_chip *gc,
2743 unsigned offset, int value)
2744 {
2745 rockchip_gpio_set(gc, offset, value);
2746 return pinctrl_gpio_direction_output(gc->base + offset);
2747 }
2748
rockchip_gpio_set_debounce(struct gpio_chip * gc,unsigned int offset,bool enable)2749 static void rockchip_gpio_set_debounce(struct gpio_chip *gc,
2750 unsigned int offset, bool enable)
2751 {
2752 struct rockchip_pin_bank *bank = gpiochip_get_data(gc);
2753 void __iomem *reg = bank->reg_base + GPIO_DEBOUNCE;
2754 unsigned long flags;
2755 u32 data;
2756
2757 clk_enable(bank->clk);
2758 raw_spin_lock_irqsave(&bank->slock, flags);
2759
2760 data = readl(reg);
2761 if (enable)
2762 data |= BIT(offset);
2763 else
2764 data &= ~BIT(offset);
2765 writel(data, reg);
2766
2767 raw_spin_unlock_irqrestore(&bank->slock, flags);
2768 clk_disable(bank->clk);
2769 }
2770
2771 /*
2772 * gpiolib set_config callback function. The setting of the pin
2773 * mux function as 'gpio output' will be handled by the pinctrl subsystem
2774 * interface.
2775 */
rockchip_gpio_set_config(struct gpio_chip * gc,unsigned int offset,unsigned long config)2776 static int rockchip_gpio_set_config(struct gpio_chip *gc, unsigned int offset,
2777 unsigned long config)
2778 {
2779 enum pin_config_param param = pinconf_to_config_param(config);
2780
2781 switch (param) {
2782 case PIN_CONFIG_INPUT_DEBOUNCE:
2783 rockchip_gpio_set_debounce(gc, offset, true);
2784 /*
2785 * Rockchip's gpio could only support up to one period
2786 * of the debounce clock(pclk), which is far away from
2787 * satisftying the requirement, as pclk is usually near
2788 * 100MHz shared by all peripherals. So the fact is it
2789 * has crippled debounce capability could only be useful
2790 * to prevent any spurious glitches from waking up the system
2791 * if the gpio is conguired as wakeup interrupt source. Let's
2792 * still return -ENOTSUPP as before, to make sure the caller
2793 * of gpiod_set_debounce won't change its behaviour.
2794 */
2795 return -ENOTSUPP;
2796 default:
2797 return -ENOTSUPP;
2798 }
2799 }
2800
2801 /*
2802 * gpiolib gpio_to_irq callback function. Creates a mapping between a GPIO pin
2803 * and a virtual IRQ, if not already present.
2804 */
rockchip_gpio_to_irq(struct gpio_chip * gc,unsigned offset)2805 static int rockchip_gpio_to_irq(struct gpio_chip *gc, unsigned offset)
2806 {
2807 struct rockchip_pin_bank *bank = gpiochip_get_data(gc);
2808 unsigned int virq;
2809
2810 if (!bank->domain)
2811 return -ENXIO;
2812
2813 virq = irq_create_mapping(bank->domain, offset);
2814
2815 return (virq) ? : -ENXIO;
2816 }
2817
2818 static const struct gpio_chip rockchip_gpiolib_chip = {
2819 .request = gpiochip_generic_request,
2820 .free = gpiochip_generic_free,
2821 .set = rockchip_gpio_set,
2822 .get = rockchip_gpio_get,
2823 .get_direction = rockchip_gpio_get_direction,
2824 .direction_input = rockchip_gpio_direction_input,
2825 .direction_output = rockchip_gpio_direction_output,
2826 .set_config = rockchip_gpio_set_config,
2827 .to_irq = rockchip_gpio_to_irq,
2828 .owner = THIS_MODULE,
2829 };
2830
2831 /*
2832 * Interrupt handling
2833 */
2834
rockchip_irq_demux(struct irq_desc * desc)2835 static void rockchip_irq_demux(struct irq_desc *desc)
2836 {
2837 struct irq_chip *chip = irq_desc_get_chip(desc);
2838 struct rockchip_pin_bank *bank = irq_desc_get_handler_data(desc);
2839 u32 pend;
2840
2841 dev_dbg(bank->drvdata->dev, "got irq for bank %s\n", bank->name);
2842
2843 chained_irq_enter(chip, desc);
2844
2845 pend = readl_relaxed(bank->reg_base + GPIO_INT_STATUS);
2846
2847 while (pend) {
2848 unsigned int irq, virq;
2849
2850 irq = __ffs(pend);
2851 pend &= ~BIT(irq);
2852 virq = irq_linear_revmap(bank->domain, irq);
2853
2854 if (!virq) {
2855 dev_err(bank->drvdata->dev, "unmapped irq %d\n", irq);
2856 continue;
2857 }
2858
2859 dev_dbg(bank->drvdata->dev, "handling irq %d\n", irq);
2860
2861 /*
2862 * Triggering IRQ on both rising and falling edge
2863 * needs manual intervention.
2864 */
2865 if (bank->toggle_edge_mode & BIT(irq)) {
2866 u32 data, data_old, polarity;
2867 unsigned long flags;
2868
2869 data = readl_relaxed(bank->reg_base + GPIO_EXT_PORT);
2870 do {
2871 raw_spin_lock_irqsave(&bank->slock, flags);
2872
2873 polarity = readl_relaxed(bank->reg_base +
2874 GPIO_INT_POLARITY);
2875 if (data & BIT(irq))
2876 polarity &= ~BIT(irq);
2877 else
2878 polarity |= BIT(irq);
2879 writel(polarity,
2880 bank->reg_base + GPIO_INT_POLARITY);
2881
2882 raw_spin_unlock_irqrestore(&bank->slock, flags);
2883
2884 data_old = data;
2885 data = readl_relaxed(bank->reg_base +
2886 GPIO_EXT_PORT);
2887 } while ((data & BIT(irq)) != (data_old & BIT(irq)));
2888 }
2889
2890 generic_handle_irq(virq);
2891 }
2892
2893 chained_irq_exit(chip, desc);
2894 }
2895
rockchip_irq_set_type(struct irq_data * d,unsigned int type)2896 static int rockchip_irq_set_type(struct irq_data *d, unsigned int type)
2897 {
2898 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
2899 struct rockchip_pin_bank *bank = gc->private;
2900 u32 mask = BIT(d->hwirq);
2901 u32 polarity;
2902 u32 level;
2903 u32 data;
2904 unsigned long flags;
2905 int ret;
2906
2907 /* make sure the pin is configured as gpio input */
2908 ret = rockchip_set_mux(bank, d->hwirq, RK_FUNC_GPIO);
2909 if (ret < 0)
2910 return ret;
2911
2912 clk_enable(bank->clk);
2913 raw_spin_lock_irqsave(&bank->slock, flags);
2914
2915 data = readl_relaxed(bank->reg_base + GPIO_SWPORT_DDR);
2916 data &= ~mask;
2917 writel_relaxed(data, bank->reg_base + GPIO_SWPORT_DDR);
2918
2919 raw_spin_unlock_irqrestore(&bank->slock, flags);
2920
2921 if (type & IRQ_TYPE_EDGE_BOTH)
2922 irq_set_handler_locked(d, handle_edge_irq);
2923 else
2924 irq_set_handler_locked(d, handle_level_irq);
2925
2926 raw_spin_lock_irqsave(&bank->slock, flags);
2927 irq_gc_lock(gc);
2928
2929 level = readl_relaxed(gc->reg_base + GPIO_INTTYPE_LEVEL);
2930 polarity = readl_relaxed(gc->reg_base + GPIO_INT_POLARITY);
2931
2932 switch (type) {
2933 case IRQ_TYPE_EDGE_BOTH:
2934 bank->toggle_edge_mode |= mask;
2935 level |= mask;
2936
2937 /*
2938 * Determine gpio state. If 1 next interrupt should be falling
2939 * otherwise rising.
2940 */
2941 data = readl(bank->reg_base + GPIO_EXT_PORT);
2942 if (data & mask)
2943 polarity &= ~mask;
2944 else
2945 polarity |= mask;
2946 break;
2947 case IRQ_TYPE_EDGE_RISING:
2948 bank->toggle_edge_mode &= ~mask;
2949 level |= mask;
2950 polarity |= mask;
2951 break;
2952 case IRQ_TYPE_EDGE_FALLING:
2953 bank->toggle_edge_mode &= ~mask;
2954 level |= mask;
2955 polarity &= ~mask;
2956 break;
2957 case IRQ_TYPE_LEVEL_HIGH:
2958 bank->toggle_edge_mode &= ~mask;
2959 level &= ~mask;
2960 polarity |= mask;
2961 break;
2962 case IRQ_TYPE_LEVEL_LOW:
2963 bank->toggle_edge_mode &= ~mask;
2964 level &= ~mask;
2965 polarity &= ~mask;
2966 break;
2967 default:
2968 irq_gc_unlock(gc);
2969 raw_spin_unlock_irqrestore(&bank->slock, flags);
2970 clk_disable(bank->clk);
2971 return -EINVAL;
2972 }
2973
2974 writel_relaxed(level, gc->reg_base + GPIO_INTTYPE_LEVEL);
2975 writel_relaxed(polarity, gc->reg_base + GPIO_INT_POLARITY);
2976
2977 irq_gc_unlock(gc);
2978 raw_spin_unlock_irqrestore(&bank->slock, flags);
2979 clk_disable(bank->clk);
2980
2981 return 0;
2982 }
2983
rockchip_irq_suspend(struct irq_data * d)2984 static void rockchip_irq_suspend(struct irq_data *d)
2985 {
2986 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
2987 struct rockchip_pin_bank *bank = gc->private;
2988
2989 clk_enable(bank->clk);
2990 bank->saved_masks = irq_reg_readl(gc, GPIO_INTMASK);
2991 irq_reg_writel(gc, ~gc->wake_active, GPIO_INTMASK);
2992 clk_disable(bank->clk);
2993 }
2994
rockchip_irq_resume(struct irq_data * d)2995 static void rockchip_irq_resume(struct irq_data *d)
2996 {
2997 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
2998 struct rockchip_pin_bank *bank = gc->private;
2999
3000 clk_enable(bank->clk);
3001 irq_reg_writel(gc, bank->saved_masks, GPIO_INTMASK);
3002 clk_disable(bank->clk);
3003 }
3004
rockchip_irq_enable(struct irq_data * d)3005 static void rockchip_irq_enable(struct irq_data *d)
3006 {
3007 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
3008 struct rockchip_pin_bank *bank = gc->private;
3009
3010 clk_enable(bank->clk);
3011 irq_gc_mask_clr_bit(d);
3012 }
3013
rockchip_irq_disable(struct irq_data * d)3014 static void rockchip_irq_disable(struct irq_data *d)
3015 {
3016 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
3017 struct rockchip_pin_bank *bank = gc->private;
3018
3019 irq_gc_mask_set_bit(d);
3020 clk_disable(bank->clk);
3021 }
3022
rockchip_interrupts_register(struct platform_device * pdev,struct rockchip_pinctrl * info)3023 static int rockchip_interrupts_register(struct platform_device *pdev,
3024 struct rockchip_pinctrl *info)
3025 {
3026 struct rockchip_pin_ctrl *ctrl = info->ctrl;
3027 struct rockchip_pin_bank *bank = ctrl->pin_banks;
3028 unsigned int clr = IRQ_NOREQUEST | IRQ_NOPROBE | IRQ_NOAUTOEN;
3029 struct irq_chip_generic *gc;
3030 int ret;
3031 int i, j;
3032
3033 for (i = 0; i < ctrl->nr_banks; ++i, ++bank) {
3034 if (!bank->valid) {
3035 dev_warn(&pdev->dev, "bank %s is not valid\n",
3036 bank->name);
3037 continue;
3038 }
3039
3040 ret = clk_enable(bank->clk);
3041 if (ret) {
3042 dev_err(&pdev->dev, "failed to enable clock for bank %s\n",
3043 bank->name);
3044 continue;
3045 }
3046
3047 bank->domain = irq_domain_add_linear(bank->of_node, 32,
3048 &irq_generic_chip_ops, NULL);
3049 if (!bank->domain) {
3050 dev_warn(&pdev->dev, "could not initialize irq domain for bank %s\n",
3051 bank->name);
3052 clk_disable(bank->clk);
3053 continue;
3054 }
3055
3056 ret = irq_alloc_domain_generic_chips(bank->domain, 32, 1,
3057 "rockchip_gpio_irq", handle_level_irq,
3058 clr, 0, IRQ_GC_INIT_MASK_CACHE);
3059 if (ret) {
3060 dev_err(&pdev->dev, "could not alloc generic chips for bank %s\n",
3061 bank->name);
3062 irq_domain_remove(bank->domain);
3063 clk_disable(bank->clk);
3064 continue;
3065 }
3066
3067 /*
3068 * Linux assumes that all interrupts start out disabled/masked.
3069 * Our driver only uses the concept of masked and always keeps
3070 * things enabled, so for us that's all masked and all enabled.
3071 */
3072 writel_relaxed(0xffffffff, bank->reg_base + GPIO_INTMASK);
3073 writel_relaxed(0xffffffff, bank->reg_base + GPIO_INTEN);
3074
3075 gc = irq_get_domain_generic_chip(bank->domain, 0);
3076 gc->reg_base = bank->reg_base;
3077 gc->private = bank;
3078 gc->chip_types[0].regs.mask = GPIO_INTMASK;
3079 gc->chip_types[0].regs.ack = GPIO_PORTS_EOI;
3080 gc->chip_types[0].chip.irq_ack = irq_gc_ack_set_bit;
3081 gc->chip_types[0].chip.irq_mask = irq_gc_mask_set_bit;
3082 gc->chip_types[0].chip.irq_unmask = irq_gc_mask_clr_bit;
3083 gc->chip_types[0].chip.irq_enable = rockchip_irq_enable;
3084 gc->chip_types[0].chip.irq_disable = rockchip_irq_disable;
3085 gc->chip_types[0].chip.irq_set_wake = irq_gc_set_wake;
3086 gc->chip_types[0].chip.irq_suspend = rockchip_irq_suspend;
3087 gc->chip_types[0].chip.irq_resume = rockchip_irq_resume;
3088 gc->chip_types[0].chip.irq_set_type = rockchip_irq_set_type;
3089 gc->wake_enabled = IRQ_MSK(bank->nr_pins);
3090
3091 irq_set_chained_handler_and_data(bank->irq,
3092 rockchip_irq_demux, bank);
3093
3094 /* map the gpio irqs here, when the clock is still running */
3095 for (j = 0 ; j < 32 ; j++)
3096 irq_create_mapping(bank->domain, j);
3097
3098 clk_disable(bank->clk);
3099 }
3100
3101 return 0;
3102 }
3103
rockchip_gpiolib_register(struct platform_device * pdev,struct rockchip_pinctrl * info)3104 static int rockchip_gpiolib_register(struct platform_device *pdev,
3105 struct rockchip_pinctrl *info)
3106 {
3107 struct rockchip_pin_ctrl *ctrl = info->ctrl;
3108 struct rockchip_pin_bank *bank = ctrl->pin_banks;
3109 struct gpio_chip *gc;
3110 int ret;
3111 int i;
3112
3113 for (i = 0; i < ctrl->nr_banks; ++i, ++bank) {
3114 if (!bank->valid) {
3115 dev_warn(&pdev->dev, "bank %s is not valid\n",
3116 bank->name);
3117 continue;
3118 }
3119
3120 bank->gpio_chip = rockchip_gpiolib_chip;
3121
3122 gc = &bank->gpio_chip;
3123 gc->base = bank->pin_base;
3124 gc->ngpio = bank->nr_pins;
3125 gc->parent = &pdev->dev;
3126 gc->of_node = bank->of_node;
3127 gc->label = bank->name;
3128
3129 ret = gpiochip_add_data(gc, bank);
3130 if (ret) {
3131 dev_err(&pdev->dev, "failed to register gpio_chip %s, error code: %d\n",
3132 gc->label, ret);
3133 goto fail;
3134 }
3135 }
3136
3137 rockchip_interrupts_register(pdev, info);
3138
3139 return 0;
3140
3141 fail:
3142 for (--i, --bank; i >= 0; --i, --bank) {
3143 if (!bank->valid)
3144 continue;
3145 gpiochip_remove(&bank->gpio_chip);
3146 }
3147 return ret;
3148 }
3149
rockchip_gpiolib_unregister(struct platform_device * pdev,struct rockchip_pinctrl * info)3150 static int rockchip_gpiolib_unregister(struct platform_device *pdev,
3151 struct rockchip_pinctrl *info)
3152 {
3153 struct rockchip_pin_ctrl *ctrl = info->ctrl;
3154 struct rockchip_pin_bank *bank = ctrl->pin_banks;
3155 int i;
3156
3157 for (i = 0; i < ctrl->nr_banks; ++i, ++bank) {
3158 if (!bank->valid)
3159 continue;
3160 gpiochip_remove(&bank->gpio_chip);
3161 }
3162
3163 return 0;
3164 }
3165
rockchip_get_bank_data(struct rockchip_pin_bank * bank,struct rockchip_pinctrl * info)3166 static int rockchip_get_bank_data(struct rockchip_pin_bank *bank,
3167 struct rockchip_pinctrl *info)
3168 {
3169 struct resource res;
3170 void __iomem *base;
3171
3172 if (of_address_to_resource(bank->of_node, 0, &res)) {
3173 dev_err(info->dev, "cannot find IO resource for bank\n");
3174 return -ENOENT;
3175 }
3176
3177 bank->reg_base = devm_ioremap_resource(info->dev, &res);
3178 if (IS_ERR(bank->reg_base))
3179 return PTR_ERR(bank->reg_base);
3180
3181 /*
3182 * special case, where parts of the pull setting-registers are
3183 * part of the PMU register space
3184 */
3185 if (of_device_is_compatible(bank->of_node,
3186 "rockchip,rk3188-gpio-bank0")) {
3187 struct device_node *node;
3188
3189 node = of_parse_phandle(bank->of_node->parent,
3190 "rockchip,pmu", 0);
3191 if (!node) {
3192 if (of_address_to_resource(bank->of_node, 1, &res)) {
3193 dev_err(info->dev, "cannot find IO resource for bank\n");
3194 return -ENOENT;
3195 }
3196
3197 base = devm_ioremap_resource(info->dev, &res);
3198 if (IS_ERR(base))
3199 return PTR_ERR(base);
3200 rockchip_regmap_config.max_register =
3201 resource_size(&res) - 4;
3202 rockchip_regmap_config.name =
3203 "rockchip,rk3188-gpio-bank0-pull";
3204 bank->regmap_pull = devm_regmap_init_mmio(info->dev,
3205 base,
3206 &rockchip_regmap_config);
3207 }
3208 of_node_put(node);
3209 }
3210
3211 bank->irq = irq_of_parse_and_map(bank->of_node, 0);
3212
3213 bank->clk = of_clk_get(bank->of_node, 0);
3214 if (IS_ERR(bank->clk))
3215 return PTR_ERR(bank->clk);
3216
3217 return clk_prepare(bank->clk);
3218 }
3219
3220 static const struct of_device_id rockchip_pinctrl_dt_match[];
3221
3222 /* retrieve the soc specific data */
rockchip_pinctrl_get_soc_data(struct rockchip_pinctrl * d,struct platform_device * pdev)3223 static struct rockchip_pin_ctrl *rockchip_pinctrl_get_soc_data(
3224 struct rockchip_pinctrl *d,
3225 struct platform_device *pdev)
3226 {
3227 const struct of_device_id *match;
3228 struct device_node *node = pdev->dev.of_node;
3229 struct device_node *np;
3230 struct rockchip_pin_ctrl *ctrl;
3231 struct rockchip_pin_bank *bank;
3232 int grf_offs, pmu_offs, drv_grf_offs, drv_pmu_offs, i, j;
3233
3234 match = of_match_node(rockchip_pinctrl_dt_match, node);
3235 ctrl = (struct rockchip_pin_ctrl *)match->data;
3236
3237 for_each_child_of_node(node, np) {
3238 if (!of_find_property(np, "gpio-controller", NULL))
3239 continue;
3240
3241 bank = ctrl->pin_banks;
3242 for (i = 0; i < ctrl->nr_banks; ++i, ++bank) {
3243 if (!strcmp(bank->name, np->name)) {
3244 bank->of_node = np;
3245
3246 if (!rockchip_get_bank_data(bank, d))
3247 bank->valid = true;
3248
3249 break;
3250 }
3251 }
3252 }
3253
3254 grf_offs = ctrl->grf_mux_offset;
3255 pmu_offs = ctrl->pmu_mux_offset;
3256 drv_pmu_offs = ctrl->pmu_drv_offset;
3257 drv_grf_offs = ctrl->grf_drv_offset;
3258 bank = ctrl->pin_banks;
3259 for (i = 0; i < ctrl->nr_banks; ++i, ++bank) {
3260 int bank_pins = 0;
3261
3262 raw_spin_lock_init(&bank->slock);
3263 bank->drvdata = d;
3264 bank->pin_base = ctrl->nr_pins;
3265 ctrl->nr_pins += bank->nr_pins;
3266
3267 /* calculate iomux and drv offsets */
3268 for (j = 0; j < 4; j++) {
3269 struct rockchip_iomux *iom = &bank->iomux[j];
3270 struct rockchip_drv *drv = &bank->drv[j];
3271 int inc;
3272
3273 if (bank_pins >= bank->nr_pins)
3274 break;
3275
3276 /* preset iomux offset value, set new start value */
3277 if (iom->offset >= 0) {
3278 if (iom->type & IOMUX_SOURCE_PMU)
3279 pmu_offs = iom->offset;
3280 else
3281 grf_offs = iom->offset;
3282 } else { /* set current iomux offset */
3283 iom->offset = (iom->type & IOMUX_SOURCE_PMU) ?
3284 pmu_offs : grf_offs;
3285 }
3286
3287 /* preset drv offset value, set new start value */
3288 if (drv->offset >= 0) {
3289 if (iom->type & IOMUX_SOURCE_PMU)
3290 drv_pmu_offs = drv->offset;
3291 else
3292 drv_grf_offs = drv->offset;
3293 } else { /* set current drv offset */
3294 drv->offset = (iom->type & IOMUX_SOURCE_PMU) ?
3295 drv_pmu_offs : drv_grf_offs;
3296 }
3297
3298 dev_dbg(d->dev, "bank %d, iomux %d has iom_offset 0x%x drv_offset 0x%x\n",
3299 i, j, iom->offset, drv->offset);
3300
3301 /*
3302 * Increase offset according to iomux width.
3303 * 4bit iomux'es are spread over two registers.
3304 */
3305 inc = (iom->type & (IOMUX_WIDTH_4BIT |
3306 IOMUX_WIDTH_3BIT)) ? 8 : 4;
3307 if (iom->type & IOMUX_SOURCE_PMU)
3308 pmu_offs += inc;
3309 else
3310 grf_offs += inc;
3311
3312 /*
3313 * Increase offset according to drv width.
3314 * 3bit drive-strenth'es are spread over two registers.
3315 */
3316 if ((drv->drv_type == DRV_TYPE_IO_1V8_3V0_AUTO) ||
3317 (drv->drv_type == DRV_TYPE_IO_3V3_ONLY))
3318 inc = 8;
3319 else
3320 inc = 4;
3321
3322 if (iom->type & IOMUX_SOURCE_PMU)
3323 drv_pmu_offs += inc;
3324 else
3325 drv_grf_offs += inc;
3326
3327 bank_pins += 8;
3328 }
3329
3330 /* calculate the per-bank recalced_mask */
3331 for (j = 0; j < ctrl->niomux_recalced; j++) {
3332 int pin = 0;
3333
3334 if (ctrl->iomux_recalced[j].num == bank->bank_num) {
3335 pin = ctrl->iomux_recalced[j].pin;
3336 bank->recalced_mask |= BIT(pin);
3337 }
3338 }
3339
3340 /* calculate the per-bank route_mask */
3341 for (j = 0; j < ctrl->niomux_routes; j++) {
3342 int pin = 0;
3343
3344 if (ctrl->iomux_routes[j].bank_num == bank->bank_num) {
3345 pin = ctrl->iomux_routes[j].pin;
3346 bank->route_mask |= BIT(pin);
3347 }
3348 }
3349 }
3350
3351 return ctrl;
3352 }
3353
3354 #define RK3288_GRF_GPIO6C_IOMUX 0x64
3355 #define GPIO6C6_SEL_WRITE_ENABLE BIT(28)
3356
3357 static u32 rk3288_grf_gpio6c_iomux;
3358
rockchip_pinctrl_suspend(struct device * dev)3359 static int __maybe_unused rockchip_pinctrl_suspend(struct device *dev)
3360 {
3361 struct rockchip_pinctrl *info = dev_get_drvdata(dev);
3362 int ret = pinctrl_force_sleep(info->pctl_dev);
3363
3364 if (ret)
3365 return ret;
3366
3367 /*
3368 * RK3288 GPIO6_C6 mux would be modified by Maskrom when resume, so save
3369 * the setting here, and restore it at resume.
3370 */
3371 if (info->ctrl->type == RK3288) {
3372 ret = regmap_read(info->regmap_base, RK3288_GRF_GPIO6C_IOMUX,
3373 &rk3288_grf_gpio6c_iomux);
3374 if (ret) {
3375 pinctrl_force_default(info->pctl_dev);
3376 return ret;
3377 }
3378 }
3379
3380 return 0;
3381 }
3382
rockchip_pinctrl_resume(struct device * dev)3383 static int __maybe_unused rockchip_pinctrl_resume(struct device *dev)
3384 {
3385 struct rockchip_pinctrl *info = dev_get_drvdata(dev);
3386 int ret = regmap_write(info->regmap_base, RK3288_GRF_GPIO6C_IOMUX,
3387 rk3288_grf_gpio6c_iomux |
3388 GPIO6C6_SEL_WRITE_ENABLE);
3389
3390 if (ret)
3391 return ret;
3392
3393 return pinctrl_force_default(info->pctl_dev);
3394 }
3395
3396 static SIMPLE_DEV_PM_OPS(rockchip_pinctrl_dev_pm_ops, rockchip_pinctrl_suspend,
3397 rockchip_pinctrl_resume);
3398
rockchip_pinctrl_probe(struct platform_device * pdev)3399 static int rockchip_pinctrl_probe(struct platform_device *pdev)
3400 {
3401 struct rockchip_pinctrl *info;
3402 struct device *dev = &pdev->dev;
3403 struct rockchip_pin_ctrl *ctrl;
3404 struct device_node *np = pdev->dev.of_node, *node;
3405 struct resource *res;
3406 void __iomem *base;
3407 int ret;
3408
3409 if (!dev->of_node) {
3410 dev_err(dev, "device tree node not found\n");
3411 return -ENODEV;
3412 }
3413
3414 info = devm_kzalloc(dev, sizeof(*info), GFP_KERNEL);
3415 if (!info)
3416 return -ENOMEM;
3417
3418 info->dev = dev;
3419
3420 ctrl = rockchip_pinctrl_get_soc_data(info, pdev);
3421 if (!ctrl) {
3422 dev_err(dev, "driver data not available\n");
3423 return -EINVAL;
3424 }
3425 info->ctrl = ctrl;
3426
3427 node = of_parse_phandle(np, "rockchip,grf", 0);
3428 if (node) {
3429 info->regmap_base = syscon_node_to_regmap(node);
3430 if (IS_ERR(info->regmap_base))
3431 return PTR_ERR(info->regmap_base);
3432 } else {
3433 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
3434 base = devm_ioremap_resource(&pdev->dev, res);
3435 if (IS_ERR(base))
3436 return PTR_ERR(base);
3437
3438 rockchip_regmap_config.max_register = resource_size(res) - 4;
3439 rockchip_regmap_config.name = "rockchip,pinctrl";
3440 info->regmap_base = devm_regmap_init_mmio(&pdev->dev, base,
3441 &rockchip_regmap_config);
3442
3443 /* to check for the old dt-bindings */
3444 info->reg_size = resource_size(res);
3445
3446 /* Honor the old binding, with pull registers as 2nd resource */
3447 if (ctrl->type == RK3188 && info->reg_size < 0x200) {
3448 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
3449 base = devm_ioremap_resource(&pdev->dev, res);
3450 if (IS_ERR(base))
3451 return PTR_ERR(base);
3452
3453 rockchip_regmap_config.max_register =
3454 resource_size(res) - 4;
3455 rockchip_regmap_config.name = "rockchip,pinctrl-pull";
3456 info->regmap_pull = devm_regmap_init_mmio(&pdev->dev,
3457 base,
3458 &rockchip_regmap_config);
3459 }
3460 }
3461
3462 /* try to find the optional reference to the pmu syscon */
3463 node = of_parse_phandle(np, "rockchip,pmu", 0);
3464 if (node) {
3465 info->regmap_pmu = syscon_node_to_regmap(node);
3466 if (IS_ERR(info->regmap_pmu))
3467 return PTR_ERR(info->regmap_pmu);
3468 }
3469
3470 ret = rockchip_gpiolib_register(pdev, info);
3471 if (ret)
3472 return ret;
3473
3474 ret = rockchip_pinctrl_register(pdev, info);
3475 if (ret) {
3476 rockchip_gpiolib_unregister(pdev, info);
3477 return ret;
3478 }
3479
3480 platform_set_drvdata(pdev, info);
3481
3482 return 0;
3483 }
3484
3485 static struct rockchip_pin_bank px30_pin_banks[] = {
3486 PIN_BANK_IOMUX_FLAGS(0, 32, "gpio0", IOMUX_SOURCE_PMU,
3487 IOMUX_SOURCE_PMU,
3488 IOMUX_SOURCE_PMU,
3489 IOMUX_SOURCE_PMU
3490 ),
3491 PIN_BANK_IOMUX_FLAGS(1, 32, "gpio1", IOMUX_WIDTH_4BIT,
3492 IOMUX_WIDTH_4BIT,
3493 IOMUX_WIDTH_4BIT,
3494 IOMUX_WIDTH_4BIT
3495 ),
3496 PIN_BANK_IOMUX_FLAGS(2, 32, "gpio2", IOMUX_WIDTH_4BIT,
3497 IOMUX_WIDTH_4BIT,
3498 IOMUX_WIDTH_4BIT,
3499 IOMUX_WIDTH_4BIT
3500 ),
3501 PIN_BANK_IOMUX_FLAGS(3, 32, "gpio3", IOMUX_WIDTH_4BIT,
3502 IOMUX_WIDTH_4BIT,
3503 IOMUX_WIDTH_4BIT,
3504 IOMUX_WIDTH_4BIT
3505 ),
3506 };
3507
3508 static struct rockchip_pin_ctrl px30_pin_ctrl = {
3509 .pin_banks = px30_pin_banks,
3510 .nr_banks = ARRAY_SIZE(px30_pin_banks),
3511 .label = "PX30-GPIO",
3512 .type = PX30,
3513 .grf_mux_offset = 0x0,
3514 .pmu_mux_offset = 0x0,
3515 .iomux_routes = px30_mux_route_data,
3516 .niomux_routes = ARRAY_SIZE(px30_mux_route_data),
3517 .pull_calc_reg = px30_calc_pull_reg_and_bit,
3518 .drv_calc_reg = px30_calc_drv_reg_and_bit,
3519 .schmitt_calc_reg = px30_calc_schmitt_reg_and_bit,
3520 };
3521
3522 static struct rockchip_pin_bank rv1108_pin_banks[] = {
3523 PIN_BANK_IOMUX_FLAGS(0, 32, "gpio0", IOMUX_SOURCE_PMU,
3524 IOMUX_SOURCE_PMU,
3525 IOMUX_SOURCE_PMU,
3526 IOMUX_SOURCE_PMU),
3527 PIN_BANK_IOMUX_FLAGS(1, 32, "gpio1", 0, 0, 0, 0),
3528 PIN_BANK_IOMUX_FLAGS(2, 32, "gpio2", 0, 0, 0, 0),
3529 PIN_BANK_IOMUX_FLAGS(3, 32, "gpio3", 0, 0, 0, 0),
3530 };
3531
3532 static struct rockchip_pin_ctrl rv1108_pin_ctrl = {
3533 .pin_banks = rv1108_pin_banks,
3534 .nr_banks = ARRAY_SIZE(rv1108_pin_banks),
3535 .label = "RV1108-GPIO",
3536 .type = RV1108,
3537 .grf_mux_offset = 0x10,
3538 .pmu_mux_offset = 0x0,
3539 .iomux_recalced = rv1108_mux_recalced_data,
3540 .niomux_recalced = ARRAY_SIZE(rv1108_mux_recalced_data),
3541 .pull_calc_reg = rv1108_calc_pull_reg_and_bit,
3542 .drv_calc_reg = rv1108_calc_drv_reg_and_bit,
3543 .schmitt_calc_reg = rv1108_calc_schmitt_reg_and_bit,
3544 };
3545
3546 static struct rockchip_pin_bank rk2928_pin_banks[] = {
3547 PIN_BANK(0, 32, "gpio0"),
3548 PIN_BANK(1, 32, "gpio1"),
3549 PIN_BANK(2, 32, "gpio2"),
3550 PIN_BANK(3, 32, "gpio3"),
3551 };
3552
3553 static struct rockchip_pin_ctrl rk2928_pin_ctrl = {
3554 .pin_banks = rk2928_pin_banks,
3555 .nr_banks = ARRAY_SIZE(rk2928_pin_banks),
3556 .label = "RK2928-GPIO",
3557 .type = RK2928,
3558 .grf_mux_offset = 0xa8,
3559 .pull_calc_reg = rk2928_calc_pull_reg_and_bit,
3560 };
3561
3562 static struct rockchip_pin_bank rk3036_pin_banks[] = {
3563 PIN_BANK(0, 32, "gpio0"),
3564 PIN_BANK(1, 32, "gpio1"),
3565 PIN_BANK(2, 32, "gpio2"),
3566 };
3567
3568 static struct rockchip_pin_ctrl rk3036_pin_ctrl = {
3569 .pin_banks = rk3036_pin_banks,
3570 .nr_banks = ARRAY_SIZE(rk3036_pin_banks),
3571 .label = "RK3036-GPIO",
3572 .type = RK2928,
3573 .grf_mux_offset = 0xa8,
3574 .pull_calc_reg = rk2928_calc_pull_reg_and_bit,
3575 };
3576
3577 static struct rockchip_pin_bank rk3066a_pin_banks[] = {
3578 PIN_BANK(0, 32, "gpio0"),
3579 PIN_BANK(1, 32, "gpio1"),
3580 PIN_BANK(2, 32, "gpio2"),
3581 PIN_BANK(3, 32, "gpio3"),
3582 PIN_BANK(4, 32, "gpio4"),
3583 PIN_BANK(6, 16, "gpio6"),
3584 };
3585
3586 static struct rockchip_pin_ctrl rk3066a_pin_ctrl = {
3587 .pin_banks = rk3066a_pin_banks,
3588 .nr_banks = ARRAY_SIZE(rk3066a_pin_banks),
3589 .label = "RK3066a-GPIO",
3590 .type = RK2928,
3591 .grf_mux_offset = 0xa8,
3592 .pull_calc_reg = rk2928_calc_pull_reg_and_bit,
3593 };
3594
3595 static struct rockchip_pin_bank rk3066b_pin_banks[] = {
3596 PIN_BANK(0, 32, "gpio0"),
3597 PIN_BANK(1, 32, "gpio1"),
3598 PIN_BANK(2, 32, "gpio2"),
3599 PIN_BANK(3, 32, "gpio3"),
3600 };
3601
3602 static struct rockchip_pin_ctrl rk3066b_pin_ctrl = {
3603 .pin_banks = rk3066b_pin_banks,
3604 .nr_banks = ARRAY_SIZE(rk3066b_pin_banks),
3605 .label = "RK3066b-GPIO",
3606 .type = RK3066B,
3607 .grf_mux_offset = 0x60,
3608 };
3609
3610 static struct rockchip_pin_bank rk3128_pin_banks[] = {
3611 PIN_BANK(0, 32, "gpio0"),
3612 PIN_BANK(1, 32, "gpio1"),
3613 PIN_BANK(2, 32, "gpio2"),
3614 PIN_BANK(3, 32, "gpio3"),
3615 };
3616
3617 static struct rockchip_pin_ctrl rk3128_pin_ctrl = {
3618 .pin_banks = rk3128_pin_banks,
3619 .nr_banks = ARRAY_SIZE(rk3128_pin_banks),
3620 .label = "RK3128-GPIO",
3621 .type = RK3128,
3622 .grf_mux_offset = 0xa8,
3623 .iomux_recalced = rk3128_mux_recalced_data,
3624 .niomux_recalced = ARRAY_SIZE(rk3128_mux_recalced_data),
3625 .iomux_routes = rk3128_mux_route_data,
3626 .niomux_routes = ARRAY_SIZE(rk3128_mux_route_data),
3627 .pull_calc_reg = rk3128_calc_pull_reg_and_bit,
3628 };
3629
3630 static struct rockchip_pin_bank rk3188_pin_banks[] = {
3631 PIN_BANK_IOMUX_FLAGS(0, 32, "gpio0", IOMUX_GPIO_ONLY, 0, 0, 0),
3632 PIN_BANK(1, 32, "gpio1"),
3633 PIN_BANK(2, 32, "gpio2"),
3634 PIN_BANK(3, 32, "gpio3"),
3635 };
3636
3637 static struct rockchip_pin_ctrl rk3188_pin_ctrl = {
3638 .pin_banks = rk3188_pin_banks,
3639 .nr_banks = ARRAY_SIZE(rk3188_pin_banks),
3640 .label = "RK3188-GPIO",
3641 .type = RK3188,
3642 .grf_mux_offset = 0x60,
3643 .iomux_routes = rk3188_mux_route_data,
3644 .niomux_routes = ARRAY_SIZE(rk3188_mux_route_data),
3645 .pull_calc_reg = rk3188_calc_pull_reg_and_bit,
3646 };
3647
3648 static struct rockchip_pin_bank rk3228_pin_banks[] = {
3649 PIN_BANK(0, 32, "gpio0"),
3650 PIN_BANK(1, 32, "gpio1"),
3651 PIN_BANK(2, 32, "gpio2"),
3652 PIN_BANK(3, 32, "gpio3"),
3653 };
3654
3655 static struct rockchip_pin_ctrl rk3228_pin_ctrl = {
3656 .pin_banks = rk3228_pin_banks,
3657 .nr_banks = ARRAY_SIZE(rk3228_pin_banks),
3658 .label = "RK3228-GPIO",
3659 .type = RK3288,
3660 .grf_mux_offset = 0x0,
3661 .iomux_routes = rk3228_mux_route_data,
3662 .niomux_routes = ARRAY_SIZE(rk3228_mux_route_data),
3663 .pull_calc_reg = rk3228_calc_pull_reg_and_bit,
3664 .drv_calc_reg = rk3228_calc_drv_reg_and_bit,
3665 };
3666
3667 static struct rockchip_pin_bank rk3288_pin_banks[] = {
3668 PIN_BANK_IOMUX_FLAGS(0, 24, "gpio0", IOMUX_SOURCE_PMU,
3669 IOMUX_SOURCE_PMU,
3670 IOMUX_SOURCE_PMU,
3671 IOMUX_UNROUTED
3672 ),
3673 PIN_BANK_IOMUX_FLAGS(1, 32, "gpio1", IOMUX_UNROUTED,
3674 IOMUX_UNROUTED,
3675 IOMUX_UNROUTED,
3676 0
3677 ),
3678 PIN_BANK_IOMUX_FLAGS(2, 32, "gpio2", 0, 0, 0, IOMUX_UNROUTED),
3679 PIN_BANK_IOMUX_FLAGS(3, 32, "gpio3", 0, 0, 0, IOMUX_WIDTH_4BIT),
3680 PIN_BANK_IOMUX_FLAGS(4, 32, "gpio4", IOMUX_WIDTH_4BIT,
3681 IOMUX_WIDTH_4BIT,
3682 0,
3683 0
3684 ),
3685 PIN_BANK_IOMUX_FLAGS(5, 32, "gpio5", IOMUX_UNROUTED,
3686 0,
3687 0,
3688 IOMUX_UNROUTED
3689 ),
3690 PIN_BANK_IOMUX_FLAGS(6, 32, "gpio6", 0, 0, 0, IOMUX_UNROUTED),
3691 PIN_BANK_IOMUX_FLAGS(7, 32, "gpio7", 0,
3692 0,
3693 IOMUX_WIDTH_4BIT,
3694 IOMUX_UNROUTED
3695 ),
3696 PIN_BANK(8, 16, "gpio8"),
3697 };
3698
3699 static struct rockchip_pin_ctrl rk3288_pin_ctrl = {
3700 .pin_banks = rk3288_pin_banks,
3701 .nr_banks = ARRAY_SIZE(rk3288_pin_banks),
3702 .label = "RK3288-GPIO",
3703 .type = RK3288,
3704 .grf_mux_offset = 0x0,
3705 .pmu_mux_offset = 0x84,
3706 .iomux_routes = rk3288_mux_route_data,
3707 .niomux_routes = ARRAY_SIZE(rk3288_mux_route_data),
3708 .pull_calc_reg = rk3288_calc_pull_reg_and_bit,
3709 .drv_calc_reg = rk3288_calc_drv_reg_and_bit,
3710 };
3711
3712 static struct rockchip_pin_bank rk3328_pin_banks[] = {
3713 PIN_BANK_IOMUX_FLAGS(0, 32, "gpio0", 0, 0, 0, 0),
3714 PIN_BANK_IOMUX_FLAGS(1, 32, "gpio1", 0, 0, 0, 0),
3715 PIN_BANK_IOMUX_FLAGS(2, 32, "gpio2", 0,
3716 IOMUX_WIDTH_3BIT,
3717 IOMUX_WIDTH_3BIT,
3718 0),
3719 PIN_BANK_IOMUX_FLAGS(3, 32, "gpio3",
3720 IOMUX_WIDTH_3BIT,
3721 IOMUX_WIDTH_3BIT,
3722 0,
3723 0),
3724 };
3725
3726 static struct rockchip_pin_ctrl rk3328_pin_ctrl = {
3727 .pin_banks = rk3328_pin_banks,
3728 .nr_banks = ARRAY_SIZE(rk3328_pin_banks),
3729 .label = "RK3328-GPIO",
3730 .type = RK3288,
3731 .grf_mux_offset = 0x0,
3732 .iomux_recalced = rk3328_mux_recalced_data,
3733 .niomux_recalced = ARRAY_SIZE(rk3328_mux_recalced_data),
3734 .iomux_routes = rk3328_mux_route_data,
3735 .niomux_routes = ARRAY_SIZE(rk3328_mux_route_data),
3736 .pull_calc_reg = rk3228_calc_pull_reg_and_bit,
3737 .drv_calc_reg = rk3228_calc_drv_reg_and_bit,
3738 .schmitt_calc_reg = rk3328_calc_schmitt_reg_and_bit,
3739 };
3740
3741 static struct rockchip_pin_bank rk3368_pin_banks[] = {
3742 PIN_BANK_IOMUX_FLAGS(0, 32, "gpio0", IOMUX_SOURCE_PMU,
3743 IOMUX_SOURCE_PMU,
3744 IOMUX_SOURCE_PMU,
3745 IOMUX_SOURCE_PMU
3746 ),
3747 PIN_BANK(1, 32, "gpio1"),
3748 PIN_BANK(2, 32, "gpio2"),
3749 PIN_BANK(3, 32, "gpio3"),
3750 };
3751
3752 static struct rockchip_pin_ctrl rk3368_pin_ctrl = {
3753 .pin_banks = rk3368_pin_banks,
3754 .nr_banks = ARRAY_SIZE(rk3368_pin_banks),
3755 .label = "RK3368-GPIO",
3756 .type = RK3368,
3757 .grf_mux_offset = 0x0,
3758 .pmu_mux_offset = 0x0,
3759 .pull_calc_reg = rk3368_calc_pull_reg_and_bit,
3760 .drv_calc_reg = rk3368_calc_drv_reg_and_bit,
3761 };
3762
3763 static struct rockchip_pin_bank rk3399_pin_banks[] = {
3764 PIN_BANK_IOMUX_FLAGS_DRV_FLAGS_OFFSET_PULL_FLAGS(0, 32, "gpio0",
3765 IOMUX_SOURCE_PMU,
3766 IOMUX_SOURCE_PMU,
3767 IOMUX_SOURCE_PMU,
3768 IOMUX_SOURCE_PMU,
3769 DRV_TYPE_IO_1V8_ONLY,
3770 DRV_TYPE_IO_1V8_ONLY,
3771 DRV_TYPE_IO_DEFAULT,
3772 DRV_TYPE_IO_DEFAULT,
3773 0x80,
3774 0x88,
3775 -1,
3776 -1,
3777 PULL_TYPE_IO_1V8_ONLY,
3778 PULL_TYPE_IO_1V8_ONLY,
3779 PULL_TYPE_IO_DEFAULT,
3780 PULL_TYPE_IO_DEFAULT
3781 ),
3782 PIN_BANK_IOMUX_DRV_FLAGS_OFFSET(1, 32, "gpio1", IOMUX_SOURCE_PMU,
3783 IOMUX_SOURCE_PMU,
3784 IOMUX_SOURCE_PMU,
3785 IOMUX_SOURCE_PMU,
3786 DRV_TYPE_IO_1V8_OR_3V0,
3787 DRV_TYPE_IO_1V8_OR_3V0,
3788 DRV_TYPE_IO_1V8_OR_3V0,
3789 DRV_TYPE_IO_1V8_OR_3V0,
3790 0xa0,
3791 0xa8,
3792 0xb0,
3793 0xb8
3794 ),
3795 PIN_BANK_DRV_FLAGS_PULL_FLAGS(2, 32, "gpio2", DRV_TYPE_IO_1V8_OR_3V0,
3796 DRV_TYPE_IO_1V8_OR_3V0,
3797 DRV_TYPE_IO_1V8_ONLY,
3798 DRV_TYPE_IO_1V8_ONLY,
3799 PULL_TYPE_IO_DEFAULT,
3800 PULL_TYPE_IO_DEFAULT,
3801 PULL_TYPE_IO_1V8_ONLY,
3802 PULL_TYPE_IO_1V8_ONLY
3803 ),
3804 PIN_BANK_DRV_FLAGS(3, 32, "gpio3", DRV_TYPE_IO_3V3_ONLY,
3805 DRV_TYPE_IO_3V3_ONLY,
3806 DRV_TYPE_IO_3V3_ONLY,
3807 DRV_TYPE_IO_1V8_OR_3V0
3808 ),
3809 PIN_BANK_DRV_FLAGS(4, 32, "gpio4", DRV_TYPE_IO_1V8_OR_3V0,
3810 DRV_TYPE_IO_1V8_3V0_AUTO,
3811 DRV_TYPE_IO_1V8_OR_3V0,
3812 DRV_TYPE_IO_1V8_OR_3V0
3813 ),
3814 };
3815
3816 static struct rockchip_pin_ctrl rk3399_pin_ctrl = {
3817 .pin_banks = rk3399_pin_banks,
3818 .nr_banks = ARRAY_SIZE(rk3399_pin_banks),
3819 .label = "RK3399-GPIO",
3820 .type = RK3399,
3821 .grf_mux_offset = 0xe000,
3822 .pmu_mux_offset = 0x0,
3823 .grf_drv_offset = 0xe100,
3824 .pmu_drv_offset = 0x80,
3825 .iomux_routes = rk3399_mux_route_data,
3826 .niomux_routes = ARRAY_SIZE(rk3399_mux_route_data),
3827 .pull_calc_reg = rk3399_calc_pull_reg_and_bit,
3828 .drv_calc_reg = rk3399_calc_drv_reg_and_bit,
3829 };
3830
3831 static const struct of_device_id rockchip_pinctrl_dt_match[] = {
3832 { .compatible = "rockchip,px30-pinctrl",
3833 .data = &px30_pin_ctrl },
3834 { .compatible = "rockchip,rv1108-pinctrl",
3835 .data = &rv1108_pin_ctrl },
3836 { .compatible = "rockchip,rk2928-pinctrl",
3837 .data = &rk2928_pin_ctrl },
3838 { .compatible = "rockchip,rk3036-pinctrl",
3839 .data = &rk3036_pin_ctrl },
3840 { .compatible = "rockchip,rk3066a-pinctrl",
3841 .data = &rk3066a_pin_ctrl },
3842 { .compatible = "rockchip,rk3066b-pinctrl",
3843 .data = &rk3066b_pin_ctrl },
3844 { .compatible = "rockchip,rk3128-pinctrl",
3845 .data = (void *)&rk3128_pin_ctrl },
3846 { .compatible = "rockchip,rk3188-pinctrl",
3847 .data = &rk3188_pin_ctrl },
3848 { .compatible = "rockchip,rk3228-pinctrl",
3849 .data = &rk3228_pin_ctrl },
3850 { .compatible = "rockchip,rk3288-pinctrl",
3851 .data = &rk3288_pin_ctrl },
3852 { .compatible = "rockchip,rk3328-pinctrl",
3853 .data = &rk3328_pin_ctrl },
3854 { .compatible = "rockchip,rk3368-pinctrl",
3855 .data = &rk3368_pin_ctrl },
3856 { .compatible = "rockchip,rk3399-pinctrl",
3857 .data = &rk3399_pin_ctrl },
3858 {},
3859 };
3860
3861 static struct platform_driver rockchip_pinctrl_driver = {
3862 .probe = rockchip_pinctrl_probe,
3863 .driver = {
3864 .name = "rockchip-pinctrl",
3865 .pm = &rockchip_pinctrl_dev_pm_ops,
3866 .of_match_table = rockchip_pinctrl_dt_match,
3867 },
3868 };
3869
rockchip_pinctrl_drv_register(void)3870 static int __init rockchip_pinctrl_drv_register(void)
3871 {
3872 return platform_driver_register(&rockchip_pinctrl_driver);
3873 }
3874 postcore_initcall(rockchip_pinctrl_drv_register);
3875