1 // SPDX-License-Identifier: GPL-2.0
3 * Renesas Clock Pulse Generator / Module Standby and Software Reset
5 * Copyright (C) 2015 Glider bvba
7 * Based on clk-mstp.c, clk-rcar-gen2.c, and clk-rcar-gen3.c
9 * Copyright (C) 2013 Ideas On Board SPRL
10 * Copyright (C) 2015 Renesas Electronics Corp.
13 #include <linux/clk.h>
14 #include <linux/clk-provider.h>
15 #include <linux/clk/renesas.h>
16 #include <linux/delay.h>
17 #include <linux/device.h>
18 #include <linux/init.h>
20 #include <linux/mod_devicetable.h>
21 #include <linux/module.h>
22 #include <linux/of_address.h>
23 #include <linux/of_device.h>
24 #include <linux/platform_device.h>
25 #include <linux/pm_clock.h>
26 #include <linux/pm_domain.h>
27 #include <linux/psci.h>
28 #include <linux/reset-controller.h>
29 #include <linux/slab.h>
31 #include <dt-bindings/clock/renesas-cpg-mssr.h>
33 #include "renesas-cpg-mssr.h"
37 #define WARN_DEBUG(x) WARN_ON(x)
39 #define WARN_DEBUG(x) do { } while (0)
44 * Module Standby and Software Reset register offets.
46 * If the registers exist, these are valid for SH-Mobile, R-Mobile,
47 * R-Car Gen2, R-Car Gen3, and RZ/G1.
48 * These are NOT valid for R-Car Gen1 and RZ/A1!
52 * Module Stop Status Register offsets
55 static const u16 mstpsr[] = {
56 0x030, 0x038, 0x040, 0x048, 0x04C, 0x03C, 0x1C0, 0x1C4,
57 0x9A0, 0x9A4, 0x9A8, 0x9AC,
60 #define MSTPSR(i) mstpsr[i]
64 * System Module Stop Control Register offsets
67 static const u16 smstpcr[] = {
68 0x130, 0x134, 0x138, 0x13C, 0x140, 0x144, 0x148, 0x14C,
69 0x990, 0x994, 0x998, 0x99C,
72 #define SMSTPCR(i) smstpcr[i]
75 * Standby Control Register offsets (RZ/A)
76 * Base address is FRQCR register
79 static const u16 stbcr[] = {
80 0xFFFF/*dummy*/, 0x010, 0x014, 0x410, 0x414, 0x418, 0x41C, 0x420,
84 #define STBCR(i) stbcr[i]
87 * Software Reset Register offsets
90 static const u16 srcr[] = {
91 0x0A0, 0x0A8, 0x0B0, 0x0B8, 0x0BC, 0x0C4, 0x1C8, 0x1CC,
92 0x920, 0x924, 0x928, 0x92C,
95 #define SRCR(i) srcr[i]
98 /* Realtime Module Stop Control Register offsets */
99 #define RMSTPCR(i) (smstpcr[i] - 0x20)
101 /* Modem Module Stop Control Register offsets (r8a73a4) */
102 #define MMSTPCR(i) (smstpcr[i] + 0x20)
104 /* Software Reset Clearing Register offsets */
105 #define SRSTCLR(i) (0x940 + (i) * 4)
109 * Clock Pulse Generator / Module Standby and Software Reset Private Data
111 * @rcdev: Optional reset controller entity
112 * @dev: CPG/MSSR device
113 * @base: CPG/MSSR register block base address
114 * @rmw_lock: protects RMW register accesses
115 * @np: Device node in DT for this CPG/MSSR module
116 * @num_core_clks: Number of Core Clocks in clks[]
117 * @num_mod_clks: Number of Module Clocks in clks[]
118 * @last_dt_core_clk: ID of the last Core Clock exported to DT
119 * @stbyctrl: This device has Standby Control Registers
120 * @notifiers: Notifier chain to save/restore clock state for system resume
121 * @smstpcr_saved[].mask: Mask of SMSTPCR[] bits under our control
122 * @smstpcr_saved[].val: Saved values of SMSTPCR[]
123 * @clks: Array containing all Core and Module Clocks
125 struct cpg_mssr_priv {
126 #ifdef CONFIG_RESET_CONTROLLER
127 struct reset_controller_dev rcdev;
132 struct device_node *np;
134 unsigned int num_core_clks;
135 unsigned int num_mod_clks;
136 unsigned int last_dt_core_clk;
139 struct raw_notifier_head notifiers;
143 } smstpcr_saved[ARRAY_SIZE(smstpcr)];
148 static struct cpg_mssr_priv *cpg_mssr_priv;
151 * struct mstp_clock - MSTP gating clock
152 * @hw: handle between common and hardware-specific interfaces
153 * @index: MSTP clock number
154 * @priv: CPG/MSSR private data
159 struct cpg_mssr_priv *priv;
162 #define to_mstp_clock(_hw) container_of(_hw, struct mstp_clock, hw)
164 static int cpg_mstp_clock_endisable(struct clk_hw *hw, bool enable)
166 struct mstp_clock *clock = to_mstp_clock(hw);
167 struct cpg_mssr_priv *priv = clock->priv;
168 unsigned int reg = clock->index / 32;
169 unsigned int bit = clock->index % 32;
170 struct device *dev = priv->dev;
171 u32 bitmask = BIT(bit);
176 dev_dbg(dev, "MSTP %u%02u/%pC %s\n", reg, bit, hw->clk,
177 enable ? "ON" : "OFF");
178 spin_lock_irqsave(&priv->rmw_lock, flags);
180 if (priv->stbyctrl) {
181 value = readb(priv->base + STBCR(reg));
186 writeb(value, priv->base + STBCR(reg));
188 /* dummy read to ensure write has completed */
189 readb(priv->base + STBCR(reg));
190 barrier_data(priv->base + STBCR(reg));
192 value = readl(priv->base + SMSTPCR(reg));
197 writel(value, priv->base + SMSTPCR(reg));
200 spin_unlock_irqrestore(&priv->rmw_lock, flags);
202 if (!enable || priv->stbyctrl)
205 for (i = 1000; i > 0; --i) {
206 if (!(readl(priv->base + MSTPSR(reg)) & bitmask))
212 dev_err(dev, "Failed to enable SMSTP %p[%d]\n",
213 priv->base + SMSTPCR(reg), bit);
220 static int cpg_mstp_clock_enable(struct clk_hw *hw)
222 return cpg_mstp_clock_endisable(hw, true);
225 static void cpg_mstp_clock_disable(struct clk_hw *hw)
227 cpg_mstp_clock_endisable(hw, false);
230 static int cpg_mstp_clock_is_enabled(struct clk_hw *hw)
232 struct mstp_clock *clock = to_mstp_clock(hw);
233 struct cpg_mssr_priv *priv = clock->priv;
237 value = readb(priv->base + STBCR(clock->index / 32));
239 value = readl(priv->base + MSTPSR(clock->index / 32));
241 return !(value & BIT(clock->index % 32));
244 static const struct clk_ops cpg_mstp_clock_ops = {
245 .enable = cpg_mstp_clock_enable,
246 .disable = cpg_mstp_clock_disable,
247 .is_enabled = cpg_mstp_clock_is_enabled,
251 struct clk *cpg_mssr_clk_src_twocell_get(struct of_phandle_args *clkspec,
254 unsigned int clkidx = clkspec->args[1];
255 struct cpg_mssr_priv *priv = data;
256 struct device *dev = priv->dev;
262 switch (clkspec->args[0]) {
265 if (clkidx > priv->last_dt_core_clk) {
266 dev_err(dev, "Invalid %s clock index %u\n", type,
268 return ERR_PTR(-EINVAL);
270 clk = priv->clks[clkidx];
275 if (priv->stbyctrl) {
276 idx = MOD_CLK_PACK_10(clkidx);
277 range_check = 7 - (clkidx % 10);
279 idx = MOD_CLK_PACK(clkidx);
280 range_check = 31 - (clkidx % 100);
282 if (range_check < 0 || idx >= priv->num_mod_clks) {
283 dev_err(dev, "Invalid %s clock index %u\n", type,
285 return ERR_PTR(-EINVAL);
287 clk = priv->clks[priv->num_core_clks + idx];
291 dev_err(dev, "Invalid CPG clock type %u\n", clkspec->args[0]);
292 return ERR_PTR(-EINVAL);
296 dev_err(dev, "Cannot get %s clock %u: %ld", type, clkidx,
299 dev_dbg(dev, "clock (%u, %u) is %pC at %lu Hz\n",
300 clkspec->args[0], clkspec->args[1], clk,
305 static void __init cpg_mssr_register_core_clk(const struct cpg_core_clk *core,
306 const struct cpg_mssr_info *info,
307 struct cpg_mssr_priv *priv)
309 struct clk *clk = ERR_PTR(-ENOTSUPP), *parent;
310 struct device *dev = priv->dev;
311 unsigned int id = core->id, div = core->div;
312 const char *parent_name;
314 WARN_DEBUG(id >= priv->num_core_clks);
315 WARN_DEBUG(PTR_ERR(priv->clks[id]) != -ENOENT);
318 /* Skip NULLified clock */
322 switch (core->type) {
324 clk = of_clk_get_by_name(priv->np, core->name);
328 case CLK_TYPE_DIV6P1:
329 case CLK_TYPE_DIV6_RO:
330 WARN_DEBUG(core->parent >= priv->num_core_clks);
331 parent = priv->clks[core->parent];
332 if (IS_ERR(parent)) {
337 parent_name = __clk_get_name(parent);
339 if (core->type == CLK_TYPE_DIV6_RO)
340 /* Multiply with the DIV6 register value */
341 div *= (readl(priv->base + core->offset) & 0x3f) + 1;
343 if (core->type == CLK_TYPE_DIV6P1) {
344 clk = cpg_div6_register(core->name, 1, &parent_name,
345 priv->base + core->offset,
348 clk = clk_register_fixed_factor(NULL, core->name,
355 clk = clk_register_fixed_rate(NULL, core->name, NULL, 0,
360 if (info->cpg_clk_register)
361 clk = info->cpg_clk_register(dev, core, info,
362 priv->clks, priv->base,
365 dev_err(dev, "%s has unsupported core clock type %u\n",
366 core->name, core->type);
370 if (IS_ERR_OR_NULL(clk))
373 dev_dbg(dev, "Core clock %pC at %lu Hz\n", clk, clk_get_rate(clk));
374 priv->clks[id] = clk;
378 dev_err(dev, "Failed to register %s clock %s: %ld\n", "core",
379 core->name, PTR_ERR(clk));
382 static void __init cpg_mssr_register_mod_clk(const struct mssr_mod_clk *mod,
383 const struct cpg_mssr_info *info,
384 struct cpg_mssr_priv *priv)
386 struct mstp_clock *clock = NULL;
387 struct device *dev = priv->dev;
388 unsigned int id = mod->id;
389 struct clk_init_data init;
390 struct clk *parent, *clk;
391 const char *parent_name;
394 WARN_DEBUG(id < priv->num_core_clks);
395 WARN_DEBUG(id >= priv->num_core_clks + priv->num_mod_clks);
396 WARN_DEBUG(mod->parent >= priv->num_core_clks + priv->num_mod_clks);
397 WARN_DEBUG(PTR_ERR(priv->clks[id]) != -ENOENT);
400 /* Skip NULLified clock */
404 parent = priv->clks[mod->parent];
405 if (IS_ERR(parent)) {
410 clock = kzalloc(sizeof(*clock), GFP_KERNEL);
412 clk = ERR_PTR(-ENOMEM);
416 init.name = mod->name;
417 init.ops = &cpg_mstp_clock_ops;
418 init.flags = CLK_SET_RATE_PARENT;
419 for (i = 0; i < info->num_crit_mod_clks; i++)
420 if (id == info->crit_mod_clks[i]) {
421 dev_dbg(dev, "MSTP %s setting CLK_IS_CRITICAL\n",
423 init.flags |= CLK_IS_CRITICAL;
427 parent_name = __clk_get_name(parent);
428 init.parent_names = &parent_name;
429 init.num_parents = 1;
431 clock->index = id - priv->num_core_clks;
433 clock->hw.init = &init;
435 clk = clk_register(NULL, &clock->hw);
439 dev_dbg(dev, "Module clock %pC at %lu Hz\n", clk, clk_get_rate(clk));
440 priv->clks[id] = clk;
441 priv->smstpcr_saved[clock->index / 32].mask |= BIT(clock->index % 32);
445 dev_err(dev, "Failed to register %s clock %s: %ld\n", "module",
446 mod->name, PTR_ERR(clk));
450 struct cpg_mssr_clk_domain {
451 struct generic_pm_domain genpd;
452 unsigned int num_core_pm_clks;
453 unsigned int core_pm_clks[];
456 static struct cpg_mssr_clk_domain *cpg_mssr_clk_domain;
458 static bool cpg_mssr_is_pm_clk(const struct of_phandle_args *clkspec,
459 struct cpg_mssr_clk_domain *pd)
463 if (clkspec->np != pd->genpd.dev.of_node || clkspec->args_count != 2)
466 switch (clkspec->args[0]) {
468 for (i = 0; i < pd->num_core_pm_clks; i++)
469 if (clkspec->args[1] == pd->core_pm_clks[i])
481 int cpg_mssr_attach_dev(struct generic_pm_domain *unused, struct device *dev)
483 struct cpg_mssr_clk_domain *pd = cpg_mssr_clk_domain;
484 struct device_node *np = dev->of_node;
485 struct of_phandle_args clkspec;
491 dev_dbg(dev, "CPG/MSSR clock domain not yet available\n");
492 return -EPROBE_DEFER;
495 while (!of_parse_phandle_with_args(np, "clocks", "#clock-cells", i,
497 if (cpg_mssr_is_pm_clk(&clkspec, pd))
500 of_node_put(clkspec.np);
507 clk = of_clk_get_from_provider(&clkspec);
508 of_node_put(clkspec.np);
513 error = pm_clk_create(dev);
517 error = pm_clk_add_clk(dev, clk);
530 void cpg_mssr_detach_dev(struct generic_pm_domain *unused, struct device *dev)
532 if (!pm_clk_no_clocks(dev))
536 static int __init cpg_mssr_add_clk_domain(struct device *dev,
537 const unsigned int *core_pm_clks,
538 unsigned int num_core_pm_clks)
540 struct device_node *np = dev->of_node;
541 struct generic_pm_domain *genpd;
542 struct cpg_mssr_clk_domain *pd;
543 size_t pm_size = num_core_pm_clks * sizeof(core_pm_clks[0]);
545 pd = devm_kzalloc(dev, sizeof(*pd) + pm_size, GFP_KERNEL);
549 pd->num_core_pm_clks = num_core_pm_clks;
550 memcpy(pd->core_pm_clks, core_pm_clks, pm_size);
553 genpd->name = np->name;
554 genpd->flags = GENPD_FLAG_PM_CLK | GENPD_FLAG_ALWAYS_ON |
555 GENPD_FLAG_ACTIVE_WAKEUP;
556 genpd->attach_dev = cpg_mssr_attach_dev;
557 genpd->detach_dev = cpg_mssr_detach_dev;
558 pm_genpd_init(genpd, &pm_domain_always_on_gov, false);
559 cpg_mssr_clk_domain = pd;
561 of_genpd_add_provider_simple(np, genpd);
565 #ifdef CONFIG_RESET_CONTROLLER
567 #define rcdev_to_priv(x) container_of(x, struct cpg_mssr_priv, rcdev)
569 static int cpg_mssr_reset(struct reset_controller_dev *rcdev,
572 struct cpg_mssr_priv *priv = rcdev_to_priv(rcdev);
573 unsigned int reg = id / 32;
574 unsigned int bit = id % 32;
575 u32 bitmask = BIT(bit);
577 dev_dbg(priv->dev, "reset %u%02u\n", reg, bit);
580 writel(bitmask, priv->base + SRCR(reg));
582 /* Wait for at least one cycle of the RCLK clock (@ ca. 32 kHz) */
585 /* Release module from reset state */
586 writel(bitmask, priv->base + SRSTCLR(reg));
591 static int cpg_mssr_assert(struct reset_controller_dev *rcdev, unsigned long id)
593 struct cpg_mssr_priv *priv = rcdev_to_priv(rcdev);
594 unsigned int reg = id / 32;
595 unsigned int bit = id % 32;
596 u32 bitmask = BIT(bit);
598 dev_dbg(priv->dev, "assert %u%02u\n", reg, bit);
600 writel(bitmask, priv->base + SRCR(reg));
604 static int cpg_mssr_deassert(struct reset_controller_dev *rcdev,
607 struct cpg_mssr_priv *priv = rcdev_to_priv(rcdev);
608 unsigned int reg = id / 32;
609 unsigned int bit = id % 32;
610 u32 bitmask = BIT(bit);
612 dev_dbg(priv->dev, "deassert %u%02u\n", reg, bit);
614 writel(bitmask, priv->base + SRSTCLR(reg));
618 static int cpg_mssr_status(struct reset_controller_dev *rcdev,
621 struct cpg_mssr_priv *priv = rcdev_to_priv(rcdev);
622 unsigned int reg = id / 32;
623 unsigned int bit = id % 32;
624 u32 bitmask = BIT(bit);
626 return !!(readl(priv->base + SRCR(reg)) & bitmask);
629 static const struct reset_control_ops cpg_mssr_reset_ops = {
630 .reset = cpg_mssr_reset,
631 .assert = cpg_mssr_assert,
632 .deassert = cpg_mssr_deassert,
633 .status = cpg_mssr_status,
636 static int cpg_mssr_reset_xlate(struct reset_controller_dev *rcdev,
637 const struct of_phandle_args *reset_spec)
639 struct cpg_mssr_priv *priv = rcdev_to_priv(rcdev);
640 unsigned int unpacked = reset_spec->args[0];
641 unsigned int idx = MOD_CLK_PACK(unpacked);
643 if (unpacked % 100 > 31 || idx >= rcdev->nr_resets) {
644 dev_err(priv->dev, "Invalid reset index %u\n", unpacked);
651 static int cpg_mssr_reset_controller_register(struct cpg_mssr_priv *priv)
653 priv->rcdev.ops = &cpg_mssr_reset_ops;
654 priv->rcdev.of_node = priv->dev->of_node;
655 priv->rcdev.of_reset_n_cells = 1;
656 priv->rcdev.of_xlate = cpg_mssr_reset_xlate;
657 priv->rcdev.nr_resets = priv->num_mod_clks;
658 return devm_reset_controller_register(priv->dev, &priv->rcdev);
661 #else /* !CONFIG_RESET_CONTROLLER */
662 static inline int cpg_mssr_reset_controller_register(struct cpg_mssr_priv *priv)
666 #endif /* !CONFIG_RESET_CONTROLLER */
669 static const struct of_device_id cpg_mssr_match[] = {
670 #ifdef CONFIG_CLK_R7S9210
672 .compatible = "renesas,r7s9210-cpg-mssr",
673 .data = &r7s9210_cpg_mssr_info,
676 #ifdef CONFIG_CLK_R8A7743
678 .compatible = "renesas,r8a7743-cpg-mssr",
679 .data = &r8a7743_cpg_mssr_info,
681 /* RZ/G1N is (almost) identical to RZ/G1M w.r.t. clocks. */
683 .compatible = "renesas,r8a7744-cpg-mssr",
684 .data = &r8a7743_cpg_mssr_info,
687 #ifdef CONFIG_CLK_R8A7745
689 .compatible = "renesas,r8a7745-cpg-mssr",
690 .data = &r8a7745_cpg_mssr_info,
693 #ifdef CONFIG_CLK_R8A77470
695 .compatible = "renesas,r8a77470-cpg-mssr",
696 .data = &r8a77470_cpg_mssr_info,
699 #ifdef CONFIG_CLK_R8A774A1
701 .compatible = "renesas,r8a774a1-cpg-mssr",
702 .data = &r8a774a1_cpg_mssr_info,
705 #ifdef CONFIG_CLK_R8A774C0
707 .compatible = "renesas,r8a774c0-cpg-mssr",
708 .data = &r8a774c0_cpg_mssr_info,
711 #ifdef CONFIG_CLK_R8A7790
713 .compatible = "renesas,r8a7790-cpg-mssr",
714 .data = &r8a7790_cpg_mssr_info,
717 #ifdef CONFIG_CLK_R8A7791
719 .compatible = "renesas,r8a7791-cpg-mssr",
720 .data = &r8a7791_cpg_mssr_info,
722 /* R-Car M2-N is (almost) identical to R-Car M2-W w.r.t. clocks. */
724 .compatible = "renesas,r8a7793-cpg-mssr",
725 .data = &r8a7791_cpg_mssr_info,
728 #ifdef CONFIG_CLK_R8A7792
730 .compatible = "renesas,r8a7792-cpg-mssr",
731 .data = &r8a7792_cpg_mssr_info,
734 #ifdef CONFIG_CLK_R8A7794
736 .compatible = "renesas,r8a7794-cpg-mssr",
737 .data = &r8a7794_cpg_mssr_info,
740 #ifdef CONFIG_CLK_R8A7795
742 .compatible = "renesas,r8a7795-cpg-mssr",
743 .data = &r8a7795_cpg_mssr_info,
746 #ifdef CONFIG_CLK_R8A7796
748 .compatible = "renesas,r8a7796-cpg-mssr",
749 .data = &r8a7796_cpg_mssr_info,
752 #ifdef CONFIG_CLK_R8A77965
754 .compatible = "renesas,r8a77965-cpg-mssr",
755 .data = &r8a77965_cpg_mssr_info,
758 #ifdef CONFIG_CLK_R8A77970
760 .compatible = "renesas,r8a77970-cpg-mssr",
761 .data = &r8a77970_cpg_mssr_info,
764 #ifdef CONFIG_CLK_R8A77980
766 .compatible = "renesas,r8a77980-cpg-mssr",
767 .data = &r8a77980_cpg_mssr_info,
770 #ifdef CONFIG_CLK_R8A77990
772 .compatible = "renesas,r8a77990-cpg-mssr",
773 .data = &r8a77990_cpg_mssr_info,
776 #ifdef CONFIG_CLK_R8A77995
778 .compatible = "renesas,r8a77995-cpg-mssr",
779 .data = &r8a77995_cpg_mssr_info,
785 static void cpg_mssr_del_clk_provider(void *data)
787 of_clk_del_provider(data);
790 #if defined(CONFIG_PM_SLEEP) && defined(CONFIG_ARM_PSCI_FW)
791 static int cpg_mssr_suspend_noirq(struct device *dev)
793 struct cpg_mssr_priv *priv = dev_get_drvdata(dev);
796 /* This is the best we can do to check for the presence of PSCI */
797 if (!psci_ops.cpu_suspend)
800 /* Save module registers with bits under our control */
801 for (reg = 0; reg < ARRAY_SIZE(priv->smstpcr_saved); reg++) {
802 if (priv->smstpcr_saved[reg].mask)
803 priv->smstpcr_saved[reg].val =
804 readl(priv->base + SMSTPCR(reg));
807 /* Save core clocks */
808 raw_notifier_call_chain(&priv->notifiers, PM_EVENT_SUSPEND, NULL);
813 static int cpg_mssr_resume_noirq(struct device *dev)
815 struct cpg_mssr_priv *priv = dev_get_drvdata(dev);
817 u32 mask, oldval, newval;
819 /* This is the best we can do to check for the presence of PSCI */
820 if (!psci_ops.cpu_suspend)
823 /* Restore core clocks */
824 raw_notifier_call_chain(&priv->notifiers, PM_EVENT_RESUME, NULL);
826 /* Restore module clocks */
827 for (reg = 0; reg < ARRAY_SIZE(priv->smstpcr_saved); reg++) {
828 mask = priv->smstpcr_saved[reg].mask;
833 oldval = readb(priv->base + STBCR(reg));
835 oldval = readl(priv->base + SMSTPCR(reg));
836 newval = oldval & ~mask;
837 newval |= priv->smstpcr_saved[reg].val & mask;
838 if (newval == oldval)
841 if (priv->stbyctrl) {
842 writeb(newval, priv->base + STBCR(reg));
843 /* dummy read to ensure write has completed */
844 readb(priv->base + STBCR(reg));
845 barrier_data(priv->base + STBCR(reg));
848 writel(newval, priv->base + SMSTPCR(reg));
850 /* Wait until enabled clocks are really enabled */
851 mask &= ~priv->smstpcr_saved[reg].val;
855 for (i = 1000; i > 0; --i) {
856 oldval = readl(priv->base + MSTPSR(reg));
857 if (!(oldval & mask))
863 dev_warn(dev, "Failed to enable SMSTP %p[0x%x]\n",
864 priv->base + SMSTPCR(reg), oldval & mask);
870 static const struct dev_pm_ops cpg_mssr_pm = {
871 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(cpg_mssr_suspend_noirq,
872 cpg_mssr_resume_noirq)
874 #define DEV_PM_OPS &cpg_mssr_pm
876 #define DEV_PM_OPS NULL
877 #endif /* CONFIG_PM_SLEEP && CONFIG_ARM_PSCI_FW */
879 static int __init cpg_mssr_common_init(struct device *dev,
880 struct device_node *np,
881 const struct cpg_mssr_info *info)
883 struct cpg_mssr_priv *priv;
884 unsigned int nclks, i;
888 error = info->init(dev);
893 nclks = info->num_total_core_clks + info->num_hw_mod_clks;
894 priv = kzalloc(struct_size(priv, clks, nclks), GFP_KERNEL);
900 spin_lock_init(&priv->rmw_lock);
902 priv->base = of_iomap(np, 0);
908 cpg_mssr_priv = priv;
909 priv->num_core_clks = info->num_total_core_clks;
910 priv->num_mod_clks = info->num_hw_mod_clks;
911 priv->last_dt_core_clk = info->last_dt_core_clk;
912 RAW_INIT_NOTIFIER_HEAD(&priv->notifiers);
913 priv->stbyctrl = info->stbyctrl;
915 for (i = 0; i < nclks; i++)
916 priv->clks[i] = ERR_PTR(-ENOENT);
918 error = of_clk_add_provider(np, cpg_mssr_clk_src_twocell_get, priv);
932 void __init cpg_mssr_early_init(struct device_node *np,
933 const struct cpg_mssr_info *info)
938 error = cpg_mssr_common_init(NULL, np, info);
942 for (i = 0; i < info->num_early_core_clks; i++)
943 cpg_mssr_register_core_clk(&info->early_core_clks[i], info,
946 for (i = 0; i < info->num_early_mod_clks; i++)
947 cpg_mssr_register_mod_clk(&info->early_mod_clks[i], info,
952 static int __init cpg_mssr_probe(struct platform_device *pdev)
954 struct device *dev = &pdev->dev;
955 struct device_node *np = dev->of_node;
956 const struct cpg_mssr_info *info;
957 struct cpg_mssr_priv *priv;
961 info = of_device_get_match_data(dev);
963 if (!cpg_mssr_priv) {
964 error = cpg_mssr_common_init(dev, dev->of_node, info);
969 priv = cpg_mssr_priv;
971 dev_set_drvdata(dev, priv);
973 for (i = 0; i < info->num_core_clks; i++)
974 cpg_mssr_register_core_clk(&info->core_clks[i], info, priv);
976 for (i = 0; i < info->num_mod_clks; i++)
977 cpg_mssr_register_mod_clk(&info->mod_clks[i], info, priv);
979 error = devm_add_action_or_reset(dev,
980 cpg_mssr_del_clk_provider,
985 error = cpg_mssr_add_clk_domain(dev, info->core_pm_clks,
986 info->num_core_pm_clks);
990 /* Reset Controller not supported for Standby Control SoCs */
994 error = cpg_mssr_reset_controller_register(priv);
1001 static struct platform_driver cpg_mssr_driver = {
1003 .name = "renesas-cpg-mssr",
1004 .of_match_table = cpg_mssr_match,
1009 static int __init cpg_mssr_init(void)
1011 return platform_driver_probe(&cpg_mssr_driver, cpg_mssr_probe);
1014 subsys_initcall(cpg_mssr_init);
1016 void __init cpg_core_nullify_range(struct cpg_core_clk *core_clks,
1017 unsigned int num_core_clks,
1018 unsigned int first_clk,
1019 unsigned int last_clk)
1023 for (i = 0; i < num_core_clks; i++)
1024 if (core_clks[i].id >= first_clk &&
1025 core_clks[i].id <= last_clk)
1026 core_clks[i].name = NULL;
1029 void __init mssr_mod_nullify(struct mssr_mod_clk *mod_clks,
1030 unsigned int num_mod_clks,
1031 const unsigned int *clks, unsigned int n)
1035 for (i = 0, j = 0; i < num_mod_clks && j < n; i++)
1036 if (mod_clks[i].id == clks[j]) {
1037 mod_clks[i].name = NULL;
1042 void __init mssr_mod_reparent(struct mssr_mod_clk *mod_clks,
1043 unsigned int num_mod_clks,
1044 const struct mssr_mod_reparent *clks,
1049 for (i = 0, j = 0; i < num_mod_clks && j < n; i++)
1050 if (mod_clks[i].id == clks[j].clk) {
1051 mod_clks[i].parent = clks[j].parent;
1056 MODULE_DESCRIPTION("Renesas CPG/MSSR Driver");
1057 MODULE_LICENSE("GPL v2");