1 // SPDX-License-Identifier: GPL-2.0
3 * Pin Control and GPIO 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
11 #define DRV_NAME "sh-pfc"
13 #include <linux/bitops.h>
14 #include <linux/err.h>
15 #include <linux/errno.h>
17 #include <linux/ioport.h>
18 #include <linux/kernel.h>
19 #include <linux/init.h>
21 #include <linux/of_device.h>
22 #include <linux/pinctrl/machine.h>
23 #include <linux/platform_device.h>
24 #include <linux/psci.h>
25 #include <linux/slab.h>
26 #include <linux/sys_soc.h>
30 static int sh_pfc_map_resources(struct sh_pfc
*pfc
,
31 struct platform_device
*pdev
)
33 struct sh_pfc_window
*windows
;
34 unsigned int *irqs
= NULL
;
35 unsigned int num_windows
;
40 /* Count the MEM and IRQ resources. */
41 for (num_windows
= 0;; num_windows
++) {
42 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, num_windows
);
49 num_irqs
= platform_irq_count(pdev
);
53 /* Allocate memory windows and IRQs arrays. */
54 windows
= devm_kcalloc(pfc
->dev
, num_windows
, sizeof(*windows
),
59 pfc
->num_windows
= num_windows
;
60 pfc
->windows
= windows
;
63 irqs
= devm_kcalloc(pfc
->dev
, num_irqs
, sizeof(*irqs
),
68 pfc
->num_irqs
= num_irqs
;
73 for (i
= 0; i
< num_windows
; i
++) {
74 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, i
);
75 windows
->phys
= res
->start
;
76 windows
->size
= resource_size(res
);
77 windows
->virt
= devm_ioremap_resource(pfc
->dev
, res
);
78 if (IS_ERR(windows
->virt
))
82 for (i
= 0; i
< num_irqs
; i
++)
83 *irqs
++ = platform_get_irq(pdev
, i
);
88 static void __iomem
*sh_pfc_phys_to_virt(struct sh_pfc
*pfc
, u32 reg
)
90 struct sh_pfc_window
*window
;
91 phys_addr_t address
= reg
;
94 /* scan through physical windows and convert address */
95 for (i
= 0; i
< pfc
->num_windows
; i
++) {
96 window
= pfc
->windows
+ i
;
98 if (address
< window
->phys
)
101 if (address
>= (window
->phys
+ window
->size
))
104 return window
->virt
+ (address
- window
->phys
);
111 int sh_pfc_get_pin_index(struct sh_pfc
*pfc
, unsigned int pin
)
116 for (i
= 0, offset
= 0; i
< pfc
->nr_ranges
; ++i
) {
117 const struct sh_pfc_pin_range
*range
= &pfc
->ranges
[i
];
119 if (pin
<= range
->end
)
120 return pin
>= range
->start
121 ? offset
+ pin
- range
->start
: -1;
123 offset
+= range
->end
- range
->start
+ 1;
129 static int sh_pfc_enum_in_range(u16 enum_id
, const struct pinmux_range
*r
)
131 if (enum_id
< r
->begin
)
134 if (enum_id
> r
->end
)
140 u32
sh_pfc_read_raw_reg(void __iomem
*mapped_reg
, unsigned int reg_width
)
144 return ioread8(mapped_reg
);
146 return ioread16(mapped_reg
);
148 return ioread32(mapped_reg
);
155 void sh_pfc_write_raw_reg(void __iomem
*mapped_reg
, unsigned int reg_width
,
160 iowrite8(data
, mapped_reg
);
163 iowrite16(data
, mapped_reg
);
166 iowrite32(data
, mapped_reg
);
173 u32
sh_pfc_read(struct sh_pfc
*pfc
, u32 reg
)
175 return sh_pfc_read_raw_reg(sh_pfc_phys_to_virt(pfc
, reg
), 32);
178 void sh_pfc_write(struct sh_pfc
*pfc
, u32 reg
, u32 data
)
180 if (pfc
->info
->unlock_reg
)
181 sh_pfc_write_raw_reg(
182 sh_pfc_phys_to_virt(pfc
, pfc
->info
->unlock_reg
), 32,
185 sh_pfc_write_raw_reg(sh_pfc_phys_to_virt(pfc
, reg
), 32, data
);
188 static void sh_pfc_config_reg_helper(struct sh_pfc
*pfc
,
189 const struct pinmux_cfg_reg
*crp
,
191 void __iomem
**mapped_regp
, u32
*maskp
,
196 *mapped_regp
= sh_pfc_phys_to_virt(pfc
, crp
->reg
);
198 if (crp
->field_width
) {
199 *maskp
= (1 << crp
->field_width
) - 1;
200 *posp
= crp
->reg_width
- ((in_pos
+ 1) * crp
->field_width
);
202 *maskp
= (1 << crp
->var_field_width
[in_pos
]) - 1;
203 *posp
= crp
->reg_width
;
204 for (k
= 0; k
<= in_pos
; k
++)
205 *posp
-= crp
->var_field_width
[k
];
209 static void sh_pfc_write_config_reg(struct sh_pfc
*pfc
,
210 const struct pinmux_cfg_reg
*crp
,
211 unsigned int field
, u32 value
)
213 void __iomem
*mapped_reg
;
217 sh_pfc_config_reg_helper(pfc
, crp
, field
, &mapped_reg
, &mask
, &pos
);
219 dev_dbg(pfc
->dev
, "write_reg addr = %x, value = 0x%x, field = %u, "
220 "r_width = %u, f_width = %u\n",
221 crp
->reg
, value
, field
, crp
->reg_width
, hweight32(mask
));
223 mask
= ~(mask
<< pos
);
224 value
= value
<< pos
;
226 data
= sh_pfc_read_raw_reg(mapped_reg
, crp
->reg_width
);
230 if (pfc
->info
->unlock_reg
)
231 sh_pfc_write_raw_reg(
232 sh_pfc_phys_to_virt(pfc
, pfc
->info
->unlock_reg
), 32,
235 sh_pfc_write_raw_reg(mapped_reg
, crp
->reg_width
, data
);
238 static int sh_pfc_get_config_reg(struct sh_pfc
*pfc
, u16 enum_id
,
239 const struct pinmux_cfg_reg
**crp
,
240 unsigned int *fieldp
, u32
*valuep
)
245 const struct pinmux_cfg_reg
*config_reg
=
246 pfc
->info
->cfg_regs
+ k
;
247 unsigned int r_width
= config_reg
->reg_width
;
248 unsigned int f_width
= config_reg
->field_width
;
249 unsigned int curr_width
;
250 unsigned int bit_pos
;
251 unsigned int pos
= 0;
257 for (bit_pos
= 0; bit_pos
< r_width
; bit_pos
+= curr_width
) {
262 curr_width
= f_width
;
264 curr_width
= config_reg
->var_field_width
[m
];
266 ncomb
= 1 << curr_width
;
267 for (n
= 0; n
< ncomb
; n
++) {
268 if (config_reg
->enum_ids
[pos
+ n
] == enum_id
) {
284 static int sh_pfc_mark_to_enum(struct sh_pfc
*pfc
, u16 mark
, int pos
,
287 const u16
*data
= pfc
->info
->pinmux_data
;
291 *enum_idp
= data
[pos
+ 1];
295 for (k
= 0; k
< pfc
->info
->pinmux_data_size
; k
++) {
296 if (data
[k
] == mark
) {
297 *enum_idp
= data
[k
+ 1];
302 dev_err(pfc
->dev
, "cannot locate data/mark enum_id for mark %d\n",
307 int sh_pfc_config_mux(struct sh_pfc
*pfc
, unsigned mark
, int pinmux_type
)
309 const struct pinmux_range
*range
;
312 switch (pinmux_type
) {
313 case PINMUX_TYPE_GPIO
:
314 case PINMUX_TYPE_FUNCTION
:
318 case PINMUX_TYPE_OUTPUT
:
319 range
= &pfc
->info
->output
;
322 case PINMUX_TYPE_INPUT
:
323 range
= &pfc
->info
->input
;
330 /* Iterate over all the configuration fields we need to update. */
332 const struct pinmux_cfg_reg
*cr
;
339 pos
= sh_pfc_mark_to_enum(pfc
, mark
, pos
, &enum_id
);
346 /* Check if the configuration field selects a function. If it
347 * doesn't, skip the field if it's not applicable to the
348 * requested pinmux type.
350 in_range
= sh_pfc_enum_in_range(enum_id
, &pfc
->info
->function
);
352 if (pinmux_type
== PINMUX_TYPE_FUNCTION
) {
353 /* Functions are allowed to modify all
357 } else if (pinmux_type
!= PINMUX_TYPE_GPIO
) {
358 /* Input/output types can only modify fields
359 * that correspond to their respective ranges.
361 in_range
= sh_pfc_enum_in_range(enum_id
, range
);
364 * special case pass through for fixed
365 * input-only or output-only pins without
366 * function enum register association.
368 if (in_range
&& enum_id
== range
->force
)
371 /* GPIOs are only allowed to modify function fields. */
377 ret
= sh_pfc_get_config_reg(pfc
, enum_id
, &cr
, &field
, &value
);
381 sh_pfc_write_config_reg(pfc
, cr
, field
, value
);
387 const struct pinmux_bias_reg
*
388 sh_pfc_pin_to_bias_reg(const struct sh_pfc
*pfc
, unsigned int pin
,
393 for (i
= 0; pfc
->info
->bias_regs
[i
].puen
; i
++) {
394 for (j
= 0; j
< ARRAY_SIZE(pfc
->info
->bias_regs
[i
].pins
); j
++) {
395 if (pfc
->info
->bias_regs
[i
].pins
[j
] == pin
) {
397 return &pfc
->info
->bias_regs
[i
];
402 WARN_ONCE(1, "Pin %u is not in bias info list\n", pin
);
407 static int sh_pfc_init_ranges(struct sh_pfc
*pfc
)
409 struct sh_pfc_pin_range
*range
;
410 unsigned int nr_ranges
;
413 if (pfc
->info
->pins
[0].pin
== (u16
)-1) {
414 /* Pin number -1 denotes that the SoC doesn't report pin numbers
415 * in its pin arrays yet. Consider the pin numbers range as
416 * continuous and allocate a single range.
419 pfc
->ranges
= devm_kzalloc(pfc
->dev
, sizeof(*pfc
->ranges
),
421 if (pfc
->ranges
== NULL
)
424 pfc
->ranges
->start
= 0;
425 pfc
->ranges
->end
= pfc
->info
->nr_pins
- 1;
426 pfc
->nr_gpio_pins
= pfc
->info
->nr_pins
;
431 /* Count, allocate and fill the ranges. The PFC SoC data pins array must
432 * be sorted by pin numbers, and pins without a GPIO port must come
435 for (i
= 1, nr_ranges
= 1; i
< pfc
->info
->nr_pins
; ++i
) {
436 if (pfc
->info
->pins
[i
-1].pin
!= pfc
->info
->pins
[i
].pin
- 1)
440 pfc
->nr_ranges
= nr_ranges
;
441 pfc
->ranges
= devm_kcalloc(pfc
->dev
, nr_ranges
, sizeof(*pfc
->ranges
),
443 if (pfc
->ranges
== NULL
)
447 range
->start
= pfc
->info
->pins
[0].pin
;
449 for (i
= 1; i
< pfc
->info
->nr_pins
; ++i
) {
450 if (pfc
->info
->pins
[i
-1].pin
== pfc
->info
->pins
[i
].pin
- 1)
453 range
->end
= pfc
->info
->pins
[i
-1].pin
;
454 if (!(pfc
->info
->pins
[i
-1].configs
& SH_PFC_PIN_CFG_NO_GPIO
))
455 pfc
->nr_gpio_pins
= range
->end
+ 1;
458 range
->start
= pfc
->info
->pins
[i
].pin
;
461 range
->end
= pfc
->info
->pins
[i
-1].pin
;
462 if (!(pfc
->info
->pins
[i
-1].configs
& SH_PFC_PIN_CFG_NO_GPIO
))
463 pfc
->nr_gpio_pins
= range
->end
+ 1;
469 static const struct of_device_id sh_pfc_of_table
[] = {
470 #ifdef CONFIG_PINCTRL_PFC_EMEV2
472 .compatible
= "renesas,pfc-emev2",
473 .data
= &emev2_pinmux_info
,
476 #ifdef CONFIG_PINCTRL_PFC_R8A73A4
478 .compatible
= "renesas,pfc-r8a73a4",
479 .data
= &r8a73a4_pinmux_info
,
482 #ifdef CONFIG_PINCTRL_PFC_R8A7740
484 .compatible
= "renesas,pfc-r8a7740",
485 .data
= &r8a7740_pinmux_info
,
488 #ifdef CONFIG_PINCTRL_PFC_R8A7742
490 .compatible
= "renesas,pfc-r8a7742",
491 .data
= &r8a7742_pinmux_info
,
494 #ifdef CONFIG_PINCTRL_PFC_R8A7743
496 .compatible
= "renesas,pfc-r8a7743",
497 .data
= &r8a7743_pinmux_info
,
500 #ifdef CONFIG_PINCTRL_PFC_R8A7744
502 .compatible
= "renesas,pfc-r8a7744",
503 .data
= &r8a7744_pinmux_info
,
506 #ifdef CONFIG_PINCTRL_PFC_R8A7745
508 .compatible
= "renesas,pfc-r8a7745",
509 .data
= &r8a7745_pinmux_info
,
512 #ifdef CONFIG_PINCTRL_PFC_R8A77470
514 .compatible
= "renesas,pfc-r8a77470",
515 .data
= &r8a77470_pinmux_info
,
518 #ifdef CONFIG_PINCTRL_PFC_R8A774A1
520 .compatible
= "renesas,pfc-r8a774a1",
521 .data
= &r8a774a1_pinmux_info
,
524 #ifdef CONFIG_PINCTRL_PFC_R8A774B1
526 .compatible
= "renesas,pfc-r8a774b1",
527 .data
= &r8a774b1_pinmux_info
,
530 #ifdef CONFIG_PINCTRL_PFC_R8A774C0
532 .compatible
= "renesas,pfc-r8a774c0",
533 .data
= &r8a774c0_pinmux_info
,
536 #ifdef CONFIG_PINCTRL_PFC_R8A774E1
538 .compatible
= "renesas,pfc-r8a774e1",
539 .data
= &r8a774e1_pinmux_info
,
542 #ifdef CONFIG_PINCTRL_PFC_R8A7778
544 .compatible
= "renesas,pfc-r8a7778",
545 .data
= &r8a7778_pinmux_info
,
548 #ifdef CONFIG_PINCTRL_PFC_R8A7779
550 .compatible
= "renesas,pfc-r8a7779",
551 .data
= &r8a7779_pinmux_info
,
554 #ifdef CONFIG_PINCTRL_PFC_R8A7790
556 .compatible
= "renesas,pfc-r8a7790",
557 .data
= &r8a7790_pinmux_info
,
560 #ifdef CONFIG_PINCTRL_PFC_R8A7791
562 .compatible
= "renesas,pfc-r8a7791",
563 .data
= &r8a7791_pinmux_info
,
566 #ifdef CONFIG_PINCTRL_PFC_R8A7792
568 .compatible
= "renesas,pfc-r8a7792",
569 .data
= &r8a7792_pinmux_info
,
572 #ifdef CONFIG_PINCTRL_PFC_R8A7793
574 .compatible
= "renesas,pfc-r8a7793",
575 .data
= &r8a7793_pinmux_info
,
578 #ifdef CONFIG_PINCTRL_PFC_R8A7794
580 .compatible
= "renesas,pfc-r8a7794",
581 .data
= &r8a7794_pinmux_info
,
584 /* Both r8a7795 entries must be present to make sanity checks work */
585 #ifdef CONFIG_PINCTRL_PFC_R8A77950
587 .compatible
= "renesas,pfc-r8a7795",
588 .data
= &r8a77950_pinmux_info
,
591 #ifdef CONFIG_PINCTRL_PFC_R8A77951
593 .compatible
= "renesas,pfc-r8a7795",
594 .data
= &r8a77951_pinmux_info
,
597 #ifdef CONFIG_PINCTRL_PFC_R8A77960
599 .compatible
= "renesas,pfc-r8a7796",
600 .data
= &r8a77960_pinmux_info
,
603 #ifdef CONFIG_PINCTRL_PFC_R8A77961
605 .compatible
= "renesas,pfc-r8a77961",
606 .data
= &r8a77961_pinmux_info
,
609 #ifdef CONFIG_PINCTRL_PFC_R8A77965
611 .compatible
= "renesas,pfc-r8a77965",
612 .data
= &r8a77965_pinmux_info
,
615 #ifdef CONFIG_PINCTRL_PFC_R8A77970
617 .compatible
= "renesas,pfc-r8a77970",
618 .data
= &r8a77970_pinmux_info
,
621 #ifdef CONFIG_PINCTRL_PFC_R8A77980
623 .compatible
= "renesas,pfc-r8a77980",
624 .data
= &r8a77980_pinmux_info
,
627 #ifdef CONFIG_PINCTRL_PFC_R8A77990
629 .compatible
= "renesas,pfc-r8a77990",
630 .data
= &r8a77990_pinmux_info
,
633 #ifdef CONFIG_PINCTRL_PFC_R8A77995
635 .compatible
= "renesas,pfc-r8a77995",
636 .data
= &r8a77995_pinmux_info
,
639 #ifdef CONFIG_PINCTRL_PFC_SH73A0
641 .compatible
= "renesas,pfc-sh73a0",
642 .data
= &sh73a0_pinmux_info
,
649 #if defined(CONFIG_PM_SLEEP) && defined(CONFIG_ARM_PSCI_FW)
650 static void sh_pfc_nop_reg(struct sh_pfc
*pfc
, u32 reg
, unsigned int idx
)
654 static void sh_pfc_save_reg(struct sh_pfc
*pfc
, u32 reg
, unsigned int idx
)
656 pfc
->saved_regs
[idx
] = sh_pfc_read(pfc
, reg
);
659 static void sh_pfc_restore_reg(struct sh_pfc
*pfc
, u32 reg
, unsigned int idx
)
661 sh_pfc_write(pfc
, reg
, pfc
->saved_regs
[idx
]);
664 static unsigned int sh_pfc_walk_regs(struct sh_pfc
*pfc
,
665 void (*do_reg
)(struct sh_pfc
*pfc
, u32 reg
, unsigned int idx
))
667 unsigned int i
, n
= 0;
669 if (pfc
->info
->cfg_regs
)
670 for (i
= 0; pfc
->info
->cfg_regs
[i
].reg
; i
++)
671 do_reg(pfc
, pfc
->info
->cfg_regs
[i
].reg
, n
++);
673 if (pfc
->info
->drive_regs
)
674 for (i
= 0; pfc
->info
->drive_regs
[i
].reg
; i
++)
675 do_reg(pfc
, pfc
->info
->drive_regs
[i
].reg
, n
++);
677 if (pfc
->info
->bias_regs
)
678 for (i
= 0; pfc
->info
->bias_regs
[i
].puen
; i
++) {
679 do_reg(pfc
, pfc
->info
->bias_regs
[i
].puen
, n
++);
680 if (pfc
->info
->bias_regs
[i
].pud
)
681 do_reg(pfc
, pfc
->info
->bias_regs
[i
].pud
, n
++);
684 if (pfc
->info
->ioctrl_regs
)
685 for (i
= 0; pfc
->info
->ioctrl_regs
[i
].reg
; i
++)
686 do_reg(pfc
, pfc
->info
->ioctrl_regs
[i
].reg
, n
++);
691 static int sh_pfc_suspend_init(struct sh_pfc
*pfc
)
695 /* This is the best we can do to check for the presence of PSCI */
696 if (!psci_ops
.cpu_suspend
)
699 n
= sh_pfc_walk_regs(pfc
, sh_pfc_nop_reg
);
703 pfc
->saved_regs
= devm_kmalloc_array(pfc
->dev
, n
,
704 sizeof(*pfc
->saved_regs
),
706 if (!pfc
->saved_regs
)
709 dev_dbg(pfc
->dev
, "Allocated space to save %u regs\n", n
);
713 static int sh_pfc_suspend_noirq(struct device
*dev
)
715 struct sh_pfc
*pfc
= dev_get_drvdata(dev
);
718 sh_pfc_walk_regs(pfc
, sh_pfc_save_reg
);
722 static int sh_pfc_resume_noirq(struct device
*dev
)
724 struct sh_pfc
*pfc
= dev_get_drvdata(dev
);
727 sh_pfc_walk_regs(pfc
, sh_pfc_restore_reg
);
731 static const struct dev_pm_ops sh_pfc_pm
= {
732 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(sh_pfc_suspend_noirq
, sh_pfc_resume_noirq
)
734 #define DEV_PM_OPS &sh_pfc_pm
736 static int sh_pfc_suspend_init(struct sh_pfc
*pfc
) { return 0; }
737 #define DEV_PM_OPS NULL
738 #endif /* CONFIG_PM_SLEEP && CONFIG_ARM_PSCI_FW */
741 #define SH_PFC_MAX_REGS 300
742 #define SH_PFC_MAX_ENUMS 3000
744 static unsigned int sh_pfc_errors __initdata
= 0;
745 static unsigned int sh_pfc_warnings __initdata
= 0;
746 static u32
*sh_pfc_regs __initdata
= NULL
;
747 static u32 sh_pfc_num_regs __initdata
= 0;
748 static u16
*sh_pfc_enums __initdata
= NULL
;
749 static u32 sh_pfc_num_enums __initdata
= 0;
751 #define sh_pfc_err(fmt, ...) \
753 pr_err("%s: " fmt, drvname, ##__VA_ARGS__); \
756 #define sh_pfc_warn(fmt, ...) \
758 pr_warn("%s: " fmt, drvname, ##__VA_ARGS__); \
762 static bool __init
is0s(const u16
*enum_ids
, unsigned int n
)
766 for (i
= 0; i
< n
; i
++)
773 static bool __init
same_name(const char *a
, const char *b
)
778 return !strcmp(a
, b
);
781 static void __init
sh_pfc_check_reg(const char *drvname
, u32 reg
)
785 for (i
= 0; i
< sh_pfc_num_regs
; i
++)
786 if (reg
== sh_pfc_regs
[i
]) {
787 sh_pfc_err("reg 0x%x conflict\n", reg
);
791 if (sh_pfc_num_regs
== SH_PFC_MAX_REGS
) {
792 pr_warn_once("%s: Please increase SH_PFC_MAX_REGS\n", drvname
);
796 sh_pfc_regs
[sh_pfc_num_regs
++] = reg
;
799 static int __init
sh_pfc_check_enum(const char *drvname
, u16 enum_id
)
803 for (i
= 0; i
< sh_pfc_num_enums
; i
++) {
804 if (enum_id
== sh_pfc_enums
[i
])
808 if (sh_pfc_num_enums
== SH_PFC_MAX_ENUMS
) {
809 pr_warn_once("%s: Please increase SH_PFC_MAX_ENUMS\n", drvname
);
813 sh_pfc_enums
[sh_pfc_num_enums
++] = enum_id
;
817 static void __init
sh_pfc_check_reg_enums(const char *drvname
, u32 reg
,
818 const u16
*enums
, unsigned int n
)
822 for (i
= 0; i
< n
; i
++) {
823 if (enums
[i
] && sh_pfc_check_enum(drvname
, enums
[i
]))
824 sh_pfc_err("reg 0x%x enum_id %u conflict\n", reg
,
829 static void __init
sh_pfc_check_pin(const struct sh_pfc_soc_info
*info
,
830 u32 reg
, unsigned int pin
)
832 const char *drvname
= info
->name
;
835 if (pin
== SH_PFC_PIN_NONE
)
838 for (i
= 0; i
< info
->nr_pins
; i
++) {
839 if (pin
== info
->pins
[i
].pin
)
843 sh_pfc_err("reg 0x%x: pin %u not found\n", reg
, pin
);
846 static void __init
sh_pfc_check_cfg_reg(const char *drvname
,
847 const struct pinmux_cfg_reg
*cfg_reg
)
849 unsigned int i
, n
, rw
, fw
;
851 sh_pfc_check_reg(drvname
, cfg_reg
->reg
);
853 if (cfg_reg
->field_width
) {
854 n
= cfg_reg
->reg_width
/ cfg_reg
->field_width
;
855 /* Skip field checks (done at build time) */
859 for (i
= 0, n
= 0, rw
= 0; (fw
= cfg_reg
->var_field_width
[i
]); i
++) {
860 if (fw
> 3 && is0s(&cfg_reg
->enum_ids
[n
], 1 << fw
))
861 sh_pfc_warn("reg 0x%x: reserved field [%u:%u] can be split to reduce table size\n",
862 cfg_reg
->reg
, rw
, rw
+ fw
- 1);
867 if (rw
!= cfg_reg
->reg_width
)
868 sh_pfc_err("reg 0x%x: var_field_width declares %u instead of %u bits\n",
869 cfg_reg
->reg
, rw
, cfg_reg
->reg_width
);
871 if (n
!= cfg_reg
->nr_enum_ids
)
872 sh_pfc_err("reg 0x%x: enum_ids[] has %u instead of %u values\n",
873 cfg_reg
->reg
, cfg_reg
->nr_enum_ids
, n
);
876 sh_pfc_check_reg_enums(drvname
, cfg_reg
->reg
, cfg_reg
->enum_ids
, n
);
879 static void __init
sh_pfc_check_drive_reg(const struct sh_pfc_soc_info
*info
,
880 const struct pinmux_drive_reg
*drive
)
882 const char *drvname
= info
->name
;
883 unsigned long seen
= 0, mask
;
886 sh_pfc_check_reg(info
->name
, drive
->reg
);
887 for (i
= 0; i
< ARRAY_SIZE(drive
->fields
); i
++) {
888 const struct pinmux_drive_reg_field
*field
= &drive
->fields
[i
];
890 if (!field
->pin
&& !field
->offset
&& !field
->size
)
893 mask
= GENMASK(field
->offset
+ field
->size
, field
->offset
);
895 sh_pfc_err("drive_reg 0x%x: field %u overlap\n",
899 sh_pfc_check_pin(info
, drive
->reg
, field
->pin
);
903 static void __init
sh_pfc_check_bias_reg(const struct sh_pfc_soc_info
*info
,
904 const struct pinmux_bias_reg
*bias
)
908 sh_pfc_check_reg(info
->name
, bias
->puen
);
910 sh_pfc_check_reg(info
->name
, bias
->pud
);
911 for (i
= 0; i
< ARRAY_SIZE(bias
->pins
); i
++)
912 sh_pfc_check_pin(info
, bias
->puen
, bias
->pins
[i
]);
915 static void __init
sh_pfc_check_info(const struct sh_pfc_soc_info
*info
)
917 const char *drvname
= info
->name
;
918 unsigned int *refcnts
;
919 unsigned int i
, j
, k
;
921 pr_info("Checking %s\n", drvname
);
923 sh_pfc_num_enums
= 0;
926 for (i
= 0; i
< info
->nr_pins
; i
++) {
927 const struct sh_pfc_pin
*pin
= &info
->pins
[i
];
930 sh_pfc_err("empty pin %u\n", i
);
933 for (j
= 0; j
< i
; j
++) {
934 const struct sh_pfc_pin
*pin2
= &info
->pins
[j
];
936 if (same_name(pin
->name
, pin2
->name
))
937 sh_pfc_err("pin %s: name conflict\n",
940 if (pin
->pin
!= (u16
)-1 && pin
->pin
== pin2
->pin
)
941 sh_pfc_err("pin %s/%s: pin %u conflict\n",
942 pin
->name
, pin2
->name
, pin
->pin
);
944 if (pin
->enum_id
&& pin
->enum_id
== pin2
->enum_id
)
945 sh_pfc_err("pin %s/%s: enum_id %u conflict\n",
946 pin
->name
, pin2
->name
,
951 /* Check groups and functions */
952 refcnts
= kcalloc(info
->nr_groups
, sizeof(*refcnts
), GFP_KERNEL
);
956 for (i
= 0; i
< info
->nr_functions
; i
++) {
957 const struct sh_pfc_function
*func
= &info
->functions
[i
];
960 sh_pfc_err("empty function %u\n", i
);
963 for (j
= 0; j
< i
; j
++) {
964 if (same_name(func
->name
, info
->functions
[j
].name
))
965 sh_pfc_err("function %s: name conflict\n",
968 for (j
= 0; j
< func
->nr_groups
; j
++) {
969 for (k
= 0; k
< info
->nr_groups
; k
++) {
970 if (same_name(func
->groups
[j
],
971 info
->groups
[k
].name
)) {
977 if (k
== info
->nr_groups
)
978 sh_pfc_err("function %s: group %s not found\n",
979 func
->name
, func
->groups
[j
]);
983 for (i
= 0; i
< info
->nr_groups
; i
++) {
984 const struct sh_pfc_pin_group
*group
= &info
->groups
[i
];
987 sh_pfc_err("empty group %u\n", i
);
990 for (j
= 0; j
< i
; j
++) {
991 if (same_name(group
->name
, info
->groups
[j
].name
))
992 sh_pfc_err("group %s: name conflict\n",
996 sh_pfc_err("orphan group %s\n", group
->name
);
997 else if (refcnts
[i
] > 1)
998 sh_pfc_warn("group %s referenced by %u functions\n",
999 group
->name
, refcnts
[i
]);
1004 /* Check config register descriptions */
1005 for (i
= 0; info
->cfg_regs
&& info
->cfg_regs
[i
].reg
; i
++)
1006 sh_pfc_check_cfg_reg(drvname
, &info
->cfg_regs
[i
]);
1008 /* Check drive strength registers */
1009 for (i
= 0; info
->drive_regs
&& info
->drive_regs
[i
].reg
; i
++)
1010 sh_pfc_check_drive_reg(info
, &info
->drive_regs
[i
]);
1012 /* Check bias registers */
1013 for (i
= 0; info
->bias_regs
&& info
->bias_regs
[i
].puen
; i
++)
1014 sh_pfc_check_bias_reg(info
, &info
->bias_regs
[i
]);
1016 /* Check ioctrl registers */
1017 for (i
= 0; info
->ioctrl_regs
&& info
->ioctrl_regs
[i
].reg
; i
++)
1018 sh_pfc_check_reg(drvname
, info
->ioctrl_regs
[i
].reg
);
1020 /* Check data registers */
1021 for (i
= 0; info
->data_regs
&& info
->data_regs
[i
].reg
; i
++) {
1022 sh_pfc_check_reg(drvname
, info
->data_regs
[i
].reg
);
1023 sh_pfc_check_reg_enums(drvname
, info
->data_regs
[i
].reg
,
1024 info
->data_regs
[i
].enum_ids
,
1025 info
->data_regs
[i
].reg_width
);
1028 #ifdef CONFIG_PINCTRL_SH_FUNC_GPIO
1029 /* Check function GPIOs */
1030 for (i
= 0; i
< info
->nr_func_gpios
; i
++) {
1031 const struct pinmux_func
*func
= &info
->func_gpios
[i
];
1034 sh_pfc_err("empty function gpio %u\n", i
);
1037 for (j
= 0; j
< i
; j
++) {
1038 if (same_name(func
->name
, info
->func_gpios
[j
].name
))
1039 sh_pfc_err("func_gpio %s: name conflict\n",
1042 if (sh_pfc_check_enum(drvname
, func
->enum_id
))
1043 sh_pfc_err("%s enum_id %u conflict\n", func
->name
,
1049 static void __init
sh_pfc_check_driver(const struct platform_driver
*pdrv
)
1053 sh_pfc_regs
= kcalloc(SH_PFC_MAX_REGS
, sizeof(*sh_pfc_regs
),
1058 sh_pfc_enums
= kcalloc(SH_PFC_MAX_ENUMS
, sizeof(*sh_pfc_enums
),
1063 pr_warn("Checking builtin pinmux tables\n");
1065 for (i
= 0; pdrv
->id_table
[i
].name
[0]; i
++)
1066 sh_pfc_check_info((void *)pdrv
->id_table
[i
].driver_data
);
1069 for (i
= 0; pdrv
->driver
.of_match_table
[i
].compatible
[0]; i
++)
1070 sh_pfc_check_info(pdrv
->driver
.of_match_table
[i
].data
);
1073 pr_warn("Detected %u errors and %u warnings\n", sh_pfc_errors
,
1076 kfree(sh_pfc_enums
);
1082 static inline void sh_pfc_check_driver(struct platform_driver
*pdrv
) {}
1086 static const void *sh_pfc_quirk_match(void)
1088 #if defined(CONFIG_PINCTRL_PFC_R8A77950) || \
1089 defined(CONFIG_PINCTRL_PFC_R8A77951)
1090 const struct soc_device_attribute
*match
;
1091 static const struct soc_device_attribute quirks
[] = {
1093 .soc_id
= "r8a7795", .revision
= "ES1.*",
1094 .data
= &r8a77950_pinmux_info
,
1097 .soc_id
= "r8a7795",
1098 .data
= &r8a77951_pinmux_info
,
1104 match
= soc_device_match(quirks
);
1106 return match
->data
?: ERR_PTR(-ENODEV
);
1107 #endif /* CONFIG_PINCTRL_PFC_R8A77950 || CONFIG_PINCTRL_PFC_R8A77951 */
1111 #endif /* CONFIG_OF */
1113 static int sh_pfc_probe(struct platform_device
*pdev
)
1115 const struct sh_pfc_soc_info
*info
;
1120 if (pdev
->dev
.of_node
) {
1121 info
= sh_pfc_quirk_match();
1123 return PTR_ERR(info
);
1126 info
= of_device_get_match_data(&pdev
->dev
);
1129 info
= (const void *)platform_get_device_id(pdev
)->driver_data
;
1131 pfc
= devm_kzalloc(&pdev
->dev
, sizeof(*pfc
), GFP_KERNEL
);
1136 pfc
->dev
= &pdev
->dev
;
1138 ret
= sh_pfc_map_resources(pfc
, pdev
);
1139 if (unlikely(ret
< 0))
1142 spin_lock_init(&pfc
->lock
);
1144 if (info
->ops
&& info
->ops
->init
) {
1145 ret
= info
->ops
->init(pfc
);
1149 /* .init() may have overridden pfc->info */
1153 ret
= sh_pfc_suspend_init(pfc
);
1157 /* Enable dummy states for those platforms without pinctrl support */
1158 if (!of_have_populated_dt())
1159 pinctrl_provide_dummies();
1161 ret
= sh_pfc_init_ranges(pfc
);
1166 * Initialize pinctrl bindings first
1168 ret
= sh_pfc_register_pinctrl(pfc
);
1169 if (unlikely(ret
!= 0))
1172 #ifdef CONFIG_PINCTRL_SH_PFC_GPIO
1174 * Then the GPIO chip
1176 ret
= sh_pfc_register_gpiochip(pfc
);
1177 if (unlikely(ret
!= 0)) {
1179 * If the GPIO chip fails to come up we still leave the
1180 * PFC state as it is, given that there are already
1181 * extant users of it that have succeeded by this point.
1183 dev_notice(pfc
->dev
, "failed to init GPIO chip, ignoring...\n");
1187 platform_set_drvdata(pdev
, pfc
);
1189 dev_info(pfc
->dev
, "%s support registered\n", info
->name
);
1194 static const struct platform_device_id sh_pfc_id_table
[] = {
1195 #ifdef CONFIG_PINCTRL_PFC_SH7203
1196 { "pfc-sh7203", (kernel_ulong_t
)&sh7203_pinmux_info
},
1198 #ifdef CONFIG_PINCTRL_PFC_SH7264
1199 { "pfc-sh7264", (kernel_ulong_t
)&sh7264_pinmux_info
},
1201 #ifdef CONFIG_PINCTRL_PFC_SH7269
1202 { "pfc-sh7269", (kernel_ulong_t
)&sh7269_pinmux_info
},
1204 #ifdef CONFIG_PINCTRL_PFC_SH7720
1205 { "pfc-sh7720", (kernel_ulong_t
)&sh7720_pinmux_info
},
1207 #ifdef CONFIG_PINCTRL_PFC_SH7722
1208 { "pfc-sh7722", (kernel_ulong_t
)&sh7722_pinmux_info
},
1210 #ifdef CONFIG_PINCTRL_PFC_SH7723
1211 { "pfc-sh7723", (kernel_ulong_t
)&sh7723_pinmux_info
},
1213 #ifdef CONFIG_PINCTRL_PFC_SH7724
1214 { "pfc-sh7724", (kernel_ulong_t
)&sh7724_pinmux_info
},
1216 #ifdef CONFIG_PINCTRL_PFC_SH7734
1217 { "pfc-sh7734", (kernel_ulong_t
)&sh7734_pinmux_info
},
1219 #ifdef CONFIG_PINCTRL_PFC_SH7757
1220 { "pfc-sh7757", (kernel_ulong_t
)&sh7757_pinmux_info
},
1222 #ifdef CONFIG_PINCTRL_PFC_SH7785
1223 { "pfc-sh7785", (kernel_ulong_t
)&sh7785_pinmux_info
},
1225 #ifdef CONFIG_PINCTRL_PFC_SH7786
1226 { "pfc-sh7786", (kernel_ulong_t
)&sh7786_pinmux_info
},
1228 #ifdef CONFIG_PINCTRL_PFC_SHX3
1229 { "pfc-shx3", (kernel_ulong_t
)&shx3_pinmux_info
},
1234 static struct platform_driver sh_pfc_driver
= {
1235 .probe
= sh_pfc_probe
,
1236 .id_table
= sh_pfc_id_table
,
1239 .of_match_table
= of_match_ptr(sh_pfc_of_table
),
1244 static int __init
sh_pfc_init(void)
1246 sh_pfc_check_driver(&sh_pfc_driver
);
1247 return platform_driver_register(&sh_pfc_driver
);
1249 postcore_initcall(sh_pfc_init
);