2 * Copyright 2008 Analog Devices Inc.
4 * Licensed under the GPL-2 or later.
7 #include <linux/cdev.h>
8 #include <linux/device.h>
9 #include <linux/errno.h>
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/platform_device.h>
14 #include <linux/types.h>
15 #include <linux/cpufreq.h>
17 #include <asm/delay.h>
20 #define DRIVER_NAME "bfin dpmc"
22 #define dprintk(msg...) \
23 cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, DRIVER_NAME, msg)
25 struct bfin_dpmc_platform_data
*pdata
;
28 * bfin_set_vlev - Update VLEV field in VR_CTL Reg.
29 * Avoid BYPASS sequence
31 static void bfin_set_vlev(unsigned int vlev
)
35 pll_lcnt
= bfin_read_PLL_LOCKCNT();
37 bfin_write_PLL_LOCKCNT(1);
38 bfin_write_VR_CTL((bfin_read_VR_CTL() & ~VLEV
) | vlev
);
39 bfin_write_PLL_LOCKCNT(pll_lcnt
);
43 * bfin_get_vlev - Get CPU specific VLEV from platform device data
45 static unsigned int bfin_get_vlev(unsigned int freq
)
54 for (i
= 0; i
< pdata
->tabsize
; i
++)
55 if (freq
<= (pdata
->tuple_tab
[i
] & 0xFFFF))
56 return pdata
->tuple_tab
[i
] >> 16;
59 printk(KERN_WARNING
"DPMC: No suitable CCLK VDDINT voltage pair found\n");
63 #ifdef CONFIG_CPU_FREQ
65 vreg_cpufreq_notifier(struct notifier_block
*nb
, unsigned long val
, void *data
)
67 struct cpufreq_freqs
*freq
= data
;
69 if (val
== CPUFREQ_PRECHANGE
&& freq
->old
< freq
->new) {
70 bfin_set_vlev(bfin_get_vlev(freq
->new));
71 udelay(pdata
->vr_settling_time
); /* Wait until Volatge settled */
73 } else if (val
== CPUFREQ_POSTCHANGE
&& freq
->old
> freq
->new)
74 bfin_set_vlev(bfin_get_vlev(freq
->new));
79 static struct notifier_block vreg_cpufreq_notifier_block
= {
80 .notifier_call
= vreg_cpufreq_notifier
82 #endif /* CONFIG_CPU_FREQ */
88 static int __devinit
bfin_dpmc_probe(struct platform_device
*pdev
)
90 if (pdev
->dev
.platform_data
)
91 pdata
= pdev
->dev
.platform_data
;
95 return cpufreq_register_notifier(&vreg_cpufreq_notifier_block
,
96 CPUFREQ_TRANSITION_NOTIFIER
);
102 static int __devexit
bfin_dpmc_remove(struct platform_device
*pdev
)
105 return cpufreq_unregister_notifier(&vreg_cpufreq_notifier_block
,
106 CPUFREQ_TRANSITION_NOTIFIER
);
109 struct platform_driver bfin_dpmc_device_driver
= {
110 .probe
= bfin_dpmc_probe
,
111 .remove
= __devexit_p(bfin_dpmc_remove
),
118 * bfin_dpmc_init - Init driver
120 static int __init
bfin_dpmc_init(void)
122 return platform_driver_register(&bfin_dpmc_device_driver
);
124 module_init(bfin_dpmc_init
);
127 * bfin_dpmc_exit - break down driver
129 static void __exit
bfin_dpmc_exit(void)
131 platform_driver_unregister(&bfin_dpmc_device_driver
);
133 module_exit(bfin_dpmc_exit
);
135 MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
136 MODULE_DESCRIPTION("cpu power management driver for Blackfin");
137 MODULE_LICENSE("GPL");