xref: /openbmc/u-boot/drivers/pinctrl/renesas/pfc.c (revision c68c03f5)
1 /*
2  * Pin Control driver for SuperH Pin Function Controller.
3  *
4  * Authors: Magnus Damm, Paul Mundt, Laurent Pinchart
5  *
6  * Copyright (C) 2008 Magnus Damm
7  * Copyright (C) 2009 - 2012 Paul Mundt
8  * Copyright (C) 2017 Marek Vasut
9  *
10  * SPDX-License-Identifier:	GPL-2.0
11  */
12 
13 #define DRV_NAME "sh-pfc"
14 
15 #include <common.h>
16 #include <dm.h>
17 #include <errno.h>
18 #include <dm/pinctrl.h>
19 #include <linux/io.h>
20 #include <linux/sizes.h>
21 
22 #include "sh_pfc.h"
23 
24 DECLARE_GLOBAL_DATA_PTR;
25 
26 enum sh_pfc_model {
27 	SH_PFC_R8A7795 = 0,
28 	SH_PFC_R8A7796,
29 };
30 
31 struct sh_pfc_pin_config {
32 	u32 type;
33 };
34 
35 struct sh_pfc_pinctrl {
36 	struct sh_pfc *pfc;
37 
38 	struct sh_pfc_pin_config *configs;
39 
40 	const char *func_prop_name;
41 	const char *groups_prop_name;
42 	const char *pins_prop_name;
43 };
44 
45 struct sh_pfc_pin_range {
46 	u16 start;
47 	u16 end;
48 };
49 
50 struct sh_pfc_pinctrl_priv {
51 	struct sh_pfc			pfc;
52 	struct sh_pfc_pinctrl		pmx;
53 };
54 
55 int sh_pfc_get_pin_index(struct sh_pfc *pfc, unsigned int pin)
56 {
57 	unsigned int offset;
58 	unsigned int i;
59 
60 	for (i = 0, offset = 0; i < pfc->nr_ranges; ++i) {
61 		const struct sh_pfc_pin_range *range = &pfc->ranges[i];
62 
63 		if (pin <= range->end)
64 			return pin >= range->start
65 			     ? offset + pin - range->start : -1;
66 
67 		offset += range->end - range->start + 1;
68 	}
69 
70 	return -EINVAL;
71 }
72 
73 static int sh_pfc_enum_in_range(u16 enum_id, const struct pinmux_range *r)
74 {
75 	if (enum_id < r->begin)
76 		return 0;
77 
78 	if (enum_id > r->end)
79 		return 0;
80 
81 	return 1;
82 }
83 
84 u32 sh_pfc_read_raw_reg(void __iomem *mapped_reg, unsigned int reg_width)
85 {
86 	switch (reg_width) {
87 	case 8:
88 		return readb(mapped_reg);
89 	case 16:
90 		return readw(mapped_reg);
91 	case 32:
92 		return readl(mapped_reg);
93 	}
94 
95 	BUG();
96 	return 0;
97 }
98 
99 void sh_pfc_write_raw_reg(void __iomem *mapped_reg, unsigned int reg_width,
100 			  u32 data)
101 {
102 	switch (reg_width) {
103 	case 8:
104 		writeb(data, mapped_reg);
105 		return;
106 	case 16:
107 		writew(data, mapped_reg);
108 		return;
109 	case 32:
110 		writel(data, mapped_reg);
111 		return;
112 	}
113 
114 	BUG();
115 }
116 
117 u32 sh_pfc_read_reg(struct sh_pfc *pfc, u32 reg, unsigned int width)
118 {
119 	return sh_pfc_read_raw_reg(pfc->regs + reg, width);
120 }
121 
122 void sh_pfc_write_reg(struct sh_pfc *pfc, u32 reg, unsigned int width, u32 data)
123 {
124 	void __iomem *unlock_reg =
125 		(void __iomem *)(uintptr_t)pfc->info->unlock_reg;
126 
127 	if (pfc->info->unlock_reg)
128 		sh_pfc_write_raw_reg(unlock_reg, 32, ~data);
129 
130 	sh_pfc_write_raw_reg(pfc->regs + reg, width, data);
131 }
132 
133 static void sh_pfc_config_reg_helper(struct sh_pfc *pfc,
134 				     const struct pinmux_cfg_reg *crp,
135 				     unsigned int in_pos,
136 				     void __iomem **mapped_regp, u32 *maskp,
137 				     unsigned int *posp)
138 {
139 	unsigned int k;
140 
141 	*mapped_regp = (void __iomem *)(uintptr_t)crp->reg;
142 
143 	if (crp->field_width) {
144 		*maskp = (1 << crp->field_width) - 1;
145 		*posp = crp->reg_width - ((in_pos + 1) * crp->field_width);
146 	} else {
147 		*maskp = (1 << crp->var_field_width[in_pos]) - 1;
148 		*posp = crp->reg_width;
149 		for (k = 0; k <= in_pos; k++)
150 			*posp -= crp->var_field_width[k];
151 	}
152 }
153 
154 static void sh_pfc_write_config_reg(struct sh_pfc *pfc,
155 				    const struct pinmux_cfg_reg *crp,
156 				    unsigned int field, u32 value)
157 {
158 	void __iomem *mapped_reg;
159 	void __iomem *unlock_reg =
160 		(void __iomem *)(uintptr_t)pfc->info->unlock_reg;
161 	unsigned int pos;
162 	u32 mask, data;
163 
164 	sh_pfc_config_reg_helper(pfc, crp, field, &mapped_reg, &mask, &pos);
165 
166 	dev_dbg(pfc->dev, "write_reg addr = %x, value = 0x%x, field = %u, "
167 		"r_width = %u, f_width = %u\n",
168 		crp->reg, value, field, crp->reg_width, crp->field_width);
169 
170 	mask = ~(mask << pos);
171 	value = value << pos;
172 
173 	data = sh_pfc_read_raw_reg(mapped_reg, crp->reg_width);
174 	data &= mask;
175 	data |= value;
176 
177 	if (pfc->info->unlock_reg)
178 		sh_pfc_write_raw_reg(unlock_reg, 32, ~data);
179 
180 	sh_pfc_write_raw_reg(mapped_reg, crp->reg_width, data);
181 }
182 
183 static int sh_pfc_get_config_reg(struct sh_pfc *pfc, u16 enum_id,
184 				 const struct pinmux_cfg_reg **crp,
185 				 unsigned int *fieldp, u32 *valuep)
186 {
187 	unsigned int k = 0;
188 
189 	while (1) {
190 		const struct pinmux_cfg_reg *config_reg =
191 			pfc->info->cfg_regs + k;
192 		unsigned int r_width = config_reg->reg_width;
193 		unsigned int f_width = config_reg->field_width;
194 		unsigned int curr_width;
195 		unsigned int bit_pos;
196 		unsigned int pos = 0;
197 		unsigned int m = 0;
198 
199 		if (!r_width)
200 			break;
201 
202 		for (bit_pos = 0; bit_pos < r_width; bit_pos += curr_width) {
203 			u32 ncomb;
204 			u32 n;
205 
206 			if (f_width)
207 				curr_width = f_width;
208 			else
209 				curr_width = config_reg->var_field_width[m];
210 
211 			ncomb = 1 << curr_width;
212 			for (n = 0; n < ncomb; n++) {
213 				if (config_reg->enum_ids[pos + n] == enum_id) {
214 					*crp = config_reg;
215 					*fieldp = m;
216 					*valuep = n;
217 					return 0;
218 				}
219 			}
220 			pos += ncomb;
221 			m++;
222 		}
223 		k++;
224 	}
225 
226 	return -EINVAL;
227 }
228 
229 static int sh_pfc_mark_to_enum(struct sh_pfc *pfc, u16 mark, int pos,
230 			      u16 *enum_idp)
231 {
232 	const u16 *data = pfc->info->pinmux_data;
233 	unsigned int k;
234 
235 	if (pos) {
236 		*enum_idp = data[pos + 1];
237 		return pos + 1;
238 	}
239 
240 	for (k = 0; k < pfc->info->pinmux_data_size; k++) {
241 		if (data[k] == mark) {
242 			*enum_idp = data[k + 1];
243 			return k + 1;
244 		}
245 	}
246 
247 	dev_err(pfc->dev, "cannot locate data/mark enum_id for mark %d\n",
248 		mark);
249 	return -EINVAL;
250 }
251 
252 int sh_pfc_config_mux(struct sh_pfc *pfc, unsigned mark, int pinmux_type)
253 {
254 	const struct pinmux_range *range;
255 	int pos = 0;
256 
257 	switch (pinmux_type) {
258 	case PINMUX_TYPE_GPIO:
259 	case PINMUX_TYPE_FUNCTION:
260 		range = NULL;
261 		break;
262 
263 	case PINMUX_TYPE_OUTPUT:
264 		range = &pfc->info->output;
265 		break;
266 
267 	case PINMUX_TYPE_INPUT:
268 		range = &pfc->info->input;
269 		break;
270 
271 	default:
272 		return -EINVAL;
273 	}
274 
275 	/* Iterate over all the configuration fields we need to update. */
276 	while (1) {
277 		const struct pinmux_cfg_reg *cr;
278 		unsigned int field;
279 		u16 enum_id;
280 		u32 value;
281 		int in_range;
282 		int ret;
283 
284 		pos = sh_pfc_mark_to_enum(pfc, mark, pos, &enum_id);
285 		if (pos < 0)
286 			return pos;
287 
288 		if (!enum_id)
289 			break;
290 
291 		/* Check if the configuration field selects a function. If it
292 		 * doesn't, skip the field if it's not applicable to the
293 		 * requested pinmux type.
294 		 */
295 		in_range = sh_pfc_enum_in_range(enum_id, &pfc->info->function);
296 		if (!in_range) {
297 			if (pinmux_type == PINMUX_TYPE_FUNCTION) {
298 				/* Functions are allowed to modify all
299 				 * fields.
300 				 */
301 				in_range = 1;
302 			} else if (pinmux_type != PINMUX_TYPE_GPIO) {
303 				/* Input/output types can only modify fields
304 				 * that correspond to their respective ranges.
305 				 */
306 				in_range = sh_pfc_enum_in_range(enum_id, range);
307 
308 				/*
309 				 * special case pass through for fixed
310 				 * input-only or output-only pins without
311 				 * function enum register association.
312 				 */
313 				if (in_range && enum_id == range->force)
314 					continue;
315 			}
316 			/* GPIOs are only allowed to modify function fields. */
317 		}
318 
319 		if (!in_range)
320 			continue;
321 
322 		ret = sh_pfc_get_config_reg(pfc, enum_id, &cr, &field, &value);
323 		if (ret < 0)
324 			return ret;
325 
326 		sh_pfc_write_config_reg(pfc, cr, field, value);
327 	}
328 
329 	return 0;
330 }
331 
332 const struct sh_pfc_bias_info *
333 sh_pfc_pin_to_bias_info(const struct sh_pfc_bias_info *info,
334 			unsigned int num, unsigned int pin)
335 {
336 	unsigned int i;
337 
338 	for (i = 0; i < num; i++)
339 		if (info[i].pin == pin)
340 			return &info[i];
341 
342 	printf("Pin %u is not in bias info list\n", pin);
343 
344 	return NULL;
345 }
346 
347 static int sh_pfc_init_ranges(struct sh_pfc *pfc)
348 {
349 	struct sh_pfc_pin_range *range;
350 	unsigned int nr_ranges;
351 	unsigned int i;
352 
353 	if (pfc->info->pins[0].pin == (u16)-1) {
354 		/* Pin number -1 denotes that the SoC doesn't report pin numbers
355 		 * in its pin arrays yet. Consider the pin numbers range as
356 		 * continuous and allocate a single range.
357 		 */
358 		pfc->nr_ranges = 1;
359 		pfc->ranges = kzalloc(sizeof(*pfc->ranges), GFP_KERNEL);
360 		if (pfc->ranges == NULL)
361 			return -ENOMEM;
362 
363 		pfc->ranges->start = 0;
364 		pfc->ranges->end = pfc->info->nr_pins - 1;
365 		pfc->nr_gpio_pins = pfc->info->nr_pins;
366 
367 		return 0;
368 	}
369 
370 	/* Count, allocate and fill the ranges. The PFC SoC data pins array must
371 	 * be sorted by pin numbers, and pins without a GPIO port must come
372 	 * last.
373 	 */
374 	for (i = 1, nr_ranges = 1; i < pfc->info->nr_pins; ++i) {
375 		if (pfc->info->pins[i-1].pin != pfc->info->pins[i].pin - 1)
376 			nr_ranges++;
377 	}
378 
379 	pfc->nr_ranges = nr_ranges;
380 	pfc->ranges = kzalloc(sizeof(*pfc->ranges) * nr_ranges, GFP_KERNEL);
381 	if (pfc->ranges == NULL)
382 		return -ENOMEM;
383 
384 	range = pfc->ranges;
385 	range->start = pfc->info->pins[0].pin;
386 
387 	for (i = 1; i < pfc->info->nr_pins; ++i) {
388 		if (pfc->info->pins[i-1].pin == pfc->info->pins[i].pin - 1)
389 			continue;
390 
391 		range->end = pfc->info->pins[i-1].pin;
392 		if (!(pfc->info->pins[i-1].configs & SH_PFC_PIN_CFG_NO_GPIO))
393 			pfc->nr_gpio_pins = range->end + 1;
394 
395 		range++;
396 		range->start = pfc->info->pins[i].pin;
397 	}
398 
399 	range->end = pfc->info->pins[i-1].pin;
400 	if (!(pfc->info->pins[i-1].configs & SH_PFC_PIN_CFG_NO_GPIO))
401 		pfc->nr_gpio_pins = range->end + 1;
402 
403 	return 0;
404 }
405 
406 static int sh_pfc_pinctrl_get_pins_count(struct udevice *dev)
407 {
408 	struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
409 
410 	return priv->pfc.info->nr_pins;
411 }
412 
413 static const char *sh_pfc_pinctrl_get_pin_name(struct udevice *dev,
414 						  unsigned selector)
415 {
416 	struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
417 
418 	return priv->pfc.info->pins[selector].name;
419 }
420 
421 static int sh_pfc_pinctrl_get_groups_count(struct udevice *dev)
422 {
423 	struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
424 
425 	return priv->pfc.info->nr_groups;
426 }
427 
428 static const char *sh_pfc_pinctrl_get_group_name(struct udevice *dev,
429 						  unsigned selector)
430 {
431 	struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
432 
433 	return priv->pfc.info->groups[selector].name;
434 }
435 
436 static int sh_pfc_pinctrl_get_functions_count(struct udevice *dev)
437 {
438 	struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
439 
440 	return priv->pfc.info->nr_functions;
441 }
442 
443 static const char *sh_pfc_pinctrl_get_function_name(struct udevice *dev,
444 						  unsigned selector)
445 {
446 	struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
447 
448 	return priv->pfc.info->functions[selector].name;
449 }
450 
451 static int sh_pfc_pinctrl_group_set(struct udevice *dev, unsigned group_selector,
452 				     unsigned func_selector)
453 {
454 	struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
455 	struct sh_pfc_pinctrl *pmx = &priv->pmx;
456 	struct sh_pfc *pfc = &priv->pfc;
457 	const struct sh_pfc_pin_group *grp = &priv->pfc.info->groups[group_selector];
458 	unsigned int i;
459 	int ret = 0;
460 
461 	for (i = 0; i < grp->nr_pins; ++i) {
462 		int idx = sh_pfc_get_pin_index(pfc, grp->pins[i]);
463 		struct sh_pfc_pin_config *cfg = &pmx->configs[idx];
464 
465 		if (cfg->type != PINMUX_TYPE_NONE) {
466 			ret = -EBUSY;
467 			goto done;
468 		}
469 	}
470 
471 	for (i = 0; i < grp->nr_pins; ++i) {
472 		ret = sh_pfc_config_mux(pfc, grp->mux[i], PINMUX_TYPE_FUNCTION);
473 		if (ret < 0)
474 			break;
475 	}
476 
477 done:
478 	return ret;
479 }
480 #if CONFIG_IS_ENABLED(PINCONF)
481 static const struct pinconf_param sh_pfc_pinconf_params[] = {
482 	{ "bias-disable",	PIN_CONFIG_BIAS_DISABLE,	0 },
483 	{ "bias-pull-up",	PIN_CONFIG_BIAS_PULL_UP,	1 },
484 	{ "bias-pull-down",	PIN_CONFIG_BIAS_PULL_DOWN,	1 },
485 	{ "drive-strength",	PIN_CONFIG_DRIVE_STRENGTH,	0 },
486 	{ "power-source",	PIN_CONFIG_POWER_SOURCE,	3300 },
487 };
488 
489 static void __iomem *
490 sh_pfc_pinconf_find_drive_strength_reg(struct sh_pfc *pfc, unsigned int pin,
491 				       unsigned int *offset, unsigned int *size)
492 {
493 	const struct pinmux_drive_reg_field *field;
494 	const struct pinmux_drive_reg *reg;
495 	unsigned int i;
496 
497 	for (reg = pfc->info->drive_regs; reg->reg; ++reg) {
498 		for (i = 0; i < ARRAY_SIZE(reg->fields); ++i) {
499 			field = &reg->fields[i];
500 
501 			if (field->size && field->pin == pin) {
502 				*offset = field->offset;
503 				*size = field->size;
504 
505 				return (void __iomem *)(uintptr_t)reg->reg;
506 			}
507 		}
508 	}
509 
510 	return NULL;
511 }
512 
513 static int sh_pfc_pinconf_set_drive_strength(struct sh_pfc *pfc,
514 					     unsigned int pin, u16 strength)
515 {
516 	unsigned int offset;
517 	unsigned int size;
518 	unsigned int step;
519 	void __iomem *reg;
520 	void __iomem *unlock_reg =
521 		(void __iomem *)(uintptr_t)pfc->info->unlock_reg;
522 	u32 val;
523 
524 	reg = sh_pfc_pinconf_find_drive_strength_reg(pfc, pin, &offset, &size);
525 	if (!reg)
526 		return -EINVAL;
527 
528 	step = size == 2 ? 6 : 3;
529 
530 	if (strength < step || strength > 24)
531 		return -EINVAL;
532 
533 	/* Convert the value from mA based on a full drive strength value of
534 	 * 24mA. We can make the full value configurable later if needed.
535 	 */
536 	strength = strength / step - 1;
537 
538 	val = sh_pfc_read_raw_reg(reg, 32);
539 	val &= ~GENMASK(offset + size - 1, offset);
540 	val |= strength << offset;
541 
542 	if (unlock_reg)
543 		sh_pfc_write_raw_reg(unlock_reg, 32, ~val);
544 
545 	sh_pfc_write_raw_reg(reg, 32, val);
546 
547 	return 0;
548 }
549 
550 /* Check whether the requested parameter is supported for a pin. */
551 static bool sh_pfc_pinconf_validate(struct sh_pfc *pfc, unsigned int _pin,
552 				    unsigned int param)
553 {
554 	int idx = sh_pfc_get_pin_index(pfc, _pin);
555 	const struct sh_pfc_pin *pin = &pfc->info->pins[idx];
556 
557 	switch (param) {
558 	case PIN_CONFIG_BIAS_DISABLE:
559 		return pin->configs &
560 			(SH_PFC_PIN_CFG_PULL_UP | SH_PFC_PIN_CFG_PULL_DOWN);
561 
562 	case PIN_CONFIG_BIAS_PULL_UP:
563 		return pin->configs & SH_PFC_PIN_CFG_PULL_UP;
564 
565 	case PIN_CONFIG_BIAS_PULL_DOWN:
566 		return pin->configs & SH_PFC_PIN_CFG_PULL_DOWN;
567 
568 	case PIN_CONFIG_DRIVE_STRENGTH:
569 		return pin->configs & SH_PFC_PIN_CFG_DRIVE_STRENGTH;
570 
571 	case PIN_CONFIG_POWER_SOURCE:
572 		return pin->configs & SH_PFC_PIN_CFG_IO_VOLTAGE;
573 
574 	default:
575 		return false;
576 	}
577 }
578 
579 static int sh_pfc_pinconf_set(struct sh_pfc_pinctrl *pmx, unsigned _pin,
580 			      unsigned int param, unsigned int arg)
581 {
582 	struct sh_pfc *pfc = pmx->pfc;
583 	void __iomem *pocctrl;
584 	void __iomem *unlock_reg =
585 		(void __iomem *)(uintptr_t)pfc->info->unlock_reg;
586 	u32 addr, val;
587 	int bit, ret;
588 
589 	if (!sh_pfc_pinconf_validate(pfc, _pin, param))
590 		return -ENOTSUPP;
591 
592 	switch (param) {
593 	case PIN_CONFIG_BIAS_PULL_UP:
594 	case PIN_CONFIG_BIAS_PULL_DOWN:
595 	case PIN_CONFIG_BIAS_DISABLE:
596 		if (!pfc->info->ops || !pfc->info->ops->set_bias)
597 			return -ENOTSUPP;
598 
599 		pfc->info->ops->set_bias(pfc, _pin, param);
600 
601 		break;
602 
603 	case PIN_CONFIG_DRIVE_STRENGTH:
604 		ret = sh_pfc_pinconf_set_drive_strength(pfc, _pin, arg);
605 		if (ret < 0)
606 			return ret;
607 
608 		break;
609 
610 	case PIN_CONFIG_POWER_SOURCE:
611 		if (!pfc->info->ops || !pfc->info->ops->pin_to_pocctrl)
612 			return -ENOTSUPP;
613 
614 		bit = pfc->info->ops->pin_to_pocctrl(pfc, _pin, &addr);
615 		if (bit < 0) {
616 			printf("invalid pin %#x", _pin);
617 			return bit;
618 		}
619 
620 		if (arg != 1800 && arg != 3300)
621 			return -EINVAL;
622 
623 		pocctrl = (void __iomem *)(uintptr_t)addr;
624 
625 		val = sh_pfc_read_raw_reg(pocctrl, 32);
626 		if (arg == 3300)
627 			val |= BIT(bit);
628 		else
629 			val &= ~BIT(bit);
630 
631 		if (unlock_reg)
632 			sh_pfc_write_raw_reg(unlock_reg, 32, ~val);
633 
634 		sh_pfc_write_raw_reg(pocctrl, 32, val);
635 
636 		break;
637 
638 	default:
639 		return -ENOTSUPP;
640 	}
641 
642 	return 0;
643 }
644 
645 
646 static int sh_pfc_pinconf_group_set(struct udevice *dev,
647 				      unsigned int group_selector,
648 				      unsigned int param, unsigned int arg)
649 {
650 	struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
651 	struct sh_pfc_pinctrl *pmx = &priv->pmx;
652 	struct sh_pfc *pfc = &priv->pfc;
653 	const struct sh_pfc_pin_group *grp = &pfc->info->groups[group_selector];
654 	unsigned int i;
655 
656 	for (i = 0; i < grp->nr_pins; i++)
657 		sh_pfc_pinconf_set(pmx, grp->pins[i], param, arg);
658 
659 	return 0;
660 }
661 #endif
662 
663 static struct pinctrl_ops sh_pfc_pinctrl_ops = {
664 	.get_pins_count		= sh_pfc_pinctrl_get_pins_count,
665 	.get_pin_name		= sh_pfc_pinctrl_get_pin_name,
666 	.get_groups_count	= sh_pfc_pinctrl_get_groups_count,
667 	.get_group_name		= sh_pfc_pinctrl_get_group_name,
668 	.get_functions_count	= sh_pfc_pinctrl_get_functions_count,
669 	.get_function_name	= sh_pfc_pinctrl_get_function_name,
670 
671 #if CONFIG_IS_ENABLED(PINCONF)
672 	.pinconf_num_params	= ARRAY_SIZE(sh_pfc_pinconf_params),
673 	.pinconf_params		= sh_pfc_pinconf_params,
674 	.pinconf_group_set	= sh_pfc_pinconf_group_set,
675 #endif
676 	.pinmux_group_set	= sh_pfc_pinctrl_group_set,
677 	.set_state		= pinctrl_generic_set_state,
678 };
679 
680 static int sh_pfc_map_pins(struct sh_pfc *pfc, struct sh_pfc_pinctrl *pmx)
681 {
682 	unsigned int i;
683 
684 	/* Allocate and initialize the pins and configs arrays. */
685 	pmx->configs = kzalloc(sizeof(*pmx->configs) * pfc->info->nr_pins,
686 				    GFP_KERNEL);
687 	if (unlikely(!pmx->configs))
688 		return -ENOMEM;
689 
690 	for (i = 0; i < pfc->info->nr_pins; ++i) {
691 		struct sh_pfc_pin_config *cfg = &pmx->configs[i];
692 		cfg->type = PINMUX_TYPE_NONE;
693 	}
694 
695 	return 0;
696 }
697 
698 
699 static int sh_pfc_pinctrl_probe(struct udevice *dev)
700 {
701 	struct sh_pfc_pinctrl_priv *priv = dev_get_priv(dev);
702 	enum sh_pfc_model model = dev_get_driver_data(dev);
703 	fdt_addr_t base;
704 
705 	base = devfdt_get_addr(dev);
706 	if (base == FDT_ADDR_T_NONE)
707 		return -EINVAL;
708 
709 	priv->pfc.regs = devm_ioremap(dev, base, SZ_2K);
710 	if (!priv->pfc.regs)
711 		return -ENOMEM;
712 
713 #ifdef CONFIG_PINCTRL_PFC_R8A7795
714 	if (model == SH_PFC_R8A7795)
715 		priv->pfc.info = &r8a7795_pinmux_info;
716 #endif
717 #ifdef CONFIG_PINCTRL_PFC_R8A7796
718 	if (model == SH_PFC_R8A7796)
719 		priv->pfc.info = &r8a7796_pinmux_info;
720 #endif
721 
722 	priv->pmx.pfc = &priv->pfc;
723 	sh_pfc_init_ranges(&priv->pfc);
724 	sh_pfc_map_pins(&priv->pfc, &priv->pmx);
725 
726 	return 0;
727 }
728 
729 static const struct udevice_id sh_pfc_pinctrl_ids[] = {
730 #ifdef CONFIG_PINCTRL_PFC_R8A7795
731 	{
732 		.compatible = "renesas,pfc-r8a7795",
733 		.data = SH_PFC_R8A7795,
734 	},
735 #endif
736 #ifdef CONFIG_PINCTRL_PFC_R8A7796
737 	{
738 		.compatible = "renesas,pfc-r8a7796",
739 		.data = SH_PFC_R8A7796,
740 	},
741 #endif
742 	{ },
743 };
744 
745 U_BOOT_DRIVER(pinctrl_sh_pfc) = {
746 	.name		= "sh_pfc_pinctrl",
747 	.id		= UCLASS_PINCTRL,
748 	.of_match	= sh_pfc_pinctrl_ids,
749 	.priv_auto_alloc_size = sizeof(struct sh_pfc_pinctrl_priv),
750 	.ops		= &sh_pfc_pinctrl_ops,
751 	.probe		= sh_pfc_pinctrl_probe,
752 };
753