Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 | // SPDX-License-Identifier: GPL-2.0 /* * MediaTek common clock driver * * Copyright (C) 2018 MediaTek Inc. * Author: Ryder Lee <ryder.lee@mediatek.com> */ #include <clk-uclass.h> #include <div64.h> #include <dm.h> #include <asm/io.h> #include <linux/bitops.h> #include <linux/delay.h> #include <linux/err.h> #include "clk-mtk.h" #define REG_CON0 0 #define REG_CON1 4 #define CON0_BASE_EN BIT(0) #define CON0_PWR_ON BIT(0) #define CON0_ISO_EN BIT(1) #define CON1_PCW_CHG BIT(31) #define POSTDIV_MASK 0x7 #define INTEGER_BITS 7 /* scpsys clock off control */ #define CLK_SCP_CFG0 0x200 #define CLK_SCP_CFG1 0x204 #define SCP_ARMCK_OFF_EN GENMASK(9, 0) #define SCP_AXICK_DCM_DIS_EN BIT(0) #define SCP_AXICK_26M_SEL_EN BIT(4) /* shared functions */ static const int mtk_common_clk_of_xlate(struct clk *clk, struct ofnode_phandle_args *args, const struct mtk_clk_tree *tree) { int id; if (args->args_count != 1) { debug("Invalid args_count: %d\n", args->args_count); return -EINVAL; } id = args->args[0]; /* Remap the clk ID to the one expected by driver */ if (tree->id_offs_map) { if (id >= tree->id_offs_map_size) return -ENOENT; id = tree->id_offs_map[id]; } /* Some IDs in the map may not be valid. */ if (id < 0) return -ENOENT; clk->id = id; clk->data = 0; return 0; } static int mtk_common_clk_get_unmapped_id(struct clk *clk) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_clk_tree *tree = priv->tree; int i; if (!tree->id_offs_map) return clk->id; /* Perform reverse lookup of unmapped ID. */ for (i = 0; i < tree->id_offs_map_size; i++) { if (tree->id_offs_map[i] == clk->id) return i; } return -ENOENT; } static bool mtk_clk_id_is_pll(const struct mtk_clk_tree *tree, int mapped_id) { return tree->plls && mapped_id < tree->num_plls; } static bool mtk_clk_id_is_fclk(const struct mtk_clk_tree *tree, int mapped_id) { return tree->fclks && mapped_id < tree->num_fclks; } static bool mtk_clk_id_is_fdiv(const struct mtk_clk_tree *tree, int mapped_id) { return tree->fdivs && mapped_id >= tree->fdivs_offs && mapped_id < tree->fdivs_offs + tree->num_fdivs; } static bool mtk_clk_id_is_mux(const struct mtk_clk_tree *tree, int mapped_id) { return tree->muxes && mapped_id >= tree->muxes_offs && mapped_id < tree->muxes_offs + tree->num_muxes; } static bool mtk_clk_id_is_gate(const struct mtk_clk_tree *tree, int mapped_id) { return tree->gates && mapped_id >= tree->gates_offs && mapped_id < tree->gates_offs + tree->num_gates; } static int mtk_dummy_enable(struct clk *clk) { return 0; } static int mtk_gate_enable(void __iomem *base, const struct mtk_gate *gate) { u32 bit = BIT(gate->shift); switch (gate->flags & CLK_GATE_MASK) { case CLK_GATE_SETCLR: writel(bit, base + gate->regs->clr_ofs); break; case CLK_GATE_SETCLR_INV: writel(bit, base + gate->regs->set_ofs); break; case CLK_GATE_NO_SETCLR: clrsetbits_le32(base + gate->regs->sta_ofs, bit, 0); break; case CLK_GATE_NO_SETCLR_INV: clrsetbits_le32(base + gate->regs->sta_ofs, bit, bit); break; default: return -EINVAL; } return 0; } static int mtk_gate_disable(void __iomem *base, const struct mtk_gate *gate) { u32 bit = BIT(gate->shift); switch (gate->flags & CLK_GATE_MASK) { case CLK_GATE_SETCLR: writel(bit, base + gate->regs->set_ofs); break; case CLK_GATE_SETCLR_INV: writel(bit, base + gate->regs->clr_ofs); break; case CLK_GATE_NO_SETCLR: clrsetbits_le32(base + gate->regs->sta_ofs, bit, bit); break; case CLK_GATE_NO_SETCLR_INV: clrsetbits_le32(base + gate->regs->sta_ofs, bit, 0); break; default: return -EINVAL; } return 0; } static ulong mtk_ext_clock_get_rate(const struct mtk_clk_tree *tree, int id) { if (!tree->ext_clk_rates || id >= tree->num_ext_clks) return -ENOENT; return tree->ext_clk_rates[id]; } /* * In case the rate change propagation to parent clocks is undesirable, * this function is recursively called to find the parent to calculate * the accurate frequency. */ static ulong mtk_clk_find_parent_rate(struct clk *clk, int id, struct udevice *pdev) { struct ofnode_phandle_args args = { .args_count = 1, .args = { id }, }; struct clk parent = { }; int ret; if (pdev) parent.dev = pdev; else parent.dev = clk->dev; args.node = dev_ofnode(parent.dev); ret = ((struct clk_ops *)parent.dev->driver->ops)->of_xlate(&parent, &args); if (ret) return ret; return clk_get_rate(&parent); } static ulong mtk_find_parent_rate(struct mtk_clk_priv *priv, struct clk *clk, const int parent, u16 flags) { struct udevice *parent_dev; switch (flags & CLK_PARENT_MASK) { case CLK_PARENT_APMIXED: /* APMIXEDSYS can be parent or grandparent. */ if (dev_get_driver_ops(clk->dev) == &mtk_clk_apmixedsys_ops || dev_get_driver_ops(clk->dev) == &mtk_clk_fixed_pll_ops) { parent_dev = clk->dev; } else if (dev_get_driver_ops(priv->parent) == &mtk_clk_apmixedsys_ops || dev_get_driver_ops(priv->parent) == &mtk_clk_fixed_pll_ops) { parent_dev = priv->parent; } else { struct udevice *grandparent_dev = dev_get_parent(priv->parent); if (dev_get_driver_ops(grandparent_dev) == &mtk_clk_apmixedsys_ops || dev_get_driver_ops(grandparent_dev) == &mtk_clk_fixed_pll_ops) parent_dev = grandparent_dev; else return -EINVAL; } break; case CLK_PARENT_TOPCKGEN: if (dev_get_driver_ops(clk->dev) == &mtk_clk_topckgen_ops) parent_dev = clk->dev; else if (dev_get_driver_ops(priv->parent) == &mtk_clk_topckgen_ops) parent_dev = priv->parent; else return -EINVAL; break; case CLK_PARENT_INFRASYS: if (dev_get_driver_ops(clk->dev) != &mtk_clk_infrasys_ops) return -EINVAL; parent_dev = clk->dev; break; case CLK_PARENT_EXT: return mtk_ext_clock_get_rate(priv->tree, parent); default: parent_dev = NULL; break; } return mtk_clk_find_parent_rate(clk, parent, parent_dev); } static ulong mtk_clk_mux_get_rate(struct clk *clk, u32 off) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_composite *mux = &priv->tree->muxes[off]; const struct mtk_parent *parent; u32 index; index = readl(priv->base + mux->mux_reg); index &= mux->mux_mask << mux->mux_shift; index = index >> mux->mux_shift; parent = &mux->parent[index]; return mtk_find_parent_rate(priv, clk, parent->id, parent->flags); } static int mtk_clk_mux_set_parent(void __iomem *base, u32 parent, u32 parent_type, const struct mtk_composite *mux) { u32 val, index = 0; /* * Assume parent_type in clk_tree to be always set. If it's not, assume * parent clk ID clash is not possible. */ while (mux->parent[index].id != parent || (parent_type && (mux->parent[index].flags & CLK_PARENT_MASK) != parent_type)) if (++index == mux->num_parents) return -EINVAL; if (mux->flags & CLK_MUX_SETCLR_UPD) { val = (mux->mux_mask << mux->mux_shift); writel(val, base + mux->mux_clr_reg); val = (index << mux->mux_shift); writel(val, base + mux->mux_set_reg); if (mux->upd_shift >= 0) writel(BIT(mux->upd_shift), base + mux->upd_reg); } else { /* switch mux to a select parent */ val = readl(base + mux->mux_reg); val &= ~(mux->mux_mask << mux->mux_shift); val |= index << mux->mux_shift; writel(val, base + mux->mux_reg); } return 0; } #if CONFIG_IS_ENABLED(CMD_CLK) static void mtk_clk_print_dev_parent(struct udevice *parent) { printf("Parent device: %s %s\n", parent->driver->name, parent->name); } static void mtk_clk_print_mapped_id(int unmapped_id, int mapped_id, bool has_map) { /* * If there is a ID map, then having unmapped and mapped IDs differ is * expected. On the other hand, if there is no map, then they should be * the same, and it is a programming error if they differ. */ if (has_map) printf(", (mapped ID: %u)", mapped_id); else if (unmapped_id != mapped_id) printf(", (error! should be %u)", mapped_id); } static void mtk_clk_print_rate(struct udevice *dev, int mapped_id) { struct clk clk = { .dev = dev, .id = mapped_id, }; ulong rate = clk_get_rate(&clk); if (IS_ERR_VALUE(rate)) printf(", error! clk_get_rate() failed: %d", (int)rate); else printf(", Rate: %lu Hz", rate); } static void mtk_clk_print_parent(const char *prefix, int parent, u32 flags) { const char *parent_type_str; switch (flags & CLK_PARENT_MASK) { case CLK_PARENT_APMIXED: parent_type_str = "apmixedsys"; break; case CLK_PARENT_TOPCKGEN: parent_type_str = "topckgen"; break; case CLK_PARENT_INFRASYS: parent_type_str = "infrasys"; break; case CLK_PARENT_EXT: parent_type_str = "ext"; break; default: parent_type_str = "default"; break; } printf("%s%s-%u", prefix, parent_type_str, parent); } static void mtk_clk_print_single_parent(int parent, u32 flags) { mtk_clk_print_parent(", Parent: ", parent, flags); } static void mtk_clk_print_mux_parents(struct mtk_clk_priv *priv, const struct mtk_composite *mux) { const char *prefix = ""; u32 selected; int i; printf(", Parents: "); selected = readl(priv->base + mux->mux_reg); selected &= mux->mux_mask << mux->mux_shift; selected >>= mux->mux_shift; /* Print parents separated by "/" and selected parent enclosed in "*"s */ for (i = 0; i < mux->num_parents; i++) { const struct mtk_parent *parent = &mux->parent[i]; if (i == selected) { printf("%s", prefix); prefix = "*"; } mtk_clk_print_parent(prefix, parent->id, parent->flags); prefix = "/"; if (i == selected) printf("*"); } } #endif /* apmixedsys functions */ static const int mtk_apmixedsys_of_xlate(struct clk *clk, struct ofnode_phandle_args *args) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_clk_tree *tree = priv->tree; int ret; ret = mtk_common_clk_of_xlate(clk, args, tree); if (ret) return ret; /* apmixedsys only uses plls and gates. */ if (!mtk_clk_id_is_pll(tree, clk->id) && !mtk_clk_id_is_gate(tree, clk->id)) return -ENOENT; return 0; } static unsigned long __mtk_pll_recalc_rate(const struct mtk_pll_data *pll, u32 fin, u32 pcw, int postdiv) { int pcwbits = pll->pcwbits; int pcwfbits; int ibits; u64 vco; u8 c = 0; /* The fractional part of the PLL divider. */ ibits = pll->pcwibits ? pll->pcwibits : INTEGER_BITS; pcwfbits = pcwbits > ibits ? pcwbits - ibits : 0; vco = (u64)fin * pcw; if (pcwfbits && (vco & GENMASK(pcwfbits - 1, 0))) c = 1; vco >>= pcwfbits; if (c) vco++; return ((unsigned long)vco + postdiv - 1) / postdiv; } /** * MediaTek PLLs are configured through their pcw value. The pcw value * describes a divider in the PLL feedback loop which consists of 7 bits * for the integer part and the remaining bits (if present) for the * fractional part. Also they have a 3 bit power-of-two post divider. */ static void mtk_pll_set_rate_regs(struct mtk_clk_priv *priv, u32 id, u32 pcw, int postdiv) { const struct mtk_pll_data *pll; u32 val, chg; pll = &priv->tree->plls[id]; /* set postdiv */ val = readl(priv->base + pll->pd_reg); val &= ~(POSTDIV_MASK << pll->pd_shift); val |= (ffs(postdiv) - 1) << pll->pd_shift; /* postdiv and pcw need to set at the same time if on same register */ if (pll->pd_reg != pll->pcw_reg) { writel(val, priv->base + pll->pd_reg); val = readl(priv->base + pll->pcw_reg); } /* set pcw */ val &= ~GENMASK(pll->pcw_shift + pll->pcwbits - 1, pll->pcw_shift); val |= pcw << pll->pcw_shift; if (pll->pcw_chg_reg) { chg = readl(priv->base + pll->pcw_chg_reg); chg |= CON1_PCW_CHG; writel(val, priv->base + pll->pcw_reg); writel(chg, priv->base + pll->pcw_chg_reg); } else { val |= CON1_PCW_CHG; writel(val, priv->base + pll->pcw_reg); } udelay(20); } /** * mtk_pll_calc_values - calculate good values for a given input frequency. * @priv: The mtk priv struct * @id: The clk id * @pcw: The pcw value (output) * @postdiv: The post divider (output) * @freq: The desired target frequency */ static int mtk_pll_calc_values(struct mtk_clk_priv *priv, struct clk *clk, u32 *pcw, u32 *postdiv, u32 freq) { const struct mtk_pll_data *pll; const struct mtk_parent *parent = &priv->tree->pll_parent; unsigned long xtal_rate, fmin; u64 _pcw; int ibits; u32 val; xtal_rate = mtk_find_parent_rate(priv, clk, parent->id, parent->flags); if (IS_ERR_VALUE(xtal_rate)) return xtal_rate; pll = &priv->tree->plls[clk->id]; fmin = pll->fmin ? pll->fmin : 1000 * MHZ; if (freq > pll->fmax) freq = pll->fmax; for (val = 0; val < 5; val++) { *postdiv = 1 << val; if ((u64)freq * *postdiv >= fmin) break; } /* _pcw = freq * postdiv / xtal_rate * 2^pcwfbits */ ibits = pll->pcwibits ? pll->pcwibits : INTEGER_BITS; _pcw = ((u64)freq << val) << (pll->pcwbits - ibits); do_div(_pcw, xtal_rate); *pcw = (u32)_pcw; return 0; } static ulong mtk_apmixedsys_set_rate(struct clk *clk, ulong rate) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); u32 pcw = 0; u32 postdiv; int ret; if (!mtk_clk_id_is_pll(priv->tree, clk->id)) return -EINVAL; ret = mtk_pll_calc_values(priv, clk, &pcw, &postdiv, rate); if (ret) return ret; mtk_pll_set_rate_regs(priv, clk->id, pcw, postdiv); return 0; } static ulong mtk_apmixedsys_get_rate(struct clk *clk) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_parent *parent; const struct mtk_pll_data *pll; const struct mtk_gate *gate; unsigned long xtal_rate; u32 postdiv; u32 pcw; /* GATE handling */ if (mtk_clk_id_is_gate(priv->tree, clk->id)) { gate = &priv->tree->gates[clk->id - priv->tree->gates_offs]; return mtk_find_parent_rate(priv, clk, gate->parent, gate->flags); } parent = &priv->tree->pll_parent; xtal_rate = mtk_find_parent_rate(priv, clk, parent->id, parent->flags); if (IS_ERR_VALUE(xtal_rate)) return xtal_rate; pll = &priv->tree->plls[clk->id]; postdiv = (readl(priv->base + pll->pd_reg) >> pll->pd_shift) & POSTDIV_MASK; postdiv = 1 << postdiv; pcw = readl(priv->base + pll->pcw_reg) >> pll->pcw_shift; pcw &= GENMASK(pll->pcwbits - 1, 0); return __mtk_pll_recalc_rate(pll, xtal_rate, pcw, postdiv); } static int mtk_apmixedsys_enable(struct clk *clk) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_pll_data *pll; const struct mtk_gate *gate; u32 r; /* GATE handling */ if (mtk_clk_id_is_gate(priv->tree, clk->id)) { gate = &priv->tree->gates[clk->id - priv->tree->gates_offs]; return mtk_gate_enable(priv->base, gate); } pll = &priv->tree->plls[clk->id]; r = readl(priv->base + pll->pwr_reg) | CON0_PWR_ON; writel(r, priv->base + pll->pwr_reg); udelay(1); r = readl(priv->base + pll->pwr_reg) & ~CON0_ISO_EN; writel(r, priv->base + pll->pwr_reg); udelay(1); r = readl(priv->base + pll->reg + REG_CON0); r |= pll->en_mask; writel(r, priv->base + pll->reg + REG_CON0); udelay(20); if (pll->flags & CLK_PLL_HAVE_RST_BAR) { r = readl(priv->base + pll->reg + REG_CON0); r |= pll->rst_bar_mask; writel(r, priv->base + pll->reg + REG_CON0); } return 0; } static int mtk_apmixedsys_disable(struct clk *clk) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_pll_data *pll; const struct mtk_gate *gate; u32 r; /* GATE handling */ if (mtk_clk_id_is_gate(priv->tree, clk->id)) { gate = &priv->tree->gates[clk->id - priv->tree->gates_offs]; return mtk_gate_disable(priv->base, gate); } pll = &priv->tree->plls[clk->id]; if (pll->flags & CLK_PLL_HAVE_RST_BAR) { r = readl(priv->base + pll->reg + REG_CON0); r &= ~pll->rst_bar_mask; writel(r, priv->base + pll->reg + REG_CON0); } r = readl(priv->base + pll->reg + REG_CON0); r &= ~CON0_BASE_EN; writel(r, priv->base + pll->reg + REG_CON0); r = readl(priv->base + pll->pwr_reg) | CON0_ISO_EN; writel(r, priv->base + pll->pwr_reg); r = readl(priv->base + pll->pwr_reg) & ~CON0_PWR_ON; writel(r, priv->base + pll->pwr_reg); return 0; } #if CONFIG_IS_ENABLED(CMD_CLK) static void mtk_apmixedsys_dump(struct udevice *dev) { struct mtk_clk_priv *priv = dev_get_priv(dev); const struct mtk_clk_tree *tree = priv->tree; u32 i; mtk_clk_print_dev_parent(priv->parent); for (i = 0; i < tree->num_plls; i++) { const struct mtk_pll_data *pll = &tree->plls[i]; printf("[PLL%u] DT: %u", i, pll->id); mtk_clk_print_mapped_id(pll->id, i, tree->id_offs_map); mtk_clk_print_rate(dev, i); printf("\n"); } for (i = 0; i < tree->num_gates; i++) { const struct mtk_gate *gate = &tree->gates[i]; printf("[GATE%u] DT: %u", i, gate->id); mtk_clk_print_mapped_id(gate->id, i + tree->gates_offs, tree->id_offs_map); mtk_clk_print_rate(dev, i + tree->gates_offs); mtk_clk_print_single_parent(gate->parent, gate->flags); printf("\n"); } } #endif /* topckgen functions */ static const int mtk_topckgen_of_xlate(struct clk *clk, struct ofnode_phandle_args *args) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_clk_tree *tree = priv->tree; int ret; ret = mtk_common_clk_of_xlate(clk, args, tree); if (ret) return ret; /* topckgen only uses fclks, fdivs, muxes and gates. */ if (!mtk_clk_id_is_fclk(tree, clk->id) && !mtk_clk_id_is_fdiv(tree, clk->id) && !mtk_clk_id_is_mux(tree, clk->id) && !mtk_clk_id_is_gate(tree, clk->id)) return -ENOENT; return 0; } static ulong mtk_factor_recalc_rate(const struct mtk_fixed_factor *fdiv, ulong parent_rate) { u64 rate = parent_rate * fdiv->mult; do_div(rate, fdiv->div); return rate; } static ulong mtk_topckgen_get_factor_rate(struct clk *clk, u32 off) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_fixed_factor *fdiv = &priv->tree->fdivs[off]; ulong rate; rate = mtk_find_parent_rate(priv, clk, fdiv->parent, fdiv->flags); if (IS_ERR_VALUE(rate)) return rate; return mtk_factor_recalc_rate(fdiv, rate); } static ulong mtk_topckgen_get_rate(struct clk *clk) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_clk_tree *tree = priv->tree; if (mtk_clk_id_is_fclk(tree, clk->id)) return tree->fclks[clk->id].rate; if (mtk_clk_id_is_fdiv(tree, clk->id)) return mtk_topckgen_get_factor_rate(clk, clk->id - tree->fdivs_offs); if (mtk_clk_id_is_mux(tree, clk->id)) return mtk_clk_mux_get_rate(clk, clk->id - tree->muxes_offs); if (mtk_clk_id_is_gate(tree, clk->id)) { const struct mtk_gate *gate = &tree->gates[clk->id - tree->gates_offs]; return mtk_find_parent_rate(priv, clk, gate->parent, gate->flags); } return -ENOENT; } static int mtk_clk_mux_enable(struct clk *clk) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_composite *mux; u32 val; if (!mtk_clk_id_is_mux(priv->tree, clk->id)) return 0; mux = &priv->tree->muxes[clk->id - priv->tree->muxes_offs]; if (mux->gate_shift < 0) return 0; /* enable clock gate */ if (mux->flags & CLK_MUX_SETCLR_UPD) { val = BIT(mux->gate_shift); writel(val, priv->base + mux->mux_clr_reg); } else { val = readl(priv->base + mux->gate_reg); val &= ~BIT(mux->gate_shift); writel(val, priv->base + mux->gate_reg); } if (mux->flags & CLK_MUX_DOMAIN_SCPSYS) { /* enable scpsys clock off control */ writel(SCP_ARMCK_OFF_EN, priv->base + CLK_SCP_CFG0); writel(SCP_AXICK_DCM_DIS_EN | SCP_AXICK_26M_SEL_EN, priv->base + CLK_SCP_CFG1); } return 0; } static int mtk_topckgen_enable(struct clk *clk) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_clk_tree *tree = priv->tree; if (mtk_clk_id_is_gate(tree, clk->id)) { const struct mtk_gate *gate = &tree->gates[clk->id - tree->gates_offs]; return mtk_gate_enable(priv->base, gate); } return mtk_clk_mux_enable(clk); } static int mtk_clk_mux_disable(struct clk *clk) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_composite *mux; u32 val; if (!mtk_clk_id_is_mux(priv->tree, clk->id)) return 0; mux = &priv->tree->muxes[clk->id - priv->tree->muxes_offs]; if (mux->gate_shift < 0) return 0; /* disable clock gate */ if (mux->flags & CLK_MUX_SETCLR_UPD) { val = BIT(mux->gate_shift); writel(val, priv->base + mux->mux_set_reg); } else { val = readl(priv->base + mux->gate_reg); val |= BIT(mux->gate_shift); writel(val, priv->base + mux->gate_reg); } return 0; } static int mtk_topckgen_disable(struct clk *clk) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_clk_tree *tree = priv->tree; if (mtk_clk_id_is_gate(tree, clk->id)) { const struct mtk_gate *gate = &tree->gates[clk->id - tree->gates_offs]; return mtk_gate_disable(priv->base, gate); } return mtk_clk_mux_disable(clk); } static int mtk_common_clk_set_parent(struct clk *clk, struct clk *parent) { struct mtk_clk_priv *parent_priv = dev_get_priv(parent->dev); struct mtk_clk_priv *priv = dev_get_priv(clk->dev); int parent_unmapped_id; u32 parent_type; if (!mtk_clk_id_is_mux(priv->tree, clk->id)) return 0; if (!parent_priv) return 0; parent_unmapped_id = mtk_common_clk_get_unmapped_id(parent); if (parent_unmapped_id < 0) return parent_unmapped_id; parent_type = parent_priv->tree->flags & CLK_PARENT_MASK; return mtk_clk_mux_set_parent(priv->base, parent_unmapped_id, parent_type, &priv->tree->muxes[clk->id - priv->tree->muxes_offs]); } #if CONFIG_IS_ENABLED(CMD_CLK) static void mtk_topckgen_dump(struct udevice *dev) { struct mtk_clk_priv *priv = dev_get_priv(dev); const struct mtk_clk_tree *tree = priv->tree; u32 i; mtk_clk_print_dev_parent(priv->parent); for (i = 0; i < tree->num_fclks; i++) { const struct mtk_fixed_clk *fclk = &tree->fclks[i]; printf("[FCLK%u] DT: %u", i, fclk->id); mtk_clk_print_mapped_id(fclk->id, i, tree->id_offs_map); mtk_clk_print_rate(dev, i); mtk_clk_print_single_parent(fclk->parent, fclk->flags); printf("\n"); } for (i = 0; i < tree->num_fdivs; i++) { const struct mtk_fixed_factor *fdiv = &tree->fdivs[i]; printf("[FDIV%u] DT: %u", i, fdiv->id); mtk_clk_print_mapped_id(fdiv->id, i + tree->fdivs_offs, tree->id_offs_map); mtk_clk_print_rate(dev, i + tree->fdivs_offs); mtk_clk_print_single_parent(fdiv->parent, fdiv->flags); printf(", Mult: %u, Div: %u\n", fdiv->mult, fdiv->div); } for (i = 0; i < tree->num_muxes; i++) { const struct mtk_composite *mux = &tree->muxes[i]; printf("[MUX%u] DT: %u", i, mux->id); mtk_clk_print_mapped_id(mux->id, i + tree->muxes_offs, tree->id_offs_map); mtk_clk_print_rate(dev, i + tree->muxes_offs); mtk_clk_print_mux_parents(priv, mux); printf("\n"); } for (i = 0; i < tree->num_gates; i++) { const struct mtk_gate *gate = &tree->gates[i]; printf("[GATE%u] DT: %u", i, gate->id); mtk_clk_print_mapped_id(gate->id, i + tree->gates_offs, tree->id_offs_map); mtk_clk_print_rate(dev, i + tree->gates_offs); mtk_clk_print_single_parent(gate->parent, gate->flags); printf("\n"); } } #endif /* infrasys functions */ static const int mtk_infrasys_of_xlate(struct clk *clk, struct ofnode_phandle_args *args) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_clk_tree *tree = priv->tree; int ret; ret = mtk_common_clk_of_xlate(clk, args, tree); if (ret) return ret; /* ifrasys only uses fdivs, muxes and gates. */ if (!mtk_clk_id_is_fdiv(tree, clk->id) && !mtk_clk_id_is_mux(tree, clk->id) && !mtk_clk_id_is_gate(tree, clk->id)) return -ENOENT; return 0; } static int mtk_clk_infrasys_enable(struct clk *clk) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_gate *gate; /* MUX handling */ if (!mtk_clk_id_is_gate(priv->tree, clk->id)) return mtk_clk_mux_enable(clk); gate = &priv->tree->gates[clk->id - priv->tree->gates_offs]; return mtk_gate_enable(priv->base, gate); } static int mtk_clk_infrasys_disable(struct clk *clk) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_gate *gate; /* MUX handling */ if (!mtk_clk_id_is_gate(priv->tree, clk->id)) return mtk_clk_mux_disable(clk); gate = &priv->tree->gates[clk->id - priv->tree->gates_offs]; return mtk_gate_disable(priv->base, gate); } static ulong mtk_infrasys_get_factor_rate(struct clk *clk, u32 off) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); const struct mtk_fixed_factor *fdiv = &priv->tree->fdivs[off]; ulong rate; rate = mtk_find_parent_rate(priv, clk, fdiv->parent, fdiv->flags); if (IS_ERR_VALUE(rate)) return rate; return mtk_factor_recalc_rate(fdiv, rate); } static ulong mtk_infrasys_get_rate(struct clk *clk) { struct mtk_clk_priv *priv = dev_get_priv(clk->dev); ulong rate; if (mtk_clk_id_is_fclk(priv->tree, clk->id)) { rate = priv->tree->fclks[clk->id].rate; } else if (mtk_clk_id_is_fdiv(priv->tree, clk->id)) { rate = mtk_infrasys_get_factor_rate(clk, clk->id - priv->tree->fdivs_offs); /* No gates defined or ID is a MUX */ } else if (!mtk_clk_id_is_gate(priv->tree, clk->id)) { rate = mtk_clk_mux_get_rate(clk, clk->id - priv->tree->muxes_offs); /* Only valid with muxes + gates implementation */ } else { const struct mtk_gate *gate; gate = &priv->tree->gates[clk->id - priv->tree->gates_offs]; rate = mtk_find_parent_rate(priv, clk, gate->parent, gate->flags); } return rate; } #if CONFIG_IS_ENABLED(CMD_CLK) static void mtk_infrasys_dump(struct udevice *dev) { struct mtk_clk_priv *priv = dev_get_priv(dev); const struct mtk_clk_tree *tree = priv->tree; u32 i; mtk_clk_print_dev_parent(priv->parent); for (i = 0; i < tree->num_fdivs; i++) { const struct mtk_fixed_factor *fdiv = &tree->fdivs[i]; printf("[FDIV%u] DT: %u", i, fdiv->id); mtk_clk_print_mapped_id(fdiv->id, i + tree->fdivs_offs, tree->id_offs_map); mtk_clk_print_single_parent(fdiv->parent, fdiv->flags); printf(", Mult: %u, Div: %u\n", fdiv->mult, fdiv->div); } for (i = 0; i < tree->num_muxes; i++) { const struct mtk_composite *mux = &tree->muxes[i]; printf("[MUX%u] DT: %u", i, mux->id); mtk_clk_print_mapped_id(mux->id, i + tree->muxes_offs, tree->id_offs_map); mtk_clk_print_mux_parents(priv, mux); printf("\n"); } for (i = 0; i < tree->num_gates; i++) { const struct mtk_gate *gate = &tree->gates[i]; printf("[GATE%u] DT: %u", i, gate->id); mtk_clk_print_mapped_id(gate->id, i + tree->gates_offs, tree->id_offs_map); mtk_clk_print_single_parent(gate->parent, gate->flags); printf("\n"); } } #endif /* CG functions */ static const int mtk_clk_gate_of_xlate(struct clk *clk, struct ofnode_phandle_args *args) { struct mtk_cg_priv *priv = dev_get_priv(clk->dev); const struct mtk_clk_tree *tree = priv->tree; int ret; ret = mtk_common_clk_of_xlate(clk, args, tree); if (ret) return ret; if (clk->id >= priv->gates_offs && clk->id < priv->gates_offs + priv->num_gates) return 0; return -ENOENT; } static int mtk_clk_gate_enable(struct clk *clk) { struct mtk_cg_priv *priv = dev_get_priv(clk->dev); const struct mtk_gate *gate; if (clk->id < priv->gates_offs) return -EINVAL; gate = &priv->gates[clk->id - priv->gates_offs]; return mtk_gate_enable(priv->base, gate); } static int mtk_clk_gate_disable(struct clk *clk) { struct mtk_cg_priv *priv = dev_get_priv(clk->dev); const struct mtk_gate *gate; if (clk->id < priv->gates_offs) return -EINVAL; gate = &priv->gates[clk->id - priv->gates_offs]; return mtk_gate_disable(priv->base, gate); } static ulong mtk_clk_gate_get_rate(struct clk *clk) { struct mtk_cg_priv *priv = dev_get_priv(clk->dev); struct udevice *parent = priv->parent; const struct mtk_gate *gate; if (clk->id < priv->gates_offs) return -EINVAL; gate = &priv->gates[clk->id - priv->gates_offs]; /* * With requesting a TOPCKGEN parent, make sure the dev parent * is actually topckgen. This might not be the case for an * infracfg-ao implementation where: * parent = infracfg * parent->parent = topckgen */ if (gate->flags & CLK_PARENT_TOPCKGEN && parent->driver != DM_DRIVER_GET(mtk_clk_topckgen)) { priv = dev_get_priv(parent); parent = priv->parent; } else if (gate->flags & CLK_PARENT_EXT) { return mtk_ext_clock_get_rate(priv->tree, gate->parent); } return mtk_clk_find_parent_rate(clk, gate->parent, parent); } #if CONFIG_IS_ENABLED(CMD_CLK) static void mtk_clk_gate_dump(struct udevice *dev) { struct mtk_cg_priv *priv = dev_get_priv(dev); const struct mtk_clk_tree *tree = priv->tree; u32 i; mtk_clk_print_dev_parent(priv->parent); for (i = 0; i < priv->num_gates; i++) { const struct mtk_gate *gate = &priv->gates[i]; printf("[GATE%u] DT: %u", i, gate->id); mtk_clk_print_mapped_id(gate->id, i + priv->gates_offs, tree->id_offs_map); mtk_clk_print_rate(dev, i + priv->gates_offs); mtk_clk_print_single_parent(gate->parent, gate->flags); printf("\n"); } } #endif const struct clk_ops mtk_clk_apmixedsys_ops = { .of_xlate = mtk_apmixedsys_of_xlate, .enable = mtk_apmixedsys_enable, .disable = mtk_apmixedsys_disable, .set_rate = mtk_apmixedsys_set_rate, .get_rate = mtk_apmixedsys_get_rate, #if CONFIG_IS_ENABLED(CMD_CLK) .dump = mtk_apmixedsys_dump, #endif }; const struct clk_ops mtk_clk_fixed_pll_ops = { .of_xlate = mtk_topckgen_of_xlate, .enable = mtk_dummy_enable, .disable = mtk_dummy_enable, .get_rate = mtk_topckgen_get_rate, #if CONFIG_IS_ENABLED(CMD_CLK) .dump = mtk_topckgen_dump, #endif }; const struct clk_ops mtk_clk_topckgen_ops = { .of_xlate = mtk_topckgen_of_xlate, .enable = mtk_topckgen_enable, .disable = mtk_topckgen_disable, .get_rate = mtk_topckgen_get_rate, .set_parent = mtk_common_clk_set_parent, #if CONFIG_IS_ENABLED(CMD_CLK) .dump = mtk_topckgen_dump, #endif }; const struct clk_ops mtk_clk_infrasys_ops = { .of_xlate = mtk_infrasys_of_xlate, .enable = mtk_clk_infrasys_enable, .disable = mtk_clk_infrasys_disable, .get_rate = mtk_infrasys_get_rate, .set_parent = mtk_common_clk_set_parent, #if CONFIG_IS_ENABLED(CMD_CLK) .dump = mtk_infrasys_dump, #endif }; const struct clk_ops mtk_clk_gate_ops = { .of_xlate = mtk_clk_gate_of_xlate, .enable = mtk_clk_gate_enable, .disable = mtk_clk_gate_disable, .get_rate = mtk_clk_gate_get_rate, #if CONFIG_IS_ENABLED(CMD_CLK) .dump = mtk_clk_gate_dump, #endif }; static int mtk_common_clk_init_drv(struct udevice *dev, const struct mtk_clk_tree *tree, const struct driver *drv) { struct mtk_clk_priv *priv = dev_get_priv(dev); struct udevice *parent; int ret; priv->base = dev_read_addr_ptr(dev); if (!priv->base) return -ENOENT; ret = uclass_get_device_by_phandle(UCLASS_CLK, dev, "clock-parent", &parent); if (ret || !parent) { ret = uclass_get_device_by_driver(UCLASS_CLK, drv, &parent); if (ret || !parent) return -ENOENT; } priv->parent = parent; priv->tree = tree; return 0; } int mtk_common_clk_init(struct udevice *dev, const struct mtk_clk_tree *tree) { return mtk_common_clk_init_drv(dev, tree, DM_DRIVER_GET(mtk_clk_apmixedsys)); } int mtk_common_clk_infrasys_init(struct udevice *dev, const struct mtk_clk_tree *tree) { return mtk_common_clk_init_drv(dev, tree, DM_DRIVER_GET(mtk_clk_topckgen)); } int mtk_common_clk_gate_init(struct udevice *dev, const struct mtk_clk_tree *tree, const struct mtk_gate *gates, int num_gates, int gates_offs) { struct mtk_cg_priv *priv = dev_get_priv(dev); struct udevice *parent; int ret; priv->base = dev_read_addr_ptr(dev); if (!priv->base) return -ENOENT; ret = uclass_get_device_by_phandle(UCLASS_CLK, dev, "clock-parent", &parent); if (ret || !parent) { ret = uclass_get_device_by_driver(UCLASS_CLK, DM_DRIVER_GET(mtk_clk_topckgen), &parent); if (ret || !parent) return -ENOENT; } priv->parent = parent; priv->tree = tree; priv->gates = gates; priv->num_gates = num_gates; priv->gates_offs = gates_offs; return 0; } |