1 // SPDX-License-Identifier: GPL-2.0
3 * Pin Control driver for SuperH Pin Function Controller.
5 * Authors: Magnus Damm, Paul Mundt, Laurent Pinchart
7 * Copyright (C) 2008 Magnus Damm
8 * Copyright (C) 2009 - 2012 Paul Mundt
9 * Copyright (C) 2017 Marek Vasut
12 #define DRV_NAME "sh-pfc"
17 #include <dm/pinctrl.h>
19 #include <linux/sizes.h>
37 struct sh_pfc_pin_config {
41 struct sh_pfc_pinctrl {
44 struct sh_pfc_pin_config *configs;
46 const char *func_prop_name;
47 const char *groups_prop_name;
48 const char *pins_prop_name;
51 struct sh_pfc_pin_range {
56 struct sh_pfc_pinctrl_priv {
58 struct sh_pfc_pinctrl pmx;
61 int sh_pfc_get_pin_index(struct sh_pfc *pfc, unsigned int pin)
66 for (i = 0, offset = 0; i < pfc->nr_ranges; ++i) {
67 const struct sh_pfc_pin_range *range = &pfc->ranges[i];
69 if (pin <= range->end)
70 return pin >= range->start
71 ? offset + pin - range->start : -1;
73 offset += range->end - range->start + 1;
79 static int sh_pfc_enum_in_range(u16 enum_id, const struct pinmux_range *r)
81 if (enum_id < r->begin)
90 u32 sh_pfc_read_raw_reg(void __iomem *mapped_reg, unsigned int reg_width)
94 return readb(mapped_reg);
96 return readw(mapped_reg);
98 return readl(mapped_reg);
105 void sh_pfc_write_raw_reg(void __iomem *mapped_reg, unsigned int reg_width,
110 writeb(data, mapped_reg);
113 writew(data, mapped_reg);
116 writel(data, mapped_reg);
123 u32 sh_pfc_read(struct sh_pfc *pfc, u32 reg)
125 return sh_pfc_read_raw_reg((void __iomem *)(uintptr_t)reg, 32);
128 void sh_pfc_write(struct sh_pfc *pfc, u32 reg, u32 data)
130 void __iomem *unlock_reg =
131 (void __iomem *)(uintptr_t)pfc->info->unlock_reg;
133 if (pfc->info->unlock_reg)
134 sh_pfc_write_raw_reg(unlock_reg, 32, ~data);
136 sh_pfc_write_raw_reg((void __iomem *)(uintptr_t)reg, 32, data);
139 static void sh_pfc_config_reg_helper(struct sh_pfc *pfc,
140 const struct pinmux_cfg_reg *crp,
142 void __iomem **mapped_regp, u32 *maskp,
147 *mapped_regp = (void __iomem *)(uintptr_t)crp->reg;
149 if (crp->field_width) {
150 *maskp = (1 << crp->field_width) - 1;
151 *posp = crp->reg_width - ((in_pos + 1) * crp->field_width);
153 *maskp = (1 << crp->var_field_width[in_pos]) - 1;
154 *posp = crp->reg_width;
155 for (k = 0; k <= in_pos; k++)
156 *posp -= crp->var_field_width[k];
160 static void sh_pfc_write_config_reg(struct sh_pfc *pfc,
161 const struct pinmux_cfg_reg *crp,
162 unsigned int field, u32 value)
164 void __iomem *mapped_reg;
165 void __iomem *unlock_reg =
166 (void __iomem *)(uintptr_t)pfc->info->unlock_reg;
170 sh_pfc_config_reg_helper(pfc, crp, field, &mapped_reg, &mask, &pos);
172 dev_dbg(pfc->dev, "write_reg addr = %x, value = 0x%x, field = %u, "
173 "r_width = %u, f_width = %u\n",
174 crp->reg, value, field, crp->reg_width, crp->field_width);
176 mask = ~(mask << pos);
177 value = value << pos;
179 data = sh_pfc_read_raw_reg(mapped_reg, crp->reg_width);
183 if (pfc->info->unlock_reg)
184 sh_pfc_write_raw_reg(unlock_reg, 32, ~data);
186 sh_pfc_write_raw_reg(mapped_reg, crp->reg_width, data);
189 static int sh_pfc_get_config_reg(struct sh_pfc *pfc, u16 enum_id,
190 const struct pinmux_cfg_reg **crp,
191 unsigned int *fieldp, u32 *valuep)
196 const struct pinmux_cfg_reg *config_reg =
197 pfc->info->cfg_regs + k;
198 unsigned int r_width = config_reg->reg_width;
199 unsigned int f_width = config_reg->field_width;
200 unsigned int curr_width;
201 unsigned int bit_pos;
202 unsigned int pos = 0;
208 for (bit_pos = 0; bit_pos < r_width; bit_pos += curr_width) {
213 curr_width = f_width;
215 curr_width = config_reg->var_field_width[m];
217 ncomb = 1 << curr_width;
218 for (n = 0; n < ncomb; n++) {
219 if (config_reg->enum_ids[pos + n] == enum_id) {
235 static int sh_pfc_mark_to_enum(struct sh_pfc *pfc, u16 mark, int pos,
238 const u16 *data = pfc->info->pinmux_data;
242 *enum_idp = data[pos + 1];
246 for (k = 0; k < pfc->info->pinmux_data_size; k++) {
247 if (data[k] == mark) {
248 *enum_idp = data[k + 1];
253 dev_err(pfc->dev, "cannot locate data/mark enum_id for mark %d\n",
258 int sh_pfc_config_mux(struct sh_pfc *pfc, unsigned mark, int pinmux_type)
260 const struct pinmux_range *range;
263 switch (pinmux_type) {
264 case PINMUX_TYPE_GPIO:
265 case PINMUX_TYPE_FUNCTION:
269 case PINMUX_TYPE_OUTPUT:
270 range = &pfc->info->output;
273 case PINMUX_TYPE_INPUT:
274 range = &pfc->info->input;
281 /* Iterate over all the configuration fields we need to update. */
283 const struct pinmux_cfg_reg *cr;
290 pos = sh_pfc_mark_to_enum(pfc, mark, pos, &enum_id);
297 /* Check if the configuration field selects a function. If it
298 * doesn't, skip the field if it's not applicable to the
299 * requested pinmux type.
301 in_range = sh_pfc_enum_in_range(enum_id, &pfc->info->function);
303 if (pinmux_type == PINMUX_TYPE_FUNCTION) {
304 /* Functions are allowed to modify all
308 } else if (pinmux_type != PINMUX_TYPE_GPIO) {
309 /* Input/output types can only modify fields
310 * that correspond to their respective ranges.
312 in_range = sh_pfc_enum_in_range(enum_id, range);
315 * special case pass through for fixed
316 * input-only or output-only pins without
317 * function enum register association.
319 if (in_range && enum_id == range->force)
322 /* GPIOs are only allowed to modify function fields. */
328 ret = sh_pfc_get_config_reg(pfc, enum_id, &cr, &field, &value);
332 sh_pfc_write_config_reg(pfc, cr, field, value);
338 const struct pinmux_bias_reg *
339 sh_pfc_pin_to_bias_reg(const struct sh_pfc *pfc, unsigned int pin,
344 for (i = 0; pfc->info->bias_regs[i].puen; i++) {
345 for (j = 0; j < ARRAY_SIZE(pfc->info->bias_regs[i].pins); j++) {
346 if (pfc->info->bias_regs[i].pins[j] == pin) {
348 return &pfc->info->bias_regs[i];
353 WARN_ONCE(1, "Pin %u is not in bias info list\n", pin);
358 static int sh_pfc_init_ranges(struct sh_pfc *pfc)
360 struct sh_pfc_pin_range *range;
361 unsigned int nr_ranges;
364 if (pfc->info->pins[0].pin == (u16)-1) {
365 /* Pin number -1 denotes that the SoC doesn't report pin numbers
366 * in its pin arrays yet. Consider the pin numbers range as
367 * continuous and allocate a single range.
370 pfc->ranges = kzalloc(sizeof(*pfc->ranges), GFP_KERNEL);
371 if (pfc->ranges == NULL)
374 pfc->ranges->start = 0;
375 pfc->ranges->end = pfc->info->nr_pins - 1;
376 pfc->nr_gpio_pins = pfc->info->nr_pins;
381 /* Count, allocate and fill the ranges. The PFC SoC data pins array must
382 * be sorted by pin numbers, and pins without a GPIO port must come
385 for (i = 1, nr_ranges = 1; i < pfc->info->nr_pins; ++i) {
386 if (pfc->info->pins[i-1].pin != pfc->info->pins[i].pin - 1)
390 pfc->nr_ranges = nr_ranges;
391 pfc->ranges = kzalloc(sizeof(*pfc->ranges) * nr_ranges, GFP_KERNEL);
392 if (pfc->ranges == NULL)
396 range->start = pfc->info->pins[0].pin;
398 for (i = 1; i < pfc->info->nr_pins; ++i) {
399 if (pfc->info->pins[i-1].pin == pfc->info->pins[i].pin - 1)
402 range->end = pfc->info->pins[i-1].pin;
403 if (!(pfc->info->pins[i-1].configs & SH_PFC_PIN_CFG_NO_GPIO))
404 pfc->nr_gpio_pins = range->end + 1;
407 range->start = pfc->info->pins[i].pin;
410 range->end = pfc->info->pins[i-1].pin;
411 if (!(pfc->info->pins[i-1].configs & SH_PFC_PIN_CFG_NO_GPIO))
412 pfc->nr_gpio_pins = range->end + 1;
417 static int sh_pfc_pinctrl_get_pins_count(struct udevice *dev)
419 struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
421 return priv->pfc.info->nr_pins;
424 static const char *sh_pfc_pinctrl_get_pin_name(struct udevice *dev,
427 struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
429 return priv->pfc.info->pins[selector].name;
432 static int sh_pfc_pinctrl_get_groups_count(struct udevice *dev)
434 struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
436 return priv->pfc.info->nr_groups;
439 static const char *sh_pfc_pinctrl_get_group_name(struct udevice *dev,
442 struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
444 return priv->pfc.info->groups[selector].name;
447 static int sh_pfc_pinctrl_get_functions_count(struct udevice *dev)
449 struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
451 return priv->pfc.info->nr_functions;
454 static const char *sh_pfc_pinctrl_get_function_name(struct udevice *dev,
457 struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
459 return priv->pfc.info->functions[selector].name;
462 static int sh_pfc_gpio_request_enable(struct udevice *dev,
463 unsigned pin_selector)
465 struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
466 struct sh_pfc_pinctrl *pmx = &priv->pmx;
467 struct sh_pfc *pfc = &priv->pfc;
468 struct sh_pfc_pin_config *cfg;
469 const struct sh_pfc_pin *pin = NULL;
472 for (i = 0; i < pfc->info->nr_pins; i++) {
473 if (priv->pfc.info->pins[i].pin != pin_selector)
476 pin = &priv->pfc.info->pins[i];
483 idx = sh_pfc_get_pin_index(pfc, pin->pin);
484 cfg = &pmx->configs[idx];
486 if (cfg->type != PINMUX_TYPE_NONE)
489 ret = sh_pfc_config_mux(pfc, pin->enum_id, PINMUX_TYPE_GPIO);
493 cfg->type = PINMUX_TYPE_GPIO;
498 static int sh_pfc_gpio_disable_free(struct udevice *dev,
499 unsigned pin_selector)
501 struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
502 struct sh_pfc_pinctrl *pmx = &priv->pmx;
503 struct sh_pfc *pfc = &priv->pfc;
504 struct sh_pfc_pin_config *cfg;
505 const struct sh_pfc_pin *pin = NULL;
508 for (i = 0; i < pfc->info->nr_pins; i++) {
509 if (priv->pfc.info->pins[i].pin != pin_selector)
512 pin = &priv->pfc.info->pins[i];
519 idx = sh_pfc_get_pin_index(pfc, pin->pin);
520 cfg = &pmx->configs[idx];
522 cfg->type = PINMUX_TYPE_NONE;
527 static int sh_pfc_pinctrl_pin_set(struct udevice *dev, unsigned pin_selector,
528 unsigned func_selector)
530 struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
531 struct sh_pfc_pinctrl *pmx = &priv->pmx;
532 struct sh_pfc *pfc = &priv->pfc;
533 const struct sh_pfc_pin *pin = &priv->pfc.info->pins[pin_selector];
534 int idx = sh_pfc_get_pin_index(pfc, pin->pin);
535 struct sh_pfc_pin_config *cfg = &pmx->configs[idx];
537 if (cfg->type != PINMUX_TYPE_NONE)
540 return sh_pfc_config_mux(pfc, pin->enum_id, PINMUX_TYPE_FUNCTION);
543 static int sh_pfc_pinctrl_group_set(struct udevice *dev, unsigned group_selector,
544 unsigned func_selector)
546 struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
547 struct sh_pfc_pinctrl *pmx = &priv->pmx;
548 struct sh_pfc *pfc = &priv->pfc;
549 const struct sh_pfc_pin_group *grp = &priv->pfc.info->groups[group_selector];
553 for (i = 0; i < grp->nr_pins; ++i) {
554 int idx = sh_pfc_get_pin_index(pfc, grp->pins[i]);
555 struct sh_pfc_pin_config *cfg = &pmx->configs[idx];
557 if (cfg->type != PINMUX_TYPE_NONE) {
563 for (i = 0; i < grp->nr_pins; ++i) {
564 ret = sh_pfc_config_mux(pfc, grp->mux[i], PINMUX_TYPE_FUNCTION);
572 #if CONFIG_IS_ENABLED(PINCONF)
573 static const struct pinconf_param sh_pfc_pinconf_params[] = {
574 { "bias-disable", PIN_CONFIG_BIAS_DISABLE, 0 },
575 { "bias-pull-up", PIN_CONFIG_BIAS_PULL_UP, 1 },
576 { "bias-pull-down", PIN_CONFIG_BIAS_PULL_DOWN, 1 },
577 { "drive-strength", PIN_CONFIG_DRIVE_STRENGTH, 0 },
578 { "power-source", PIN_CONFIG_POWER_SOURCE, 3300 },
581 static void __iomem *
582 sh_pfc_pinconf_find_drive_strength_reg(struct sh_pfc *pfc, unsigned int pin,
583 unsigned int *offset, unsigned int *size)
585 const struct pinmux_drive_reg_field *field;
586 const struct pinmux_drive_reg *reg;
589 for (reg = pfc->info->drive_regs; reg->reg; ++reg) {
590 for (i = 0; i < ARRAY_SIZE(reg->fields); ++i) {
591 field = ®->fields[i];
593 if (field->size && field->pin == pin) {
594 *offset = field->offset;
597 return (void __iomem *)(uintptr_t)reg->reg;
605 static int sh_pfc_pinconf_set_drive_strength(struct sh_pfc *pfc,
606 unsigned int pin, u16 strength)
612 void __iomem *unlock_reg =
613 (void __iomem *)(uintptr_t)pfc->info->unlock_reg;
616 reg = sh_pfc_pinconf_find_drive_strength_reg(pfc, pin, &offset, &size);
620 step = size == 2 ? 6 : 3;
622 if (strength < step || strength > 24)
625 /* Convert the value from mA based on a full drive strength value of
626 * 24mA. We can make the full value configurable later if needed.
628 strength = strength / step - 1;
630 val = sh_pfc_read_raw_reg(reg, 32);
631 val &= ~GENMASK(offset + 4 - 1, offset);
632 val |= strength << offset;
635 sh_pfc_write_raw_reg(unlock_reg, 32, ~val);
637 sh_pfc_write_raw_reg(reg, 32, val);
642 /* Check whether the requested parameter is supported for a pin. */
643 static bool sh_pfc_pinconf_validate(struct sh_pfc *pfc, unsigned int _pin,
646 int idx = sh_pfc_get_pin_index(pfc, _pin);
647 const struct sh_pfc_pin *pin = &pfc->info->pins[idx];
650 case PIN_CONFIG_BIAS_DISABLE:
651 return pin->configs &
652 (SH_PFC_PIN_CFG_PULL_UP | SH_PFC_PIN_CFG_PULL_DOWN);
654 case PIN_CONFIG_BIAS_PULL_UP:
655 return pin->configs & SH_PFC_PIN_CFG_PULL_UP;
657 case PIN_CONFIG_BIAS_PULL_DOWN:
658 return pin->configs & SH_PFC_PIN_CFG_PULL_DOWN;
660 case PIN_CONFIG_DRIVE_STRENGTH:
661 return pin->configs & SH_PFC_PIN_CFG_DRIVE_STRENGTH;
663 case PIN_CONFIG_POWER_SOURCE:
664 return pin->configs & SH_PFC_PIN_CFG_IO_VOLTAGE;
671 static int sh_pfc_pinconf_set(struct sh_pfc_pinctrl *pmx, unsigned _pin,
672 unsigned int param, unsigned int arg)
674 struct sh_pfc *pfc = pmx->pfc;
675 void __iomem *pocctrl;
676 void __iomem *unlock_reg =
677 (void __iomem *)(uintptr_t)pfc->info->unlock_reg;
681 if (!sh_pfc_pinconf_validate(pfc, _pin, param))
685 case PIN_CONFIG_BIAS_PULL_UP:
686 case PIN_CONFIG_BIAS_PULL_DOWN:
687 case PIN_CONFIG_BIAS_DISABLE:
688 if (!pfc->info->ops || !pfc->info->ops->set_bias)
691 pfc->info->ops->set_bias(pfc, _pin, param);
695 case PIN_CONFIG_DRIVE_STRENGTH:
696 ret = sh_pfc_pinconf_set_drive_strength(pfc, _pin, arg);
702 case PIN_CONFIG_POWER_SOURCE:
703 if (!pfc->info->ops || !pfc->info->ops->pin_to_pocctrl)
706 bit = pfc->info->ops->pin_to_pocctrl(pfc, _pin, &addr);
708 printf("invalid pin %#x", _pin);
712 if (arg != 1800 && arg != 3300)
715 pocctrl = (void __iomem *)(uintptr_t)addr;
717 val = sh_pfc_read_raw_reg(pocctrl, 32);
724 sh_pfc_write_raw_reg(unlock_reg, 32, ~val);
726 sh_pfc_write_raw_reg(pocctrl, 32, val);
737 static int sh_pfc_pinconf_pin_set(struct udevice *dev,
738 unsigned int pin_selector,
739 unsigned int param, unsigned int arg)
741 struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
742 struct sh_pfc_pinctrl *pmx = &priv->pmx;
743 struct sh_pfc *pfc = &priv->pfc;
744 const struct sh_pfc_pin *pin = &pfc->info->pins[pin_selector];
746 sh_pfc_pinconf_set(pmx, pin->pin, param, arg);
751 static int sh_pfc_pinconf_group_set(struct udevice *dev,
752 unsigned int group_selector,
753 unsigned int param, unsigned int arg)
755 struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
756 struct sh_pfc_pinctrl *pmx = &priv->pmx;
757 struct sh_pfc *pfc = &priv->pfc;
758 const struct sh_pfc_pin_group *grp = &pfc->info->groups[group_selector];
761 for (i = 0; i < grp->nr_pins; i++)
762 sh_pfc_pinconf_set(pmx, grp->pins[i], param, arg);
768 static struct pinctrl_ops sh_pfc_pinctrl_ops = {
769 .get_pins_count = sh_pfc_pinctrl_get_pins_count,
770 .get_pin_name = sh_pfc_pinctrl_get_pin_name,
771 .get_groups_count = sh_pfc_pinctrl_get_groups_count,
772 .get_group_name = sh_pfc_pinctrl_get_group_name,
773 .get_functions_count = sh_pfc_pinctrl_get_functions_count,
774 .get_function_name = sh_pfc_pinctrl_get_function_name,
776 #if CONFIG_IS_ENABLED(PINCONF)
777 .pinconf_num_params = ARRAY_SIZE(sh_pfc_pinconf_params),
778 .pinconf_params = sh_pfc_pinconf_params,
779 .pinconf_set = sh_pfc_pinconf_pin_set,
780 .pinconf_group_set = sh_pfc_pinconf_group_set,
782 .pinmux_set = sh_pfc_pinctrl_pin_set,
783 .pinmux_group_set = sh_pfc_pinctrl_group_set,
784 .set_state = pinctrl_generic_set_state,
786 .gpio_request_enable = sh_pfc_gpio_request_enable,
787 .gpio_disable_free = sh_pfc_gpio_disable_free,
790 static int sh_pfc_map_pins(struct sh_pfc *pfc, struct sh_pfc_pinctrl *pmx)
794 /* Allocate and initialize the pins and configs arrays. */
795 pmx->configs = kzalloc(sizeof(*pmx->configs) * pfc->info->nr_pins,
797 if (unlikely(!pmx->configs))
800 for (i = 0; i < pfc->info->nr_pins; ++i) {
801 struct sh_pfc_pin_config *cfg = &pmx->configs[i];
802 cfg->type = PINMUX_TYPE_NONE;
809 static int sh_pfc_pinctrl_probe(struct udevice *dev)
811 struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
812 enum sh_pfc_model model = dev_get_driver_data(dev);
815 base = devfdt_get_addr(dev);
816 if (base == FDT_ADDR_T_NONE)
819 priv->pfc.regs = devm_ioremap(dev, base, SZ_2K);
823 #ifdef CONFIG_PINCTRL_PFC_R8A7790
824 if (model == SH_PFC_R8A7790)
825 priv->pfc.info = &r8a7790_pinmux_info;
827 #ifdef CONFIG_PINCTRL_PFC_R8A7791
828 if (model == SH_PFC_R8A7791)
829 priv->pfc.info = &r8a7791_pinmux_info;
831 #ifdef CONFIG_PINCTRL_PFC_R8A7792
832 if (model == SH_PFC_R8A7792)
833 priv->pfc.info = &r8a7792_pinmux_info;
835 #ifdef CONFIG_PINCTRL_PFC_R8A7793
836 if (model == SH_PFC_R8A7793)
837 priv->pfc.info = &r8a7793_pinmux_info;
839 #ifdef CONFIG_PINCTRL_PFC_R8A7794
840 if (model == SH_PFC_R8A7794)
841 priv->pfc.info = &r8a7794_pinmux_info;
843 #ifdef CONFIG_PINCTRL_PFC_R8A7795
844 if (model == SH_PFC_R8A7795)
845 priv->pfc.info = &r8a7795_pinmux_info;
847 #ifdef CONFIG_PINCTRL_PFC_R8A7796
848 if (model == SH_PFC_R8A7796)
849 priv->pfc.info = &r8a7796_pinmux_info;
851 #ifdef CONFIG_PINCTRL_PFC_R8A77965
852 if (model == SH_PFC_R8A77965)
853 priv->pfc.info = &r8a77965_pinmux_info;
855 #ifdef CONFIG_PINCTRL_PFC_R8A77970
856 if (model == SH_PFC_R8A77970)
857 priv->pfc.info = &r8a77970_pinmux_info;
859 #ifdef CONFIG_PINCTRL_PFC_R8A77990
860 if (model == SH_PFC_R8A77990)
861 priv->pfc.info = &r8a77990_pinmux_info;
863 #ifdef CONFIG_PINCTRL_PFC_R8A77995
864 if (model == SH_PFC_R8A77995)
865 priv->pfc.info = &r8a77995_pinmux_info;
868 priv->pmx.pfc = &priv->pfc;
869 sh_pfc_init_ranges(&priv->pfc);
870 sh_pfc_map_pins(&priv->pfc, &priv->pmx);
875 static const struct udevice_id sh_pfc_pinctrl_ids[] = {
876 #ifdef CONFIG_PINCTRL_PFC_R8A7790
878 .compatible = "renesas,pfc-r8a7790",
879 .data = SH_PFC_R8A7790,
882 #ifdef CONFIG_PINCTRL_PFC_R8A7791
884 .compatible = "renesas,pfc-r8a7791",
885 .data = SH_PFC_R8A7791,
888 #ifdef CONFIG_PINCTRL_PFC_R8A7792
890 .compatible = "renesas,pfc-r8a7792",
891 .data = SH_PFC_R8A7792,
894 #ifdef CONFIG_PINCTRL_PFC_R8A7793
896 .compatible = "renesas,pfc-r8a7793",
897 .data = SH_PFC_R8A7793,
900 #ifdef CONFIG_PINCTRL_PFC_R8A7794
902 .compatible = "renesas,pfc-r8a7794",
903 .data = SH_PFC_R8A7794,
906 #ifdef CONFIG_PINCTRL_PFC_R8A7795
908 .compatible = "renesas,pfc-r8a7795",
909 .data = SH_PFC_R8A7795,
912 #ifdef CONFIG_PINCTRL_PFC_R8A7796
914 .compatible = "renesas,pfc-r8a7796",
915 .data = SH_PFC_R8A7796,
918 #ifdef CONFIG_PINCTRL_PFC_R8A77965
920 .compatible = "renesas,pfc-r8a77965",
921 .data = SH_PFC_R8A77965,
924 #ifdef CONFIG_PINCTRL_PFC_R8A77970
926 .compatible = "renesas,pfc-r8a77970",
927 .data = SH_PFC_R8A77970,
930 #ifdef CONFIG_PINCTRL_PFC_R8A77990
932 .compatible = "renesas,pfc-r8a77990",
933 .data = SH_PFC_R8A77990,
936 #ifdef CONFIG_PINCTRL_PFC_R8A77995
938 .compatible = "renesas,pfc-r8a77995",
939 .data = SH_PFC_R8A77995,
945 U_BOOT_DRIVER(pinctrl_sh_pfc) = {
946 .name = "sh_pfc_pinctrl",
947 .id = UCLASS_PINCTRL,
948 .of_match = sh_pfc_pinctrl_ids,
949 .priv_auto_alloc_size = sizeof(struct sh_pfc_pinctrl_priv),
950 .ops = &sh_pfc_pinctrl_ops,
951 .probe = sh_pfc_pinctrl_probe,