GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / blackfin / mach-common / dpmc.c
blob02c7efd1bcf4807939135734a5f41e159b1af224
1 /*
2 * Copyright 2008 Analog Devices Inc.
4 * Licensed under the GPL-2 or later.
5 */
7 #include <linux/cdev.h>
8 #include <linux/device.h>
9 #include <linux/errno.h>
10 #include <linux/fs.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>
18 #include <asm/dpmc.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;
27 /**
28 * bfin_set_vlev - Update VLEV field in VR_CTL Reg.
29 * Avoid BYPASS sequence
31 static void bfin_set_vlev(unsigned int vlev)
33 unsigned pll_lcnt;
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);
42 /**
43 * bfin_get_vlev - Get CPU specific VLEV from platform device data
45 static unsigned int bfin_get_vlev(unsigned int freq)
47 int i;
49 if (!pdata)
50 goto err_out;
52 freq >>= 16;
54 for (i = 0; i < pdata->tabsize; i++)
55 if (freq <= (pdata->tuple_tab[i] & 0xFFFF))
56 return pdata->tuple_tab[i] >> 16;
58 err_out:
59 printk(KERN_WARNING "DPMC: No suitable CCLK VDDINT voltage pair found\n");
60 return VLEV_120;
63 #ifdef CONFIG_CPU_FREQ
64 static int
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));
76 return 0;
79 static struct notifier_block vreg_cpufreq_notifier_block = {
80 .notifier_call = vreg_cpufreq_notifier
82 #endif /* CONFIG_CPU_FREQ */
84 /**
85 * bfin_dpmc_probe -
88 static int __devinit bfin_dpmc_probe(struct platform_device *pdev)
90 if (pdev->dev.platform_data)
91 pdata = pdev->dev.platform_data;
92 else
93 return -EINVAL;
95 return cpufreq_register_notifier(&vreg_cpufreq_notifier_block,
96 CPUFREQ_TRANSITION_NOTIFIER);
99 /**
100 * bfin_dpmc_remove -
102 static int __devexit bfin_dpmc_remove(struct platform_device *pdev)
104 pdata = NULL;
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),
112 .driver = {
113 .name = DRIVER_NAME,
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");