]> Git Repo - linux.git/blob - drivers/pinctrl/mediatek/pinctrl-mtk-common.c
dma-mapping: don't return errors from dma_set_max_seg_size
[linux.git] / drivers / pinctrl / mediatek / pinctrl-mtk-common.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * mt65xx pinctrl driver based on Allwinner A1X pinctrl driver.
4  * Copyright (c) 2014 MediaTek Inc.
5  * Author: Hongzhou.Yang <[email protected]>
6  */
7
8 #include <linux/io.h>
9 #include <linux/gpio/driver.h>
10 #include <linux/of.h>
11 #include <linux/of_irq.h>
12 #include <linux/pinctrl/consumer.h>
13 #include <linux/pinctrl/machine.h>
14 #include <linux/pinctrl/pinconf.h>
15 #include <linux/pinctrl/pinconf-generic.h>
16 #include <linux/pinctrl/pinctrl.h>
17 #include <linux/pinctrl/pinmux.h>
18 #include <linux/platform_device.h>
19 #include <linux/slab.h>
20 #include <linux/bitops.h>
21 #include <linux/regmap.h>
22 #include <linux/mfd/syscon.h>
23 #include <linux/delay.h>
24 #include <linux/interrupt.h>
25 #include <linux/pm.h>
26 #include <dt-bindings/pinctrl/mt65xx.h>
27
28 #include "../core.h"
29 #include "../pinconf.h"
30 #include "../pinctrl-utils.h"
31 #include "mtk-eint.h"
32 #include "pinctrl-mtk-common.h"
33
34 #define GPIO_MODE_BITS        3
35 #define GPIO_MODE_PREFIX "GPIO"
36
37 static const char * const mtk_gpio_functions[] = {
38         "func0", "func1", "func2", "func3",
39         "func4", "func5", "func6", "func7",
40         "func8", "func9", "func10", "func11",
41         "func12", "func13", "func14", "func15",
42 };
43
44 /*
45  * There are two base address for pull related configuration
46  * in mt8135, and different GPIO pins use different base address.
47  * When pin number greater than type1_start and less than type1_end,
48  * should use the second base address.
49  */
50 static struct regmap *mtk_get_regmap(struct mtk_pinctrl *pctl,
51                 unsigned long pin)
52 {
53         if (pin >= pctl->devdata->type1_start && pin < pctl->devdata->type1_end)
54                 return pctl->regmap2;
55         return pctl->regmap1;
56 }
57
58 static unsigned int mtk_get_port(struct mtk_pinctrl *pctl, unsigned long pin)
59 {
60         /* Different SoC has different mask and port shift. */
61         return ((pin >> pctl->devdata->mode_shf) & pctl->devdata->port_mask)
62                         << pctl->devdata->port_shf;
63 }
64
65 static int mtk_pmx_gpio_set_direction(struct pinctrl_dev *pctldev,
66                         struct pinctrl_gpio_range *range, unsigned offset,
67                         bool input)
68 {
69         unsigned int reg_addr;
70         unsigned int bit;
71         struct mtk_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
72
73         reg_addr = mtk_get_port(pctl, offset) + pctl->devdata->dir_offset;
74         bit = BIT(offset & pctl->devdata->mode_mask);
75
76         if (pctl->devdata->spec_dir_set)
77                 pctl->devdata->spec_dir_set(&reg_addr, offset);
78
79         if (input)
80                 /* Different SoC has different alignment offset. */
81                 reg_addr = CLR_ADDR(reg_addr, pctl);
82         else
83                 reg_addr = SET_ADDR(reg_addr, pctl);
84
85         regmap_write(mtk_get_regmap(pctl, offset), reg_addr, bit);
86         return 0;
87 }
88
89 static void mtk_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
90 {
91         unsigned int reg_addr;
92         unsigned int bit;
93         struct mtk_pinctrl *pctl = gpiochip_get_data(chip);
94
95         reg_addr = mtk_get_port(pctl, offset) + pctl->devdata->dout_offset;
96         bit = BIT(offset & pctl->devdata->mode_mask);
97
98         if (value)
99                 reg_addr = SET_ADDR(reg_addr, pctl);
100         else
101                 reg_addr = CLR_ADDR(reg_addr, pctl);
102
103         regmap_write(mtk_get_regmap(pctl, offset), reg_addr, bit);
104 }
105
106 static int mtk_pconf_set_ies_smt(struct mtk_pinctrl *pctl, unsigned pin,
107                 int value, enum pin_config_param arg)
108 {
109         unsigned int reg_addr, offset;
110         unsigned int bit;
111
112         /**
113          * Due to some soc are not support ies/smt config, add this special
114          * control to handle it.
115          */
116         if (!pctl->devdata->spec_ies_smt_set &&
117                 pctl->devdata->ies_offset == MTK_PINCTRL_NOT_SUPPORT &&
118                         arg == PIN_CONFIG_INPUT_ENABLE)
119                 return -EINVAL;
120
121         if (!pctl->devdata->spec_ies_smt_set &&
122                 pctl->devdata->smt_offset == MTK_PINCTRL_NOT_SUPPORT &&
123                         arg == PIN_CONFIG_INPUT_SCHMITT_ENABLE)
124                 return -EINVAL;
125
126         /*
127          * Due to some pins are irregular, their input enable and smt
128          * control register are discontinuous, so we need this special handle.
129          */
130         if (pctl->devdata->spec_ies_smt_set) {
131                 return pctl->devdata->spec_ies_smt_set(mtk_get_regmap(pctl, pin),
132                         pctl->devdata, pin, value, arg);
133         }
134
135         if (arg == PIN_CONFIG_INPUT_ENABLE)
136                 offset = pctl->devdata->ies_offset;
137         else
138                 offset = pctl->devdata->smt_offset;
139
140         bit = BIT(offset & pctl->devdata->mode_mask);
141
142         if (value)
143                 reg_addr = SET_ADDR(mtk_get_port(pctl, pin) + offset, pctl);
144         else
145                 reg_addr = CLR_ADDR(mtk_get_port(pctl, pin) + offset, pctl);
146
147         regmap_write(mtk_get_regmap(pctl, pin), reg_addr, bit);
148         return 0;
149 }
150
151 int mtk_pconf_spec_set_ies_smt_range(struct regmap *regmap,
152                 const struct mtk_pinctrl_devdata *devdata,
153                 unsigned int pin, int value, enum pin_config_param arg)
154 {
155         const struct mtk_pin_ies_smt_set *ies_smt_infos = NULL;
156         unsigned int i, info_num, reg_addr, bit;
157
158         switch (arg) {
159         case PIN_CONFIG_INPUT_ENABLE:
160                 ies_smt_infos = devdata->spec_ies;
161                 info_num = devdata->n_spec_ies;
162                 break;
163         case PIN_CONFIG_INPUT_SCHMITT_ENABLE:
164                 ies_smt_infos = devdata->spec_smt;
165                 info_num = devdata->n_spec_smt;
166                 break;
167         default:
168                 break;
169         }
170
171         if (!ies_smt_infos)
172                 return -EINVAL;
173
174         for (i = 0; i < info_num; i++) {
175                 if (pin >= ies_smt_infos[i].start &&
176                                 pin <= ies_smt_infos[i].end) {
177                         break;
178                 }
179         }
180
181         if (i == info_num)
182                 return -EINVAL;
183
184         if (value)
185                 reg_addr = ies_smt_infos[i].offset + devdata->port_align;
186         else
187                 reg_addr = ies_smt_infos[i].offset + (devdata->port_align << 1);
188
189         bit = BIT(ies_smt_infos[i].bit);
190         regmap_write(regmap, reg_addr, bit);
191         return 0;
192 }
193
194 static const struct mtk_pin_drv_grp *mtk_find_pin_drv_grp_by_pin(
195                 struct mtk_pinctrl *pctl,  unsigned long pin) {
196         int i;
197
198         for (i = 0; i < pctl->devdata->n_pin_drv_grps; i++) {
199                 const struct mtk_pin_drv_grp *pin_drv =
200                                 pctl->devdata->pin_drv_grp + i;
201                 if (pin == pin_drv->pin)
202                         return pin_drv;
203         }
204
205         return NULL;
206 }
207
208 static int mtk_pconf_set_driving(struct mtk_pinctrl *pctl,
209                 unsigned int pin, unsigned char driving)
210 {
211         const struct mtk_pin_drv_grp *pin_drv;
212         unsigned int val;
213         unsigned int bits, mask, shift;
214         const struct mtk_drv_group_desc *drv_grp;
215
216         if (pin >= pctl->devdata->npins)
217                 return -EINVAL;
218
219         pin_drv = mtk_find_pin_drv_grp_by_pin(pctl, pin);
220         if (!pin_drv || pin_drv->grp > pctl->devdata->n_grp_cls)
221                 return -EINVAL;
222
223         drv_grp = pctl->devdata->grp_desc + pin_drv->grp;
224         if (driving >= drv_grp->min_drv && driving <= drv_grp->max_drv
225                 && !(driving % drv_grp->step)) {
226                 val = driving / drv_grp->step - 1;
227                 bits = drv_grp->high_bit - drv_grp->low_bit + 1;
228                 mask = BIT(bits) - 1;
229                 shift = pin_drv->bit + drv_grp->low_bit;
230                 mask <<= shift;
231                 val <<= shift;
232                 return regmap_update_bits(mtk_get_regmap(pctl, pin),
233                                 pin_drv->offset, mask, val);
234         }
235
236         return -EINVAL;
237 }
238
239 int mtk_pctrl_spec_pull_set_samereg(struct regmap *regmap,
240                 const struct mtk_pinctrl_devdata *devdata,
241                 unsigned int pin, bool isup, unsigned int r1r0)
242 {
243         unsigned int i;
244         unsigned int reg_pupd, reg_set, reg_rst;
245         unsigned int bit_pupd, bit_r0, bit_r1;
246         const struct mtk_pin_spec_pupd_set_samereg *spec_pupd_pin;
247         bool find = false;
248
249         if (!devdata->spec_pupd)
250                 return -EINVAL;
251
252         for (i = 0; i < devdata->n_spec_pupd; i++) {
253                 if (pin == devdata->spec_pupd[i].pin) {
254                         find = true;
255                         break;
256                 }
257         }
258
259         if (!find)
260                 return -EINVAL;
261
262         spec_pupd_pin = devdata->spec_pupd + i;
263         reg_set = spec_pupd_pin->offset + devdata->port_align;
264         reg_rst = spec_pupd_pin->offset + (devdata->port_align << 1);
265
266         if (isup)
267                 reg_pupd = reg_rst;
268         else
269                 reg_pupd = reg_set;
270
271         bit_pupd = BIT(spec_pupd_pin->pupd_bit);
272         regmap_write(regmap, reg_pupd, bit_pupd);
273
274         bit_r0 = BIT(spec_pupd_pin->r0_bit);
275         bit_r1 = BIT(spec_pupd_pin->r1_bit);
276
277         switch (r1r0) {
278         case MTK_PUPD_SET_R1R0_00:
279                 regmap_write(regmap, reg_rst, bit_r0);
280                 regmap_write(regmap, reg_rst, bit_r1);
281                 break;
282         case MTK_PUPD_SET_R1R0_01:
283                 regmap_write(regmap, reg_set, bit_r0);
284                 regmap_write(regmap, reg_rst, bit_r1);
285                 break;
286         case MTK_PUPD_SET_R1R0_10:
287                 regmap_write(regmap, reg_rst, bit_r0);
288                 regmap_write(regmap, reg_set, bit_r1);
289                 break;
290         case MTK_PUPD_SET_R1R0_11:
291                 regmap_write(regmap, reg_set, bit_r0);
292                 regmap_write(regmap, reg_set, bit_r1);
293                 break;
294         default:
295                 return -EINVAL;
296         }
297
298         return 0;
299 }
300
301 static int mtk_pconf_set_pull_select(struct mtk_pinctrl *pctl,
302                 unsigned int pin, bool enable, bool isup, unsigned int arg)
303 {
304         unsigned int bit;
305         unsigned int reg_pullen, reg_pullsel, r1r0;
306         int ret;
307
308         /* Some pins' pull setting are very different,
309          * they have separate pull up/down bit, R0 and R1
310          * resistor bit, so we need this special handle.
311          */
312         if (pctl->devdata->spec_pull_set) {
313                 /* For special pins, bias-disable is set by R1R0,
314                  * the parameter should be "MTK_PUPD_SET_R1R0_00".
315                  */
316                 r1r0 = enable ? arg : MTK_PUPD_SET_R1R0_00;
317                 ret = pctl->devdata->spec_pull_set(mtk_get_regmap(pctl, pin),
318                                                    pctl->devdata, pin, isup,
319                                                    r1r0);
320                 if (!ret)
321                         return 0;
322         }
323
324         /* For generic pull config, default arg value should be 0 or 1. */
325         if (arg != 0 && arg != 1) {
326                 dev_err(pctl->dev, "invalid pull-up argument %d on pin %d .\n",
327                         arg, pin);
328                 return -EINVAL;
329         }
330
331         if (pctl->devdata->mt8365_set_clr_mode) {
332                 bit = pin & pctl->devdata->mode_mask;
333                 reg_pullen = mtk_get_port(pctl, pin) +
334                         pctl->devdata->pullen_offset;
335                 reg_pullsel = mtk_get_port(pctl, pin) +
336                         pctl->devdata->pullsel_offset;
337                 ret = pctl->devdata->mt8365_set_clr_mode(mtk_get_regmap(pctl, pin),
338                         bit, reg_pullen, reg_pullsel,
339                         enable, isup);
340                 if (ret)
341                         return -EINVAL;
342
343                 return 0;
344         }
345
346         bit = BIT(pin & pctl->devdata->mode_mask);
347         if (enable)
348                 reg_pullen = SET_ADDR(mtk_get_port(pctl, pin) +
349                         pctl->devdata->pullen_offset, pctl);
350         else
351                 reg_pullen = CLR_ADDR(mtk_get_port(pctl, pin) +
352                         pctl->devdata->pullen_offset, pctl);
353
354         if (isup)
355                 reg_pullsel = SET_ADDR(mtk_get_port(pctl, pin) +
356                         pctl->devdata->pullsel_offset, pctl);
357         else
358                 reg_pullsel = CLR_ADDR(mtk_get_port(pctl, pin) +
359                         pctl->devdata->pullsel_offset, pctl);
360
361         regmap_write(mtk_get_regmap(pctl, pin), reg_pullen, bit);
362         regmap_write(mtk_get_regmap(pctl, pin), reg_pullsel, bit);
363         return 0;
364 }
365
366 static int mtk_pconf_parse_conf(struct pinctrl_dev *pctldev,
367                 unsigned int pin, enum pin_config_param param,
368                 enum pin_config_param arg)
369 {
370         int ret = 0;
371         struct mtk_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
372
373         switch (param) {
374         case PIN_CONFIG_BIAS_DISABLE:
375                 ret = mtk_pconf_set_pull_select(pctl, pin, false, false, arg);
376                 break;
377         case PIN_CONFIG_BIAS_PULL_UP:
378                 ret = mtk_pconf_set_pull_select(pctl, pin, true, true, arg);
379                 break;
380         case PIN_CONFIG_BIAS_PULL_DOWN:
381                 ret = mtk_pconf_set_pull_select(pctl, pin, true, false, arg);
382                 break;
383         case PIN_CONFIG_INPUT_ENABLE:
384                 mtk_pmx_gpio_set_direction(pctldev, NULL, pin, true);
385                 ret = mtk_pconf_set_ies_smt(pctl, pin, arg, param);
386                 break;
387         case PIN_CONFIG_OUTPUT:
388                 mtk_gpio_set(pctl->chip, pin, arg);
389                 ret = mtk_pmx_gpio_set_direction(pctldev, NULL, pin, false);
390                 break;
391         case PIN_CONFIG_INPUT_SCHMITT_ENABLE:
392                 mtk_pmx_gpio_set_direction(pctldev, NULL, pin, true);
393                 ret = mtk_pconf_set_ies_smt(pctl, pin, arg, param);
394                 break;
395         case PIN_CONFIG_DRIVE_STRENGTH:
396                 ret = mtk_pconf_set_driving(pctl, pin, arg);
397                 break;
398         default:
399                 ret = -EINVAL;
400         }
401
402         return ret;
403 }
404
405 static int mtk_pconf_group_get(struct pinctrl_dev *pctldev,
406                                  unsigned group,
407                                  unsigned long *config)
408 {
409         struct mtk_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
410
411         *config = pctl->groups[group].config;
412
413         return 0;
414 }
415
416 static int mtk_pconf_group_set(struct pinctrl_dev *pctldev, unsigned group,
417                                  unsigned long *configs, unsigned num_configs)
418 {
419         struct mtk_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
420         struct mtk_pinctrl_group *g = &pctl->groups[group];
421         int i, ret;
422
423         for (i = 0; i < num_configs; i++) {
424                 ret = mtk_pconf_parse_conf(pctldev, g->pin,
425                         pinconf_to_config_param(configs[i]),
426                         pinconf_to_config_argument(configs[i]));
427                 if (ret < 0)
428                         return ret;
429
430                 g->config = configs[i];
431         }
432
433         return 0;
434 }
435
436 static const struct pinconf_ops mtk_pconf_ops = {
437         .pin_config_group_get   = mtk_pconf_group_get,
438         .pin_config_group_set   = mtk_pconf_group_set,
439 };
440
441 static struct mtk_pinctrl_group *
442 mtk_pctrl_find_group_by_pin(struct mtk_pinctrl *pctl, u32 pin)
443 {
444         int i;
445
446         for (i = 0; i < pctl->ngroups; i++) {
447                 struct mtk_pinctrl_group *grp = pctl->groups + i;
448
449                 if (grp->pin == pin)
450                         return grp;
451         }
452
453         return NULL;
454 }
455
456 static const struct mtk_desc_function *mtk_pctrl_find_function_by_pin(
457                 struct mtk_pinctrl *pctl, u32 pin_num, u32 fnum)
458 {
459         const struct mtk_desc_pin *pin = pctl->devdata->pins + pin_num;
460         const struct mtk_desc_function *func = pin->functions;
461
462         while (func && func->name) {
463                 if (func->muxval == fnum)
464                         return func;
465                 func++;
466         }
467
468         return NULL;
469 }
470
471 static bool mtk_pctrl_is_function_valid(struct mtk_pinctrl *pctl,
472                 u32 pin_num, u32 fnum)
473 {
474         int i;
475
476         for (i = 0; i < pctl->devdata->npins; i++) {
477                 const struct mtk_desc_pin *pin = pctl->devdata->pins + i;
478
479                 if (pin->pin.number == pin_num) {
480                         const struct mtk_desc_function *func =
481                                         pin->functions;
482
483                         while (func && func->name) {
484                                 if (func->muxval == fnum)
485                                         return true;
486                                 func++;
487                         }
488
489                         break;
490                 }
491         }
492
493         return false;
494 }
495
496 static int mtk_pctrl_dt_node_to_map_func(struct mtk_pinctrl *pctl,
497                 u32 pin, u32 fnum, struct mtk_pinctrl_group *grp,
498                 struct pinctrl_map **map, unsigned *reserved_maps,
499                 unsigned *num_maps)
500 {
501         bool ret;
502
503         if (*num_maps == *reserved_maps)
504                 return -ENOSPC;
505
506         (*map)[*num_maps].type = PIN_MAP_TYPE_MUX_GROUP;
507         (*map)[*num_maps].data.mux.group = grp->name;
508
509         ret = mtk_pctrl_is_function_valid(pctl, pin, fnum);
510         if (!ret) {
511                 dev_err(pctl->dev, "invalid function %d on pin %d .\n",
512                                 fnum, pin);
513                 return -EINVAL;
514         }
515
516         (*map)[*num_maps].data.mux.function = mtk_gpio_functions[fnum];
517         (*num_maps)++;
518
519         return 0;
520 }
521
522 static int mtk_pctrl_dt_subnode_to_map(struct pinctrl_dev *pctldev,
523                                       struct device_node *node,
524                                       struct pinctrl_map **map,
525                                       unsigned *reserved_maps,
526                                       unsigned *num_maps)
527 {
528         struct property *pins;
529         u32 pinfunc, pin, func;
530         int num_pins, num_funcs, maps_per_pin;
531         unsigned long *configs;
532         unsigned int num_configs;
533         bool has_config = false;
534         int i, err;
535         unsigned reserve = 0;
536         struct mtk_pinctrl_group *grp;
537         struct mtk_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
538
539         pins = of_find_property(node, "pinmux", NULL);
540         if (!pins) {
541                 dev_err(pctl->dev, "missing pins property in node %pOFn .\n",
542                                 node);
543                 return -EINVAL;
544         }
545
546         err = pinconf_generic_parse_dt_config(node, pctldev, &configs,
547                 &num_configs);
548         if (err)
549                 return err;
550
551         if (num_configs)
552                 has_config = true;
553
554         num_pins = pins->length / sizeof(u32);
555         num_funcs = num_pins;
556         maps_per_pin = 0;
557         if (num_funcs)
558                 maps_per_pin++;
559         if (has_config && num_pins >= 1)
560                 maps_per_pin++;
561
562         if (!num_pins || !maps_per_pin) {
563                 err = -EINVAL;
564                 goto exit;
565         }
566
567         reserve = num_pins * maps_per_pin;
568
569         err = pinctrl_utils_reserve_map(pctldev, map,
570                         reserved_maps, num_maps, reserve);
571         if (err < 0)
572                 goto exit;
573
574         for (i = 0; i < num_pins; i++) {
575                 err = of_property_read_u32_index(node, "pinmux",
576                                 i, &pinfunc);
577                 if (err)
578                         goto exit;
579
580                 pin = MTK_GET_PIN_NO(pinfunc);
581                 func = MTK_GET_PIN_FUNC(pinfunc);
582
583                 if (pin >= pctl->devdata->npins ||
584                                 func >= ARRAY_SIZE(mtk_gpio_functions)) {
585                         dev_err(pctl->dev, "invalid pins value.\n");
586                         err = -EINVAL;
587                         goto exit;
588                 }
589
590                 grp = mtk_pctrl_find_group_by_pin(pctl, pin);
591                 if (!grp) {
592                         dev_err(pctl->dev, "unable to match pin %d to group\n",
593                                         pin);
594                         err = -EINVAL;
595                         goto exit;
596                 }
597
598                 err = mtk_pctrl_dt_node_to_map_func(pctl, pin, func, grp, map,
599                                 reserved_maps, num_maps);
600                 if (err < 0)
601                         goto exit;
602
603                 if (has_config) {
604                         err = pinctrl_utils_add_map_configs(pctldev, map,
605                                         reserved_maps, num_maps, grp->name,
606                                         configs, num_configs,
607                                         PIN_MAP_TYPE_CONFIGS_GROUP);
608                         if (err < 0)
609                                 goto exit;
610                 }
611         }
612
613         err = 0;
614
615 exit:
616         kfree(configs);
617         return err;
618 }
619
620 static int mtk_pctrl_dt_node_to_map(struct pinctrl_dev *pctldev,
621                                  struct device_node *np_config,
622                                  struct pinctrl_map **map, unsigned *num_maps)
623 {
624         unsigned reserved_maps;
625         int ret;
626
627         *map = NULL;
628         *num_maps = 0;
629         reserved_maps = 0;
630
631         for_each_child_of_node_scoped(np_config, np) {
632                 ret = mtk_pctrl_dt_subnode_to_map(pctldev, np, map,
633                                 &reserved_maps, num_maps);
634                 if (ret < 0) {
635                         pinctrl_utils_free_map(pctldev, *map, *num_maps);
636                         return ret;
637                 }
638         }
639
640         return 0;
641 }
642
643 static int mtk_pctrl_get_groups_count(struct pinctrl_dev *pctldev)
644 {
645         struct mtk_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
646
647         return pctl->ngroups;
648 }
649
650 static const char *mtk_pctrl_get_group_name(struct pinctrl_dev *pctldev,
651                                               unsigned group)
652 {
653         struct mtk_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
654
655         return pctl->groups[group].name;
656 }
657
658 static int mtk_pctrl_get_group_pins(struct pinctrl_dev *pctldev,
659                                       unsigned group,
660                                       const unsigned **pins,
661                                       unsigned *num_pins)
662 {
663         struct mtk_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
664
665         *pins = (unsigned *)&pctl->groups[group].pin;
666         *num_pins = 1;
667
668         return 0;
669 }
670
671 static const struct pinctrl_ops mtk_pctrl_ops = {
672         .dt_node_to_map         = mtk_pctrl_dt_node_to_map,
673         .dt_free_map            = pinctrl_utils_free_map,
674         .get_groups_count       = mtk_pctrl_get_groups_count,
675         .get_group_name         = mtk_pctrl_get_group_name,
676         .get_group_pins         = mtk_pctrl_get_group_pins,
677 };
678
679 static int mtk_pmx_get_funcs_cnt(struct pinctrl_dev *pctldev)
680 {
681         return ARRAY_SIZE(mtk_gpio_functions);
682 }
683
684 static const char *mtk_pmx_get_func_name(struct pinctrl_dev *pctldev,
685                                            unsigned selector)
686 {
687         return mtk_gpio_functions[selector];
688 }
689
690 static int mtk_pmx_get_func_groups(struct pinctrl_dev *pctldev,
691                                      unsigned function,
692                                      const char * const **groups,
693                                      unsigned * const num_groups)
694 {
695         struct mtk_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
696
697         *groups = pctl->grp_names;
698         *num_groups = pctl->ngroups;
699
700         return 0;
701 }
702
703 static int mtk_pmx_set_mode(struct pinctrl_dev *pctldev,
704                 unsigned long pin, unsigned long mode)
705 {
706         unsigned int reg_addr;
707         unsigned char bit;
708         unsigned int val;
709         unsigned int mask = (1L << GPIO_MODE_BITS) - 1;
710         struct mtk_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
711
712         if (pctl->devdata->spec_pinmux_set)
713                 pctl->devdata->spec_pinmux_set(mtk_get_regmap(pctl, pin),
714                                         pin, mode);
715
716         reg_addr = ((pin / pctl->devdata->mode_per_reg) << pctl->devdata->port_shf)
717                         + pctl->devdata->pinmux_offset;
718
719         mode &= mask;
720         bit = pin % pctl->devdata->mode_per_reg;
721         mask <<= (GPIO_MODE_BITS * bit);
722         val = (mode << (GPIO_MODE_BITS * bit));
723         return regmap_update_bits(mtk_get_regmap(pctl, pin),
724                         reg_addr, mask, val);
725 }
726
727 static const struct mtk_desc_pin *
728 mtk_find_pin_by_eint_num(struct mtk_pinctrl *pctl, unsigned int eint_num)
729 {
730         int i;
731         const struct mtk_desc_pin *pin;
732
733         for (i = 0; i < pctl->devdata->npins; i++) {
734                 pin = pctl->devdata->pins + i;
735                 if (pin->eint.eintnum == eint_num)
736                         return pin;
737         }
738
739         return NULL;
740 }
741
742 static int mtk_pmx_set_mux(struct pinctrl_dev *pctldev,
743                             unsigned function,
744                             unsigned group)
745 {
746         bool ret;
747         const struct mtk_desc_function *desc;
748         struct mtk_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
749         struct mtk_pinctrl_group *g = pctl->groups + group;
750
751         ret = mtk_pctrl_is_function_valid(pctl, g->pin, function);
752         if (!ret) {
753                 dev_err(pctl->dev, "invalid function %d on group %d .\n",
754                                 function, group);
755                 return -EINVAL;
756         }
757
758         desc = mtk_pctrl_find_function_by_pin(pctl, g->pin, function);
759         if (!desc)
760                 return -EINVAL;
761         mtk_pmx_set_mode(pctldev, g->pin, desc->muxval);
762         return 0;
763 }
764
765 static int mtk_pmx_find_gpio_mode(struct mtk_pinctrl *pctl,
766                                 unsigned offset)
767 {
768         const struct mtk_desc_pin *pin = pctl->devdata->pins + offset;
769         const struct mtk_desc_function *func = pin->functions;
770
771         while (func && func->name) {
772                 if (!strncmp(func->name, GPIO_MODE_PREFIX,
773                         sizeof(GPIO_MODE_PREFIX)-1))
774                         return func->muxval;
775                 func++;
776         }
777         return -EINVAL;
778 }
779
780 static int mtk_pmx_gpio_request_enable(struct pinctrl_dev *pctldev,
781                                     struct pinctrl_gpio_range *range,
782                                     unsigned offset)
783 {
784         int muxval;
785         struct mtk_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
786
787         muxval = mtk_pmx_find_gpio_mode(pctl, offset);
788
789         if (muxval < 0) {
790                 dev_err(pctl->dev, "invalid gpio pin %d.\n", offset);
791                 return -EINVAL;
792         }
793
794         mtk_pmx_set_mode(pctldev, offset, muxval);
795         mtk_pconf_set_ies_smt(pctl, offset, 1, PIN_CONFIG_INPUT_ENABLE);
796
797         return 0;
798 }
799
800 static const struct pinmux_ops mtk_pmx_ops = {
801         .get_functions_count    = mtk_pmx_get_funcs_cnt,
802         .get_function_name      = mtk_pmx_get_func_name,
803         .get_function_groups    = mtk_pmx_get_func_groups,
804         .set_mux                = mtk_pmx_set_mux,
805         .gpio_set_direction     = mtk_pmx_gpio_set_direction,
806         .gpio_request_enable    = mtk_pmx_gpio_request_enable,
807 };
808
809 static int mtk_gpio_direction_output(struct gpio_chip *chip,
810                                         unsigned offset, int value)
811 {
812         mtk_gpio_set(chip, offset, value);
813         return pinctrl_gpio_direction_output(chip, offset);
814 }
815
816 static int mtk_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
817 {
818         unsigned int reg_addr;
819         unsigned int bit;
820         unsigned int read_val = 0;
821
822         struct mtk_pinctrl *pctl = gpiochip_get_data(chip);
823
824         reg_addr =  mtk_get_port(pctl, offset) + pctl->devdata->dir_offset;
825         bit = BIT(offset & pctl->devdata->mode_mask);
826
827         if (pctl->devdata->spec_dir_set)
828                 pctl->devdata->spec_dir_set(&reg_addr, offset);
829
830         regmap_read(pctl->regmap1, reg_addr, &read_val);
831         if (read_val & bit)
832                 return GPIO_LINE_DIRECTION_OUT;
833
834         return GPIO_LINE_DIRECTION_IN;
835 }
836
837 static int mtk_gpio_get(struct gpio_chip *chip, unsigned offset)
838 {
839         unsigned int reg_addr;
840         unsigned int bit;
841         unsigned int read_val = 0;
842         struct mtk_pinctrl *pctl = gpiochip_get_data(chip);
843
844         reg_addr = mtk_get_port(pctl, offset) +
845                 pctl->devdata->din_offset;
846
847         bit = BIT(offset & pctl->devdata->mode_mask);
848         regmap_read(pctl->regmap1, reg_addr, &read_val);
849         return !!(read_val & bit);
850 }
851
852 static int mtk_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
853 {
854         struct mtk_pinctrl *pctl = gpiochip_get_data(chip);
855         const struct mtk_desc_pin *pin;
856         unsigned long eint_n;
857
858         pin = pctl->devdata->pins + offset;
859         if (pin->eint.eintnum == NO_EINT_SUPPORT)
860                 return -EINVAL;
861
862         eint_n = pin->eint.eintnum;
863
864         return mtk_eint_find_irq(pctl->eint, eint_n);
865 }
866
867 static int mtk_gpio_set_config(struct gpio_chip *chip, unsigned offset,
868                                unsigned long config)
869 {
870         struct mtk_pinctrl *pctl = gpiochip_get_data(chip);
871         const struct mtk_desc_pin *pin;
872         unsigned long eint_n;
873         u32 debounce;
874
875         if (pinconf_to_config_param(config) != PIN_CONFIG_INPUT_DEBOUNCE)
876                 return -ENOTSUPP;
877
878         pin = pctl->devdata->pins + offset;
879         if (pin->eint.eintnum == NO_EINT_SUPPORT)
880                 return -EINVAL;
881
882         debounce = pinconf_to_config_argument(config);
883         eint_n = pin->eint.eintnum;
884
885         return mtk_eint_set_debounce(pctl->eint, eint_n, debounce);
886 }
887
888 static const struct gpio_chip mtk_gpio_chip = {
889         .owner                  = THIS_MODULE,
890         .request                = gpiochip_generic_request,
891         .free                   = gpiochip_generic_free,
892         .get_direction          = mtk_gpio_get_direction,
893         .direction_input        = pinctrl_gpio_direction_input,
894         .direction_output       = mtk_gpio_direction_output,
895         .get                    = mtk_gpio_get,
896         .set                    = mtk_gpio_set,
897         .to_irq                 = mtk_gpio_to_irq,
898         .set_config             = mtk_gpio_set_config,
899 };
900
901 static int mtk_eint_suspend(struct device *device)
902 {
903         struct mtk_pinctrl *pctl = dev_get_drvdata(device);
904
905         return mtk_eint_do_suspend(pctl->eint);
906 }
907
908 static int mtk_eint_resume(struct device *device)
909 {
910         struct mtk_pinctrl *pctl = dev_get_drvdata(device);
911
912         return mtk_eint_do_resume(pctl->eint);
913 }
914
915 EXPORT_GPL_DEV_SLEEP_PM_OPS(mtk_eint_pm_ops) = {
916         NOIRQ_SYSTEM_SLEEP_PM_OPS(mtk_eint_suspend, mtk_eint_resume)
917 };
918
919 static int mtk_pctrl_build_state(struct platform_device *pdev)
920 {
921         struct mtk_pinctrl *pctl = platform_get_drvdata(pdev);
922         int i;
923
924         pctl->ngroups = pctl->devdata->npins;
925
926         /* Allocate groups */
927         pctl->groups = devm_kcalloc(&pdev->dev, pctl->ngroups,
928                                     sizeof(*pctl->groups), GFP_KERNEL);
929         if (!pctl->groups)
930                 return -ENOMEM;
931
932         /* We assume that one pin is one group, use pin name as group name. */
933         pctl->grp_names = devm_kcalloc(&pdev->dev, pctl->ngroups,
934                                        sizeof(*pctl->grp_names), GFP_KERNEL);
935         if (!pctl->grp_names)
936                 return -ENOMEM;
937
938         for (i = 0; i < pctl->devdata->npins; i++) {
939                 const struct mtk_desc_pin *pin = pctl->devdata->pins + i;
940                 struct mtk_pinctrl_group *group = pctl->groups + i;
941
942                 group->name = pin->pin.name;
943                 group->pin = pin->pin.number;
944
945                 pctl->grp_names[i] = pin->pin.name;
946         }
947
948         return 0;
949 }
950
951 static int
952 mtk_xt_get_gpio_n(void *data, unsigned long eint_n, unsigned int *gpio_n,
953                   struct gpio_chip **gpio_chip)
954 {
955         struct mtk_pinctrl *pctl = (struct mtk_pinctrl *)data;
956         const struct mtk_desc_pin *pin;
957
958         pin = mtk_find_pin_by_eint_num(pctl, eint_n);
959         if (!pin)
960                 return -EINVAL;
961
962         *gpio_chip = pctl->chip;
963         *gpio_n = pin->pin.number;
964
965         return 0;
966 }
967
968 static int mtk_xt_get_gpio_state(void *data, unsigned long eint_n)
969 {
970         struct mtk_pinctrl *pctl = (struct mtk_pinctrl *)data;
971         const struct mtk_desc_pin *pin;
972
973         pin = mtk_find_pin_by_eint_num(pctl, eint_n);
974         if (!pin)
975                 return -EINVAL;
976
977         return mtk_gpio_get(pctl->chip, pin->pin.number);
978 }
979
980 static int mtk_xt_set_gpio_as_eint(void *data, unsigned long eint_n)
981 {
982         struct mtk_pinctrl *pctl = (struct mtk_pinctrl *)data;
983         const struct mtk_desc_pin *pin;
984
985         pin = mtk_find_pin_by_eint_num(pctl, eint_n);
986         if (!pin)
987                 return -EINVAL;
988
989         /* set mux to INT mode */
990         mtk_pmx_set_mode(pctl->pctl_dev, pin->pin.number, pin->eint.eintmux);
991         /* set gpio direction to input */
992         mtk_pmx_gpio_set_direction(pctl->pctl_dev, NULL, pin->pin.number,
993                                    true);
994         /* set input-enable */
995         mtk_pconf_set_ies_smt(pctl, pin->pin.number, 1,
996                               PIN_CONFIG_INPUT_ENABLE);
997
998         return 0;
999 }
1000
1001 static const struct mtk_eint_xt mtk_eint_xt = {
1002         .get_gpio_n = mtk_xt_get_gpio_n,
1003         .get_gpio_state = mtk_xt_get_gpio_state,
1004         .set_gpio_as_eint = mtk_xt_set_gpio_as_eint,
1005 };
1006
1007 static int mtk_eint_init(struct mtk_pinctrl *pctl, struct platform_device *pdev)
1008 {
1009         struct device_node *np = pdev->dev.of_node;
1010
1011         if (!of_property_read_bool(np, "interrupt-controller"))
1012                 return -ENODEV;
1013
1014         pctl->eint = devm_kzalloc(pctl->dev, sizeof(*pctl->eint), GFP_KERNEL);
1015         if (!pctl->eint)
1016                 return -ENOMEM;
1017
1018         pctl->eint->base = devm_platform_ioremap_resource(pdev, 0);
1019         if (IS_ERR(pctl->eint->base))
1020                 return PTR_ERR(pctl->eint->base);
1021
1022         pctl->eint->irq = irq_of_parse_and_map(np, 0);
1023         if (!pctl->eint->irq)
1024                 return -EINVAL;
1025
1026         pctl->eint->dev = &pdev->dev;
1027         /*
1028          * If pctl->eint->regs == NULL, it would fall back into using a generic
1029          * register map in mtk_eint_do_init calls.
1030          */
1031         pctl->eint->regs = pctl->devdata->eint_regs;
1032         pctl->eint->hw = &pctl->devdata->eint_hw;
1033         pctl->eint->pctl = pctl;
1034         pctl->eint->gpio_xlate = &mtk_eint_xt;
1035
1036         return mtk_eint_do_init(pctl->eint);
1037 }
1038
1039 /* This is used as a common probe function */
1040 int mtk_pctrl_init(struct platform_device *pdev,
1041                 const struct mtk_pinctrl_devdata *data,
1042                 struct regmap *regmap)
1043 {
1044         struct device *dev = &pdev->dev;
1045         struct pinctrl_pin_desc *pins;
1046         struct mtk_pinctrl *pctl;
1047         struct device_node *np = pdev->dev.of_node, *node;
1048         int ret, i;
1049
1050         pctl = devm_kzalloc(&pdev->dev, sizeof(*pctl), GFP_KERNEL);
1051         if (!pctl)
1052                 return -ENOMEM;
1053
1054         platform_set_drvdata(pdev, pctl);
1055
1056         node = of_parse_phandle(np, "mediatek,pctl-regmap", 0);
1057         if (node) {
1058                 pctl->regmap1 = syscon_node_to_regmap(node);
1059                 of_node_put(node);
1060                 if (IS_ERR(pctl->regmap1))
1061                         return PTR_ERR(pctl->regmap1);
1062         } else if (regmap) {
1063                 pctl->regmap1  = regmap;
1064         } else {
1065                 return dev_err_probe(dev, -EINVAL, "Cannot find pinctrl regmap.\n");
1066         }
1067
1068         /* Only 8135 has two base addr, other SoCs have only one. */
1069         node = of_parse_phandle(np, "mediatek,pctl-regmap", 1);
1070         if (node) {
1071                 pctl->regmap2 = syscon_node_to_regmap(node);
1072                 of_node_put(node);
1073                 if (IS_ERR(pctl->regmap2))
1074                         return PTR_ERR(pctl->regmap2);
1075         }
1076
1077         pctl->devdata = data;
1078         ret = mtk_pctrl_build_state(pdev);
1079         if (ret)
1080                 return dev_err_probe(dev, ret, "build state failed\n");
1081
1082         pins = devm_kcalloc(&pdev->dev, pctl->devdata->npins, sizeof(*pins),
1083                             GFP_KERNEL);
1084         if (!pins)
1085                 return -ENOMEM;
1086
1087         for (i = 0; i < pctl->devdata->npins; i++)
1088                 pins[i] = pctl->devdata->pins[i].pin;
1089
1090         pctl->pctl_desc.name = dev_name(&pdev->dev);
1091         pctl->pctl_desc.owner = THIS_MODULE;
1092         pctl->pctl_desc.pins = pins;
1093         pctl->pctl_desc.npins = pctl->devdata->npins;
1094         pctl->pctl_desc.confops = &mtk_pconf_ops;
1095         pctl->pctl_desc.pctlops = &mtk_pctrl_ops;
1096         pctl->pctl_desc.pmxops = &mtk_pmx_ops;
1097         pctl->dev = &pdev->dev;
1098
1099         pctl->pctl_dev = devm_pinctrl_register(&pdev->dev, &pctl->pctl_desc,
1100                                                pctl);
1101         if (IS_ERR(pctl->pctl_dev))
1102                 return dev_err_probe(dev, PTR_ERR(pctl->pctl_dev),
1103                                      "Couldn't register pinctrl driver\n");
1104
1105         pctl->chip = devm_kzalloc(&pdev->dev, sizeof(*pctl->chip), GFP_KERNEL);
1106         if (!pctl->chip)
1107                 return -ENOMEM;
1108
1109         *pctl->chip = mtk_gpio_chip;
1110         pctl->chip->ngpio = pctl->devdata->npins;
1111         pctl->chip->label = dev_name(&pdev->dev);
1112         pctl->chip->parent = &pdev->dev;
1113         pctl->chip->base = -1;
1114
1115         ret = gpiochip_add_data(pctl->chip, pctl);
1116         if (ret)
1117                 return -EINVAL;
1118
1119         /* Register the GPIO to pin mappings. */
1120         ret = gpiochip_add_pin_range(pctl->chip, dev_name(&pdev->dev),
1121                         0, 0, pctl->devdata->npins);
1122         if (ret) {
1123                 ret = -EINVAL;
1124                 goto chip_error;
1125         }
1126
1127         ret = mtk_eint_init(pctl, pdev);
1128         if (ret)
1129                 goto chip_error;
1130
1131         return 0;
1132
1133 chip_error:
1134         gpiochip_remove(pctl->chip);
1135         return ret;
1136 }
1137
1138 int mtk_pctrl_common_probe(struct platform_device *pdev)
1139 {
1140         struct device *dev = &pdev->dev;
1141         const struct mtk_pinctrl_devdata *data = device_get_match_data(dev);
1142
1143         if (!data)
1144                 return -ENODEV;
1145
1146         return mtk_pctrl_init(pdev, data, NULL);
1147 }
This page took 0.101523 seconds and 4 git commands to generate.