1 // SPDX-License-Identifier: GPL-2.0-only
3 * Pinctrl driver for Rockchip SoCs
5 * Copyright (c) 2013 MundoReader S.L.
6 * Author: Heiko Stuebner <heiko@sntech.de>
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
15 * Copyright (C) 2011-2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18 #include <linux/init.h>
19 #include <linux/platform_device.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>
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
53 enum rockchip_pinctrl_type
{
67 * Encode variants of iomux registers into a type variable
69 #define IOMUX_GPIO_ONLY BIT(0)
70 #define IOMUX_WIDTH_4BIT BIT(1)
71 #define IOMUX_SOURCE_PMU BIT(2)
72 #define IOMUX_UNROUTED BIT(3)
73 #define IOMUX_WIDTH_3BIT BIT(4)
74 #define IOMUX_WIDTH_2BIT BIT(5)
77 * @type: iomux variant using IOMUX_* constants
78 * @offset: if initialized to -1 it will be autocalculated, by specifying
79 * an initial offset value the relevant source offset can be reset
80 * to a new value for autocalculating the following iomux registers.
82 struct rockchip_iomux
{
88 * enum type index corresponding to rockchip_perpin_drv_list arrays index.
90 enum rockchip_pin_drv_type
{
91 DRV_TYPE_IO_DEFAULT
= 0,
92 DRV_TYPE_IO_1V8_OR_3V0
,
94 DRV_TYPE_IO_1V8_3V0_AUTO
,
100 * enum type index corresponding to rockchip_pull_list arrays index.
102 enum rockchip_pin_pull_type
{
103 PULL_TYPE_IO_DEFAULT
= 0,
104 PULL_TYPE_IO_1V8_ONLY
,
109 * @drv_type: drive strength variant using rockchip_perpin_drv_type
110 * @offset: if initialized to -1 it will be autocalculated, by specifying
111 * an initial offset value the relevant source offset can be reset
112 * to a new value for autocalculating the following drive strength
113 * registers. if used chips own cal_drv func instead to calculate
114 * registers offset, the variant could be ignored.
116 struct rockchip_drv
{
117 enum rockchip_pin_drv_type drv_type
;
122 * @reg_base: register base of the gpio bank
123 * @reg_pull: optional separate register for additional pull settings
124 * @clk: clock of the gpio bank
125 * @irq: interrupt of the gpio bank
126 * @saved_masks: Saved content of GPIO_INTEN at suspend time.
127 * @pin_base: first pin number
128 * @nr_pins: number of pins in this bank
129 * @name: name of the bank
130 * @bank_num: number of the bank, to account for holes
131 * @iomux: array describing the 4 iomux sources of the bank
132 * @drv: array describing the 4 drive strength sources of the bank
133 * @pull_type: array describing the 4 pull type sources of the bank
134 * @valid: is all necessary information present
135 * @of_node: dt node of this bank
136 * @drvdata: common pinctrl basedata
137 * @domain: irqdomain of the gpio bank
138 * @gpio_chip: gpiolib chip
139 * @grange: gpio range
140 * @slock: spinlock for the gpio bank
141 * @route_mask: bits describing the routing pins of per bank
143 struct rockchip_pin_bank
{
144 void __iomem
*reg_base
;
145 struct regmap
*regmap_pull
;
153 struct rockchip_iomux iomux
[4];
154 struct rockchip_drv drv
[4];
155 enum rockchip_pin_pull_type pull_type
[4];
157 struct device_node
*of_node
;
158 struct rockchip_pinctrl
*drvdata
;
159 struct irq_domain
*domain
;
160 struct gpio_chip gpio_chip
;
161 struct pinctrl_gpio_range grange
;
162 raw_spinlock_t slock
;
163 u32 toggle_edge_mode
;
168 #define PIN_BANK(id, pins, label) \
181 #define PIN_BANK_IOMUX_FLAGS(id, pins, label, iom0, iom1, iom2, iom3) \
187 { .type = iom0, .offset = -1 }, \
188 { .type = iom1, .offset = -1 }, \
189 { .type = iom2, .offset = -1 }, \
190 { .type = iom3, .offset = -1 }, \
194 #define PIN_BANK_DRV_FLAGS(id, pins, label, type0, type1, type2, type3) \
206 { .drv_type = type0, .offset = -1 }, \
207 { .drv_type = type1, .offset = -1 }, \
208 { .drv_type = type2, .offset = -1 }, \
209 { .drv_type = type3, .offset = -1 }, \
213 #define PIN_BANK_DRV_FLAGS_PULL_FLAGS(id, pins, label, drv0, drv1, \
214 drv2, drv3, pull0, pull1, \
227 { .drv_type = drv0, .offset = -1 }, \
228 { .drv_type = drv1, .offset = -1 }, \
229 { .drv_type = drv2, .offset = -1 }, \
230 { .drv_type = drv3, .offset = -1 }, \
232 .pull_type[0] = pull0, \
233 .pull_type[1] = pull1, \
234 .pull_type[2] = pull2, \
235 .pull_type[3] = pull3, \
238 #define PIN_BANK_IOMUX_DRV_FLAGS_OFFSET(id, pins, label, iom0, iom1, \
239 iom2, iom3, drv0, drv1, drv2, \
240 drv3, offset0, offset1, \
247 { .type = iom0, .offset = -1 }, \
248 { .type = iom1, .offset = -1 }, \
249 { .type = iom2, .offset = -1 }, \
250 { .type = iom3, .offset = -1 }, \
253 { .drv_type = drv0, .offset = offset0 }, \
254 { .drv_type = drv1, .offset = offset1 }, \
255 { .drv_type = drv2, .offset = offset2 }, \
256 { .drv_type = drv3, .offset = offset3 }, \
260 #define PIN_BANK_IOMUX_FLAGS_DRV_FLAGS_OFFSET_PULL_FLAGS(id, pins, \
261 label, iom0, iom1, iom2, \
262 iom3, drv0, drv1, drv2, \
263 drv3, offset0, offset1, \
264 offset2, offset3, pull0, \
265 pull1, pull2, pull3) \
271 { .type = iom0, .offset = -1 }, \
272 { .type = iom1, .offset = -1 }, \
273 { .type = iom2, .offset = -1 }, \
274 { .type = iom3, .offset = -1 }, \
277 { .drv_type = drv0, .offset = offset0 }, \
278 { .drv_type = drv1, .offset = offset1 }, \
279 { .drv_type = drv2, .offset = offset2 }, \
280 { .drv_type = drv3, .offset = offset3 }, \
282 .pull_type[0] = pull0, \
283 .pull_type[1] = pull1, \
284 .pull_type[2] = pull2, \
285 .pull_type[3] = pull3, \
289 * struct rockchip_mux_recalced_data: represent a pin iomux data.
292 * @bit: index at register.
293 * @reg: register offset.
296 struct rockchip_mux_recalced_data
{
304 enum rockchip_mux_route_location
{
305 ROCKCHIP_ROUTE_SAME
= 0,
311 * struct rockchip_mux_recalced_data: represent a pin iomux data.
312 * @bank_num: bank number.
313 * @pin: index at register or used to calc index.
314 * @func: the min pin.
315 * @route_offset: the max pin.
316 * @route_val: the register offset.
318 struct rockchip_mux_route_data
{
322 enum rockchip_mux_route_location route_location
;
329 struct rockchip_pin_ctrl
{
330 struct rockchip_pin_bank
*pin_banks
;
334 enum rockchip_pinctrl_type type
;
339 struct rockchip_mux_recalced_data
*iomux_recalced
;
341 struct rockchip_mux_route_data
*iomux_routes
;
344 void (*pull_calc_reg
)(struct rockchip_pin_bank
*bank
,
345 int pin_num
, struct regmap
**regmap
,
347 void (*drv_calc_reg
)(struct rockchip_pin_bank
*bank
,
348 int pin_num
, struct regmap
**regmap
,
350 int (*schmitt_calc_reg
)(struct rockchip_pin_bank
*bank
,
351 int pin_num
, struct regmap
**regmap
,
355 struct rockchip_pin_config
{
357 unsigned long *configs
;
358 unsigned int nconfigs
;
362 * struct rockchip_pin_group: represent group of pins of a pinmux function.
363 * @name: name of the pin group, used to lookup the group.
364 * @pins: the pins included in this group.
365 * @npins: number of pins included in this group.
366 * @func: the mux function number to be programmed when selected.
367 * @configs: the config values to be set for each pin
368 * @nconfigs: number of configs for each pin
370 struct rockchip_pin_group
{
374 struct rockchip_pin_config
*data
;
378 * struct rockchip_pmx_func: represent a pin function.
379 * @name: name of the pin function, used to lookup the function.
380 * @groups: one or more names of pin groups that provide this function.
381 * @num_groups: number of groups included in @groups.
383 struct rockchip_pmx_func
{
389 struct rockchip_pinctrl
{
390 struct regmap
*regmap_base
;
392 struct regmap
*regmap_pull
;
393 struct regmap
*regmap_pmu
;
395 struct rockchip_pin_ctrl
*ctrl
;
396 struct pinctrl_desc pctl
;
397 struct pinctrl_dev
*pctl_dev
;
398 struct rockchip_pin_group
*groups
;
399 unsigned int ngroups
;
400 struct rockchip_pmx_func
*functions
;
401 unsigned int nfunctions
;
404 static struct regmap_config rockchip_regmap_config
= {
410 static inline const struct rockchip_pin_group
*pinctrl_name_to_group(
411 const struct rockchip_pinctrl
*info
,
416 for (i
= 0; i
< info
->ngroups
; i
++) {
417 if (!strcmp(info
->groups
[i
].name
, name
))
418 return &info
->groups
[i
];
425 * given a pin number that is local to a pin controller, find out the pin bank
426 * and the register base of the pin bank.
428 static struct rockchip_pin_bank
*pin_to_bank(struct rockchip_pinctrl
*info
,
431 struct rockchip_pin_bank
*b
= info
->ctrl
->pin_banks
;
433 while (pin
>= (b
->pin_base
+ b
->nr_pins
))
439 static struct rockchip_pin_bank
*bank_num_to_bank(
440 struct rockchip_pinctrl
*info
,
443 struct rockchip_pin_bank
*b
= info
->ctrl
->pin_banks
;
446 for (i
= 0; i
< info
->ctrl
->nr_banks
; i
++, b
++) {
447 if (b
->bank_num
== num
)
451 return ERR_PTR(-EINVAL
);
455 * Pinctrl_ops handling
458 static int rockchip_get_groups_count(struct pinctrl_dev
*pctldev
)
460 struct rockchip_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
462 return info
->ngroups
;
465 static const char *rockchip_get_group_name(struct pinctrl_dev
*pctldev
,
468 struct rockchip_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
470 return info
->groups
[selector
].name
;
473 static int rockchip_get_group_pins(struct pinctrl_dev
*pctldev
,
474 unsigned selector
, const unsigned **pins
,
477 struct rockchip_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
479 if (selector
>= info
->ngroups
)
482 *pins
= info
->groups
[selector
].pins
;
483 *npins
= info
->groups
[selector
].npins
;
488 static int rockchip_dt_node_to_map(struct pinctrl_dev
*pctldev
,
489 struct device_node
*np
,
490 struct pinctrl_map
**map
, unsigned *num_maps
)
492 struct rockchip_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
493 const struct rockchip_pin_group
*grp
;
494 struct pinctrl_map
*new_map
;
495 struct device_node
*parent
;
500 * first find the group of this node and check if we need to create
501 * config maps for pins
503 grp
= pinctrl_name_to_group(info
, np
->name
);
505 dev_err(info
->dev
, "unable to find group for node %pOFn\n",
510 map_num
+= grp
->npins
;
511 new_map
= devm_kcalloc(pctldev
->dev
, map_num
, sizeof(*new_map
),
520 parent
= of_get_parent(np
);
522 devm_kfree(pctldev
->dev
, new_map
);
525 new_map
[0].type
= PIN_MAP_TYPE_MUX_GROUP
;
526 new_map
[0].data
.mux
.function
= parent
->name
;
527 new_map
[0].data
.mux
.group
= np
->name
;
530 /* create config map */
532 for (i
= 0; i
< grp
->npins
; i
++) {
533 new_map
[i
].type
= PIN_MAP_TYPE_CONFIGS_PIN
;
534 new_map
[i
].data
.configs
.group_or_pin
=
535 pin_get_name(pctldev
, grp
->pins
[i
]);
536 new_map
[i
].data
.configs
.configs
= grp
->data
[i
].configs
;
537 new_map
[i
].data
.configs
.num_configs
= grp
->data
[i
].nconfigs
;
540 dev_dbg(pctldev
->dev
, "maps: function %s group %s num %d\n",
541 (*map
)->data
.mux
.function
, (*map
)->data
.mux
.group
, map_num
);
546 static void rockchip_dt_free_map(struct pinctrl_dev
*pctldev
,
547 struct pinctrl_map
*map
, unsigned num_maps
)
551 static const struct pinctrl_ops rockchip_pctrl_ops
= {
552 .get_groups_count
= rockchip_get_groups_count
,
553 .get_group_name
= rockchip_get_group_name
,
554 .get_group_pins
= rockchip_get_group_pins
,
555 .dt_node_to_map
= rockchip_dt_node_to_map
,
556 .dt_free_map
= rockchip_dt_free_map
,
563 static struct rockchip_mux_recalced_data rv1108_mux_recalced_data
[] = {
627 static struct rockchip_mux_recalced_data rk3128_mux_recalced_data
[] = {
661 static struct rockchip_mux_recalced_data rk3308_mux_recalced_data
[] = {
755 static struct rockchip_mux_recalced_data rk3328_mux_recalced_data
[] = {
777 static void rockchip_get_recalced_mux(struct rockchip_pin_bank
*bank
, int pin
,
778 int *reg
, u8
*bit
, int *mask
)
780 struct rockchip_pinctrl
*info
= bank
->drvdata
;
781 struct rockchip_pin_ctrl
*ctrl
= info
->ctrl
;
782 struct rockchip_mux_recalced_data
*data
;
785 for (i
= 0; i
< ctrl
->niomux_recalced
; i
++) {
786 data
= &ctrl
->iomux_recalced
[i
];
787 if (data
->num
== bank
->bank_num
&&
792 if (i
>= ctrl
->niomux_recalced
)
800 static struct rockchip_mux_route_data px30_mux_route_data
[] = {
806 .route_offset
= 0x184,
807 .route_val
= BIT(16 + 7),
813 .route_offset
= 0x184,
814 .route_val
= BIT(16 + 7) | BIT(7),
820 .route_offset
= 0x184,
821 .route_val
= BIT(16 + 8),
827 .route_offset
= 0x184,
828 .route_val
= BIT(16 + 8) | BIT(8),
834 .route_offset
= 0x184,
835 .route_val
= BIT(16 + 10),
841 .route_offset
= 0x184,
842 .route_val
= BIT(16 + 10) | BIT(10),
848 .route_offset
= 0x184,
849 .route_val
= BIT(16 + 9),
855 .route_offset
= 0x184,
856 .route_val
= BIT(16 + 9) | BIT(9),
860 static struct rockchip_mux_route_data rk3128_mux_route_data
[] = {
866 .route_offset
= 0x144,
867 .route_val
= BIT(16 + 3) | BIT(16 + 4),
873 .route_offset
= 0x144,
874 .route_val
= BIT(16 + 3) | BIT(16 + 4) | BIT(3),
880 .route_offset
= 0x144,
881 .route_val
= BIT(16 + 3) | BIT(16 + 4) | BIT(4),
887 .route_offset
= 0x144,
888 .route_val
= BIT(16 + 5),
894 .route_offset
= 0x144,
895 .route_val
= BIT(16 + 5) | BIT(5),
901 .route_offset
= 0x144,
902 .route_val
= BIT(16 + 6),
908 .route_offset
= 0x144,
909 .route_val
= BIT(16 + 6) | BIT(6),
913 static struct rockchip_mux_route_data rk3188_mux_route_data
[] = {
915 /* non-iomuxed emmc/flash pins on flash-dqs */
919 .route_location
= ROCKCHIP_ROUTE_GRF
,
920 .route_offset
= 0xa0,
921 .route_val
= BIT(16 + 11),
923 /* non-iomuxed emmc/flash pins on emmc-clk */
927 .route_location
= ROCKCHIP_ROUTE_GRF
,
928 .route_offset
= 0xa0,
929 .route_val
= BIT(16 + 11) | BIT(11),
933 static struct rockchip_mux_route_data rk3228_mux_route_data
[] = {
939 .route_offset
= 0x50,
940 .route_val
= BIT(16),
946 .route_offset
= 0x50,
947 .route_val
= BIT(16) | BIT(0),
953 .route_offset
= 0x50,
954 .route_val
= BIT(16 + 1),
960 .route_offset
= 0x50,
961 .route_val
= BIT(16 + 1) | BIT(1),
967 .route_offset
= 0x50,
968 .route_val
= BIT(16 + 2),
974 .route_offset
= 0x50,
975 .route_val
= BIT(16 + 2) | BIT(2),
981 .route_offset
= 0x50,
982 .route_val
= BIT(16 + 3),
988 .route_offset
= 0x50,
989 .route_val
= BIT(16 + 3) | BIT(3),
995 .route_offset
= 0x50,
996 .route_val
= BIT(16 + 4),
1002 .route_offset
= 0x50,
1003 .route_val
= BIT(16 + 4) | BIT(4),
1009 .route_offset
= 0x50,
1010 .route_val
= BIT(16 + 5),
1016 .route_offset
= 0x50,
1017 .route_val
= BIT(16 + 5) | BIT(5),
1023 .route_offset
= 0x50,
1024 .route_val
= BIT(16 + 7),
1030 .route_offset
= 0x50,
1031 .route_val
= BIT(16 + 7) | BIT(7),
1037 .route_offset
= 0x50,
1038 .route_val
= BIT(16 + 8),
1044 .route_offset
= 0x50,
1045 .route_val
= BIT(16 + 8) | BIT(8),
1051 .route_offset
= 0x50,
1052 .route_val
= BIT(16 + 11),
1058 .route_offset
= 0x50,
1059 .route_val
= BIT(16 + 11) | BIT(11),
1063 static struct rockchip_mux_route_data rk3288_mux_route_data
[] = {
1065 /* edphdmi_cecinoutt1 */
1069 .route_offset
= 0x264,
1070 .route_val
= BIT(16 + 12) | BIT(12),
1072 /* edphdmi_cecinout */
1076 .route_offset
= 0x264,
1077 .route_val
= BIT(16 + 12),
1081 static struct rockchip_mux_route_data rk3308_mux_route_data
[] = {
1087 .route_offset
= 0x314,
1088 .route_val
= BIT(16 + 0) | BIT(0),
1094 .route_offset
= 0x314,
1095 .route_val
= BIT(16 + 2) | BIT(16 + 3),
1101 .route_offset
= 0x314,
1102 .route_val
= BIT(16 + 2) | BIT(16 + 3) | BIT(2),
1108 .route_offset
= 0x608,
1109 .route_val
= BIT(16 + 8) | BIT(16 + 9),
1115 .route_offset
= 0x608,
1116 .route_val
= BIT(16 + 8) | BIT(16 + 9) | BIT(8),
1122 .route_offset
= 0x608,
1123 .route_val
= BIT(16 + 8) | BIT(16 + 9) | BIT(9),
1125 /* i2s-8ch-1-sclktxm0 */
1129 .route_offset
= 0x308,
1130 .route_val
= BIT(16 + 3),
1132 /* i2s-8ch-1-sclkrxm0 */
1136 .route_offset
= 0x308,
1137 .route_val
= BIT(16 + 3),
1139 /* i2s-8ch-1-sclktxm1 */
1143 .route_offset
= 0x308,
1144 .route_val
= BIT(16 + 3) | BIT(3),
1146 /* i2s-8ch-1-sclkrxm1 */
1150 .route_offset
= 0x308,
1151 .route_val
= BIT(16 + 3) | BIT(3),
1157 .route_offset
= 0x308,
1158 .route_val
= BIT(16 + 12) | BIT(16 + 13),
1164 .route_offset
= 0x308,
1165 .route_val
= BIT(16 + 12) | BIT(16 + 13) | BIT(12),
1171 .route_offset
= 0x308,
1172 .route_val
= BIT(16 + 12) | BIT(16 + 13) | BIT(13),
1178 .route_offset
= 0x600,
1179 .route_val
= BIT(16 + 2) | BIT(2),
1185 .route_offset
= 0x314,
1186 .route_val
= BIT(16 + 9),
1192 .route_offset
= 0x314,
1193 .route_val
= BIT(16 + 9) | BIT(9),
1199 .route_offset
= 0x314,
1200 .route_val
= BIT(16 + 10) | BIT(16 + 11),
1206 .route_offset
= 0x314,
1207 .route_val
= BIT(16 + 10) | BIT(16 + 11) | BIT(10),
1213 .route_offset
= 0x314,
1214 .route_val
= BIT(16 + 10) | BIT(16 + 11) | BIT(11),
1220 .route_offset
= 0x314,
1221 .route_val
= BIT(16 + 12) | BIT(16 + 13),
1227 .route_offset
= 0x314,
1228 .route_val
= BIT(16 + 12) | BIT(16 + 13) | BIT(12),
1234 .route_offset
= 0x314,
1235 .route_val
= BIT(16 + 12) | BIT(16 + 13) | BIT(13),
1241 .route_offset
= 0x314,
1242 .route_val
= BIT(16 + 14),
1248 .route_offset
= 0x314,
1249 .route_val
= BIT(16 + 14) | BIT(14),
1255 .route_offset
= 0x314,
1256 .route_val
= BIT(16 + 15),
1262 .route_offset
= 0x314,
1263 .route_val
= BIT(16 + 15) | BIT(15),
1267 static struct rockchip_mux_route_data rk3328_mux_route_data
[] = {
1273 .route_offset
= 0x50,
1274 .route_val
= BIT(16) | BIT(16 + 1),
1280 .route_offset
= 0x50,
1281 .route_val
= BIT(16) | BIT(16 + 1) | BIT(0),
1287 .route_offset
= 0x50,
1288 .route_val
= BIT(16 + 2) | BIT(2),
1290 /* gmac-m1-optimized_rxd3 */
1294 .route_offset
= 0x50,
1295 .route_val
= BIT(16 + 10) | BIT(10),
1301 .route_offset
= 0x50,
1302 .route_val
= BIT(16 + 3),
1308 .route_offset
= 0x50,
1309 .route_val
= BIT(16 + 3) | BIT(3),
1315 .route_offset
= 0x50,
1316 .route_val
= BIT(16 + 4) | BIT(16 + 5) | BIT(5),
1322 .route_offset
= 0x50,
1323 .route_val
= BIT(16 + 6),
1329 .route_offset
= 0x50,
1330 .route_val
= BIT(16 + 6) | BIT(6),
1336 .route_offset
= 0x50,
1337 .route_val
= BIT(16 + 7) | BIT(7),
1343 .route_offset
= 0x50,
1344 .route_val
= BIT(16 + 8) | BIT(8),
1350 .route_offset
= 0x50,
1351 .route_val
= BIT(16 + 9) | BIT(9),
1355 static struct rockchip_mux_route_data rk3399_mux_route_data
[] = {
1361 .route_offset
= 0xe21c,
1362 .route_val
= BIT(16 + 10) | BIT(16 + 11),
1368 .route_offset
= 0xe21c,
1369 .route_val
= BIT(16 + 10) | BIT(16 + 11) | BIT(10),
1375 .route_offset
= 0xe21c,
1376 .route_val
= BIT(16 + 10) | BIT(16 + 11) | BIT(11),
1382 .route_offset
= 0xe21c,
1383 .route_val
= BIT(16 + 14),
1389 .route_offset
= 0xe21c,
1390 .route_val
= BIT(16 + 14) | BIT(14),
1394 static bool rockchip_get_mux_route(struct rockchip_pin_bank
*bank
, int pin
,
1395 int mux
, u32
*loc
, u32
*reg
, u32
*value
)
1397 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1398 struct rockchip_pin_ctrl
*ctrl
= info
->ctrl
;
1399 struct rockchip_mux_route_data
*data
;
1402 for (i
= 0; i
< ctrl
->niomux_routes
; i
++) {
1403 data
= &ctrl
->iomux_routes
[i
];
1404 if ((data
->bank_num
== bank
->bank_num
) &&
1405 (data
->pin
== pin
) && (data
->func
== mux
))
1409 if (i
>= ctrl
->niomux_routes
)
1412 *loc
= data
->route_location
;
1413 *reg
= data
->route_offset
;
1414 *value
= data
->route_val
;
1419 static int rockchip_get_mux(struct rockchip_pin_bank
*bank
, int pin
)
1421 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1422 int iomux_num
= (pin
/ 8);
1423 struct regmap
*regmap
;
1425 int reg
, ret
, mask
, mux_type
;
1431 if (bank
->iomux
[iomux_num
].type
& IOMUX_UNROUTED
) {
1432 dev_err(info
->dev
, "pin %d is unrouted\n", pin
);
1436 if (bank
->iomux
[iomux_num
].type
& IOMUX_GPIO_ONLY
)
1437 return RK_FUNC_GPIO
;
1439 regmap
= (bank
->iomux
[iomux_num
].type
& IOMUX_SOURCE_PMU
)
1440 ? info
->regmap_pmu
: info
->regmap_base
;
1442 /* get basic quadrupel of mux registers and the correct reg inside */
1443 mux_type
= bank
->iomux
[iomux_num
].type
;
1444 reg
= bank
->iomux
[iomux_num
].offset
;
1445 if (mux_type
& IOMUX_WIDTH_4BIT
) {
1448 bit
= (pin
% 4) * 4;
1450 } else if (mux_type
& IOMUX_WIDTH_3BIT
) {
1453 bit
= (pin
% 8 % 5) * 3;
1456 bit
= (pin
% 8) * 2;
1460 if (bank
->recalced_mask
& BIT(pin
))
1461 rockchip_get_recalced_mux(bank
, pin
, ®
, &bit
, &mask
);
1463 ret
= regmap_read(regmap
, reg
, &val
);
1467 return ((val
>> bit
) & mask
);
1470 static int rockchip_verify_mux(struct rockchip_pin_bank
*bank
,
1473 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1474 int iomux_num
= (pin
/ 8);
1479 if (bank
->iomux
[iomux_num
].type
& IOMUX_UNROUTED
) {
1480 dev_err(info
->dev
, "pin %d is unrouted\n", pin
);
1484 if (bank
->iomux
[iomux_num
].type
& IOMUX_GPIO_ONLY
) {
1485 if (mux
!= RK_FUNC_GPIO
) {
1487 "pin %d only supports a gpio mux\n", pin
);
1496 * Set a new mux function for a pin.
1498 * The register is divided into the upper and lower 16 bit. When changing
1499 * a value, the previous register value is not read and changed. Instead
1500 * it seems the changed bits are marked in the upper 16 bit, while the
1501 * changed value gets set in the same offset in the lower 16 bit.
1502 * All pin settings seem to be 2 bit wide in both the upper and lower
1504 * @bank: pin bank to change
1505 * @pin: pin to change
1506 * @mux: new mux function to set
1508 static int rockchip_set_mux(struct rockchip_pin_bank
*bank
, int pin
, int mux
)
1510 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1511 int iomux_num
= (pin
/ 8);
1512 struct regmap
*regmap
;
1513 int reg
, ret
, mask
, mux_type
;
1515 u32 data
, rmask
, route_location
, route_reg
, route_val
;
1517 ret
= rockchip_verify_mux(bank
, pin
, mux
);
1521 if (bank
->iomux
[iomux_num
].type
& IOMUX_GPIO_ONLY
)
1524 dev_dbg(info
->dev
, "setting mux of GPIO%d-%d to %d\n",
1525 bank
->bank_num
, pin
, mux
);
1527 regmap
= (bank
->iomux
[iomux_num
].type
& IOMUX_SOURCE_PMU
)
1528 ? info
->regmap_pmu
: info
->regmap_base
;
1530 /* get basic quadrupel of mux registers and the correct reg inside */
1531 mux_type
= bank
->iomux
[iomux_num
].type
;
1532 reg
= bank
->iomux
[iomux_num
].offset
;
1533 if (mux_type
& IOMUX_WIDTH_4BIT
) {
1536 bit
= (pin
% 4) * 4;
1538 } else if (mux_type
& IOMUX_WIDTH_3BIT
) {
1541 bit
= (pin
% 8 % 5) * 3;
1544 bit
= (pin
% 8) * 2;
1548 if (bank
->recalced_mask
& BIT(pin
))
1549 rockchip_get_recalced_mux(bank
, pin
, ®
, &bit
, &mask
);
1551 if (bank
->route_mask
& BIT(pin
)) {
1552 if (rockchip_get_mux_route(bank
, pin
, mux
, &route_location
,
1553 &route_reg
, &route_val
)) {
1554 struct regmap
*route_regmap
= regmap
;
1556 /* handle special locations */
1557 switch (route_location
) {
1558 case ROCKCHIP_ROUTE_PMU
:
1559 route_regmap
= info
->regmap_pmu
;
1561 case ROCKCHIP_ROUTE_GRF
:
1562 route_regmap
= info
->regmap_base
;
1566 ret
= regmap_write(route_regmap
, route_reg
, route_val
);
1572 data
= (mask
<< (bit
+ 16));
1573 rmask
= data
| (data
>> 16);
1574 data
|= (mux
& mask
) << bit
;
1575 ret
= regmap_update_bits(regmap
, reg
, rmask
, data
);
1580 #define PX30_PULL_PMU_OFFSET 0x10
1581 #define PX30_PULL_GRF_OFFSET 0x60
1582 #define PX30_PULL_BITS_PER_PIN 2
1583 #define PX30_PULL_PINS_PER_REG 8
1584 #define PX30_PULL_BANK_STRIDE 16
1586 static void px30_calc_pull_reg_and_bit(struct rockchip_pin_bank
*bank
,
1587 int pin_num
, struct regmap
**regmap
,
1590 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1592 /* The first 32 pins of the first bank are located in PMU */
1593 if (bank
->bank_num
== 0) {
1594 *regmap
= info
->regmap_pmu
;
1595 *reg
= PX30_PULL_PMU_OFFSET
;
1597 *regmap
= info
->regmap_base
;
1598 *reg
= PX30_PULL_GRF_OFFSET
;
1600 /* correct the offset, as we're starting with the 2nd bank */
1602 *reg
+= bank
->bank_num
* PX30_PULL_BANK_STRIDE
;
1605 *reg
+= ((pin_num
/ PX30_PULL_PINS_PER_REG
) * 4);
1606 *bit
= (pin_num
% PX30_PULL_PINS_PER_REG
);
1607 *bit
*= PX30_PULL_BITS_PER_PIN
;
1610 #define PX30_DRV_PMU_OFFSET 0x20
1611 #define PX30_DRV_GRF_OFFSET 0xf0
1612 #define PX30_DRV_BITS_PER_PIN 2
1613 #define PX30_DRV_PINS_PER_REG 8
1614 #define PX30_DRV_BANK_STRIDE 16
1616 static void px30_calc_drv_reg_and_bit(struct rockchip_pin_bank
*bank
,
1617 int pin_num
, struct regmap
**regmap
,
1620 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1622 /* The first 32 pins of the first bank are located in PMU */
1623 if (bank
->bank_num
== 0) {
1624 *regmap
= info
->regmap_pmu
;
1625 *reg
= PX30_DRV_PMU_OFFSET
;
1627 *regmap
= info
->regmap_base
;
1628 *reg
= PX30_DRV_GRF_OFFSET
;
1630 /* correct the offset, as we're starting with the 2nd bank */
1632 *reg
+= bank
->bank_num
* PX30_DRV_BANK_STRIDE
;
1635 *reg
+= ((pin_num
/ PX30_DRV_PINS_PER_REG
) * 4);
1636 *bit
= (pin_num
% PX30_DRV_PINS_PER_REG
);
1637 *bit
*= PX30_DRV_BITS_PER_PIN
;
1640 #define PX30_SCHMITT_PMU_OFFSET 0x38
1641 #define PX30_SCHMITT_GRF_OFFSET 0xc0
1642 #define PX30_SCHMITT_PINS_PER_PMU_REG 16
1643 #define PX30_SCHMITT_BANK_STRIDE 16
1644 #define PX30_SCHMITT_PINS_PER_GRF_REG 8
1646 static int px30_calc_schmitt_reg_and_bit(struct rockchip_pin_bank
*bank
,
1648 struct regmap
**regmap
,
1651 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1654 if (bank
->bank_num
== 0) {
1655 *regmap
= info
->regmap_pmu
;
1656 *reg
= PX30_SCHMITT_PMU_OFFSET
;
1657 pins_per_reg
= PX30_SCHMITT_PINS_PER_PMU_REG
;
1659 *regmap
= info
->regmap_base
;
1660 *reg
= PX30_SCHMITT_GRF_OFFSET
;
1661 pins_per_reg
= PX30_SCHMITT_PINS_PER_GRF_REG
;
1662 *reg
+= (bank
->bank_num
- 1) * PX30_SCHMITT_BANK_STRIDE
;
1665 *reg
+= ((pin_num
/ pins_per_reg
) * 4);
1666 *bit
= pin_num
% pins_per_reg
;
1671 #define RV1108_PULL_PMU_OFFSET 0x10
1672 #define RV1108_PULL_OFFSET 0x110
1673 #define RV1108_PULL_PINS_PER_REG 8
1674 #define RV1108_PULL_BITS_PER_PIN 2
1675 #define RV1108_PULL_BANK_STRIDE 16
1677 static void rv1108_calc_pull_reg_and_bit(struct rockchip_pin_bank
*bank
,
1678 int pin_num
, struct regmap
**regmap
,
1681 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1683 /* The first 24 pins of the first bank are located in PMU */
1684 if (bank
->bank_num
== 0) {
1685 *regmap
= info
->regmap_pmu
;
1686 *reg
= RV1108_PULL_PMU_OFFSET
;
1688 *reg
= RV1108_PULL_OFFSET
;
1689 *regmap
= info
->regmap_base
;
1690 /* correct the offset, as we're starting with the 2nd bank */
1692 *reg
+= bank
->bank_num
* RV1108_PULL_BANK_STRIDE
;
1695 *reg
+= ((pin_num
/ RV1108_PULL_PINS_PER_REG
) * 4);
1696 *bit
= (pin_num
% RV1108_PULL_PINS_PER_REG
);
1697 *bit
*= RV1108_PULL_BITS_PER_PIN
;
1700 #define RV1108_DRV_PMU_OFFSET 0x20
1701 #define RV1108_DRV_GRF_OFFSET 0x210
1702 #define RV1108_DRV_BITS_PER_PIN 2
1703 #define RV1108_DRV_PINS_PER_REG 8
1704 #define RV1108_DRV_BANK_STRIDE 16
1706 static void rv1108_calc_drv_reg_and_bit(struct rockchip_pin_bank
*bank
,
1707 int pin_num
, struct regmap
**regmap
,
1710 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1712 /* The first 24 pins of the first bank are located in PMU */
1713 if (bank
->bank_num
== 0) {
1714 *regmap
= info
->regmap_pmu
;
1715 *reg
= RV1108_DRV_PMU_OFFSET
;
1717 *regmap
= info
->regmap_base
;
1718 *reg
= RV1108_DRV_GRF_OFFSET
;
1720 /* correct the offset, as we're starting with the 2nd bank */
1722 *reg
+= bank
->bank_num
* RV1108_DRV_BANK_STRIDE
;
1725 *reg
+= ((pin_num
/ RV1108_DRV_PINS_PER_REG
) * 4);
1726 *bit
= pin_num
% RV1108_DRV_PINS_PER_REG
;
1727 *bit
*= RV1108_DRV_BITS_PER_PIN
;
1730 #define RV1108_SCHMITT_PMU_OFFSET 0x30
1731 #define RV1108_SCHMITT_GRF_OFFSET 0x388
1732 #define RV1108_SCHMITT_BANK_STRIDE 8
1733 #define RV1108_SCHMITT_PINS_PER_GRF_REG 16
1734 #define RV1108_SCHMITT_PINS_PER_PMU_REG 8
1736 static int rv1108_calc_schmitt_reg_and_bit(struct rockchip_pin_bank
*bank
,
1738 struct regmap
**regmap
,
1741 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1744 if (bank
->bank_num
== 0) {
1745 *regmap
= info
->regmap_pmu
;
1746 *reg
= RV1108_SCHMITT_PMU_OFFSET
;
1747 pins_per_reg
= RV1108_SCHMITT_PINS_PER_PMU_REG
;
1749 *regmap
= info
->regmap_base
;
1750 *reg
= RV1108_SCHMITT_GRF_OFFSET
;
1751 pins_per_reg
= RV1108_SCHMITT_PINS_PER_GRF_REG
;
1752 *reg
+= (bank
->bank_num
- 1) * RV1108_SCHMITT_BANK_STRIDE
;
1754 *reg
+= ((pin_num
/ pins_per_reg
) * 4);
1755 *bit
= pin_num
% pins_per_reg
;
1760 #define RK3308_SCHMITT_PINS_PER_REG 8
1761 #define RK3308_SCHMITT_BANK_STRIDE 16
1762 #define RK3308_SCHMITT_GRF_OFFSET 0x1a0
1764 static int rk3308_calc_schmitt_reg_and_bit(struct rockchip_pin_bank
*bank
,
1765 int pin_num
, struct regmap
**regmap
,
1768 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1770 *regmap
= info
->regmap_base
;
1771 *reg
= RK3308_SCHMITT_GRF_OFFSET
;
1773 *reg
+= bank
->bank_num
* RK3308_SCHMITT_BANK_STRIDE
;
1774 *reg
+= ((pin_num
/ RK3308_SCHMITT_PINS_PER_REG
) * 4);
1775 *bit
= pin_num
% RK3308_SCHMITT_PINS_PER_REG
;
1780 #define RK2928_PULL_OFFSET 0x118
1781 #define RK2928_PULL_PINS_PER_REG 16
1782 #define RK2928_PULL_BANK_STRIDE 8
1784 static void rk2928_calc_pull_reg_and_bit(struct rockchip_pin_bank
*bank
,
1785 int pin_num
, struct regmap
**regmap
,
1788 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1790 *regmap
= info
->regmap_base
;
1791 *reg
= RK2928_PULL_OFFSET
;
1792 *reg
+= bank
->bank_num
* RK2928_PULL_BANK_STRIDE
;
1793 *reg
+= (pin_num
/ RK2928_PULL_PINS_PER_REG
) * 4;
1795 *bit
= pin_num
% RK2928_PULL_PINS_PER_REG
;
1798 #define RK3128_PULL_OFFSET 0x118
1800 static void rk3128_calc_pull_reg_and_bit(struct rockchip_pin_bank
*bank
,
1801 int pin_num
, struct regmap
**regmap
,
1804 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1806 *regmap
= info
->regmap_base
;
1807 *reg
= RK3128_PULL_OFFSET
;
1808 *reg
+= bank
->bank_num
* RK2928_PULL_BANK_STRIDE
;
1809 *reg
+= ((pin_num
/ RK2928_PULL_PINS_PER_REG
) * 4);
1811 *bit
= pin_num
% RK2928_PULL_PINS_PER_REG
;
1814 #define RK3188_PULL_OFFSET 0x164
1815 #define RK3188_PULL_BITS_PER_PIN 2
1816 #define RK3188_PULL_PINS_PER_REG 8
1817 #define RK3188_PULL_BANK_STRIDE 16
1818 #define RK3188_PULL_PMU_OFFSET 0x64
1820 static void rk3188_calc_pull_reg_and_bit(struct rockchip_pin_bank
*bank
,
1821 int pin_num
, struct regmap
**regmap
,
1824 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1826 /* The first 12 pins of the first bank are located elsewhere */
1827 if (bank
->bank_num
== 0 && pin_num
< 12) {
1828 *regmap
= info
->regmap_pmu
? info
->regmap_pmu
1829 : bank
->regmap_pull
;
1830 *reg
= info
->regmap_pmu
? RK3188_PULL_PMU_OFFSET
: 0;
1831 *reg
+= ((pin_num
/ RK3188_PULL_PINS_PER_REG
) * 4);
1832 *bit
= pin_num
% RK3188_PULL_PINS_PER_REG
;
1833 *bit
*= RK3188_PULL_BITS_PER_PIN
;
1835 *regmap
= info
->regmap_pull
? info
->regmap_pull
1836 : info
->regmap_base
;
1837 *reg
= info
->regmap_pull
? 0 : RK3188_PULL_OFFSET
;
1839 /* correct the offset, as it is the 2nd pull register */
1841 *reg
+= bank
->bank_num
* RK3188_PULL_BANK_STRIDE
;
1842 *reg
+= ((pin_num
/ RK3188_PULL_PINS_PER_REG
) * 4);
1845 * The bits in these registers have an inverse ordering
1846 * with the lowest pin being in bits 15:14 and the highest
1849 *bit
= 7 - (pin_num
% RK3188_PULL_PINS_PER_REG
);
1850 *bit
*= RK3188_PULL_BITS_PER_PIN
;
1854 #define RK3288_PULL_OFFSET 0x140
1855 static void rk3288_calc_pull_reg_and_bit(struct rockchip_pin_bank
*bank
,
1856 int pin_num
, struct regmap
**regmap
,
1859 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1861 /* The first 24 pins of the first bank are located in PMU */
1862 if (bank
->bank_num
== 0) {
1863 *regmap
= info
->regmap_pmu
;
1864 *reg
= RK3188_PULL_PMU_OFFSET
;
1866 *reg
+= ((pin_num
/ RK3188_PULL_PINS_PER_REG
) * 4);
1867 *bit
= pin_num
% RK3188_PULL_PINS_PER_REG
;
1868 *bit
*= RK3188_PULL_BITS_PER_PIN
;
1870 *regmap
= info
->regmap_base
;
1871 *reg
= RK3288_PULL_OFFSET
;
1873 /* correct the offset, as we're starting with the 2nd bank */
1875 *reg
+= bank
->bank_num
* RK3188_PULL_BANK_STRIDE
;
1876 *reg
+= ((pin_num
/ RK3188_PULL_PINS_PER_REG
) * 4);
1878 *bit
= (pin_num
% RK3188_PULL_PINS_PER_REG
);
1879 *bit
*= RK3188_PULL_BITS_PER_PIN
;
1883 #define RK3288_DRV_PMU_OFFSET 0x70
1884 #define RK3288_DRV_GRF_OFFSET 0x1c0
1885 #define RK3288_DRV_BITS_PER_PIN 2
1886 #define RK3288_DRV_PINS_PER_REG 8
1887 #define RK3288_DRV_BANK_STRIDE 16
1889 static void rk3288_calc_drv_reg_and_bit(struct rockchip_pin_bank
*bank
,
1890 int pin_num
, struct regmap
**regmap
,
1893 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1895 /* The first 24 pins of the first bank are located in PMU */
1896 if (bank
->bank_num
== 0) {
1897 *regmap
= info
->regmap_pmu
;
1898 *reg
= RK3288_DRV_PMU_OFFSET
;
1900 *reg
+= ((pin_num
/ RK3288_DRV_PINS_PER_REG
) * 4);
1901 *bit
= pin_num
% RK3288_DRV_PINS_PER_REG
;
1902 *bit
*= RK3288_DRV_BITS_PER_PIN
;
1904 *regmap
= info
->regmap_base
;
1905 *reg
= RK3288_DRV_GRF_OFFSET
;
1907 /* correct the offset, as we're starting with the 2nd bank */
1909 *reg
+= bank
->bank_num
* RK3288_DRV_BANK_STRIDE
;
1910 *reg
+= ((pin_num
/ RK3288_DRV_PINS_PER_REG
) * 4);
1912 *bit
= (pin_num
% RK3288_DRV_PINS_PER_REG
);
1913 *bit
*= RK3288_DRV_BITS_PER_PIN
;
1917 #define RK3228_PULL_OFFSET 0x100
1919 static void rk3228_calc_pull_reg_and_bit(struct rockchip_pin_bank
*bank
,
1920 int pin_num
, struct regmap
**regmap
,
1923 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1925 *regmap
= info
->regmap_base
;
1926 *reg
= RK3228_PULL_OFFSET
;
1927 *reg
+= bank
->bank_num
* RK3188_PULL_BANK_STRIDE
;
1928 *reg
+= ((pin_num
/ RK3188_PULL_PINS_PER_REG
) * 4);
1930 *bit
= (pin_num
% RK3188_PULL_PINS_PER_REG
);
1931 *bit
*= RK3188_PULL_BITS_PER_PIN
;
1934 #define RK3228_DRV_GRF_OFFSET 0x200
1936 static void rk3228_calc_drv_reg_and_bit(struct rockchip_pin_bank
*bank
,
1937 int pin_num
, struct regmap
**regmap
,
1940 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1942 *regmap
= info
->regmap_base
;
1943 *reg
= RK3228_DRV_GRF_OFFSET
;
1944 *reg
+= bank
->bank_num
* RK3288_DRV_BANK_STRIDE
;
1945 *reg
+= ((pin_num
/ RK3288_DRV_PINS_PER_REG
) * 4);
1947 *bit
= (pin_num
% RK3288_DRV_PINS_PER_REG
);
1948 *bit
*= RK3288_DRV_BITS_PER_PIN
;
1951 #define RK3308_PULL_OFFSET 0xa0
1953 static void rk3308_calc_pull_reg_and_bit(struct rockchip_pin_bank
*bank
,
1954 int pin_num
, struct regmap
**regmap
,
1957 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1959 *regmap
= info
->regmap_base
;
1960 *reg
= RK3308_PULL_OFFSET
;
1961 *reg
+= bank
->bank_num
* RK3188_PULL_BANK_STRIDE
;
1962 *reg
+= ((pin_num
/ RK3188_PULL_PINS_PER_REG
) * 4);
1964 *bit
= (pin_num
% RK3188_PULL_PINS_PER_REG
);
1965 *bit
*= RK3188_PULL_BITS_PER_PIN
;
1968 #define RK3308_DRV_GRF_OFFSET 0x100
1970 static void rk3308_calc_drv_reg_and_bit(struct rockchip_pin_bank
*bank
,
1971 int pin_num
, struct regmap
**regmap
,
1974 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1976 *regmap
= info
->regmap_base
;
1977 *reg
= RK3308_DRV_GRF_OFFSET
;
1978 *reg
+= bank
->bank_num
* RK3288_DRV_BANK_STRIDE
;
1979 *reg
+= ((pin_num
/ RK3288_DRV_PINS_PER_REG
) * 4);
1981 *bit
= (pin_num
% RK3288_DRV_PINS_PER_REG
);
1982 *bit
*= RK3288_DRV_BITS_PER_PIN
;
1985 #define RK3368_PULL_GRF_OFFSET 0x100
1986 #define RK3368_PULL_PMU_OFFSET 0x10
1988 static void rk3368_calc_pull_reg_and_bit(struct rockchip_pin_bank
*bank
,
1989 int pin_num
, struct regmap
**regmap
,
1992 struct rockchip_pinctrl
*info
= bank
->drvdata
;
1994 /* The first 32 pins of the first bank are located in PMU */
1995 if (bank
->bank_num
== 0) {
1996 *regmap
= info
->regmap_pmu
;
1997 *reg
= RK3368_PULL_PMU_OFFSET
;
1999 *reg
+= ((pin_num
/ RK3188_PULL_PINS_PER_REG
) * 4);
2000 *bit
= pin_num
% RK3188_PULL_PINS_PER_REG
;
2001 *bit
*= RK3188_PULL_BITS_PER_PIN
;
2003 *regmap
= info
->regmap_base
;
2004 *reg
= RK3368_PULL_GRF_OFFSET
;
2006 /* correct the offset, as we're starting with the 2nd bank */
2008 *reg
+= bank
->bank_num
* RK3188_PULL_BANK_STRIDE
;
2009 *reg
+= ((pin_num
/ RK3188_PULL_PINS_PER_REG
) * 4);
2011 *bit
= (pin_num
% RK3188_PULL_PINS_PER_REG
);
2012 *bit
*= RK3188_PULL_BITS_PER_PIN
;
2016 #define RK3368_DRV_PMU_OFFSET 0x20
2017 #define RK3368_DRV_GRF_OFFSET 0x200
2019 static void rk3368_calc_drv_reg_and_bit(struct rockchip_pin_bank
*bank
,
2020 int pin_num
, struct regmap
**regmap
,
2023 struct rockchip_pinctrl
*info
= bank
->drvdata
;
2025 /* The first 32 pins of the first bank are located in PMU */
2026 if (bank
->bank_num
== 0) {
2027 *regmap
= info
->regmap_pmu
;
2028 *reg
= RK3368_DRV_PMU_OFFSET
;
2030 *reg
+= ((pin_num
/ RK3288_DRV_PINS_PER_REG
) * 4);
2031 *bit
= pin_num
% RK3288_DRV_PINS_PER_REG
;
2032 *bit
*= RK3288_DRV_BITS_PER_PIN
;
2034 *regmap
= info
->regmap_base
;
2035 *reg
= RK3368_DRV_GRF_OFFSET
;
2037 /* correct the offset, as we're starting with the 2nd bank */
2039 *reg
+= bank
->bank_num
* RK3288_DRV_BANK_STRIDE
;
2040 *reg
+= ((pin_num
/ RK3288_DRV_PINS_PER_REG
) * 4);
2042 *bit
= (pin_num
% RK3288_DRV_PINS_PER_REG
);
2043 *bit
*= RK3288_DRV_BITS_PER_PIN
;
2047 #define RK3399_PULL_GRF_OFFSET 0xe040
2048 #define RK3399_PULL_PMU_OFFSET 0x40
2049 #define RK3399_DRV_3BITS_PER_PIN 3
2051 static void rk3399_calc_pull_reg_and_bit(struct rockchip_pin_bank
*bank
,
2052 int pin_num
, struct regmap
**regmap
,
2055 struct rockchip_pinctrl
*info
= bank
->drvdata
;
2057 /* The bank0:16 and bank1:32 pins are located in PMU */
2058 if ((bank
->bank_num
== 0) || (bank
->bank_num
== 1)) {
2059 *regmap
= info
->regmap_pmu
;
2060 *reg
= RK3399_PULL_PMU_OFFSET
;
2062 *reg
+= bank
->bank_num
* RK3188_PULL_BANK_STRIDE
;
2064 *reg
+= ((pin_num
/ RK3188_PULL_PINS_PER_REG
) * 4);
2065 *bit
= pin_num
% RK3188_PULL_PINS_PER_REG
;
2066 *bit
*= RK3188_PULL_BITS_PER_PIN
;
2068 *regmap
= info
->regmap_base
;
2069 *reg
= RK3399_PULL_GRF_OFFSET
;
2071 /* correct the offset, as we're starting with the 3rd bank */
2073 *reg
+= bank
->bank_num
* RK3188_PULL_BANK_STRIDE
;
2074 *reg
+= ((pin_num
/ RK3188_PULL_PINS_PER_REG
) * 4);
2076 *bit
= (pin_num
% RK3188_PULL_PINS_PER_REG
);
2077 *bit
*= RK3188_PULL_BITS_PER_PIN
;
2081 static void rk3399_calc_drv_reg_and_bit(struct rockchip_pin_bank
*bank
,
2082 int pin_num
, struct regmap
**regmap
,
2085 struct rockchip_pinctrl
*info
= bank
->drvdata
;
2086 int drv_num
= (pin_num
/ 8);
2088 /* The bank0:16 and bank1:32 pins are located in PMU */
2089 if ((bank
->bank_num
== 0) || (bank
->bank_num
== 1))
2090 *regmap
= info
->regmap_pmu
;
2092 *regmap
= info
->regmap_base
;
2094 *reg
= bank
->drv
[drv_num
].offset
;
2095 if ((bank
->drv
[drv_num
].drv_type
== DRV_TYPE_IO_1V8_3V0_AUTO
) ||
2096 (bank
->drv
[drv_num
].drv_type
== DRV_TYPE_IO_3V3_ONLY
))
2097 *bit
= (pin_num
% 8) * 3;
2099 *bit
= (pin_num
% 8) * 2;
2102 static int rockchip_perpin_drv_list
[DRV_TYPE_MAX
][8] = {
2103 { 2, 4, 8, 12, -1, -1, -1, -1 },
2104 { 3, 6, 9, 12, -1, -1, -1, -1 },
2105 { 5, 10, 15, 20, -1, -1, -1, -1 },
2106 { 4, 6, 8, 10, 12, 14, 16, 18 },
2107 { 4, 7, 10, 13, 16, 19, 22, 26 }
2110 static int rockchip_get_drive_perpin(struct rockchip_pin_bank
*bank
,
2113 struct rockchip_pinctrl
*info
= bank
->drvdata
;
2114 struct rockchip_pin_ctrl
*ctrl
= info
->ctrl
;
2115 struct regmap
*regmap
;
2117 u32 data
, temp
, rmask_bits
;
2119 int drv_type
= bank
->drv
[pin_num
/ 8].drv_type
;
2121 ctrl
->drv_calc_reg(bank
, pin_num
, ®map
, ®
, &bit
);
2124 case DRV_TYPE_IO_1V8_3V0_AUTO
:
2125 case DRV_TYPE_IO_3V3_ONLY
:
2126 rmask_bits
= RK3399_DRV_3BITS_PER_PIN
;
2129 /* regular case, nothing to do */
2133 * drive-strength offset is special, as it is
2134 * spread over 2 registers
2136 ret
= regmap_read(regmap
, reg
, &data
);
2140 ret
= regmap_read(regmap
, reg
+ 0x4, &temp
);
2145 * the bit data[15] contains bit 0 of the value
2146 * while temp[1:0] contains bits 2 and 1
2153 return rockchip_perpin_drv_list
[drv_type
][data
];
2155 /* setting fully enclosed in the second register */
2160 dev_err(info
->dev
, "unsupported bit: %d for pinctrl drive type: %d\n",
2166 case DRV_TYPE_IO_DEFAULT
:
2167 case DRV_TYPE_IO_1V8_OR_3V0
:
2168 case DRV_TYPE_IO_1V8_ONLY
:
2169 rmask_bits
= RK3288_DRV_BITS_PER_PIN
;
2172 dev_err(info
->dev
, "unsupported pinctrl drive type: %d\n",
2177 ret
= regmap_read(regmap
, reg
, &data
);
2182 data
&= (1 << rmask_bits
) - 1;
2184 return rockchip_perpin_drv_list
[drv_type
][data
];
2187 static int rockchip_set_drive_perpin(struct rockchip_pin_bank
*bank
,
2188 int pin_num
, int strength
)
2190 struct rockchip_pinctrl
*info
= bank
->drvdata
;
2191 struct rockchip_pin_ctrl
*ctrl
= info
->ctrl
;
2192 struct regmap
*regmap
;
2194 u32 data
, rmask
, rmask_bits
, temp
;
2196 int drv_type
= bank
->drv
[pin_num
/ 8].drv_type
;
2198 dev_dbg(info
->dev
, "setting drive of GPIO%d-%d to %d\n",
2199 bank
->bank_num
, pin_num
, strength
);
2201 ctrl
->drv_calc_reg(bank
, pin_num
, ®map
, ®
, &bit
);
2204 for (i
= 0; i
< ARRAY_SIZE(rockchip_perpin_drv_list
[drv_type
]); i
++) {
2205 if (rockchip_perpin_drv_list
[drv_type
][i
] == strength
) {
2208 } else if (rockchip_perpin_drv_list
[drv_type
][i
] < 0) {
2209 ret
= rockchip_perpin_drv_list
[drv_type
][i
];
2215 dev_err(info
->dev
, "unsupported driver strength %d\n",
2221 case DRV_TYPE_IO_1V8_3V0_AUTO
:
2222 case DRV_TYPE_IO_3V3_ONLY
:
2223 rmask_bits
= RK3399_DRV_3BITS_PER_PIN
;
2226 /* regular case, nothing to do */
2230 * drive-strength offset is special, as it is spread
2231 * over 2 registers, the bit data[15] contains bit 0
2232 * of the value while temp[1:0] contains bits 2 and 1
2234 data
= (ret
& 0x1) << 15;
2235 temp
= (ret
>> 0x1) & 0x3;
2237 rmask
= BIT(15) | BIT(31);
2239 ret
= regmap_update_bits(regmap
, reg
, rmask
, data
);
2243 rmask
= 0x3 | (0x3 << 16);
2244 temp
|= (0x3 << 16);
2246 ret
= regmap_update_bits(regmap
, reg
, rmask
, temp
);
2250 /* setting fully enclosed in the second register */
2255 dev_err(info
->dev
, "unsupported bit: %d for pinctrl drive type: %d\n",
2260 case DRV_TYPE_IO_DEFAULT
:
2261 case DRV_TYPE_IO_1V8_OR_3V0
:
2262 case DRV_TYPE_IO_1V8_ONLY
:
2263 rmask_bits
= RK3288_DRV_BITS_PER_PIN
;
2266 dev_err(info
->dev
, "unsupported pinctrl drive type: %d\n",
2271 /* enable the write to the equivalent lower bits */
2272 data
= ((1 << rmask_bits
) - 1) << (bit
+ 16);
2273 rmask
= data
| (data
>> 16);
2274 data
|= (ret
<< bit
);
2276 ret
= regmap_update_bits(regmap
, reg
, rmask
, data
);
2281 static int rockchip_pull_list
[PULL_TYPE_MAX
][4] = {
2283 PIN_CONFIG_BIAS_DISABLE
,
2284 PIN_CONFIG_BIAS_PULL_UP
,
2285 PIN_CONFIG_BIAS_PULL_DOWN
,
2286 PIN_CONFIG_BIAS_BUS_HOLD
2289 PIN_CONFIG_BIAS_DISABLE
,
2290 PIN_CONFIG_BIAS_PULL_DOWN
,
2291 PIN_CONFIG_BIAS_DISABLE
,
2292 PIN_CONFIG_BIAS_PULL_UP
2296 static int rockchip_get_pull(struct rockchip_pin_bank
*bank
, int pin_num
)
2298 struct rockchip_pinctrl
*info
= bank
->drvdata
;
2299 struct rockchip_pin_ctrl
*ctrl
= info
->ctrl
;
2300 struct regmap
*regmap
;
2301 int reg
, ret
, pull_type
;
2305 /* rk3066b does support any pulls */
2306 if (ctrl
->type
== RK3066B
)
2307 return PIN_CONFIG_BIAS_DISABLE
;
2309 ctrl
->pull_calc_reg(bank
, pin_num
, ®map
, ®
, &bit
);
2311 ret
= regmap_read(regmap
, reg
, &data
);
2315 switch (ctrl
->type
) {
2318 return !(data
& BIT(bit
))
2319 ? PIN_CONFIG_BIAS_PULL_PIN_DEFAULT
2320 : PIN_CONFIG_BIAS_DISABLE
;
2328 pull_type
= bank
->pull_type
[pin_num
/ 8];
2330 data
&= (1 << RK3188_PULL_BITS_PER_PIN
) - 1;
2332 return rockchip_pull_list
[pull_type
][data
];
2334 dev_err(info
->dev
, "unsupported pinctrl type\n");
2339 static int rockchip_set_pull(struct rockchip_pin_bank
*bank
,
2340 int pin_num
, int pull
)
2342 struct rockchip_pinctrl
*info
= bank
->drvdata
;
2343 struct rockchip_pin_ctrl
*ctrl
= info
->ctrl
;
2344 struct regmap
*regmap
;
2345 int reg
, ret
, i
, pull_type
;
2349 dev_dbg(info
->dev
, "setting pull of GPIO%d-%d to %d\n",
2350 bank
->bank_num
, pin_num
, pull
);
2352 /* rk3066b does support any pulls */
2353 if (ctrl
->type
== RK3066B
)
2354 return pull
? -EINVAL
: 0;
2356 ctrl
->pull_calc_reg(bank
, pin_num
, ®map
, ®
, &bit
);
2358 switch (ctrl
->type
) {
2361 data
= BIT(bit
+ 16);
2362 if (pull
== PIN_CONFIG_BIAS_DISABLE
)
2364 ret
= regmap_write(regmap
, reg
, data
);
2373 pull_type
= bank
->pull_type
[pin_num
/ 8];
2375 for (i
= 0; i
< ARRAY_SIZE(rockchip_pull_list
[pull_type
]);
2377 if (rockchip_pull_list
[pull_type
][i
] == pull
) {
2384 dev_err(info
->dev
, "unsupported pull setting %d\n",
2389 /* enable the write to the equivalent lower bits */
2390 data
= ((1 << RK3188_PULL_BITS_PER_PIN
) - 1) << (bit
+ 16);
2391 rmask
= data
| (data
>> 16);
2392 data
|= (ret
<< bit
);
2394 ret
= regmap_update_bits(regmap
, reg
, rmask
, data
);
2397 dev_err(info
->dev
, "unsupported pinctrl type\n");
2404 #define RK3328_SCHMITT_BITS_PER_PIN 1
2405 #define RK3328_SCHMITT_PINS_PER_REG 16
2406 #define RK3328_SCHMITT_BANK_STRIDE 8
2407 #define RK3328_SCHMITT_GRF_OFFSET 0x380
2409 static int rk3328_calc_schmitt_reg_and_bit(struct rockchip_pin_bank
*bank
,
2411 struct regmap
**regmap
,
2414 struct rockchip_pinctrl
*info
= bank
->drvdata
;
2416 *regmap
= info
->regmap_base
;
2417 *reg
= RK3328_SCHMITT_GRF_OFFSET
;
2419 *reg
+= bank
->bank_num
* RK3328_SCHMITT_BANK_STRIDE
;
2420 *reg
+= ((pin_num
/ RK3328_SCHMITT_PINS_PER_REG
) * 4);
2421 *bit
= pin_num
% RK3328_SCHMITT_PINS_PER_REG
;
2426 static int rockchip_get_schmitt(struct rockchip_pin_bank
*bank
, int pin_num
)
2428 struct rockchip_pinctrl
*info
= bank
->drvdata
;
2429 struct rockchip_pin_ctrl
*ctrl
= info
->ctrl
;
2430 struct regmap
*regmap
;
2435 ret
= ctrl
->schmitt_calc_reg(bank
, pin_num
, ®map
, ®
, &bit
);
2439 ret
= regmap_read(regmap
, reg
, &data
);
2447 static int rockchip_set_schmitt(struct rockchip_pin_bank
*bank
,
2448 int pin_num
, int enable
)
2450 struct rockchip_pinctrl
*info
= bank
->drvdata
;
2451 struct rockchip_pin_ctrl
*ctrl
= info
->ctrl
;
2452 struct regmap
*regmap
;
2457 dev_dbg(info
->dev
, "setting input schmitt of GPIO%d-%d to %d\n",
2458 bank
->bank_num
, pin_num
, enable
);
2460 ret
= ctrl
->schmitt_calc_reg(bank
, pin_num
, ®map
, ®
, &bit
);
2464 /* enable the write to the equivalent lower bits */
2465 data
= BIT(bit
+ 16) | (enable
<< bit
);
2466 rmask
= BIT(bit
+ 16) | BIT(bit
);
2468 return regmap_update_bits(regmap
, reg
, rmask
, data
);
2472 * Pinmux_ops handling
2475 static int rockchip_pmx_get_funcs_count(struct pinctrl_dev
*pctldev
)
2477 struct rockchip_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
2479 return info
->nfunctions
;
2482 static const char *rockchip_pmx_get_func_name(struct pinctrl_dev
*pctldev
,
2485 struct rockchip_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
2487 return info
->functions
[selector
].name
;
2490 static int rockchip_pmx_get_groups(struct pinctrl_dev
*pctldev
,
2491 unsigned selector
, const char * const **groups
,
2492 unsigned * const num_groups
)
2494 struct rockchip_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
2496 *groups
= info
->functions
[selector
].groups
;
2497 *num_groups
= info
->functions
[selector
].ngroups
;
2502 static int rockchip_pmx_set(struct pinctrl_dev
*pctldev
, unsigned selector
,
2505 struct rockchip_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
2506 const unsigned int *pins
= info
->groups
[group
].pins
;
2507 const struct rockchip_pin_config
*data
= info
->groups
[group
].data
;
2508 struct rockchip_pin_bank
*bank
;
2511 dev_dbg(info
->dev
, "enable function %s group %s\n",
2512 info
->functions
[selector
].name
, info
->groups
[group
].name
);
2515 * for each pin in the pin group selected, program the corresponding
2516 * pin function number in the config register.
2518 for (cnt
= 0; cnt
< info
->groups
[group
].npins
; cnt
++) {
2519 bank
= pin_to_bank(info
, pins
[cnt
]);
2520 ret
= rockchip_set_mux(bank
, pins
[cnt
] - bank
->pin_base
,
2527 /* revert the already done pin settings */
2528 for (cnt
--; cnt
>= 0; cnt
--)
2529 rockchip_set_mux(bank
, pins
[cnt
] - bank
->pin_base
, 0);
2537 static int rockchip_gpio_get_direction(struct gpio_chip
*chip
, unsigned offset
)
2539 struct rockchip_pin_bank
*bank
= gpiochip_get_data(chip
);
2543 ret
= clk_enable(bank
->clk
);
2545 dev_err(bank
->drvdata
->dev
,
2546 "failed to enable clock for bank %s\n", bank
->name
);
2549 data
= readl_relaxed(bank
->reg_base
+ GPIO_SWPORT_DDR
);
2550 clk_disable(bank
->clk
);
2552 return !(data
& BIT(offset
));
2556 * The calls to gpio_direction_output() and gpio_direction_input()
2557 * leads to this function call (via the pinctrl_gpio_direction_{input|output}()
2558 * function called from the gpiolib interface).
2560 static int _rockchip_pmx_gpio_set_direction(struct gpio_chip
*chip
,
2561 int pin
, bool input
)
2563 struct rockchip_pin_bank
*bank
;
2565 unsigned long flags
;
2568 bank
= gpiochip_get_data(chip
);
2570 ret
= rockchip_set_mux(bank
, pin
, RK_FUNC_GPIO
);
2574 clk_enable(bank
->clk
);
2575 raw_spin_lock_irqsave(&bank
->slock
, flags
);
2577 data
= readl_relaxed(bank
->reg_base
+ GPIO_SWPORT_DDR
);
2578 /* set bit to 1 for output, 0 for input */
2583 writel_relaxed(data
, bank
->reg_base
+ GPIO_SWPORT_DDR
);
2585 raw_spin_unlock_irqrestore(&bank
->slock
, flags
);
2586 clk_disable(bank
->clk
);
2591 static int rockchip_pmx_gpio_set_direction(struct pinctrl_dev
*pctldev
,
2592 struct pinctrl_gpio_range
*range
,
2593 unsigned offset
, bool input
)
2595 struct rockchip_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
2596 struct gpio_chip
*chip
;
2600 pin
= offset
- chip
->base
;
2601 dev_dbg(info
->dev
, "gpio_direction for pin %u as %s-%d to %s\n",
2602 offset
, range
->name
, pin
, input
? "input" : "output");
2604 return _rockchip_pmx_gpio_set_direction(chip
, offset
- chip
->base
,
2608 static const struct pinmux_ops rockchip_pmx_ops
= {
2609 .get_functions_count
= rockchip_pmx_get_funcs_count
,
2610 .get_function_name
= rockchip_pmx_get_func_name
,
2611 .get_function_groups
= rockchip_pmx_get_groups
,
2612 .set_mux
= rockchip_pmx_set
,
2613 .gpio_set_direction
= rockchip_pmx_gpio_set_direction
,
2617 * Pinconf_ops handling
2620 static bool rockchip_pinconf_pull_valid(struct rockchip_pin_ctrl
*ctrl
,
2621 enum pin_config_param pull
)
2623 switch (ctrl
->type
) {
2626 return (pull
== PIN_CONFIG_BIAS_PULL_PIN_DEFAULT
||
2627 pull
== PIN_CONFIG_BIAS_DISABLE
);
2629 return pull
? false : true;
2637 return (pull
!= PIN_CONFIG_BIAS_PULL_PIN_DEFAULT
);
2643 static void rockchip_gpio_set(struct gpio_chip
*gc
, unsigned offset
, int value
);
2644 static int rockchip_gpio_get(struct gpio_chip
*gc
, unsigned offset
);
2646 /* set the pin config settings for a specified pin */
2647 static int rockchip_pinconf_set(struct pinctrl_dev
*pctldev
, unsigned int pin
,
2648 unsigned long *configs
, unsigned num_configs
)
2650 struct rockchip_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
2651 struct rockchip_pin_bank
*bank
= pin_to_bank(info
, pin
);
2652 enum pin_config_param param
;
2657 for (i
= 0; i
< num_configs
; i
++) {
2658 param
= pinconf_to_config_param(configs
[i
]);
2659 arg
= pinconf_to_config_argument(configs
[i
]);
2662 case PIN_CONFIG_BIAS_DISABLE
:
2663 rc
= rockchip_set_pull(bank
, pin
- bank
->pin_base
,
2668 case PIN_CONFIG_BIAS_PULL_UP
:
2669 case PIN_CONFIG_BIAS_PULL_DOWN
:
2670 case PIN_CONFIG_BIAS_PULL_PIN_DEFAULT
:
2671 case PIN_CONFIG_BIAS_BUS_HOLD
:
2672 if (!rockchip_pinconf_pull_valid(info
->ctrl
, param
))
2678 rc
= rockchip_set_pull(bank
, pin
- bank
->pin_base
,
2683 case PIN_CONFIG_OUTPUT
:
2684 rockchip_gpio_set(&bank
->gpio_chip
,
2685 pin
- bank
->pin_base
, arg
);
2686 rc
= _rockchip_pmx_gpio_set_direction(&bank
->gpio_chip
,
2687 pin
- bank
->pin_base
, false);
2691 case PIN_CONFIG_DRIVE_STRENGTH
:
2692 /* rk3288 is the first with per-pin drive-strength */
2693 if (!info
->ctrl
->drv_calc_reg
)
2696 rc
= rockchip_set_drive_perpin(bank
,
2697 pin
- bank
->pin_base
, arg
);
2701 case PIN_CONFIG_INPUT_SCHMITT_ENABLE
:
2702 if (!info
->ctrl
->schmitt_calc_reg
)
2705 rc
= rockchip_set_schmitt(bank
,
2706 pin
- bank
->pin_base
, arg
);
2714 } /* for each config */
2719 /* get the pin config settings for a specified pin */
2720 static int rockchip_pinconf_get(struct pinctrl_dev
*pctldev
, unsigned int pin
,
2721 unsigned long *config
)
2723 struct rockchip_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
2724 struct rockchip_pin_bank
*bank
= pin_to_bank(info
, pin
);
2725 enum pin_config_param param
= pinconf_to_config_param(*config
);
2730 case PIN_CONFIG_BIAS_DISABLE
:
2731 if (rockchip_get_pull(bank
, pin
- bank
->pin_base
) != param
)
2736 case PIN_CONFIG_BIAS_PULL_UP
:
2737 case PIN_CONFIG_BIAS_PULL_DOWN
:
2738 case PIN_CONFIG_BIAS_PULL_PIN_DEFAULT
:
2739 case PIN_CONFIG_BIAS_BUS_HOLD
:
2740 if (!rockchip_pinconf_pull_valid(info
->ctrl
, param
))
2743 if (rockchip_get_pull(bank
, pin
- bank
->pin_base
) != param
)
2748 case PIN_CONFIG_OUTPUT
:
2749 rc
= rockchip_get_mux(bank
, pin
- bank
->pin_base
);
2750 if (rc
!= RK_FUNC_GPIO
)
2753 rc
= rockchip_gpio_get(&bank
->gpio_chip
, pin
- bank
->pin_base
);
2759 case PIN_CONFIG_DRIVE_STRENGTH
:
2760 /* rk3288 is the first with per-pin drive-strength */
2761 if (!info
->ctrl
->drv_calc_reg
)
2764 rc
= rockchip_get_drive_perpin(bank
, pin
- bank
->pin_base
);
2770 case PIN_CONFIG_INPUT_SCHMITT_ENABLE
:
2771 if (!info
->ctrl
->schmitt_calc_reg
)
2774 rc
= rockchip_get_schmitt(bank
, pin
- bank
->pin_base
);
2785 *config
= pinconf_to_config_packed(param
, arg
);
2790 static const struct pinconf_ops rockchip_pinconf_ops
= {
2791 .pin_config_get
= rockchip_pinconf_get
,
2792 .pin_config_set
= rockchip_pinconf_set
,
2796 static const struct of_device_id rockchip_bank_match
[] = {
2797 { .compatible
= "rockchip,gpio-bank" },
2798 { .compatible
= "rockchip,rk3188-gpio-bank0" },
2802 static void rockchip_pinctrl_child_count(struct rockchip_pinctrl
*info
,
2803 struct device_node
*np
)
2805 struct device_node
*child
;
2807 for_each_child_of_node(np
, child
) {
2808 if (of_match_node(rockchip_bank_match
, child
))
2812 info
->ngroups
+= of_get_child_count(child
);
2816 static int rockchip_pinctrl_parse_groups(struct device_node
*np
,
2817 struct rockchip_pin_group
*grp
,
2818 struct rockchip_pinctrl
*info
,
2821 struct rockchip_pin_bank
*bank
;
2828 dev_dbg(info
->dev
, "group(%d): %pOFn\n", index
, np
);
2830 /* Initialise group */
2831 grp
->name
= np
->name
;
2834 * the binding format is rockchip,pins = <bank pin mux CONFIG>,
2835 * do sanity check and calculate pins number
2837 list
= of_get_property(np
, "rockchip,pins", &size
);
2838 /* we do not check return since it's safe node passed down */
2839 size
/= sizeof(*list
);
2840 if (!size
|| size
% 4) {
2841 dev_err(info
->dev
, "wrong pins number or pins and configs should be by 4\n");
2845 grp
->npins
= size
/ 4;
2847 grp
->pins
= devm_kcalloc(info
->dev
, grp
->npins
, sizeof(unsigned int),
2849 grp
->data
= devm_kcalloc(info
->dev
,
2851 sizeof(struct rockchip_pin_config
),
2853 if (!grp
->pins
|| !grp
->data
)
2856 for (i
= 0, j
= 0; i
< size
; i
+= 4, j
++) {
2857 const __be32
*phandle
;
2858 struct device_node
*np_config
;
2860 num
= be32_to_cpu(*list
++);
2861 bank
= bank_num_to_bank(info
, num
);
2863 return PTR_ERR(bank
);
2865 grp
->pins
[j
] = bank
->pin_base
+ be32_to_cpu(*list
++);
2866 grp
->data
[j
].func
= be32_to_cpu(*list
++);
2872 np_config
= of_find_node_by_phandle(be32_to_cpup(phandle
));
2873 ret
= pinconf_generic_parse_dt_config(np_config
, NULL
,
2874 &grp
->data
[j
].configs
, &grp
->data
[j
].nconfigs
);
2882 static int rockchip_pinctrl_parse_functions(struct device_node
*np
,
2883 struct rockchip_pinctrl
*info
,
2886 struct device_node
*child
;
2887 struct rockchip_pmx_func
*func
;
2888 struct rockchip_pin_group
*grp
;
2890 static u32 grp_index
;
2893 dev_dbg(info
->dev
, "parse function(%d): %pOFn\n", index
, np
);
2895 func
= &info
->functions
[index
];
2897 /* Initialise function */
2898 func
->name
= np
->name
;
2899 func
->ngroups
= of_get_child_count(np
);
2900 if (func
->ngroups
<= 0)
2903 func
->groups
= devm_kcalloc(info
->dev
,
2904 func
->ngroups
, sizeof(char *), GFP_KERNEL
);
2908 for_each_child_of_node(np
, child
) {
2909 func
->groups
[i
] = child
->name
;
2910 grp
= &info
->groups
[grp_index
++];
2911 ret
= rockchip_pinctrl_parse_groups(child
, grp
, info
, i
++);
2921 static int rockchip_pinctrl_parse_dt(struct platform_device
*pdev
,
2922 struct rockchip_pinctrl
*info
)
2924 struct device
*dev
= &pdev
->dev
;
2925 struct device_node
*np
= dev
->of_node
;
2926 struct device_node
*child
;
2930 rockchip_pinctrl_child_count(info
, np
);
2932 dev_dbg(&pdev
->dev
, "nfunctions = %d\n", info
->nfunctions
);
2933 dev_dbg(&pdev
->dev
, "ngroups = %d\n", info
->ngroups
);
2935 info
->functions
= devm_kcalloc(dev
,
2937 sizeof(struct rockchip_pmx_func
),
2939 if (!info
->functions
)
2942 info
->groups
= devm_kcalloc(dev
,
2944 sizeof(struct rockchip_pin_group
),
2951 for_each_child_of_node(np
, child
) {
2952 if (of_match_node(rockchip_bank_match
, child
))
2955 ret
= rockchip_pinctrl_parse_functions(child
, info
, i
++);
2957 dev_err(&pdev
->dev
, "failed to parse function\n");
2966 static int rockchip_pinctrl_register(struct platform_device
*pdev
,
2967 struct rockchip_pinctrl
*info
)
2969 struct pinctrl_desc
*ctrldesc
= &info
->pctl
;
2970 struct pinctrl_pin_desc
*pindesc
, *pdesc
;
2971 struct rockchip_pin_bank
*pin_bank
;
2975 ctrldesc
->name
= "rockchip-pinctrl";
2976 ctrldesc
->owner
= THIS_MODULE
;
2977 ctrldesc
->pctlops
= &rockchip_pctrl_ops
;
2978 ctrldesc
->pmxops
= &rockchip_pmx_ops
;
2979 ctrldesc
->confops
= &rockchip_pinconf_ops
;
2981 pindesc
= devm_kcalloc(&pdev
->dev
,
2982 info
->ctrl
->nr_pins
, sizeof(*pindesc
),
2987 ctrldesc
->pins
= pindesc
;
2988 ctrldesc
->npins
= info
->ctrl
->nr_pins
;
2991 for (bank
= 0 , k
= 0; bank
< info
->ctrl
->nr_banks
; bank
++) {
2992 pin_bank
= &info
->ctrl
->pin_banks
[bank
];
2993 for (pin
= 0; pin
< pin_bank
->nr_pins
; pin
++, k
++) {
2995 pdesc
->name
= kasprintf(GFP_KERNEL
, "%s-%d",
2996 pin_bank
->name
, pin
);
3001 ret
= rockchip_pinctrl_parse_dt(pdev
, info
);
3005 info
->pctl_dev
= devm_pinctrl_register(&pdev
->dev
, ctrldesc
, info
);
3006 if (IS_ERR(info
->pctl_dev
)) {
3007 dev_err(&pdev
->dev
, "could not register pinctrl driver\n");
3008 return PTR_ERR(info
->pctl_dev
);
3011 for (bank
= 0; bank
< info
->ctrl
->nr_banks
; ++bank
) {
3012 pin_bank
= &info
->ctrl
->pin_banks
[bank
];
3013 pin_bank
->grange
.name
= pin_bank
->name
;
3014 pin_bank
->grange
.id
= bank
;
3015 pin_bank
->grange
.pin_base
= pin_bank
->pin_base
;
3016 pin_bank
->grange
.base
= pin_bank
->gpio_chip
.base
;
3017 pin_bank
->grange
.npins
= pin_bank
->gpio_chip
.ngpio
;
3018 pin_bank
->grange
.gc
= &pin_bank
->gpio_chip
;
3019 pinctrl_add_gpio_range(info
->pctl_dev
, &pin_bank
->grange
);
3029 static void rockchip_gpio_set(struct gpio_chip
*gc
, unsigned offset
, int value
)
3031 struct rockchip_pin_bank
*bank
= gpiochip_get_data(gc
);
3032 void __iomem
*reg
= bank
->reg_base
+ GPIO_SWPORT_DR
;
3033 unsigned long flags
;
3036 clk_enable(bank
->clk
);
3037 raw_spin_lock_irqsave(&bank
->slock
, flags
);
3040 data
&= ~BIT(offset
);
3042 data
|= BIT(offset
);
3045 raw_spin_unlock_irqrestore(&bank
->slock
, flags
);
3046 clk_disable(bank
->clk
);
3050 * Returns the level of the pin for input direction and setting of the DR
3051 * register for output gpios.
3053 static int rockchip_gpio_get(struct gpio_chip
*gc
, unsigned offset
)
3055 struct rockchip_pin_bank
*bank
= gpiochip_get_data(gc
);
3058 clk_enable(bank
->clk
);
3059 data
= readl(bank
->reg_base
+ GPIO_EXT_PORT
);
3060 clk_disable(bank
->clk
);
3067 * gpiolib gpio_direction_input callback function. The setting of the pin
3068 * mux function as 'gpio input' will be handled by the pinctrl subsystem
3071 static int rockchip_gpio_direction_input(struct gpio_chip
*gc
, unsigned offset
)
3073 return pinctrl_gpio_direction_input(gc
->base
+ offset
);
3077 * gpiolib gpio_direction_output callback function. The setting of the pin
3078 * mux function as 'gpio output' will be handled by the pinctrl subsystem
3081 static int rockchip_gpio_direction_output(struct gpio_chip
*gc
,
3082 unsigned offset
, int value
)
3084 rockchip_gpio_set(gc
, offset
, value
);
3085 return pinctrl_gpio_direction_output(gc
->base
+ offset
);
3088 static void rockchip_gpio_set_debounce(struct gpio_chip
*gc
,
3089 unsigned int offset
, bool enable
)
3091 struct rockchip_pin_bank
*bank
= gpiochip_get_data(gc
);
3092 void __iomem
*reg
= bank
->reg_base
+ GPIO_DEBOUNCE
;
3093 unsigned long flags
;
3096 clk_enable(bank
->clk
);
3097 raw_spin_lock_irqsave(&bank
->slock
, flags
);
3101 data
|= BIT(offset
);
3103 data
&= ~BIT(offset
);
3106 raw_spin_unlock_irqrestore(&bank
->slock
, flags
);
3107 clk_disable(bank
->clk
);
3111 * gpiolib set_config callback function. The setting of the pin
3112 * mux function as 'gpio output' will be handled by the pinctrl subsystem
3115 static int rockchip_gpio_set_config(struct gpio_chip
*gc
, unsigned int offset
,
3116 unsigned long config
)
3118 enum pin_config_param param
= pinconf_to_config_param(config
);
3121 case PIN_CONFIG_INPUT_DEBOUNCE
:
3122 rockchip_gpio_set_debounce(gc
, offset
, true);
3124 * Rockchip's gpio could only support up to one period
3125 * of the debounce clock(pclk), which is far away from
3126 * satisftying the requirement, as pclk is usually near
3127 * 100MHz shared by all peripherals. So the fact is it
3128 * has crippled debounce capability could only be useful
3129 * to prevent any spurious glitches from waking up the system
3130 * if the gpio is conguired as wakeup interrupt source. Let's
3131 * still return -ENOTSUPP as before, to make sure the caller
3132 * of gpiod_set_debounce won't change its behaviour.
3141 * gpiolib gpio_to_irq callback function. Creates a mapping between a GPIO pin
3142 * and a virtual IRQ, if not already present.
3144 static int rockchip_gpio_to_irq(struct gpio_chip
*gc
, unsigned offset
)
3146 struct rockchip_pin_bank
*bank
= gpiochip_get_data(gc
);
3152 virq
= irq_create_mapping(bank
->domain
, offset
);
3154 return (virq
) ? : -ENXIO
;
3157 static const struct gpio_chip rockchip_gpiolib_chip
= {
3158 .request
= gpiochip_generic_request
,
3159 .free
= gpiochip_generic_free
,
3160 .set
= rockchip_gpio_set
,
3161 .get
= rockchip_gpio_get
,
3162 .get_direction
= rockchip_gpio_get_direction
,
3163 .direction_input
= rockchip_gpio_direction_input
,
3164 .direction_output
= rockchip_gpio_direction_output
,
3165 .set_config
= rockchip_gpio_set_config
,
3166 .to_irq
= rockchip_gpio_to_irq
,
3167 .owner
= THIS_MODULE
,
3171 * Interrupt handling
3174 static void rockchip_irq_demux(struct irq_desc
*desc
)
3176 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
3177 struct rockchip_pin_bank
*bank
= irq_desc_get_handler_data(desc
);
3180 dev_dbg(bank
->drvdata
->dev
, "got irq for bank %s\n", bank
->name
);
3182 chained_irq_enter(chip
, desc
);
3184 pend
= readl_relaxed(bank
->reg_base
+ GPIO_INT_STATUS
);
3187 unsigned int irq
, virq
;
3191 virq
= irq_linear_revmap(bank
->domain
, irq
);
3194 dev_err(bank
->drvdata
->dev
, "unmapped irq %d\n", irq
);
3198 dev_dbg(bank
->drvdata
->dev
, "handling irq %d\n", irq
);
3201 * Triggering IRQ on both rising and falling edge
3202 * needs manual intervention.
3204 if (bank
->toggle_edge_mode
& BIT(irq
)) {
3205 u32 data
, data_old
, polarity
;
3206 unsigned long flags
;
3208 data
= readl_relaxed(bank
->reg_base
+ GPIO_EXT_PORT
);
3210 raw_spin_lock_irqsave(&bank
->slock
, flags
);
3212 polarity
= readl_relaxed(bank
->reg_base
+
3214 if (data
& BIT(irq
))
3215 polarity
&= ~BIT(irq
);
3217 polarity
|= BIT(irq
);
3219 bank
->reg_base
+ GPIO_INT_POLARITY
);
3221 raw_spin_unlock_irqrestore(&bank
->slock
, flags
);
3224 data
= readl_relaxed(bank
->reg_base
+
3226 } while ((data
& BIT(irq
)) != (data_old
& BIT(irq
)));
3229 generic_handle_irq(virq
);
3232 chained_irq_exit(chip
, desc
);
3235 static int rockchip_irq_set_type(struct irq_data
*d
, unsigned int type
)
3237 struct irq_chip_generic
*gc
= irq_data_get_irq_chip_data(d
);
3238 struct rockchip_pin_bank
*bank
= gc
->private;
3239 u32 mask
= BIT(d
->hwirq
);
3243 unsigned long flags
;
3246 /* make sure the pin is configured as gpio input */
3247 ret
= rockchip_set_mux(bank
, d
->hwirq
, RK_FUNC_GPIO
);
3251 clk_enable(bank
->clk
);
3252 raw_spin_lock_irqsave(&bank
->slock
, flags
);
3254 data
= readl_relaxed(bank
->reg_base
+ GPIO_SWPORT_DDR
);
3256 writel_relaxed(data
, bank
->reg_base
+ GPIO_SWPORT_DDR
);
3258 raw_spin_unlock_irqrestore(&bank
->slock
, flags
);
3260 if (type
& IRQ_TYPE_EDGE_BOTH
)
3261 irq_set_handler_locked(d
, handle_edge_irq
);
3263 irq_set_handler_locked(d
, handle_level_irq
);
3265 raw_spin_lock_irqsave(&bank
->slock
, flags
);
3268 level
= readl_relaxed(gc
->reg_base
+ GPIO_INTTYPE_LEVEL
);
3269 polarity
= readl_relaxed(gc
->reg_base
+ GPIO_INT_POLARITY
);
3272 case IRQ_TYPE_EDGE_BOTH
:
3273 bank
->toggle_edge_mode
|= mask
;
3277 * Determine gpio state. If 1 next interrupt should be falling
3280 data
= readl(bank
->reg_base
+ GPIO_EXT_PORT
);
3286 case IRQ_TYPE_EDGE_RISING
:
3287 bank
->toggle_edge_mode
&= ~mask
;
3291 case IRQ_TYPE_EDGE_FALLING
:
3292 bank
->toggle_edge_mode
&= ~mask
;
3296 case IRQ_TYPE_LEVEL_HIGH
:
3297 bank
->toggle_edge_mode
&= ~mask
;
3301 case IRQ_TYPE_LEVEL_LOW
:
3302 bank
->toggle_edge_mode
&= ~mask
;
3308 raw_spin_unlock_irqrestore(&bank
->slock
, flags
);
3309 clk_disable(bank
->clk
);
3313 writel_relaxed(level
, gc
->reg_base
+ GPIO_INTTYPE_LEVEL
);
3314 writel_relaxed(polarity
, gc
->reg_base
+ GPIO_INT_POLARITY
);
3317 raw_spin_unlock_irqrestore(&bank
->slock
, flags
);
3318 clk_disable(bank
->clk
);
3323 static void rockchip_irq_suspend(struct irq_data
*d
)
3325 struct irq_chip_generic
*gc
= irq_data_get_irq_chip_data(d
);
3326 struct rockchip_pin_bank
*bank
= gc
->private;
3328 clk_enable(bank
->clk
);
3329 bank
->saved_masks
= irq_reg_readl(gc
, GPIO_INTMASK
);
3330 irq_reg_writel(gc
, ~gc
->wake_active
, GPIO_INTMASK
);
3331 clk_disable(bank
->clk
);
3334 static void rockchip_irq_resume(struct irq_data
*d
)
3336 struct irq_chip_generic
*gc
= irq_data_get_irq_chip_data(d
);
3337 struct rockchip_pin_bank
*bank
= gc
->private;
3339 clk_enable(bank
->clk
);
3340 irq_reg_writel(gc
, bank
->saved_masks
, GPIO_INTMASK
);
3341 clk_disable(bank
->clk
);
3344 static void rockchip_irq_enable(struct irq_data
*d
)
3346 struct irq_chip_generic
*gc
= irq_data_get_irq_chip_data(d
);
3347 struct rockchip_pin_bank
*bank
= gc
->private;
3349 clk_enable(bank
->clk
);
3350 irq_gc_mask_clr_bit(d
);
3353 static void rockchip_irq_disable(struct irq_data
*d
)
3355 struct irq_chip_generic
*gc
= irq_data_get_irq_chip_data(d
);
3356 struct rockchip_pin_bank
*bank
= gc
->private;
3358 irq_gc_mask_set_bit(d
);
3359 clk_disable(bank
->clk
);
3362 static int rockchip_interrupts_register(struct platform_device
*pdev
,
3363 struct rockchip_pinctrl
*info
)
3365 struct rockchip_pin_ctrl
*ctrl
= info
->ctrl
;
3366 struct rockchip_pin_bank
*bank
= ctrl
->pin_banks
;
3367 unsigned int clr
= IRQ_NOREQUEST
| IRQ_NOPROBE
| IRQ_NOAUTOEN
;
3368 struct irq_chip_generic
*gc
;
3372 for (i
= 0; i
< ctrl
->nr_banks
; ++i
, ++bank
) {
3374 dev_warn(&pdev
->dev
, "bank %s is not valid\n",
3379 ret
= clk_enable(bank
->clk
);
3381 dev_err(&pdev
->dev
, "failed to enable clock for bank %s\n",
3386 bank
->domain
= irq_domain_add_linear(bank
->of_node
, 32,
3387 &irq_generic_chip_ops
, NULL
);
3388 if (!bank
->domain
) {
3389 dev_warn(&pdev
->dev
, "could not initialize irq domain for bank %s\n",
3391 clk_disable(bank
->clk
);
3395 ret
= irq_alloc_domain_generic_chips(bank
->domain
, 32, 1,
3396 "rockchip_gpio_irq", handle_level_irq
,
3397 clr
, 0, IRQ_GC_INIT_MASK_CACHE
);
3399 dev_err(&pdev
->dev
, "could not alloc generic chips for bank %s\n",
3401 irq_domain_remove(bank
->domain
);
3402 clk_disable(bank
->clk
);
3407 * Linux assumes that all interrupts start out disabled/masked.
3408 * Our driver only uses the concept of masked and always keeps
3409 * things enabled, so for us that's all masked and all enabled.
3411 writel_relaxed(0xffffffff, bank
->reg_base
+ GPIO_INTMASK
);
3412 writel_relaxed(0xffffffff, bank
->reg_base
+ GPIO_INTEN
);
3414 gc
= irq_get_domain_generic_chip(bank
->domain
, 0);
3415 gc
->reg_base
= bank
->reg_base
;
3417 gc
->chip_types
[0].regs
.mask
= GPIO_INTMASK
;
3418 gc
->chip_types
[0].regs
.ack
= GPIO_PORTS_EOI
;
3419 gc
->chip_types
[0].chip
.irq_ack
= irq_gc_ack_set_bit
;
3420 gc
->chip_types
[0].chip
.irq_mask
= irq_gc_mask_set_bit
;
3421 gc
->chip_types
[0].chip
.irq_unmask
= irq_gc_mask_clr_bit
;
3422 gc
->chip_types
[0].chip
.irq_enable
= rockchip_irq_enable
;
3423 gc
->chip_types
[0].chip
.irq_disable
= rockchip_irq_disable
;
3424 gc
->chip_types
[0].chip
.irq_set_wake
= irq_gc_set_wake
;
3425 gc
->chip_types
[0].chip
.irq_suspend
= rockchip_irq_suspend
;
3426 gc
->chip_types
[0].chip
.irq_resume
= rockchip_irq_resume
;
3427 gc
->chip_types
[0].chip
.irq_set_type
= rockchip_irq_set_type
;
3428 gc
->wake_enabled
= IRQ_MSK(bank
->nr_pins
);
3430 irq_set_chained_handler_and_data(bank
->irq
,
3431 rockchip_irq_demux
, bank
);
3433 /* map the gpio irqs here, when the clock is still running */
3434 for (j
= 0 ; j
< 32 ; j
++)
3435 irq_create_mapping(bank
->domain
, j
);
3437 clk_disable(bank
->clk
);
3443 static int rockchip_gpiolib_register(struct platform_device
*pdev
,
3444 struct rockchip_pinctrl
*info
)
3446 struct rockchip_pin_ctrl
*ctrl
= info
->ctrl
;
3447 struct rockchip_pin_bank
*bank
= ctrl
->pin_banks
;
3448 struct gpio_chip
*gc
;
3452 for (i
= 0; i
< ctrl
->nr_banks
; ++i
, ++bank
) {
3454 dev_warn(&pdev
->dev
, "bank %s is not valid\n",
3459 bank
->gpio_chip
= rockchip_gpiolib_chip
;
3461 gc
= &bank
->gpio_chip
;
3462 gc
->base
= bank
->pin_base
;
3463 gc
->ngpio
= bank
->nr_pins
;
3464 gc
->parent
= &pdev
->dev
;
3465 gc
->of_node
= bank
->of_node
;
3466 gc
->label
= bank
->name
;
3468 ret
= gpiochip_add_data(gc
, bank
);
3470 dev_err(&pdev
->dev
, "failed to register gpio_chip %s, error code: %d\n",
3476 rockchip_interrupts_register(pdev
, info
);
3481 for (--i
, --bank
; i
>= 0; --i
, --bank
) {
3484 gpiochip_remove(&bank
->gpio_chip
);
3489 static int rockchip_gpiolib_unregister(struct platform_device
*pdev
,
3490 struct rockchip_pinctrl
*info
)
3492 struct rockchip_pin_ctrl
*ctrl
= info
->ctrl
;
3493 struct rockchip_pin_bank
*bank
= ctrl
->pin_banks
;
3496 for (i
= 0; i
< ctrl
->nr_banks
; ++i
, ++bank
) {
3499 gpiochip_remove(&bank
->gpio_chip
);
3505 static int rockchip_get_bank_data(struct rockchip_pin_bank
*bank
,
3506 struct rockchip_pinctrl
*info
)
3508 struct resource res
;
3511 if (of_address_to_resource(bank
->of_node
, 0, &res
)) {
3512 dev_err(info
->dev
, "cannot find IO resource for bank\n");
3516 bank
->reg_base
= devm_ioremap_resource(info
->dev
, &res
);
3517 if (IS_ERR(bank
->reg_base
))
3518 return PTR_ERR(bank
->reg_base
);
3521 * special case, where parts of the pull setting-registers are
3522 * part of the PMU register space
3524 if (of_device_is_compatible(bank
->of_node
,
3525 "rockchip,rk3188-gpio-bank0")) {
3526 struct device_node
*node
;
3528 node
= of_parse_phandle(bank
->of_node
->parent
,
3531 if (of_address_to_resource(bank
->of_node
, 1, &res
)) {
3532 dev_err(info
->dev
, "cannot find IO resource for bank\n");
3536 base
= devm_ioremap_resource(info
->dev
, &res
);
3538 return PTR_ERR(base
);
3539 rockchip_regmap_config
.max_register
=
3540 resource_size(&res
) - 4;
3541 rockchip_regmap_config
.name
=
3542 "rockchip,rk3188-gpio-bank0-pull";
3543 bank
->regmap_pull
= devm_regmap_init_mmio(info
->dev
,
3545 &rockchip_regmap_config
);
3550 bank
->irq
= irq_of_parse_and_map(bank
->of_node
, 0);
3552 bank
->clk
= of_clk_get(bank
->of_node
, 0);
3553 if (IS_ERR(bank
->clk
))
3554 return PTR_ERR(bank
->clk
);
3556 return clk_prepare(bank
->clk
);
3559 static const struct of_device_id rockchip_pinctrl_dt_match
[];
3561 /* retrieve the soc specific data */
3562 static struct rockchip_pin_ctrl
*rockchip_pinctrl_get_soc_data(
3563 struct rockchip_pinctrl
*d
,
3564 struct platform_device
*pdev
)
3566 const struct of_device_id
*match
;
3567 struct device_node
*node
= pdev
->dev
.of_node
;
3568 struct device_node
*np
;
3569 struct rockchip_pin_ctrl
*ctrl
;
3570 struct rockchip_pin_bank
*bank
;
3571 int grf_offs
, pmu_offs
, drv_grf_offs
, drv_pmu_offs
, i
, j
;
3573 match
= of_match_node(rockchip_pinctrl_dt_match
, node
);
3574 ctrl
= (struct rockchip_pin_ctrl
*)match
->data
;
3576 for_each_child_of_node(node
, np
) {
3577 if (!of_find_property(np
, "gpio-controller", NULL
))
3580 bank
= ctrl
->pin_banks
;
3581 for (i
= 0; i
< ctrl
->nr_banks
; ++i
, ++bank
) {
3582 if (!strcmp(bank
->name
, np
->name
)) {
3585 if (!rockchip_get_bank_data(bank
, d
))
3593 grf_offs
= ctrl
->grf_mux_offset
;
3594 pmu_offs
= ctrl
->pmu_mux_offset
;
3595 drv_pmu_offs
= ctrl
->pmu_drv_offset
;
3596 drv_grf_offs
= ctrl
->grf_drv_offset
;
3597 bank
= ctrl
->pin_banks
;
3598 for (i
= 0; i
< ctrl
->nr_banks
; ++i
, ++bank
) {
3601 raw_spin_lock_init(&bank
->slock
);
3603 bank
->pin_base
= ctrl
->nr_pins
;
3604 ctrl
->nr_pins
+= bank
->nr_pins
;
3606 /* calculate iomux and drv offsets */
3607 for (j
= 0; j
< 4; j
++) {
3608 struct rockchip_iomux
*iom
= &bank
->iomux
[j
];
3609 struct rockchip_drv
*drv
= &bank
->drv
[j
];
3612 if (bank_pins
>= bank
->nr_pins
)
3615 /* preset iomux offset value, set new start value */
3616 if (iom
->offset
>= 0) {
3617 if (iom
->type
& IOMUX_SOURCE_PMU
)
3618 pmu_offs
= iom
->offset
;
3620 grf_offs
= iom
->offset
;
3621 } else { /* set current iomux offset */
3622 iom
->offset
= (iom
->type
& IOMUX_SOURCE_PMU
) ?
3623 pmu_offs
: grf_offs
;
3626 /* preset drv offset value, set new start value */
3627 if (drv
->offset
>= 0) {
3628 if (iom
->type
& IOMUX_SOURCE_PMU
)
3629 drv_pmu_offs
= drv
->offset
;
3631 drv_grf_offs
= drv
->offset
;
3632 } else { /* set current drv offset */
3633 drv
->offset
= (iom
->type
& IOMUX_SOURCE_PMU
) ?
3634 drv_pmu_offs
: drv_grf_offs
;
3637 dev_dbg(d
->dev
, "bank %d, iomux %d has iom_offset 0x%x drv_offset 0x%x\n",
3638 i
, j
, iom
->offset
, drv
->offset
);
3641 * Increase offset according to iomux width.
3642 * 4bit iomux'es are spread over two registers.
3644 inc
= (iom
->type
& (IOMUX_WIDTH_4BIT
|
3646 IOMUX_WIDTH_2BIT
)) ? 8 : 4;
3647 if (iom
->type
& IOMUX_SOURCE_PMU
)
3653 * Increase offset according to drv width.
3654 * 3bit drive-strenth'es are spread over two registers.
3656 if ((drv
->drv_type
== DRV_TYPE_IO_1V8_3V0_AUTO
) ||
3657 (drv
->drv_type
== DRV_TYPE_IO_3V3_ONLY
))
3662 if (iom
->type
& IOMUX_SOURCE_PMU
)
3663 drv_pmu_offs
+= inc
;
3665 drv_grf_offs
+= inc
;
3670 /* calculate the per-bank recalced_mask */
3671 for (j
= 0; j
< ctrl
->niomux_recalced
; j
++) {
3674 if (ctrl
->iomux_recalced
[j
].num
== bank
->bank_num
) {
3675 pin
= ctrl
->iomux_recalced
[j
].pin
;
3676 bank
->recalced_mask
|= BIT(pin
);
3680 /* calculate the per-bank route_mask */
3681 for (j
= 0; j
< ctrl
->niomux_routes
; j
++) {
3684 if (ctrl
->iomux_routes
[j
].bank_num
== bank
->bank_num
) {
3685 pin
= ctrl
->iomux_routes
[j
].pin
;
3686 bank
->route_mask
|= BIT(pin
);
3694 #define RK3288_GRF_GPIO6C_IOMUX 0x64
3695 #define GPIO6C6_SEL_WRITE_ENABLE BIT(28)
3697 static u32 rk3288_grf_gpio6c_iomux
;
3699 static int __maybe_unused
rockchip_pinctrl_suspend(struct device
*dev
)
3701 struct rockchip_pinctrl
*info
= dev_get_drvdata(dev
);
3702 int ret
= pinctrl_force_sleep(info
->pctl_dev
);
3708 * RK3288 GPIO6_C6 mux would be modified by Maskrom when resume, so save
3709 * the setting here, and restore it at resume.
3711 if (info
->ctrl
->type
== RK3288
) {
3712 ret
= regmap_read(info
->regmap_base
, RK3288_GRF_GPIO6C_IOMUX
,
3713 &rk3288_grf_gpio6c_iomux
);
3715 pinctrl_force_default(info
->pctl_dev
);
3723 static int __maybe_unused
rockchip_pinctrl_resume(struct device
*dev
)
3725 struct rockchip_pinctrl
*info
= dev_get_drvdata(dev
);
3726 int ret
= regmap_write(info
->regmap_base
, RK3288_GRF_GPIO6C_IOMUX
,
3727 rk3288_grf_gpio6c_iomux
|
3728 GPIO6C6_SEL_WRITE_ENABLE
);
3733 return pinctrl_force_default(info
->pctl_dev
);
3736 static SIMPLE_DEV_PM_OPS(rockchip_pinctrl_dev_pm_ops
, rockchip_pinctrl_suspend
,
3737 rockchip_pinctrl_resume
);
3739 static int rockchip_pinctrl_probe(struct platform_device
*pdev
)
3741 struct rockchip_pinctrl
*info
;
3742 struct device
*dev
= &pdev
->dev
;
3743 struct rockchip_pin_ctrl
*ctrl
;
3744 struct device_node
*np
= pdev
->dev
.of_node
, *node
;
3745 struct resource
*res
;
3749 if (!dev
->of_node
) {
3750 dev_err(dev
, "device tree node not found\n");
3754 info
= devm_kzalloc(dev
, sizeof(*info
), GFP_KERNEL
);
3760 ctrl
= rockchip_pinctrl_get_soc_data(info
, pdev
);
3762 dev_err(dev
, "driver data not available\n");
3767 node
= of_parse_phandle(np
, "rockchip,grf", 0);
3769 info
->regmap_base
= syscon_node_to_regmap(node
);
3770 if (IS_ERR(info
->regmap_base
))
3771 return PTR_ERR(info
->regmap_base
);
3773 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
3774 base
= devm_ioremap_resource(&pdev
->dev
, res
);
3776 return PTR_ERR(base
);
3778 rockchip_regmap_config
.max_register
= resource_size(res
) - 4;
3779 rockchip_regmap_config
.name
= "rockchip,pinctrl";
3780 info
->regmap_base
= devm_regmap_init_mmio(&pdev
->dev
, base
,
3781 &rockchip_regmap_config
);
3783 /* to check for the old dt-bindings */
3784 info
->reg_size
= resource_size(res
);
3786 /* Honor the old binding, with pull registers as 2nd resource */
3787 if (ctrl
->type
== RK3188
&& info
->reg_size
< 0x200) {
3788 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
3789 base
= devm_ioremap_resource(&pdev
->dev
, res
);
3791 return PTR_ERR(base
);
3793 rockchip_regmap_config
.max_register
=
3794 resource_size(res
) - 4;
3795 rockchip_regmap_config
.name
= "rockchip,pinctrl-pull";
3796 info
->regmap_pull
= devm_regmap_init_mmio(&pdev
->dev
,
3798 &rockchip_regmap_config
);
3802 /* try to find the optional reference to the pmu syscon */
3803 node
= of_parse_phandle(np
, "rockchip,pmu", 0);
3805 info
->regmap_pmu
= syscon_node_to_regmap(node
);
3806 if (IS_ERR(info
->regmap_pmu
))
3807 return PTR_ERR(info
->regmap_pmu
);
3810 ret
= rockchip_gpiolib_register(pdev
, info
);
3814 ret
= rockchip_pinctrl_register(pdev
, info
);
3816 rockchip_gpiolib_unregister(pdev
, info
);
3820 platform_set_drvdata(pdev
, info
);
3825 static struct rockchip_pin_bank px30_pin_banks
[] = {
3826 PIN_BANK_IOMUX_FLAGS(0, 32, "gpio0", IOMUX_SOURCE_PMU
,
3831 PIN_BANK_IOMUX_FLAGS(1, 32, "gpio1", IOMUX_WIDTH_4BIT
,
3836 PIN_BANK_IOMUX_FLAGS(2, 32, "gpio2", IOMUX_WIDTH_4BIT
,
3841 PIN_BANK_IOMUX_FLAGS(3, 32, "gpio3", IOMUX_WIDTH_4BIT
,
3848 static struct rockchip_pin_ctrl px30_pin_ctrl
= {
3849 .pin_banks
= px30_pin_banks
,
3850 .nr_banks
= ARRAY_SIZE(px30_pin_banks
),
3851 .label
= "PX30-GPIO",
3853 .grf_mux_offset
= 0x0,
3854 .pmu_mux_offset
= 0x0,
3855 .iomux_routes
= px30_mux_route_data
,
3856 .niomux_routes
= ARRAY_SIZE(px30_mux_route_data
),
3857 .pull_calc_reg
= px30_calc_pull_reg_and_bit
,
3858 .drv_calc_reg
= px30_calc_drv_reg_and_bit
,
3859 .schmitt_calc_reg
= px30_calc_schmitt_reg_and_bit
,
3862 static struct rockchip_pin_bank rv1108_pin_banks
[] = {
3863 PIN_BANK_IOMUX_FLAGS(0, 32, "gpio0", IOMUX_SOURCE_PMU
,
3867 PIN_BANK_IOMUX_FLAGS(1, 32, "gpio1", 0, 0, 0, 0),
3868 PIN_BANK_IOMUX_FLAGS(2, 32, "gpio2", 0, 0, 0, 0),
3869 PIN_BANK_IOMUX_FLAGS(3, 32, "gpio3", 0, 0, 0, 0),
3872 static struct rockchip_pin_ctrl rv1108_pin_ctrl
= {
3873 .pin_banks
= rv1108_pin_banks
,
3874 .nr_banks
= ARRAY_SIZE(rv1108_pin_banks
),
3875 .label
= "RV1108-GPIO",
3877 .grf_mux_offset
= 0x10,
3878 .pmu_mux_offset
= 0x0,
3879 .iomux_recalced
= rv1108_mux_recalced_data
,
3880 .niomux_recalced
= ARRAY_SIZE(rv1108_mux_recalced_data
),
3881 .pull_calc_reg
= rv1108_calc_pull_reg_and_bit
,
3882 .drv_calc_reg
= rv1108_calc_drv_reg_and_bit
,
3883 .schmitt_calc_reg
= rv1108_calc_schmitt_reg_and_bit
,
3886 static struct rockchip_pin_bank rk2928_pin_banks
[] = {
3887 PIN_BANK(0, 32, "gpio0"),
3888 PIN_BANK(1, 32, "gpio1"),
3889 PIN_BANK(2, 32, "gpio2"),
3890 PIN_BANK(3, 32, "gpio3"),
3893 static struct rockchip_pin_ctrl rk2928_pin_ctrl
= {
3894 .pin_banks
= rk2928_pin_banks
,
3895 .nr_banks
= ARRAY_SIZE(rk2928_pin_banks
),
3896 .label
= "RK2928-GPIO",
3898 .grf_mux_offset
= 0xa8,
3899 .pull_calc_reg
= rk2928_calc_pull_reg_and_bit
,
3902 static struct rockchip_pin_bank rk3036_pin_banks
[] = {
3903 PIN_BANK(0, 32, "gpio0"),
3904 PIN_BANK(1, 32, "gpio1"),
3905 PIN_BANK(2, 32, "gpio2"),
3908 static struct rockchip_pin_ctrl rk3036_pin_ctrl
= {
3909 .pin_banks
= rk3036_pin_banks
,
3910 .nr_banks
= ARRAY_SIZE(rk3036_pin_banks
),
3911 .label
= "RK3036-GPIO",
3913 .grf_mux_offset
= 0xa8,
3914 .pull_calc_reg
= rk2928_calc_pull_reg_and_bit
,
3917 static struct rockchip_pin_bank rk3066a_pin_banks
[] = {
3918 PIN_BANK(0, 32, "gpio0"),
3919 PIN_BANK(1, 32, "gpio1"),
3920 PIN_BANK(2, 32, "gpio2"),
3921 PIN_BANK(3, 32, "gpio3"),
3922 PIN_BANK(4, 32, "gpio4"),
3923 PIN_BANK(6, 16, "gpio6"),
3926 static struct rockchip_pin_ctrl rk3066a_pin_ctrl
= {
3927 .pin_banks
= rk3066a_pin_banks
,
3928 .nr_banks
= ARRAY_SIZE(rk3066a_pin_banks
),
3929 .label
= "RK3066a-GPIO",
3931 .grf_mux_offset
= 0xa8,
3932 .pull_calc_reg
= rk2928_calc_pull_reg_and_bit
,
3935 static struct rockchip_pin_bank rk3066b_pin_banks
[] = {
3936 PIN_BANK(0, 32, "gpio0"),
3937 PIN_BANK(1, 32, "gpio1"),
3938 PIN_BANK(2, 32, "gpio2"),
3939 PIN_BANK(3, 32, "gpio3"),
3942 static struct rockchip_pin_ctrl rk3066b_pin_ctrl
= {
3943 .pin_banks
= rk3066b_pin_banks
,
3944 .nr_banks
= ARRAY_SIZE(rk3066b_pin_banks
),
3945 .label
= "RK3066b-GPIO",
3947 .grf_mux_offset
= 0x60,
3950 static struct rockchip_pin_bank rk3128_pin_banks
[] = {
3951 PIN_BANK(0, 32, "gpio0"),
3952 PIN_BANK(1, 32, "gpio1"),
3953 PIN_BANK(2, 32, "gpio2"),
3954 PIN_BANK(3, 32, "gpio3"),
3957 static struct rockchip_pin_ctrl rk3128_pin_ctrl
= {
3958 .pin_banks
= rk3128_pin_banks
,
3959 .nr_banks
= ARRAY_SIZE(rk3128_pin_banks
),
3960 .label
= "RK3128-GPIO",
3962 .grf_mux_offset
= 0xa8,
3963 .iomux_recalced
= rk3128_mux_recalced_data
,
3964 .niomux_recalced
= ARRAY_SIZE(rk3128_mux_recalced_data
),
3965 .iomux_routes
= rk3128_mux_route_data
,
3966 .niomux_routes
= ARRAY_SIZE(rk3128_mux_route_data
),
3967 .pull_calc_reg
= rk3128_calc_pull_reg_and_bit
,
3970 static struct rockchip_pin_bank rk3188_pin_banks
[] = {
3971 PIN_BANK_IOMUX_FLAGS(0, 32, "gpio0", IOMUX_GPIO_ONLY
, 0, 0, 0),
3972 PIN_BANK(1, 32, "gpio1"),
3973 PIN_BANK(2, 32, "gpio2"),
3974 PIN_BANK(3, 32, "gpio3"),
3977 static struct rockchip_pin_ctrl rk3188_pin_ctrl
= {
3978 .pin_banks
= rk3188_pin_banks
,
3979 .nr_banks
= ARRAY_SIZE(rk3188_pin_banks
),
3980 .label
= "RK3188-GPIO",
3982 .grf_mux_offset
= 0x60,
3983 .iomux_routes
= rk3188_mux_route_data
,
3984 .niomux_routes
= ARRAY_SIZE(rk3188_mux_route_data
),
3985 .pull_calc_reg
= rk3188_calc_pull_reg_and_bit
,
3988 static struct rockchip_pin_bank rk3228_pin_banks
[] = {
3989 PIN_BANK(0, 32, "gpio0"),
3990 PIN_BANK(1, 32, "gpio1"),
3991 PIN_BANK(2, 32, "gpio2"),
3992 PIN_BANK(3, 32, "gpio3"),
3995 static struct rockchip_pin_ctrl rk3228_pin_ctrl
= {
3996 .pin_banks
= rk3228_pin_banks
,
3997 .nr_banks
= ARRAY_SIZE(rk3228_pin_banks
),
3998 .label
= "RK3228-GPIO",
4000 .grf_mux_offset
= 0x0,
4001 .iomux_routes
= rk3228_mux_route_data
,
4002 .niomux_routes
= ARRAY_SIZE(rk3228_mux_route_data
),
4003 .pull_calc_reg
= rk3228_calc_pull_reg_and_bit
,
4004 .drv_calc_reg
= rk3228_calc_drv_reg_and_bit
,
4007 static struct rockchip_pin_bank rk3288_pin_banks
[] = {
4008 PIN_BANK_IOMUX_FLAGS(0, 24, "gpio0", IOMUX_SOURCE_PMU
,
4013 PIN_BANK_IOMUX_FLAGS(1, 32, "gpio1", IOMUX_UNROUTED
,
4018 PIN_BANK_IOMUX_FLAGS(2, 32, "gpio2", 0, 0, 0, IOMUX_UNROUTED
),
4019 PIN_BANK_IOMUX_FLAGS(3, 32, "gpio3", 0, 0, 0, IOMUX_WIDTH_4BIT
),
4020 PIN_BANK_IOMUX_FLAGS(4, 32, "gpio4", IOMUX_WIDTH_4BIT
,
4025 PIN_BANK_IOMUX_FLAGS(5, 32, "gpio5", IOMUX_UNROUTED
,
4030 PIN_BANK_IOMUX_FLAGS(6, 32, "gpio6", 0, 0, 0, IOMUX_UNROUTED
),
4031 PIN_BANK_IOMUX_FLAGS(7, 32, "gpio7", 0,
4036 PIN_BANK(8, 16, "gpio8"),
4039 static struct rockchip_pin_ctrl rk3288_pin_ctrl
= {
4040 .pin_banks
= rk3288_pin_banks
,
4041 .nr_banks
= ARRAY_SIZE(rk3288_pin_banks
),
4042 .label
= "RK3288-GPIO",
4044 .grf_mux_offset
= 0x0,
4045 .pmu_mux_offset
= 0x84,
4046 .iomux_routes
= rk3288_mux_route_data
,
4047 .niomux_routes
= ARRAY_SIZE(rk3288_mux_route_data
),
4048 .pull_calc_reg
= rk3288_calc_pull_reg_and_bit
,
4049 .drv_calc_reg
= rk3288_calc_drv_reg_and_bit
,
4052 static struct rockchip_pin_bank rk3308_pin_banks
[] = {
4053 PIN_BANK_IOMUX_FLAGS(0, 32, "gpio0", IOMUX_WIDTH_2BIT
,
4057 PIN_BANK_IOMUX_FLAGS(1, 32, "gpio1", IOMUX_WIDTH_2BIT
,
4061 PIN_BANK_IOMUX_FLAGS(2, 32, "gpio2", IOMUX_WIDTH_2BIT
,
4065 PIN_BANK_IOMUX_FLAGS(3, 32, "gpio3", IOMUX_WIDTH_2BIT
,
4069 PIN_BANK_IOMUX_FLAGS(4, 32, "gpio4", IOMUX_WIDTH_2BIT
,
4075 static struct rockchip_pin_ctrl rk3308_pin_ctrl
= {
4076 .pin_banks
= rk3308_pin_banks
,
4077 .nr_banks
= ARRAY_SIZE(rk3308_pin_banks
),
4078 .label
= "RK3308-GPIO",
4080 .grf_mux_offset
= 0x0,
4081 .iomux_recalced
= rk3308_mux_recalced_data
,
4082 .niomux_recalced
= ARRAY_SIZE(rk3308_mux_recalced_data
),
4083 .iomux_routes
= rk3308_mux_route_data
,
4084 .niomux_routes
= ARRAY_SIZE(rk3308_mux_route_data
),
4085 .pull_calc_reg
= rk3308_calc_pull_reg_and_bit
,
4086 .drv_calc_reg
= rk3308_calc_drv_reg_and_bit
,
4087 .schmitt_calc_reg
= rk3308_calc_schmitt_reg_and_bit
,
4090 static struct rockchip_pin_bank rk3328_pin_banks
[] = {
4091 PIN_BANK_IOMUX_FLAGS(0, 32, "gpio0", 0, 0, 0, 0),
4092 PIN_BANK_IOMUX_FLAGS(1, 32, "gpio1", 0, 0, 0, 0),
4093 PIN_BANK_IOMUX_FLAGS(2, 32, "gpio2", 0,
4097 PIN_BANK_IOMUX_FLAGS(3, 32, "gpio3",
4104 static struct rockchip_pin_ctrl rk3328_pin_ctrl
= {
4105 .pin_banks
= rk3328_pin_banks
,
4106 .nr_banks
= ARRAY_SIZE(rk3328_pin_banks
),
4107 .label
= "RK3328-GPIO",
4109 .grf_mux_offset
= 0x0,
4110 .iomux_recalced
= rk3328_mux_recalced_data
,
4111 .niomux_recalced
= ARRAY_SIZE(rk3328_mux_recalced_data
),
4112 .iomux_routes
= rk3328_mux_route_data
,
4113 .niomux_routes
= ARRAY_SIZE(rk3328_mux_route_data
),
4114 .pull_calc_reg
= rk3228_calc_pull_reg_and_bit
,
4115 .drv_calc_reg
= rk3228_calc_drv_reg_and_bit
,
4116 .schmitt_calc_reg
= rk3328_calc_schmitt_reg_and_bit
,
4119 static struct rockchip_pin_bank rk3368_pin_banks
[] = {
4120 PIN_BANK_IOMUX_FLAGS(0, 32, "gpio0", IOMUX_SOURCE_PMU
,
4125 PIN_BANK(1, 32, "gpio1"),
4126 PIN_BANK(2, 32, "gpio2"),
4127 PIN_BANK(3, 32, "gpio3"),
4130 static struct rockchip_pin_ctrl rk3368_pin_ctrl
= {
4131 .pin_banks
= rk3368_pin_banks
,
4132 .nr_banks
= ARRAY_SIZE(rk3368_pin_banks
),
4133 .label
= "RK3368-GPIO",
4135 .grf_mux_offset
= 0x0,
4136 .pmu_mux_offset
= 0x0,
4137 .pull_calc_reg
= rk3368_calc_pull_reg_and_bit
,
4138 .drv_calc_reg
= rk3368_calc_drv_reg_and_bit
,
4141 static struct rockchip_pin_bank rk3399_pin_banks
[] = {
4142 PIN_BANK_IOMUX_FLAGS_DRV_FLAGS_OFFSET_PULL_FLAGS(0, 32, "gpio0",
4147 DRV_TYPE_IO_1V8_ONLY
,
4148 DRV_TYPE_IO_1V8_ONLY
,
4149 DRV_TYPE_IO_DEFAULT
,
4150 DRV_TYPE_IO_DEFAULT
,
4155 PULL_TYPE_IO_1V8_ONLY
,
4156 PULL_TYPE_IO_1V8_ONLY
,
4157 PULL_TYPE_IO_DEFAULT
,
4158 PULL_TYPE_IO_DEFAULT
4160 PIN_BANK_IOMUX_DRV_FLAGS_OFFSET(1, 32, "gpio1", IOMUX_SOURCE_PMU
,
4164 DRV_TYPE_IO_1V8_OR_3V0
,
4165 DRV_TYPE_IO_1V8_OR_3V0
,
4166 DRV_TYPE_IO_1V8_OR_3V0
,
4167 DRV_TYPE_IO_1V8_OR_3V0
,
4173 PIN_BANK_DRV_FLAGS_PULL_FLAGS(2, 32, "gpio2", DRV_TYPE_IO_1V8_OR_3V0
,
4174 DRV_TYPE_IO_1V8_OR_3V0
,
4175 DRV_TYPE_IO_1V8_ONLY
,
4176 DRV_TYPE_IO_1V8_ONLY
,
4177 PULL_TYPE_IO_DEFAULT
,
4178 PULL_TYPE_IO_DEFAULT
,
4179 PULL_TYPE_IO_1V8_ONLY
,
4180 PULL_TYPE_IO_1V8_ONLY
4182 PIN_BANK_DRV_FLAGS(3, 32, "gpio3", DRV_TYPE_IO_3V3_ONLY
,
4183 DRV_TYPE_IO_3V3_ONLY
,
4184 DRV_TYPE_IO_3V3_ONLY
,
4185 DRV_TYPE_IO_1V8_OR_3V0
4187 PIN_BANK_DRV_FLAGS(4, 32, "gpio4", DRV_TYPE_IO_1V8_OR_3V0
,
4188 DRV_TYPE_IO_1V8_3V0_AUTO
,
4189 DRV_TYPE_IO_1V8_OR_3V0
,
4190 DRV_TYPE_IO_1V8_OR_3V0
4194 static struct rockchip_pin_ctrl rk3399_pin_ctrl
= {
4195 .pin_banks
= rk3399_pin_banks
,
4196 .nr_banks
= ARRAY_SIZE(rk3399_pin_banks
),
4197 .label
= "RK3399-GPIO",
4199 .grf_mux_offset
= 0xe000,
4200 .pmu_mux_offset
= 0x0,
4201 .grf_drv_offset
= 0xe100,
4202 .pmu_drv_offset
= 0x80,
4203 .iomux_routes
= rk3399_mux_route_data
,
4204 .niomux_routes
= ARRAY_SIZE(rk3399_mux_route_data
),
4205 .pull_calc_reg
= rk3399_calc_pull_reg_and_bit
,
4206 .drv_calc_reg
= rk3399_calc_drv_reg_and_bit
,
4209 static const struct of_device_id rockchip_pinctrl_dt_match
[] = {
4210 { .compatible
= "rockchip,px30-pinctrl",
4211 .data
= &px30_pin_ctrl
},
4212 { .compatible
= "rockchip,rv1108-pinctrl",
4213 .data
= &rv1108_pin_ctrl
},
4214 { .compatible
= "rockchip,rk2928-pinctrl",
4215 .data
= &rk2928_pin_ctrl
},
4216 { .compatible
= "rockchip,rk3036-pinctrl",
4217 .data
= &rk3036_pin_ctrl
},
4218 { .compatible
= "rockchip,rk3066a-pinctrl",
4219 .data
= &rk3066a_pin_ctrl
},
4220 { .compatible
= "rockchip,rk3066b-pinctrl",
4221 .data
= &rk3066b_pin_ctrl
},
4222 { .compatible
= "rockchip,rk3128-pinctrl",
4223 .data
= (void *)&rk3128_pin_ctrl
},
4224 { .compatible
= "rockchip,rk3188-pinctrl",
4225 .data
= &rk3188_pin_ctrl
},
4226 { .compatible
= "rockchip,rk3228-pinctrl",
4227 .data
= &rk3228_pin_ctrl
},
4228 { .compatible
= "rockchip,rk3288-pinctrl",
4229 .data
= &rk3288_pin_ctrl
},
4230 { .compatible
= "rockchip,rk3308-pinctrl",
4231 .data
= &rk3308_pin_ctrl
},
4232 { .compatible
= "rockchip,rk3328-pinctrl",
4233 .data
= &rk3328_pin_ctrl
},
4234 { .compatible
= "rockchip,rk3368-pinctrl",
4235 .data
= &rk3368_pin_ctrl
},
4236 { .compatible
= "rockchip,rk3399-pinctrl",
4237 .data
= &rk3399_pin_ctrl
},
4241 static struct platform_driver rockchip_pinctrl_driver
= {
4242 .probe
= rockchip_pinctrl_probe
,
4244 .name
= "rockchip-pinctrl",
4245 .pm
= &rockchip_pinctrl_dev_pm_ops
,
4246 .of_match_table
= rockchip_pinctrl_dt_match
,
4250 static int __init
rockchip_pinctrl_drv_register(void)
4252 return platform_driver_register(&rockchip_pinctrl_driver
);
4254 postcore_initcall(rockchip_pinctrl_drv_register
);