1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Pin Control and GPIO driver for SuperH Pin Function Controller. 4 * 5 * Authors: Magnus Damm, Paul Mundt, Laurent Pinchart 6 * 7 * Copyright (C) 2008 Magnus Damm 8 * Copyright (C) 2009 - 2012 Paul Mundt 9 */ 10 11 #define DRV_NAME "sh-pfc" 12 13 #include <linux/bitops.h> 14 #include <linux/err.h> 15 #include <linux/errno.h> 16 #include <linux/init.h> 17 #include <linux/io.h> 18 #include <linux/ioport.h> 19 #include <linux/kernel.h> 20 #include <linux/math.h> 21 #include <linux/of.h> 22 #include <linux/of_device.h> 23 #include <linux/pinctrl/machine.h> 24 #include <linux/platform_device.h> 25 #include <linux/psci.h> 26 #include <linux/slab.h> 27 #include <linux/sys_soc.h> 28 29 #include "core.h" 30 31 static int sh_pfc_map_resources(struct sh_pfc *pfc, 32 struct platform_device *pdev) 33 { 34 struct sh_pfc_window *windows; 35 unsigned int *irqs = NULL; 36 unsigned int num_windows; 37 struct resource *res; 38 unsigned int i; 39 int num_irqs; 40 41 /* Count the MEM and IRQ resources. */ 42 for (num_windows = 0;; num_windows++) { 43 res = platform_get_resource(pdev, IORESOURCE_MEM, num_windows); 44 if (!res) 45 break; 46 } 47 if (num_windows == 0) 48 return -EINVAL; 49 50 num_irqs = platform_irq_count(pdev); 51 if (num_irqs < 0) 52 return num_irqs; 53 54 /* Allocate memory windows and IRQs arrays. */ 55 windows = devm_kcalloc(pfc->dev, num_windows, sizeof(*windows), 56 GFP_KERNEL); 57 if (windows == NULL) 58 return -ENOMEM; 59 60 pfc->num_windows = num_windows; 61 pfc->windows = windows; 62 63 if (num_irqs) { 64 irqs = devm_kcalloc(pfc->dev, num_irqs, sizeof(*irqs), 65 GFP_KERNEL); 66 if (irqs == NULL) 67 return -ENOMEM; 68 69 pfc->num_irqs = num_irqs; 70 pfc->irqs = irqs; 71 } 72 73 /* Fill them. */ 74 for (i = 0; i < num_windows; i++) { 75 windows->virt = devm_platform_get_and_ioremap_resource(pdev, i, &res); 76 if (IS_ERR(windows->virt)) 77 return -ENOMEM; 78 windows->phys = res->start; 79 windows->size = resource_size(res); 80 windows++; 81 } 82 for (i = 0; i < num_irqs; i++) 83 *irqs++ = platform_get_irq(pdev, i); 84 85 return 0; 86 } 87 88 static void __iomem *sh_pfc_phys_to_virt(struct sh_pfc *pfc, u32 reg) 89 { 90 struct sh_pfc_window *window; 91 phys_addr_t address = reg; 92 unsigned int i; 93 94 /* scan through physical windows and convert address */ 95 for (i = 0; i < pfc->num_windows; i++) { 96 window = pfc->windows + i; 97 98 if (address < window->phys) 99 continue; 100 101 if (address >= (window->phys + window->size)) 102 continue; 103 104 return window->virt + (address - window->phys); 105 } 106 107 BUG(); 108 return NULL; 109 } 110 111 int sh_pfc_get_pin_index(struct sh_pfc *pfc, unsigned int pin) 112 { 113 unsigned int offset; 114 unsigned int i; 115 116 for (i = 0, offset = 0; i < pfc->nr_ranges; ++i) { 117 const struct sh_pfc_pin_range *range = &pfc->ranges[i]; 118 119 if (pin <= range->end) 120 return pin >= range->start 121 ? offset + pin - range->start : -1; 122 123 offset += range->end - range->start + 1; 124 } 125 126 return -EINVAL; 127 } 128 129 static int sh_pfc_enum_in_range(u16 enum_id, const struct pinmux_range *r) 130 { 131 if (enum_id < r->begin) 132 return 0; 133 134 if (enum_id > r->end) 135 return 0; 136 137 return 1; 138 } 139 140 u32 sh_pfc_read_raw_reg(void __iomem *mapped_reg, unsigned int reg_width) 141 { 142 switch (reg_width) { 143 case 8: 144 return ioread8(mapped_reg); 145 case 16: 146 return ioread16(mapped_reg); 147 case 32: 148 return ioread32(mapped_reg); 149 } 150 151 BUG(); 152 return 0; 153 } 154 155 void sh_pfc_write_raw_reg(void __iomem *mapped_reg, unsigned int reg_width, 156 u32 data) 157 { 158 switch (reg_width) { 159 case 8: 160 iowrite8(data, mapped_reg); 161 return; 162 case 16: 163 iowrite16(data, mapped_reg); 164 return; 165 case 32: 166 iowrite32(data, mapped_reg); 167 return; 168 } 169 170 BUG(); 171 } 172 173 u32 sh_pfc_read(struct sh_pfc *pfc, u32 reg) 174 { 175 return sh_pfc_read_raw_reg(sh_pfc_phys_to_virt(pfc, reg), 32); 176 } 177 178 static void sh_pfc_unlock_reg(struct sh_pfc *pfc, u32 reg, u32 data) 179 { 180 u32 unlock; 181 182 if (!pfc->info->unlock_reg) 183 return; 184 185 if (pfc->info->unlock_reg >= 0x80000000UL) 186 unlock = pfc->info->unlock_reg; 187 else 188 /* unlock_reg is a mask */ 189 unlock = reg & ~pfc->info->unlock_reg; 190 191 sh_pfc_write_raw_reg(sh_pfc_phys_to_virt(pfc, unlock), 32, ~data); 192 } 193 194 void sh_pfc_write(struct sh_pfc *pfc, u32 reg, u32 data) 195 { 196 sh_pfc_unlock_reg(pfc, reg, data); 197 sh_pfc_write_raw_reg(sh_pfc_phys_to_virt(pfc, reg), 32, data); 198 } 199 200 static void sh_pfc_config_reg_helper(struct sh_pfc *pfc, 201 const struct pinmux_cfg_reg *crp, 202 unsigned int in_pos, 203 void __iomem **mapped_regp, u32 *maskp, 204 unsigned int *posp) 205 { 206 unsigned int k; 207 208 *mapped_regp = sh_pfc_phys_to_virt(pfc, crp->reg); 209 210 if (crp->field_width) { 211 *maskp = (1 << crp->field_width) - 1; 212 *posp = crp->reg_width - ((in_pos + 1) * crp->field_width); 213 } else { 214 *maskp = (1 << crp->var_field_width[in_pos]) - 1; 215 *posp = crp->reg_width; 216 for (k = 0; k <= in_pos; k++) 217 *posp -= abs(crp->var_field_width[k]); 218 } 219 } 220 221 static void sh_pfc_write_config_reg(struct sh_pfc *pfc, 222 const struct pinmux_cfg_reg *crp, 223 unsigned int field, u32 value) 224 { 225 void __iomem *mapped_reg; 226 unsigned int pos; 227 u32 mask, data; 228 229 sh_pfc_config_reg_helper(pfc, crp, field, &mapped_reg, &mask, &pos); 230 231 dev_dbg(pfc->dev, "write_reg addr = %x, value = 0x%x, field = %u, " 232 "r_width = %u, f_width = %u\n", 233 crp->reg, value, field, crp->reg_width, hweight32(mask)); 234 235 mask = ~(mask << pos); 236 value = value << pos; 237 238 data = sh_pfc_read_raw_reg(mapped_reg, crp->reg_width); 239 data &= mask; 240 data |= value; 241 242 sh_pfc_unlock_reg(pfc, crp->reg, data); 243 sh_pfc_write_raw_reg(mapped_reg, crp->reg_width, data); 244 } 245 246 static int sh_pfc_get_config_reg(struct sh_pfc *pfc, u16 enum_id, 247 const struct pinmux_cfg_reg **crp, 248 unsigned int *fieldp, u32 *valuep) 249 { 250 unsigned int k = 0; 251 252 while (1) { 253 const struct pinmux_cfg_reg *config_reg = 254 pfc->info->cfg_regs + k; 255 unsigned int r_width = config_reg->reg_width; 256 unsigned int f_width = config_reg->field_width; 257 unsigned int curr_width; 258 unsigned int bit_pos; 259 unsigned int pos = 0; 260 unsigned int m = 0; 261 262 if (!r_width) 263 break; 264 265 for (bit_pos = 0; bit_pos < r_width; bit_pos += curr_width, m++) { 266 u32 ncomb; 267 u32 n; 268 269 if (f_width) { 270 curr_width = f_width; 271 } else { 272 curr_width = abs(config_reg->var_field_width[m]); 273 if (config_reg->var_field_width[m] < 0) 274 continue; 275 } 276 277 ncomb = 1 << curr_width; 278 for (n = 0; n < ncomb; n++) { 279 if (config_reg->enum_ids[pos + n] == enum_id) { 280 *crp = config_reg; 281 *fieldp = m; 282 *valuep = n; 283 return 0; 284 } 285 } 286 pos += ncomb; 287 } 288 k++; 289 } 290 291 return -EINVAL; 292 } 293 294 static int sh_pfc_mark_to_enum(struct sh_pfc *pfc, u16 mark, int pos, 295 u16 *enum_idp) 296 { 297 const u16 *data = pfc->info->pinmux_data; 298 unsigned int k; 299 300 if (pos) { 301 *enum_idp = data[pos + 1]; 302 return pos + 1; 303 } 304 305 for (k = 0; k < pfc->info->pinmux_data_size; k++) { 306 if (data[k] == mark) { 307 *enum_idp = data[k + 1]; 308 return k + 1; 309 } 310 } 311 312 dev_err(pfc->dev, "cannot locate data/mark enum_id for mark %d\n", 313 mark); 314 return -EINVAL; 315 } 316 317 int sh_pfc_config_mux(struct sh_pfc *pfc, unsigned mark, int pinmux_type) 318 { 319 const struct pinmux_range *range; 320 int pos = 0; 321 322 switch (pinmux_type) { 323 case PINMUX_TYPE_GPIO: 324 case PINMUX_TYPE_FUNCTION: 325 range = NULL; 326 break; 327 328 #ifdef CONFIG_PINCTRL_SH_PFC_GPIO 329 case PINMUX_TYPE_OUTPUT: 330 range = &pfc->info->output; 331 break; 332 333 case PINMUX_TYPE_INPUT: 334 range = &pfc->info->input; 335 break; 336 #endif /* CONFIG_PINCTRL_SH_PFC_GPIO */ 337 338 default: 339 return -EINVAL; 340 } 341 342 /* Iterate over all the configuration fields we need to update. */ 343 while (1) { 344 const struct pinmux_cfg_reg *cr; 345 unsigned int field; 346 u16 enum_id; 347 u32 value; 348 int in_range; 349 int ret; 350 351 pos = sh_pfc_mark_to_enum(pfc, mark, pos, &enum_id); 352 if (pos < 0) 353 return pos; 354 355 if (!enum_id) 356 break; 357 358 /* Check if the configuration field selects a function. If it 359 * doesn't, skip the field if it's not applicable to the 360 * requested pinmux type. 361 */ 362 in_range = sh_pfc_enum_in_range(enum_id, &pfc->info->function); 363 if (!in_range) { 364 if (pinmux_type == PINMUX_TYPE_FUNCTION) { 365 /* Functions are allowed to modify all 366 * fields. 367 */ 368 in_range = 1; 369 } else if (pinmux_type != PINMUX_TYPE_GPIO) { 370 /* Input/output types can only modify fields 371 * that correspond to their respective ranges. 372 */ 373 in_range = sh_pfc_enum_in_range(enum_id, range); 374 375 /* 376 * special case pass through for fixed 377 * input-only or output-only pins without 378 * function enum register association. 379 */ 380 if (in_range && enum_id == range->force) 381 continue; 382 } 383 /* GPIOs are only allowed to modify function fields. */ 384 } 385 386 if (!in_range) 387 continue; 388 389 ret = sh_pfc_get_config_reg(pfc, enum_id, &cr, &field, &value); 390 if (ret < 0) 391 return ret; 392 393 sh_pfc_write_config_reg(pfc, cr, field, value); 394 } 395 396 return 0; 397 } 398 399 static int sh_pfc_init_ranges(struct sh_pfc *pfc) 400 { 401 struct sh_pfc_pin_range *range; 402 unsigned int nr_ranges; 403 unsigned int i; 404 405 if (pfc->info->pins[0].pin == (u16)-1) { 406 /* Pin number -1 denotes that the SoC doesn't report pin numbers 407 * in its pin arrays yet. Consider the pin numbers range as 408 * continuous and allocate a single range. 409 */ 410 pfc->nr_ranges = 1; 411 pfc->ranges = devm_kzalloc(pfc->dev, sizeof(*pfc->ranges), 412 GFP_KERNEL); 413 if (pfc->ranges == NULL) 414 return -ENOMEM; 415 416 pfc->ranges->start = 0; 417 pfc->ranges->end = pfc->info->nr_pins - 1; 418 pfc->nr_gpio_pins = pfc->info->nr_pins; 419 420 return 0; 421 } 422 423 /* Count, allocate and fill the ranges. The PFC SoC data pins array must 424 * be sorted by pin numbers, and pins without a GPIO port must come 425 * last. 426 */ 427 for (i = 1, nr_ranges = 1; i < pfc->info->nr_pins; ++i) { 428 if (pfc->info->pins[i-1].pin != pfc->info->pins[i].pin - 1) 429 nr_ranges++; 430 } 431 432 pfc->nr_ranges = nr_ranges; 433 pfc->ranges = devm_kcalloc(pfc->dev, nr_ranges, sizeof(*pfc->ranges), 434 GFP_KERNEL); 435 if (pfc->ranges == NULL) 436 return -ENOMEM; 437 438 range = pfc->ranges; 439 range->start = pfc->info->pins[0].pin; 440 441 for (i = 1; i < pfc->info->nr_pins; ++i) { 442 if (pfc->info->pins[i-1].pin == pfc->info->pins[i].pin - 1) 443 continue; 444 445 range->end = pfc->info->pins[i-1].pin; 446 if (!(pfc->info->pins[i-1].configs & SH_PFC_PIN_CFG_NO_GPIO)) 447 pfc->nr_gpio_pins = range->end + 1; 448 449 range++; 450 range->start = pfc->info->pins[i].pin; 451 } 452 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; 456 457 return 0; 458 } 459 460 #ifdef CONFIG_OF 461 static const struct of_device_id sh_pfc_of_table[] = { 462 #ifdef CONFIG_PINCTRL_PFC_EMEV2 463 { 464 .compatible = "renesas,pfc-emev2", 465 .data = &emev2_pinmux_info, 466 }, 467 #endif 468 #ifdef CONFIG_PINCTRL_PFC_R8A73A4 469 { 470 .compatible = "renesas,pfc-r8a73a4", 471 .data = &r8a73a4_pinmux_info, 472 }, 473 #endif 474 #ifdef CONFIG_PINCTRL_PFC_R8A7740 475 { 476 .compatible = "renesas,pfc-r8a7740", 477 .data = &r8a7740_pinmux_info, 478 }, 479 #endif 480 #ifdef CONFIG_PINCTRL_PFC_R8A7742 481 { 482 .compatible = "renesas,pfc-r8a7742", 483 .data = &r8a7742_pinmux_info, 484 }, 485 #endif 486 #ifdef CONFIG_PINCTRL_PFC_R8A7743 487 { 488 .compatible = "renesas,pfc-r8a7743", 489 .data = &r8a7743_pinmux_info, 490 }, 491 #endif 492 #ifdef CONFIG_PINCTRL_PFC_R8A7744 493 { 494 .compatible = "renesas,pfc-r8a7744", 495 .data = &r8a7744_pinmux_info, 496 }, 497 #endif 498 #ifdef CONFIG_PINCTRL_PFC_R8A7745 499 { 500 .compatible = "renesas,pfc-r8a7745", 501 .data = &r8a7745_pinmux_info, 502 }, 503 #endif 504 #ifdef CONFIG_PINCTRL_PFC_R8A77470 505 { 506 .compatible = "renesas,pfc-r8a77470", 507 .data = &r8a77470_pinmux_info, 508 }, 509 #endif 510 #ifdef CONFIG_PINCTRL_PFC_R8A774A1 511 { 512 .compatible = "renesas,pfc-r8a774a1", 513 .data = &r8a774a1_pinmux_info, 514 }, 515 #endif 516 #ifdef CONFIG_PINCTRL_PFC_R8A774B1 517 { 518 .compatible = "renesas,pfc-r8a774b1", 519 .data = &r8a774b1_pinmux_info, 520 }, 521 #endif 522 #ifdef CONFIG_PINCTRL_PFC_R8A774C0 523 { 524 .compatible = "renesas,pfc-r8a774c0", 525 .data = &r8a774c0_pinmux_info, 526 }, 527 #endif 528 #ifdef CONFIG_PINCTRL_PFC_R8A774E1 529 { 530 .compatible = "renesas,pfc-r8a774e1", 531 .data = &r8a774e1_pinmux_info, 532 }, 533 #endif 534 #ifdef CONFIG_PINCTRL_PFC_R8A7778 535 { 536 .compatible = "renesas,pfc-r8a7778", 537 .data = &r8a7778_pinmux_info, 538 }, 539 #endif 540 #ifdef CONFIG_PINCTRL_PFC_R8A7779 541 { 542 .compatible = "renesas,pfc-r8a7779", 543 .data = &r8a7779_pinmux_info, 544 }, 545 #endif 546 #ifdef CONFIG_PINCTRL_PFC_R8A7790 547 { 548 .compatible = "renesas,pfc-r8a7790", 549 .data = &r8a7790_pinmux_info, 550 }, 551 #endif 552 #ifdef CONFIG_PINCTRL_PFC_R8A7791 553 { 554 .compatible = "renesas,pfc-r8a7791", 555 .data = &r8a7791_pinmux_info, 556 }, 557 #endif 558 #ifdef CONFIG_PINCTRL_PFC_R8A7792 559 { 560 .compatible = "renesas,pfc-r8a7792", 561 .data = &r8a7792_pinmux_info, 562 }, 563 #endif 564 #ifdef CONFIG_PINCTRL_PFC_R8A7793 565 { 566 .compatible = "renesas,pfc-r8a7793", 567 .data = &r8a7793_pinmux_info, 568 }, 569 #endif 570 #ifdef CONFIG_PINCTRL_PFC_R8A7794 571 { 572 .compatible = "renesas,pfc-r8a7794", 573 .data = &r8a7794_pinmux_info, 574 }, 575 #endif 576 /* 577 * Both r8a7795 entries must be present to make sanity checks work, but only 578 * the first entry is actually used. 579 * R-Car H3 ES1.x is matched using soc_device_match() instead. 580 */ 581 #ifdef CONFIG_PINCTRL_PFC_R8A77951 582 { 583 .compatible = "renesas,pfc-r8a7795", 584 .data = &r8a77951_pinmux_info, 585 }, 586 #endif 587 #ifdef CONFIG_PINCTRL_PFC_R8A77950 588 { 589 .compatible = "renesas,pfc-r8a7795", 590 .data = &r8a77950_pinmux_info, 591 }, 592 #endif 593 #ifdef CONFIG_PINCTRL_PFC_R8A77960 594 { 595 .compatible = "renesas,pfc-r8a7796", 596 .data = &r8a77960_pinmux_info, 597 }, 598 #endif 599 #ifdef CONFIG_PINCTRL_PFC_R8A77961 600 { 601 .compatible = "renesas,pfc-r8a77961", 602 .data = &r8a77961_pinmux_info, 603 }, 604 #endif 605 #ifdef CONFIG_PINCTRL_PFC_R8A77965 606 { 607 .compatible = "renesas,pfc-r8a77965", 608 .data = &r8a77965_pinmux_info, 609 }, 610 #endif 611 #ifdef CONFIG_PINCTRL_PFC_R8A77970 612 { 613 .compatible = "renesas,pfc-r8a77970", 614 .data = &r8a77970_pinmux_info, 615 }, 616 #endif 617 #ifdef CONFIG_PINCTRL_PFC_R8A77980 618 { 619 .compatible = "renesas,pfc-r8a77980", 620 .data = &r8a77980_pinmux_info, 621 }, 622 #endif 623 #ifdef CONFIG_PINCTRL_PFC_R8A77990 624 { 625 .compatible = "renesas,pfc-r8a77990", 626 .data = &r8a77990_pinmux_info, 627 }, 628 #endif 629 #ifdef CONFIG_PINCTRL_PFC_R8A77995 630 { 631 .compatible = "renesas,pfc-r8a77995", 632 .data = &r8a77995_pinmux_info, 633 }, 634 #endif 635 #ifdef CONFIG_PINCTRL_PFC_R8A779A0 636 { 637 .compatible = "renesas,pfc-r8a779a0", 638 .data = &r8a779a0_pinmux_info, 639 }, 640 #endif 641 #ifdef CONFIG_PINCTRL_PFC_R8A779F0 642 { 643 .compatible = "renesas,pfc-r8a779f0", 644 .data = &r8a779f0_pinmux_info, 645 }, 646 #endif 647 #ifdef CONFIG_PINCTRL_PFC_R8A779G0 648 { 649 .compatible = "renesas,pfc-r8a779g0", 650 .data = &r8a779g0_pinmux_info, 651 }, 652 #endif 653 #ifdef CONFIG_PINCTRL_PFC_SH73A0 654 { 655 .compatible = "renesas,pfc-sh73a0", 656 .data = &sh73a0_pinmux_info, 657 }, 658 #endif 659 { }, 660 }; 661 #endif 662 663 #if defined(CONFIG_PM_SLEEP) && defined(CONFIG_ARM_PSCI_FW) 664 static void sh_pfc_nop_reg(struct sh_pfc *pfc, u32 reg, unsigned int idx) 665 { 666 } 667 668 static void sh_pfc_save_reg(struct sh_pfc *pfc, u32 reg, unsigned int idx) 669 { 670 pfc->saved_regs[idx] = sh_pfc_read(pfc, reg); 671 } 672 673 static void sh_pfc_restore_reg(struct sh_pfc *pfc, u32 reg, unsigned int idx) 674 { 675 sh_pfc_write(pfc, reg, pfc->saved_regs[idx]); 676 } 677 678 static unsigned int sh_pfc_walk_regs(struct sh_pfc *pfc, 679 void (*do_reg)(struct sh_pfc *pfc, u32 reg, unsigned int idx)) 680 { 681 unsigned int i, n = 0; 682 683 if (pfc->info->cfg_regs) 684 for (i = 0; pfc->info->cfg_regs[i].reg; i++) 685 do_reg(pfc, pfc->info->cfg_regs[i].reg, n++); 686 687 if (pfc->info->drive_regs) 688 for (i = 0; pfc->info->drive_regs[i].reg; i++) 689 do_reg(pfc, pfc->info->drive_regs[i].reg, n++); 690 691 if (pfc->info->bias_regs) 692 for (i = 0; pfc->info->bias_regs[i].puen || 693 pfc->info->bias_regs[i].pud; i++) { 694 if (pfc->info->bias_regs[i].puen) 695 do_reg(pfc, pfc->info->bias_regs[i].puen, n++); 696 if (pfc->info->bias_regs[i].pud) 697 do_reg(pfc, pfc->info->bias_regs[i].pud, n++); 698 } 699 700 if (pfc->info->ioctrl_regs) 701 for (i = 0; pfc->info->ioctrl_regs[i].reg; i++) 702 do_reg(pfc, pfc->info->ioctrl_regs[i].reg, n++); 703 704 return n; 705 } 706 707 static int sh_pfc_suspend_init(struct sh_pfc *pfc) 708 { 709 unsigned int n; 710 711 /* This is the best we can do to check for the presence of PSCI */ 712 if (!psci_ops.cpu_suspend) 713 return 0; 714 715 n = sh_pfc_walk_regs(pfc, sh_pfc_nop_reg); 716 if (!n) 717 return 0; 718 719 pfc->saved_regs = devm_kmalloc_array(pfc->dev, n, 720 sizeof(*pfc->saved_regs), 721 GFP_KERNEL); 722 if (!pfc->saved_regs) 723 return -ENOMEM; 724 725 dev_dbg(pfc->dev, "Allocated space to save %u regs\n", n); 726 return 0; 727 } 728 729 static int sh_pfc_suspend_noirq(struct device *dev) 730 { 731 struct sh_pfc *pfc = dev_get_drvdata(dev); 732 733 if (pfc->saved_regs) 734 sh_pfc_walk_regs(pfc, sh_pfc_save_reg); 735 return 0; 736 } 737 738 static int sh_pfc_resume_noirq(struct device *dev) 739 { 740 struct sh_pfc *pfc = dev_get_drvdata(dev); 741 742 if (pfc->saved_regs) 743 sh_pfc_walk_regs(pfc, sh_pfc_restore_reg); 744 return 0; 745 } 746 747 static const struct dev_pm_ops sh_pfc_pm = { 748 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(sh_pfc_suspend_noirq, sh_pfc_resume_noirq) 749 }; 750 #define DEV_PM_OPS &sh_pfc_pm 751 #else 752 static int sh_pfc_suspend_init(struct sh_pfc *pfc) { return 0; } 753 #define DEV_PM_OPS NULL 754 #endif /* CONFIG_PM_SLEEP && CONFIG_ARM_PSCI_FW */ 755 756 #ifdef DEBUG 757 #define SH_PFC_MAX_REGS 300 758 #define SH_PFC_MAX_ENUMS 5000 759 760 static unsigned int sh_pfc_errors __initdata; 761 static unsigned int sh_pfc_warnings __initdata; 762 static bool sh_pfc_bias_done __initdata; 763 static bool sh_pfc_drive_done __initdata; 764 static bool sh_pfc_power_done __initdata; 765 static struct { 766 u32 reg; 767 u32 bits; 768 } *sh_pfc_regs __initdata; 769 static u32 sh_pfc_num_regs __initdata; 770 static u16 *sh_pfc_enums __initdata; 771 static u32 sh_pfc_num_enums __initdata; 772 773 #define sh_pfc_err(fmt, ...) \ 774 do { \ 775 pr_err("%s: " fmt, drvname, ##__VA_ARGS__); \ 776 sh_pfc_errors++; \ 777 } while (0) 778 779 #define sh_pfc_err_once(type, fmt, ...) \ 780 do { \ 781 if (!sh_pfc_ ## type ## _done) { \ 782 sh_pfc_ ## type ## _done = true; \ 783 sh_pfc_err(fmt, ##__VA_ARGS__); \ 784 } \ 785 } while (0) 786 787 #define sh_pfc_warn(fmt, ...) \ 788 do { \ 789 pr_warn("%s: " fmt, drvname, ##__VA_ARGS__); \ 790 sh_pfc_warnings++; \ 791 } while (0) 792 793 static bool __init is0s(const u16 *enum_ids, unsigned int n) 794 { 795 unsigned int i; 796 797 for (i = 0; i < n; i++) 798 if (enum_ids[i]) 799 return false; 800 801 return true; 802 } 803 804 static bool __init same_name(const char *a, const char *b) 805 { 806 return a && b && !strcmp(a, b); 807 } 808 809 static void __init sh_pfc_check_reg(const char *drvname, u32 reg, u32 bits) 810 { 811 unsigned int i; 812 813 for (i = 0; i < sh_pfc_num_regs; i++) { 814 if (reg != sh_pfc_regs[i].reg) 815 continue; 816 817 if (bits & sh_pfc_regs[i].bits) 818 sh_pfc_err("reg 0x%x: bits 0x%x conflict\n", reg, 819 bits & sh_pfc_regs[i].bits); 820 821 sh_pfc_regs[i].bits |= bits; 822 return; 823 } 824 825 if (sh_pfc_num_regs == SH_PFC_MAX_REGS) { 826 pr_warn_once("%s: Please increase SH_PFC_MAX_REGS\n", drvname); 827 return; 828 } 829 830 sh_pfc_regs[sh_pfc_num_regs].reg = reg; 831 sh_pfc_regs[sh_pfc_num_regs].bits = bits; 832 sh_pfc_num_regs++; 833 } 834 835 static int __init sh_pfc_check_enum(const char *drvname, u16 enum_id) 836 { 837 unsigned int i; 838 839 for (i = 0; i < sh_pfc_num_enums; i++) { 840 if (enum_id == sh_pfc_enums[i]) 841 return -EINVAL; 842 } 843 844 if (sh_pfc_num_enums == SH_PFC_MAX_ENUMS) { 845 pr_warn_once("%s: Please increase SH_PFC_MAX_ENUMS\n", drvname); 846 return 0; 847 } 848 849 sh_pfc_enums[sh_pfc_num_enums++] = enum_id; 850 return 0; 851 } 852 853 static void __init sh_pfc_check_reg_enums(const char *drvname, u32 reg, 854 const u16 *enums, unsigned int n) 855 { 856 unsigned int i; 857 858 for (i = 0; i < n; i++) { 859 if (enums[i] && sh_pfc_check_enum(drvname, enums[i])) 860 sh_pfc_err("reg 0x%x enum_id %u conflict\n", reg, 861 enums[i]); 862 } 863 } 864 865 static const struct sh_pfc_pin __init *sh_pfc_find_pin( 866 const struct sh_pfc_soc_info *info, u32 reg, unsigned int pin) 867 { 868 const char *drvname = info->name; 869 unsigned int i; 870 871 if (pin == SH_PFC_PIN_NONE) 872 return NULL; 873 874 for (i = 0; i < info->nr_pins; i++) { 875 if (pin == info->pins[i].pin) 876 return &info->pins[i]; 877 } 878 879 sh_pfc_err("reg 0x%x: pin %u not found\n", reg, pin); 880 return NULL; 881 } 882 883 static void __init sh_pfc_check_cfg_reg(const char *drvname, 884 const struct pinmux_cfg_reg *cfg_reg) 885 { 886 unsigned int i, n, rw, r; 887 int fw; 888 889 sh_pfc_check_reg(drvname, cfg_reg->reg, 890 GENMASK(cfg_reg->reg_width - 1, 0)); 891 892 if (cfg_reg->field_width) { 893 fw = cfg_reg->field_width; 894 n = (cfg_reg->reg_width / fw) << fw; 895 for (i = 0, r = 0; i < n; i += 1 << fw) { 896 if (is0s(&cfg_reg->enum_ids[i], 1 << fw)) 897 r++; 898 } 899 900 if ((r << fw) * sizeof(u16) > cfg_reg->reg_width / fw) 901 sh_pfc_warn("reg 0x%x can be described with variable-width reserved fields\n", 902 cfg_reg->reg); 903 904 /* Skip field checks (done at build time) */ 905 goto check_enum_ids; 906 } 907 908 for (i = 0, n = 0, rw = 0; (fw = cfg_reg->var_field_width[i]); i++) { 909 if (fw < 0) { 910 rw += -fw; 911 } else { 912 if (is0s(&cfg_reg->enum_ids[n], 1 << fw)) 913 sh_pfc_warn("reg 0x%x: field [%u:%u] can be described as reserved\n", 914 cfg_reg->reg, rw, rw + fw - 1); 915 n += 1 << fw; 916 rw += fw; 917 } 918 } 919 920 if (rw != cfg_reg->reg_width) 921 sh_pfc_err("reg 0x%x: var_field_width declares %u instead of %u bits\n", 922 cfg_reg->reg, rw, cfg_reg->reg_width); 923 924 if (n != cfg_reg->nr_enum_ids) 925 sh_pfc_err("reg 0x%x: enum_ids[] has %u instead of %u values\n", 926 cfg_reg->reg, cfg_reg->nr_enum_ids, n); 927 928 check_enum_ids: 929 sh_pfc_check_reg_enums(drvname, cfg_reg->reg, cfg_reg->enum_ids, n); 930 } 931 932 static void __init sh_pfc_check_drive_reg(const struct sh_pfc_soc_info *info, 933 const struct pinmux_drive_reg *drive) 934 { 935 const char *drvname = info->name; 936 const struct sh_pfc_pin *pin; 937 unsigned int i; 938 939 for (i = 0; i < ARRAY_SIZE(drive->fields); i++) { 940 const struct pinmux_drive_reg_field *field = &drive->fields[i]; 941 942 if (!field->pin && !field->offset && !field->size) 943 continue; 944 945 sh_pfc_check_reg(info->name, drive->reg, 946 GENMASK(field->offset + field->size - 1, 947 field->offset)); 948 949 pin = sh_pfc_find_pin(info, drive->reg, field->pin); 950 if (pin && !(pin->configs & SH_PFC_PIN_CFG_DRIVE_STRENGTH)) 951 sh_pfc_err("drive_reg 0x%x: field %u: pin %s lacks SH_PFC_PIN_CFG_DRIVE_STRENGTH flag\n", 952 drive->reg, i, pin->name); 953 } 954 } 955 956 static void __init sh_pfc_check_bias_reg(const struct sh_pfc_soc_info *info, 957 const struct pinmux_bias_reg *bias) 958 { 959 const char *drvname = info->name; 960 const struct sh_pfc_pin *pin; 961 unsigned int i; 962 u32 bits; 963 964 for (i = 0, bits = 0; i < ARRAY_SIZE(bias->pins); i++) 965 if (bias->pins[i] != SH_PFC_PIN_NONE) 966 bits |= BIT(i); 967 968 if (bias->puen) 969 sh_pfc_check_reg(info->name, bias->puen, bits); 970 if (bias->pud) 971 sh_pfc_check_reg(info->name, bias->pud, bits); 972 for (i = 0; i < ARRAY_SIZE(bias->pins); i++) { 973 pin = sh_pfc_find_pin(info, bias->puen, bias->pins[i]); 974 if (!pin) 975 continue; 976 977 if (bias->puen && bias->pud) { 978 /* 979 * Pull-enable and pull-up/down control registers 980 * As some SoCs have pins that support only pull-up 981 * or pull-down, we just check for one of them 982 */ 983 if (!(pin->configs & SH_PFC_PIN_CFG_PULL_UP_DOWN)) 984 sh_pfc_err("bias_reg 0x%x:%u: pin %s lacks one or more SH_PFC_PIN_CFG_PULL_* flags\n", 985 bias->puen, i, pin->name); 986 } else if (bias->puen) { 987 /* Pull-up control register only */ 988 if (!(pin->configs & SH_PFC_PIN_CFG_PULL_UP)) 989 sh_pfc_err("bias_reg 0x%x:%u: pin %s lacks SH_PFC_PIN_CFG_PULL_UP flag\n", 990 bias->puen, i, pin->name); 991 } else if (bias->pud) { 992 /* Pull-down control register only */ 993 if (!(pin->configs & SH_PFC_PIN_CFG_PULL_DOWN)) 994 sh_pfc_err("bias_reg 0x%x:%u: pin %s lacks SH_PFC_PIN_CFG_PULL_DOWN flag\n", 995 bias->pud, i, pin->name); 996 } 997 } 998 } 999 1000 static void __init sh_pfc_compare_groups(const char *drvname, 1001 const struct sh_pfc_pin_group *a, 1002 const struct sh_pfc_pin_group *b) 1003 { 1004 unsigned int i; 1005 size_t len; 1006 1007 if (same_name(a->name, b->name)) 1008 sh_pfc_err("group %s: name conflict\n", a->name); 1009 1010 if (a->nr_pins > b->nr_pins) 1011 swap(a, b); 1012 1013 len = a->nr_pins * sizeof(a->pins[0]); 1014 for (i = 0; i <= b->nr_pins - a->nr_pins; i++) { 1015 if (a->pins == b->pins + i || a->mux == b->mux + i || 1016 memcmp(a->pins, b->pins + i, len) || 1017 memcmp(a->mux, b->mux + i, len)) 1018 continue; 1019 1020 if (a->nr_pins == b->nr_pins) 1021 sh_pfc_warn("group %s can be an alias for %s\n", 1022 a->name, b->name); 1023 else 1024 sh_pfc_warn("group %s is a subset of %s\n", a->name, 1025 b->name); 1026 } 1027 } 1028 1029 static void __init sh_pfc_check_info(const struct sh_pfc_soc_info *info) 1030 { 1031 const struct pinmux_drive_reg *drive_regs = info->drive_regs; 1032 #define drive_nfields ARRAY_SIZE(drive_regs->fields) 1033 #define drive_ofs(i) drive_regs[(i) / drive_nfields] 1034 #define drive_reg(i) drive_ofs(i).reg 1035 #define drive_bit(i) ((i) % drive_nfields) 1036 #define drive_field(i) drive_ofs(i).fields[drive_bit(i)] 1037 const struct pinmux_bias_reg *bias_regs = info->bias_regs; 1038 #define bias_npins ARRAY_SIZE(bias_regs->pins) 1039 #define bias_ofs(i) bias_regs[(i) / bias_npins] 1040 #define bias_puen(i) bias_ofs(i).puen 1041 #define bias_pud(i) bias_ofs(i).pud 1042 #define bias_bit(i) ((i) % bias_npins) 1043 #define bias_pin(i) bias_ofs(i).pins[bias_bit(i)] 1044 const char *drvname = info->name; 1045 unsigned int *refcnts; 1046 unsigned int i, j, k; 1047 1048 pr_info("sh_pfc: Checking %s\n", drvname); 1049 sh_pfc_num_regs = 0; 1050 sh_pfc_num_enums = 0; 1051 sh_pfc_bias_done = false; 1052 sh_pfc_drive_done = false; 1053 sh_pfc_power_done = false; 1054 1055 /* Check pins */ 1056 for (i = 0; i < info->nr_pins; i++) { 1057 const struct sh_pfc_pin *pin = &info->pins[i]; 1058 unsigned int x; 1059 1060 if (!pin->name) { 1061 sh_pfc_err("empty pin %u\n", i); 1062 continue; 1063 } 1064 for (j = 0; j < i; j++) { 1065 const struct sh_pfc_pin *pin2 = &info->pins[j]; 1066 1067 if (same_name(pin->name, pin2->name)) 1068 sh_pfc_err("pin %s: name conflict\n", 1069 pin->name); 1070 1071 if (pin->pin != (u16)-1 && pin->pin == pin2->pin) 1072 sh_pfc_err("pin %s/%s: pin %u conflict\n", 1073 pin->name, pin2->name, pin->pin); 1074 1075 if (pin->enum_id && pin->enum_id == pin2->enum_id) 1076 sh_pfc_err("pin %s/%s: enum_id %u conflict\n", 1077 pin->name, pin2->name, 1078 pin->enum_id); 1079 } 1080 1081 if (pin->configs & SH_PFC_PIN_CFG_PULL_UP_DOWN) { 1082 if (!info->ops || !info->ops->get_bias || 1083 !info->ops->set_bias) 1084 sh_pfc_err_once(bias, "SH_PFC_PIN_CFG_PULL_* flag set but .[gs]et_bias() not implemented\n"); 1085 1086 if (!bias_regs && 1087 (!info->ops || !info->ops->pin_to_portcr)) 1088 sh_pfc_err_once(bias, "SH_PFC_PIN_CFG_PULL_UP flag set but no bias_regs defined and .pin_to_portcr() not implemented\n"); 1089 } 1090 1091 if ((pin->configs & SH_PFC_PIN_CFG_PULL_UP_DOWN) && bias_regs) { 1092 const struct pinmux_bias_reg *bias_reg = 1093 rcar_pin_to_bias_reg(info, pin->pin, &x); 1094 1095 if (!bias_reg || 1096 ((pin->configs & SH_PFC_PIN_CFG_PULL_UP) && 1097 !bias_reg->puen)) 1098 sh_pfc_err("pin %s: SH_PFC_PIN_CFG_PULL_UP flag set but pin not in bias_regs\n", 1099 pin->name); 1100 1101 if (!bias_reg || 1102 ((pin->configs & SH_PFC_PIN_CFG_PULL_DOWN) && 1103 !bias_reg->pud)) 1104 sh_pfc_err("pin %s: SH_PFC_PIN_CFG_PULL_DOWN flag set but pin not in bias_regs\n", 1105 pin->name); 1106 } 1107 1108 if (pin->configs & SH_PFC_PIN_CFG_DRIVE_STRENGTH) { 1109 if (!drive_regs) { 1110 sh_pfc_err_once(drive, "SH_PFC_PIN_CFG_DRIVE_STRENGTH flag set but drive_regs missing\n"); 1111 } else { 1112 for (j = 0; drive_reg(j); j++) { 1113 if (!drive_field(j).pin && 1114 !drive_field(j).offset && 1115 !drive_field(j).size) 1116 continue; 1117 1118 if (drive_field(j).pin == pin->pin) 1119 break; 1120 } 1121 1122 if (!drive_reg(j)) 1123 sh_pfc_err("pin %s: SH_PFC_PIN_CFG_DRIVE_STRENGTH flag set but not in drive_regs\n", 1124 pin->name); 1125 } 1126 } 1127 1128 if (pin->configs & SH_PFC_PIN_CFG_IO_VOLTAGE) { 1129 if (!info->ops || !info->ops->pin_to_pocctrl) 1130 sh_pfc_err_once(power, "SH_PFC_PIN_CFG_IO_VOLTAGE flag set but .pin_to_pocctrl() not implemented\n"); 1131 else if (info->ops->pin_to_pocctrl(pin->pin, &x) < 0) 1132 sh_pfc_err("pin %s: SH_PFC_PIN_CFG_IO_VOLTAGE set but invalid pin_to_pocctrl()\n", 1133 pin->name); 1134 } else if (info->ops && info->ops->pin_to_pocctrl && 1135 info->ops->pin_to_pocctrl(pin->pin, &x) >= 0) { 1136 sh_pfc_warn("pin %s: SH_PFC_PIN_CFG_IO_VOLTAGE not set but valid pin_to_pocctrl()\n", 1137 pin->name); 1138 } 1139 } 1140 1141 /* Check groups and functions */ 1142 refcnts = kcalloc(info->nr_groups, sizeof(*refcnts), GFP_KERNEL); 1143 if (!refcnts) 1144 return; 1145 1146 for (i = 0; i < info->nr_functions; i++) { 1147 const struct sh_pfc_function *func = &info->functions[i]; 1148 1149 if (!func->name) { 1150 sh_pfc_err("empty function %u\n", i); 1151 continue; 1152 } 1153 for (j = 0; j < i; j++) { 1154 if (same_name(func->name, info->functions[j].name)) 1155 sh_pfc_err("function %s: name conflict\n", 1156 func->name); 1157 } 1158 for (j = 0; j < func->nr_groups; j++) { 1159 for (k = 0; k < info->nr_groups; k++) { 1160 if (same_name(func->groups[j], 1161 info->groups[k].name)) { 1162 refcnts[k]++; 1163 break; 1164 } 1165 } 1166 1167 if (k == info->nr_groups) 1168 sh_pfc_err("function %s: group %s not found\n", 1169 func->name, func->groups[j]); 1170 } 1171 } 1172 1173 for (i = 0; i < info->nr_groups; i++) { 1174 const struct sh_pfc_pin_group *group = &info->groups[i]; 1175 1176 if (!group->name) { 1177 sh_pfc_err("empty group %u\n", i); 1178 continue; 1179 } 1180 for (j = 0; j < i; j++) 1181 sh_pfc_compare_groups(drvname, group, &info->groups[j]); 1182 1183 if (!refcnts[i]) 1184 sh_pfc_err("orphan group %s\n", group->name); 1185 else if (refcnts[i] > 1) 1186 sh_pfc_warn("group %s referenced by %u functions\n", 1187 group->name, refcnts[i]); 1188 } 1189 1190 kfree(refcnts); 1191 1192 /* Check config register descriptions */ 1193 for (i = 0; info->cfg_regs && info->cfg_regs[i].reg; i++) 1194 sh_pfc_check_cfg_reg(drvname, &info->cfg_regs[i]); 1195 1196 /* Check drive strength registers */ 1197 for (i = 0; drive_regs && drive_regs[i].reg; i++) 1198 sh_pfc_check_drive_reg(info, &drive_regs[i]); 1199 1200 for (i = 0; drive_regs && drive_reg(i); i++) { 1201 if (!drive_field(i).pin && !drive_field(i).offset && 1202 !drive_field(i).size) 1203 continue; 1204 1205 for (j = 0; j < i; j++) { 1206 if (drive_field(i).pin == drive_field(j).pin && 1207 drive_field(j).offset && drive_field(j).size) { 1208 sh_pfc_err("drive_reg 0x%x:%zu/0x%x:%zu: pin conflict\n", 1209 drive_reg(i), drive_bit(i), 1210 drive_reg(j), drive_bit(j)); 1211 } 1212 } 1213 } 1214 1215 /* Check bias registers */ 1216 for (i = 0; bias_regs && (bias_regs[i].puen || bias_regs[i].pud); i++) 1217 sh_pfc_check_bias_reg(info, &bias_regs[i]); 1218 1219 for (i = 0; bias_regs && (bias_puen(i) || bias_pud(i)); i++) { 1220 if (bias_pin(i) == SH_PFC_PIN_NONE) 1221 continue; 1222 1223 for (j = 0; j < i; j++) { 1224 if (bias_pin(i) != bias_pin(j)) 1225 continue; 1226 1227 if (bias_puen(i) && bias_puen(j)) 1228 sh_pfc_err("bias_reg 0x%x:%zu/0x%x:%zu: pin conflict\n", 1229 bias_puen(i), bias_bit(i), 1230 bias_puen(j), bias_bit(j)); 1231 if (bias_pud(i) && bias_pud(j)) 1232 sh_pfc_err("bias_reg 0x%x:%zu/0x%x:%zu: pin conflict\n", 1233 bias_pud(i), bias_bit(i), 1234 bias_pud(j), bias_bit(j)); 1235 } 1236 } 1237 1238 /* Check ioctrl registers */ 1239 for (i = 0; info->ioctrl_regs && info->ioctrl_regs[i].reg; i++) 1240 sh_pfc_check_reg(drvname, info->ioctrl_regs[i].reg, U32_MAX); 1241 1242 /* Check data registers */ 1243 for (i = 0; info->data_regs && info->data_regs[i].reg; i++) { 1244 sh_pfc_check_reg(drvname, info->data_regs[i].reg, 1245 GENMASK(info->data_regs[i].reg_width - 1, 0)); 1246 sh_pfc_check_reg_enums(drvname, info->data_regs[i].reg, 1247 info->data_regs[i].enum_ids, 1248 info->data_regs[i].reg_width); 1249 } 1250 1251 #ifdef CONFIG_PINCTRL_SH_FUNC_GPIO 1252 /* Check function GPIOs */ 1253 for (i = 0; i < info->nr_func_gpios; i++) { 1254 const struct pinmux_func *func = &info->func_gpios[i]; 1255 1256 if (!func->name) { 1257 sh_pfc_err("empty function gpio %u\n", i); 1258 continue; 1259 } 1260 for (j = 0; j < i; j++) { 1261 if (same_name(func->name, info->func_gpios[j].name)) 1262 sh_pfc_err("func_gpio %s: name conflict\n", 1263 func->name); 1264 } 1265 if (sh_pfc_check_enum(drvname, func->enum_id)) 1266 sh_pfc_err("%s enum_id %u conflict\n", func->name, 1267 func->enum_id); 1268 } 1269 #endif 1270 } 1271 1272 static void __init sh_pfc_check_driver(const struct platform_driver *pdrv) 1273 { 1274 unsigned int i; 1275 1276 if (!IS_ENABLED(CONFIG_SUPERH) && 1277 !of_find_matching_node(NULL, pdrv->driver.of_match_table)) 1278 return; 1279 1280 sh_pfc_regs = kcalloc(SH_PFC_MAX_REGS, sizeof(*sh_pfc_regs), 1281 GFP_KERNEL); 1282 if (!sh_pfc_regs) 1283 return; 1284 1285 sh_pfc_enums = kcalloc(SH_PFC_MAX_ENUMS, sizeof(*sh_pfc_enums), 1286 GFP_KERNEL); 1287 if (!sh_pfc_enums) 1288 goto free_regs; 1289 1290 pr_warn("sh_pfc: Checking builtin pinmux tables\n"); 1291 1292 for (i = 0; pdrv->id_table[i].name[0]; i++) 1293 sh_pfc_check_info((void *)pdrv->id_table[i].driver_data); 1294 1295 #ifdef CONFIG_OF 1296 for (i = 0; pdrv->driver.of_match_table[i].compatible[0]; i++) 1297 sh_pfc_check_info(pdrv->driver.of_match_table[i].data); 1298 #endif 1299 1300 pr_warn("sh_pfc: Detected %u errors and %u warnings\n", sh_pfc_errors, 1301 sh_pfc_warnings); 1302 1303 kfree(sh_pfc_enums); 1304 free_regs: 1305 kfree(sh_pfc_regs); 1306 } 1307 1308 #else /* !DEBUG */ 1309 static inline void sh_pfc_check_driver(struct platform_driver *pdrv) {} 1310 #endif /* !DEBUG */ 1311 1312 #ifdef CONFIG_OF 1313 static const void *sh_pfc_quirk_match(void) 1314 { 1315 #ifdef CONFIG_PINCTRL_PFC_R8A77950 1316 const struct soc_device_attribute *match; 1317 static const struct soc_device_attribute quirks[] = { 1318 { 1319 .soc_id = "r8a7795", .revision = "ES1.*", 1320 .data = &r8a77950_pinmux_info, 1321 }, 1322 { /* sentinel */ } 1323 }; 1324 1325 match = soc_device_match(quirks); 1326 if (match) 1327 return match->data; 1328 #endif /* CONFIG_PINCTRL_PFC_R8A77950 */ 1329 1330 return NULL; 1331 } 1332 #endif /* CONFIG_OF */ 1333 1334 static int sh_pfc_probe(struct platform_device *pdev) 1335 { 1336 const struct sh_pfc_soc_info *info; 1337 struct sh_pfc *pfc; 1338 int ret; 1339 1340 #ifdef CONFIG_OF 1341 if (pdev->dev.of_node) { 1342 info = sh_pfc_quirk_match(); 1343 if (!info) 1344 info = of_device_get_match_data(&pdev->dev); 1345 } else 1346 #endif 1347 info = (const void *)platform_get_device_id(pdev)->driver_data; 1348 1349 pfc = devm_kzalloc(&pdev->dev, sizeof(*pfc), GFP_KERNEL); 1350 if (pfc == NULL) 1351 return -ENOMEM; 1352 1353 pfc->info = info; 1354 pfc->dev = &pdev->dev; 1355 1356 ret = sh_pfc_map_resources(pfc, pdev); 1357 if (unlikely(ret < 0)) 1358 return ret; 1359 1360 spin_lock_init(&pfc->lock); 1361 1362 if (info->ops && info->ops->init) { 1363 ret = info->ops->init(pfc); 1364 if (ret < 0) 1365 return ret; 1366 1367 /* .init() may have overridden pfc->info */ 1368 info = pfc->info; 1369 } 1370 1371 ret = sh_pfc_suspend_init(pfc); 1372 if (ret) 1373 return ret; 1374 1375 /* Enable dummy states for those platforms without pinctrl support */ 1376 if (!of_have_populated_dt()) 1377 pinctrl_provide_dummies(); 1378 1379 ret = sh_pfc_init_ranges(pfc); 1380 if (ret < 0) 1381 return ret; 1382 1383 /* 1384 * Initialize pinctrl bindings first 1385 */ 1386 ret = sh_pfc_register_pinctrl(pfc); 1387 if (unlikely(ret != 0)) 1388 return ret; 1389 1390 #ifdef CONFIG_PINCTRL_SH_PFC_GPIO 1391 /* 1392 * Then the GPIO chip 1393 */ 1394 ret = sh_pfc_register_gpiochip(pfc); 1395 if (unlikely(ret != 0)) { 1396 /* 1397 * If the GPIO chip fails to come up we still leave the 1398 * PFC state as it is, given that there are already 1399 * extant users of it that have succeeded by this point. 1400 */ 1401 dev_notice(pfc->dev, "failed to init GPIO chip, ignoring...\n"); 1402 } 1403 #endif 1404 1405 platform_set_drvdata(pdev, pfc); 1406 1407 dev_info(pfc->dev, "%s support registered\n", info->name); 1408 1409 return 0; 1410 } 1411 1412 static const struct platform_device_id sh_pfc_id_table[] = { 1413 #ifdef CONFIG_PINCTRL_PFC_SH7203 1414 { "pfc-sh7203", (kernel_ulong_t)&sh7203_pinmux_info }, 1415 #endif 1416 #ifdef CONFIG_PINCTRL_PFC_SH7264 1417 { "pfc-sh7264", (kernel_ulong_t)&sh7264_pinmux_info }, 1418 #endif 1419 #ifdef CONFIG_PINCTRL_PFC_SH7269 1420 { "pfc-sh7269", (kernel_ulong_t)&sh7269_pinmux_info }, 1421 #endif 1422 #ifdef CONFIG_PINCTRL_PFC_SH7720 1423 { "pfc-sh7720", (kernel_ulong_t)&sh7720_pinmux_info }, 1424 #endif 1425 #ifdef CONFIG_PINCTRL_PFC_SH7722 1426 { "pfc-sh7722", (kernel_ulong_t)&sh7722_pinmux_info }, 1427 #endif 1428 #ifdef CONFIG_PINCTRL_PFC_SH7723 1429 { "pfc-sh7723", (kernel_ulong_t)&sh7723_pinmux_info }, 1430 #endif 1431 #ifdef CONFIG_PINCTRL_PFC_SH7724 1432 { "pfc-sh7724", (kernel_ulong_t)&sh7724_pinmux_info }, 1433 #endif 1434 #ifdef CONFIG_PINCTRL_PFC_SH7734 1435 { "pfc-sh7734", (kernel_ulong_t)&sh7734_pinmux_info }, 1436 #endif 1437 #ifdef CONFIG_PINCTRL_PFC_SH7757 1438 { "pfc-sh7757", (kernel_ulong_t)&sh7757_pinmux_info }, 1439 #endif 1440 #ifdef CONFIG_PINCTRL_PFC_SH7785 1441 { "pfc-sh7785", (kernel_ulong_t)&sh7785_pinmux_info }, 1442 #endif 1443 #ifdef CONFIG_PINCTRL_PFC_SH7786 1444 { "pfc-sh7786", (kernel_ulong_t)&sh7786_pinmux_info }, 1445 #endif 1446 #ifdef CONFIG_PINCTRL_PFC_SHX3 1447 { "pfc-shx3", (kernel_ulong_t)&shx3_pinmux_info }, 1448 #endif 1449 { }, 1450 }; 1451 1452 static struct platform_driver sh_pfc_driver = { 1453 .probe = sh_pfc_probe, 1454 .id_table = sh_pfc_id_table, 1455 .driver = { 1456 .name = DRV_NAME, 1457 .of_match_table = of_match_ptr(sh_pfc_of_table), 1458 .pm = DEV_PM_OPS, 1459 }, 1460 }; 1461 1462 static int __init sh_pfc_init(void) 1463 { 1464 sh_pfc_check_driver(&sh_pfc_driver); 1465 return platform_driver_register(&sh_pfc_driver); 1466 } 1467 postcore_initcall(sh_pfc_init); 1468