2 * Power Management Service Unit(PMSU) support for Armada 370/XP platforms.
4 * Copyright (C) 2012 Marvell
6 * Yehuda Yitschak <yehuday@marvell.com>
7 * Gregory Clement <gregory.clement@free-electrons.com>
8 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 * This file is licensed under the terms of the GNU General Public
11 * License version 2. This program is licensed "as is" without any
12 * warranty of any kind, whether express or implied.
14 * The Armada 370 and Armada XP SOCs have a power management service
15 * unit which is responsible for powering down and waking up CPUs and
19 #define pr_fmt(fmt) "mvebu-pmsu: " fmt
21 #include <linux/clk.h>
22 #include <linux/cpu_pm.h>
23 #include <linux/cpufreq-dt.h>
24 #include <linux/delay.h>
25 #include <linux/init.h>
27 #include <linux/kernel.h>
28 #include <linux/mbus.h>
29 #include <linux/of_address.h>
30 #include <linux/of_device.h>
31 #include <linux/platform_device.h>
32 #include <linux/pm_opp.h>
33 #include <linux/resource.h>
34 #include <linux/slab.h>
35 #include <linux/smp.h>
36 #include <asm/cacheflush.h>
38 #include <asm/smp_scu.h>
39 #include <asm/smp_plat.h>
40 #include <asm/suspend.h>
41 #include <asm/tlbflush.h>
45 #define PMSU_BASE_OFFSET 0x100
46 #define PMSU_REG_SIZE 0x1000
48 /* PMSU MP registers */
49 #define PMSU_CONTROL_AND_CONFIG(cpu) ((cpu * 0x100) + 0x104)
50 #define PMSU_CONTROL_AND_CONFIG_DFS_REQ BIT(18)
51 #define PMSU_CONTROL_AND_CONFIG_PWDDN_REQ BIT(16)
52 #define PMSU_CONTROL_AND_CONFIG_L2_PWDDN BIT(20)
54 #define PMSU_CPU_POWER_DOWN_CONTROL(cpu) ((cpu * 0x100) + 0x108)
56 #define PMSU_CPU_POWER_DOWN_DIS_SNP_Q_SKIP BIT(0)
58 #define PMSU_STATUS_AND_MASK(cpu) ((cpu * 0x100) + 0x10c)
59 #define PMSU_STATUS_AND_MASK_CPU_IDLE_WAIT BIT(16)
60 #define PMSU_STATUS_AND_MASK_SNP_Q_EMPTY_WAIT BIT(17)
61 #define PMSU_STATUS_AND_MASK_IRQ_WAKEUP BIT(20)
62 #define PMSU_STATUS_AND_MASK_FIQ_WAKEUP BIT(21)
63 #define PMSU_STATUS_AND_MASK_DBG_WAKEUP BIT(22)
64 #define PMSU_STATUS_AND_MASK_IRQ_MASK BIT(24)
65 #define PMSU_STATUS_AND_MASK_FIQ_MASK BIT(25)
67 #define PMSU_EVENT_STATUS_AND_MASK(cpu) ((cpu * 0x100) + 0x120)
68 #define PMSU_EVENT_STATUS_AND_MASK_DFS_DONE BIT(1)
69 #define PMSU_EVENT_STATUS_AND_MASK_DFS_DONE_MASK BIT(17)
71 #define PMSU_BOOT_ADDR_REDIRECT_OFFSET(cpu) ((cpu * 0x100) + 0x124)
73 /* PMSU fabric registers */
74 #define L2C_NFABRIC_PM_CTL 0x4
75 #define L2C_NFABRIC_PM_CTL_PWR_DOWN BIT(20)
77 /* PMSU delay registers */
78 #define PMSU_POWERDOWN_DELAY 0xF04
79 #define PMSU_POWERDOWN_DELAY_PMU BIT(1)
80 #define PMSU_POWERDOWN_DELAY_MASK 0xFFFE
81 #define PMSU_DFLT_ARMADA38X_DELAY 0x64
83 /* CA9 MPcore SoC Control registers */
85 #define MPCORE_RESET_CTL 0x64
86 #define MPCORE_RESET_CTL_L2 BIT(0)
87 #define MPCORE_RESET_CTL_DEBUG BIT(16)
89 #define SRAM_PHYS_BASE 0xFFFF0000
90 #define BOOTROM_BASE 0xFFF00000
91 #define BOOTROM_SIZE 0x100000
93 #define ARMADA_370_CRYPT0_ENG_TARGET 0x9
94 #define ARMADA_370_CRYPT0_ENG_ATTR 0x1
96 extern void ll_disable_coherency(void);
97 extern void ll_enable_coherency(void);
99 extern void armada_370_xp_cpu_resume(void);
100 extern void armada_38x_cpu_resume(void);
102 static phys_addr_t pmsu_mp_phys_base
;
103 static void __iomem
*pmsu_mp_base
;
105 static void *mvebu_cpu_resume
;
107 static const struct of_device_id of_pmsu_table
[] = {
108 { .compatible
= "marvell,armada-370-pmsu", },
109 { .compatible
= "marvell,armada-370-xp-pmsu", },
110 { .compatible
= "marvell,armada-380-pmsu", },
111 { /* end of list */ },
114 void mvebu_pmsu_set_cpu_boot_addr(int hw_cpu
, void *boot_addr
)
116 writel(virt_to_phys(boot_addr
), pmsu_mp_base
+
117 PMSU_BOOT_ADDR_REDIRECT_OFFSET(hw_cpu
));
120 extern unsigned char mvebu_boot_wa_start
;
121 extern unsigned char mvebu_boot_wa_end
;
124 * This function sets up the boot address workaround needed for SMP
125 * boot on Armada 375 Z1 and cpuidle on Armada 370. It unmaps the
126 * BootROM Mbus window, and instead remaps a crypto SRAM into which a
127 * custom piece of code is copied to replace the problematic BootROM.
129 int mvebu_setup_boot_addr_wa(unsigned int crypto_eng_target
,
130 unsigned int crypto_eng_attribute
,
131 phys_addr_t resume_addr_reg
)
133 void __iomem
*sram_virt_base
;
134 u32 code_len
= &mvebu_boot_wa_end
- &mvebu_boot_wa_start
;
136 mvebu_mbus_del_window(BOOTROM_BASE
, BOOTROM_SIZE
);
137 mvebu_mbus_add_window_by_id(crypto_eng_target
, crypto_eng_attribute
,
138 SRAM_PHYS_BASE
, SZ_64K
);
140 sram_virt_base
= ioremap(SRAM_PHYS_BASE
, SZ_64K
);
141 if (!sram_virt_base
) {
142 pr_err("Unable to map SRAM to setup the boot address WA\n");
146 memcpy(sram_virt_base
, &mvebu_boot_wa_start
, code_len
);
149 * The last word of the code copied in SRAM must contain the
150 * physical base address of the PMSU register. We
151 * intentionally store this address in the native endianness
154 __raw_writel((unsigned long)resume_addr_reg
,
155 sram_virt_base
+ code_len
- 4);
157 iounmap(sram_virt_base
);
162 static int __init
mvebu_v7_pmsu_init(void)
164 struct device_node
*np
;
168 np
= of_find_matching_node(NULL
, of_pmsu_table
);
172 pr_info("Initializing Power Management Service Unit\n");
174 if (of_address_to_resource(np
, 0, &res
)) {
175 pr_err("unable to get resource\n");
180 if (of_device_is_compatible(np
, "marvell,armada-370-xp-pmsu")) {
181 pr_warn(FW_WARN
"deprecated pmsu binding\n");
182 res
.start
= res
.start
- PMSU_BASE_OFFSET
;
183 res
.end
= res
.start
+ PMSU_REG_SIZE
- 1;
186 if (!request_mem_region(res
.start
, resource_size(&res
),
188 pr_err("unable to request region\n");
193 pmsu_mp_phys_base
= res
.start
;
195 pmsu_mp_base
= ioremap(res
.start
, resource_size(&res
));
197 pr_err("unable to map registers\n");
198 release_mem_region(res
.start
, resource_size(&res
));
208 static void mvebu_v7_pmsu_enable_l2_powerdown_onidle(void)
212 if (pmsu_mp_base
== NULL
)
215 /* Enable L2 & Fabric powerdown in Deep-Idle mode - Fabric */
216 reg
= readl(pmsu_mp_base
+ L2C_NFABRIC_PM_CTL
);
217 reg
|= L2C_NFABRIC_PM_CTL_PWR_DOWN
;
218 writel(reg
, pmsu_mp_base
+ L2C_NFABRIC_PM_CTL
);
221 enum pmsu_idle_prepare_flags
{
222 PMSU_PREPARE_NORMAL
= 0,
223 PMSU_PREPARE_DEEP_IDLE
= BIT(0),
224 PMSU_PREPARE_SNOOP_DISABLE
= BIT(1),
227 /* No locking is needed because we only access per-CPU registers */
228 static int mvebu_v7_pmsu_idle_prepare(unsigned long flags
)
230 unsigned int hw_cpu
= cpu_logical_map(smp_processor_id());
233 if (pmsu_mp_base
== NULL
)
237 * Adjust the PMSU configuration to wait for WFI signal, enable
238 * IRQ and FIQ as wakeup events, set wait for snoop queue empty
239 * indication and mask IRQ and FIQ from CPU
241 reg
= readl(pmsu_mp_base
+ PMSU_STATUS_AND_MASK(hw_cpu
));
242 reg
|= PMSU_STATUS_AND_MASK_CPU_IDLE_WAIT
|
243 PMSU_STATUS_AND_MASK_IRQ_WAKEUP
|
244 PMSU_STATUS_AND_MASK_FIQ_WAKEUP
|
245 PMSU_STATUS_AND_MASK_SNP_Q_EMPTY_WAIT
|
246 PMSU_STATUS_AND_MASK_IRQ_MASK
|
247 PMSU_STATUS_AND_MASK_FIQ_MASK
;
248 writel(reg
, pmsu_mp_base
+ PMSU_STATUS_AND_MASK(hw_cpu
));
250 reg
= readl(pmsu_mp_base
+ PMSU_CONTROL_AND_CONFIG(hw_cpu
));
251 /* ask HW to power down the L2 Cache if needed */
252 if (flags
& PMSU_PREPARE_DEEP_IDLE
)
253 reg
|= PMSU_CONTROL_AND_CONFIG_L2_PWDDN
;
255 /* request power down */
256 reg
|= PMSU_CONTROL_AND_CONFIG_PWDDN_REQ
;
257 writel(reg
, pmsu_mp_base
+ PMSU_CONTROL_AND_CONFIG(hw_cpu
));
259 if (flags
& PMSU_PREPARE_SNOOP_DISABLE
) {
260 /* Disable snoop disable by HW - SW is taking care of it */
261 reg
= readl(pmsu_mp_base
+ PMSU_CPU_POWER_DOWN_CONTROL(hw_cpu
));
262 reg
|= PMSU_CPU_POWER_DOWN_DIS_SNP_Q_SKIP
;
263 writel(reg
, pmsu_mp_base
+ PMSU_CPU_POWER_DOWN_CONTROL(hw_cpu
));
269 int armada_370_xp_pmsu_idle_enter(unsigned long deepidle
)
271 unsigned long flags
= PMSU_PREPARE_SNOOP_DISABLE
;
275 flags
|= PMSU_PREPARE_DEEP_IDLE
;
277 ret
= mvebu_v7_pmsu_idle_prepare(flags
);
281 v7_exit_coherency_flush(all
);
283 ll_disable_coherency();
289 /* If we are here, wfi failed. As processors run out of
290 * coherency for some time, tlbs might be stale, so flush them
292 local_flush_tlb_all();
294 ll_enable_coherency();
296 /* Test the CR_C bit and set it if it was cleared */
298 "mrc p15, 0, r0, c1, c0, 0 \n\t"
300 "orreq r0, r0, #(1 << 2) \n\t"
301 "mcreq p15, 0, r0, c1, c0, 0 \n\t"
303 : : "Ir" (CR_C
) : "r0");
305 pr_debug("Failed to suspend the system\n");
310 static int armada_370_xp_cpu_suspend(unsigned long deepidle
)
312 return cpu_suspend(deepidle
, armada_370_xp_pmsu_idle_enter
);
315 int armada_38x_do_cpu_suspend(unsigned long deepidle
)
317 unsigned long flags
= 0;
320 flags
|= PMSU_PREPARE_DEEP_IDLE
;
322 mvebu_v7_pmsu_idle_prepare(flags
);
324 * Already flushed cache, but do it again as the outer cache
325 * functions dirty the cache with spinlocks
327 v7_exit_coherency_flush(louis
);
329 scu_power_mode(mvebu_get_scu_base(), SCU_PM_POWEROFF
);
336 static int armada_38x_cpu_suspend(unsigned long deepidle
)
338 return cpu_suspend(false, armada_38x_do_cpu_suspend
);
341 /* No locking is needed because we only access per-CPU registers */
342 void mvebu_v7_pmsu_idle_exit(void)
344 unsigned int hw_cpu
= cpu_logical_map(smp_processor_id());
347 if (pmsu_mp_base
== NULL
)
349 /* cancel ask HW to power down the L2 Cache if possible */
350 reg
= readl(pmsu_mp_base
+ PMSU_CONTROL_AND_CONFIG(hw_cpu
));
351 reg
&= ~PMSU_CONTROL_AND_CONFIG_L2_PWDDN
;
352 writel(reg
, pmsu_mp_base
+ PMSU_CONTROL_AND_CONFIG(hw_cpu
));
354 /* cancel Enable wakeup events and mask interrupts */
355 reg
= readl(pmsu_mp_base
+ PMSU_STATUS_AND_MASK(hw_cpu
));
356 reg
&= ~(PMSU_STATUS_AND_MASK_IRQ_WAKEUP
| PMSU_STATUS_AND_MASK_FIQ_WAKEUP
);
357 reg
&= ~PMSU_STATUS_AND_MASK_CPU_IDLE_WAIT
;
358 reg
&= ~PMSU_STATUS_AND_MASK_SNP_Q_EMPTY_WAIT
;
359 reg
&= ~(PMSU_STATUS_AND_MASK_IRQ_MASK
| PMSU_STATUS_AND_MASK_FIQ_MASK
);
360 writel(reg
, pmsu_mp_base
+ PMSU_STATUS_AND_MASK(hw_cpu
));
363 static int mvebu_v7_cpu_pm_notify(struct notifier_block
*self
,
364 unsigned long action
, void *hcpu
)
366 if (action
== CPU_PM_ENTER
) {
367 unsigned int hw_cpu
= cpu_logical_map(smp_processor_id());
368 mvebu_pmsu_set_cpu_boot_addr(hw_cpu
, mvebu_cpu_resume
);
369 } else if (action
== CPU_PM_EXIT
) {
370 mvebu_v7_pmsu_idle_exit();
376 static struct notifier_block mvebu_v7_cpu_pm_notifier
= {
377 .notifier_call
= mvebu_v7_cpu_pm_notify
,
380 static struct platform_device mvebu_v7_cpuidle_device
;
382 static int broken_idle(struct device_node
*np
)
384 if (of_property_read_bool(np
, "broken-idle")) {
385 pr_warn("CPU idle is currently broken: disabling\n");
392 static __init
int armada_370_cpuidle_init(void)
394 struct device_node
*np
;
395 phys_addr_t redirect_reg
;
397 np
= of_find_compatible_node(NULL
, NULL
, "marvell,coherency-fabric");
405 * On Armada 370, there is "a slow exit process from the deep
406 * idle state due to heavy L1/L2 cache cleanup operations
407 * performed by the BootROM software". To avoid this, we
408 * replace the restart code of the bootrom by a a simple jump
409 * to the boot address. Then the code located at this boot
410 * address will take care of the initialization.
412 redirect_reg
= pmsu_mp_phys_base
+ PMSU_BOOT_ADDR_REDIRECT_OFFSET(0);
413 mvebu_setup_boot_addr_wa(ARMADA_370_CRYPT0_ENG_TARGET
,
414 ARMADA_370_CRYPT0_ENG_ATTR
,
417 mvebu_cpu_resume
= armada_370_xp_cpu_resume
;
418 mvebu_v7_cpuidle_device
.dev
.platform_data
= armada_370_xp_cpu_suspend
;
419 mvebu_v7_cpuidle_device
.name
= "cpuidle-armada-370";
426 static __init
int armada_38x_cpuidle_init(void)
428 struct device_node
*np
;
429 void __iomem
*mpsoc_base
;
432 pr_warn("CPU idle is currently broken on Armada 38x: disabling\n");
435 np
= of_find_compatible_node(NULL
, NULL
,
436 "marvell,armada-380-coherency-fabric");
445 np
= of_find_compatible_node(NULL
, NULL
,
446 "marvell,armada-380-mpcore-soc-ctrl");
449 mpsoc_base
= of_iomap(np
, 0);
452 /* Set up reset mask when powering down the cpus */
453 reg
= readl(mpsoc_base
+ MPCORE_RESET_CTL
);
454 reg
|= MPCORE_RESET_CTL_L2
;
455 reg
|= MPCORE_RESET_CTL_DEBUG
;
456 writel(reg
, mpsoc_base
+ MPCORE_RESET_CTL
);
460 reg
= readl(pmsu_mp_base
+ PMSU_POWERDOWN_DELAY
);
461 reg
&= ~PMSU_POWERDOWN_DELAY_MASK
;
462 reg
|= PMSU_DFLT_ARMADA38X_DELAY
;
463 reg
|= PMSU_POWERDOWN_DELAY_PMU
;
464 writel(reg
, pmsu_mp_base
+ PMSU_POWERDOWN_DELAY
);
466 mvebu_cpu_resume
= armada_38x_cpu_resume
;
467 mvebu_v7_cpuidle_device
.dev
.platform_data
= armada_38x_cpu_suspend
;
468 mvebu_v7_cpuidle_device
.name
= "cpuidle-armada-38x";
475 static __init
int armada_xp_cpuidle_init(void)
477 struct device_node
*np
;
479 np
= of_find_compatible_node(NULL
, NULL
, "marvell,coherency-fabric");
486 mvebu_cpu_resume
= armada_370_xp_cpu_resume
;
487 mvebu_v7_cpuidle_device
.dev
.platform_data
= armada_370_xp_cpu_suspend
;
488 mvebu_v7_cpuidle_device
.name
= "cpuidle-armada-xp";
495 static int __init
mvebu_v7_cpu_pm_init(void)
497 struct device_node
*np
;
500 np
= of_find_matching_node(NULL
, of_pmsu_table
);
506 * Currently the CPU idle support for Armada 38x is broken, as
507 * the CPU hotplug uses some of the CPU idle functions it is
508 * broken too, so let's disable it
510 if (of_machine_is_compatible("marvell,armada380")) {
511 cpu_hotplug_disable();
512 pr_warn("CPU hotplug support is currently broken on Armada 38x: disabling\n");
515 if (of_machine_is_compatible("marvell,armadaxp"))
516 ret
= armada_xp_cpuidle_init();
517 else if (of_machine_is_compatible("marvell,armada370"))
518 ret
= armada_370_cpuidle_init();
519 else if (of_machine_is_compatible("marvell,armada380"))
520 ret
= armada_38x_cpuidle_init();
527 mvebu_v7_pmsu_enable_l2_powerdown_onidle();
528 if (mvebu_v7_cpuidle_device
.name
)
529 platform_device_register(&mvebu_v7_cpuidle_device
);
530 cpu_pm_register_notifier(&mvebu_v7_cpu_pm_notifier
);
535 arch_initcall(mvebu_v7_cpu_pm_init
);
536 early_initcall(mvebu_v7_pmsu_init
);
538 static void mvebu_pmsu_dfs_request_local(void *data
)
541 u32 cpu
= smp_processor_id();
544 local_irq_save(flags
);
546 /* Prepare to enter idle */
547 reg
= readl(pmsu_mp_base
+ PMSU_STATUS_AND_MASK(cpu
));
548 reg
|= PMSU_STATUS_AND_MASK_CPU_IDLE_WAIT
|
549 PMSU_STATUS_AND_MASK_IRQ_MASK
|
550 PMSU_STATUS_AND_MASK_FIQ_MASK
;
551 writel(reg
, pmsu_mp_base
+ PMSU_STATUS_AND_MASK(cpu
));
553 /* Request the DFS transition */
554 reg
= readl(pmsu_mp_base
+ PMSU_CONTROL_AND_CONFIG(cpu
));
555 reg
|= PMSU_CONTROL_AND_CONFIG_DFS_REQ
;
556 writel(reg
, pmsu_mp_base
+ PMSU_CONTROL_AND_CONFIG(cpu
));
558 /* The fact of entering idle will trigger the DFS transition */
562 * We're back from idle, the DFS transition has completed,
563 * clear the idle wait indication.
565 reg
= readl(pmsu_mp_base
+ PMSU_STATUS_AND_MASK(cpu
));
566 reg
&= ~PMSU_STATUS_AND_MASK_CPU_IDLE_WAIT
;
567 writel(reg
, pmsu_mp_base
+ PMSU_STATUS_AND_MASK(cpu
));
569 local_irq_restore(flags
);
572 int mvebu_pmsu_dfs_request(int cpu
)
574 unsigned long timeout
;
575 int hwcpu
= cpu_logical_map(cpu
);
578 /* Clear any previous DFS DONE event */
579 reg
= readl(pmsu_mp_base
+ PMSU_EVENT_STATUS_AND_MASK(hwcpu
));
580 reg
&= ~PMSU_EVENT_STATUS_AND_MASK_DFS_DONE
;
581 writel(reg
, pmsu_mp_base
+ PMSU_EVENT_STATUS_AND_MASK(hwcpu
));
583 /* Mask the DFS done interrupt, since we are going to poll */
584 reg
= readl(pmsu_mp_base
+ PMSU_EVENT_STATUS_AND_MASK(hwcpu
));
585 reg
|= PMSU_EVENT_STATUS_AND_MASK_DFS_DONE_MASK
;
586 writel(reg
, pmsu_mp_base
+ PMSU_EVENT_STATUS_AND_MASK(hwcpu
));
588 /* Trigger the DFS on the appropriate CPU */
589 smp_call_function_single(cpu
, mvebu_pmsu_dfs_request_local
,
592 /* Poll until the DFS done event is generated */
593 timeout
= jiffies
+ HZ
;
594 while (time_before(jiffies
, timeout
)) {
595 reg
= readl(pmsu_mp_base
+ PMSU_EVENT_STATUS_AND_MASK(hwcpu
));
596 if (reg
& PMSU_EVENT_STATUS_AND_MASK_DFS_DONE
)
601 if (time_after(jiffies
, timeout
))
604 /* Restore the DFS mask to its original state */
605 reg
= readl(pmsu_mp_base
+ PMSU_EVENT_STATUS_AND_MASK(hwcpu
));
606 reg
&= ~PMSU_EVENT_STATUS_AND_MASK_DFS_DONE_MASK
;
607 writel(reg
, pmsu_mp_base
+ PMSU_EVENT_STATUS_AND_MASK(hwcpu
));
612 struct cpufreq_dt_platform_data cpufreq_dt_pd
= {
613 .independent_clocks
= true,
616 static int __init
armada_xp_pmsu_cpufreq_init(void)
618 struct device_node
*np
;
622 if (!of_machine_is_compatible("marvell,armadaxp"))
626 * In order to have proper cpufreq handling, we need to ensure
627 * that the Device Tree description of the CPU clock includes
628 * the definition of the PMU DFS registers. If not, we do not
629 * register the clock notifier and the cpufreq driver. This
630 * piece of code is only for compatibility with old Device
633 np
= of_find_compatible_node(NULL
, NULL
, "marvell,armada-xp-cpu-clock");
637 ret
= of_address_to_resource(np
, 1, &res
);
639 pr_warn(FW_WARN
"not enabling cpufreq, deprecated armada-xp-cpu-clock binding\n");
647 * For each CPU, this loop registers the operating points
648 * supported (which are the nominal CPU frequency and half of
649 * it), and registers the clock notifier that will take care
650 * of doing the PMSU part of a frequency transition.
652 for_each_possible_cpu(cpu
) {
653 struct device
*cpu_dev
;
657 cpu_dev
= get_cpu_device(cpu
);
659 pr_err("Cannot get CPU %d\n", cpu
);
663 clk
= clk_get(cpu_dev
, 0);
665 pr_err("Cannot get clock for CPU %d\n", cpu
);
670 * In case of a failure of dev_pm_opp_add(), we don't
671 * bother with cleaning up the registered OPP (there's
672 * no function to do so), and simply cancel the
673 * registration of the cpufreq device.
675 ret
= dev_pm_opp_add(cpu_dev
, clk_get_rate(clk
), 0);
681 ret
= dev_pm_opp_add(cpu_dev
, clk_get_rate(clk
) / 2, 0);
688 platform_device_register_data(NULL
, "cpufreq-dt", -1,
689 &cpufreq_dt_pd
, sizeof(cpufreq_dt_pd
));
693 device_initcall(armada_xp_pmsu_cpufreq_init
);