1 /* us3_cpufreq.c: UltraSPARC-III cpu frequency support
3 * Copyright (C) 2003 David S. Miller (davem@redhat.com)
5 * Many thanks to Dominik Brodowski for fixing up the cpufreq
6 * infrastructure in order to make this driver easier to implement.
9 #include <linux/kernel.h>
10 #include <linux/module.h>
11 #include <linux/sched.h>
12 #include <linux/smp.h>
13 #include <linux/cpufreq.h>
14 #include <linux/threads.h>
15 #include <linux/slab.h>
16 #include <linux/init.h>
19 #include <asm/timer.h>
21 static struct cpufreq_driver
*cpufreq_us3_driver
;
23 struct us3_freq_percpu_info
{
24 struct cpufreq_frequency_table table
[4];
27 /* Indexed by cpu number. */
28 static struct us3_freq_percpu_info
*us3_freq_table
;
30 /* UltraSPARC-III has three dividers: 1, 2, and 32. These are controlled
31 * in the Safari config register.
33 #define SAFARI_CFG_DIV_1 0x0000000000000000UL
34 #define SAFARI_CFG_DIV_2 0x0000000040000000UL
35 #define SAFARI_CFG_DIV_32 0x0000000080000000UL
36 #define SAFARI_CFG_DIV_MASK 0x00000000C0000000UL
38 static void read_safari_cfg(void *arg
)
40 unsigned long ret
, *val
= arg
;
42 __asm__
__volatile__("ldxa [%%g0] %1, %0"
44 : "i" (ASI_SAFARI_CONFIG
));
48 static void update_safari_cfg(void *arg
)
50 unsigned long reg
, *new_bits
= arg
;
52 read_safari_cfg(®
);
53 reg
&= ~SAFARI_CFG_DIV_MASK
;
56 __asm__
__volatile__("stxa %0, [%%g0] %1\n\t"
59 : "r" (reg
), "i" (ASI_SAFARI_CONFIG
)
63 static unsigned long get_current_freq(unsigned int cpu
, unsigned long safari_cfg
)
65 unsigned long clock_tick
= sparc64_get_clock_tick(cpu
) / 1000;
68 switch (safari_cfg
& SAFARI_CFG_DIV_MASK
) {
69 case SAFARI_CFG_DIV_1
:
72 case SAFARI_CFG_DIV_2
:
75 case SAFARI_CFG_DIV_32
:
76 ret
= clock_tick
/ 32;
85 static unsigned int us3_freq_get(unsigned int cpu
)
89 if (smp_call_function_single(cpu
, read_safari_cfg
, ®
, 1))
91 return get_current_freq(cpu
, reg
);
94 static int us3_freq_target(struct cpufreq_policy
*policy
, unsigned int index
)
96 unsigned int cpu
= policy
->cpu
;
97 unsigned long new_bits
, new_freq
;
99 new_freq
= sparc64_get_clock_tick(cpu
) / 1000;
102 new_bits
= SAFARI_CFG_DIV_1
;
106 new_bits
= SAFARI_CFG_DIV_2
;
110 new_bits
= SAFARI_CFG_DIV_32
;
118 return smp_call_function_single(cpu
, update_safari_cfg
, &new_bits
, 1);
121 static int __init
us3_freq_cpu_init(struct cpufreq_policy
*policy
)
123 unsigned int cpu
= policy
->cpu
;
124 unsigned long clock_tick
= sparc64_get_clock_tick(cpu
) / 1000;
125 struct cpufreq_frequency_table
*table
=
126 &us3_freq_table
[cpu
].table
[0];
128 table
[0].driver_data
= 0;
129 table
[0].frequency
= clock_tick
/ 1;
130 table
[1].driver_data
= 1;
131 table
[1].frequency
= clock_tick
/ 2;
132 table
[2].driver_data
= 2;
133 table
[2].frequency
= clock_tick
/ 32;
134 table
[3].driver_data
= 0;
135 table
[3].frequency
= CPUFREQ_TABLE_END
;
137 policy
->cpuinfo
.transition_latency
= 0;
138 policy
->cur
= clock_tick
;
139 policy
->freq_table
= table
;
144 static int us3_freq_cpu_exit(struct cpufreq_policy
*policy
)
146 if (cpufreq_us3_driver
)
147 us3_freq_target(policy
, 0);
152 static int __init
us3_freq_init(void)
154 unsigned long manuf
, impl
, ver
;
157 if (tlb_type
!= cheetah
&& tlb_type
!= cheetah_plus
)
160 __asm__("rdpr %%ver, %0" : "=r" (ver
));
161 manuf
= ((ver
>> 48) & 0xffff);
162 impl
= ((ver
>> 32) & 0xffff);
164 if (manuf
== CHEETAH_MANUF
&&
165 (impl
== CHEETAH_IMPL
||
166 impl
== CHEETAH_PLUS_IMPL
||
167 impl
== JAGUAR_IMPL
||
168 impl
== PANTHER_IMPL
)) {
169 struct cpufreq_driver
*driver
;
172 driver
= kzalloc(sizeof(*driver
), GFP_KERNEL
);
176 us3_freq_table
= kzalloc((NR_CPUS
* sizeof(*us3_freq_table
)),
181 driver
->init
= us3_freq_cpu_init
;
182 driver
->verify
= cpufreq_generic_frequency_table_verify
;
183 driver
->target_index
= us3_freq_target
;
184 driver
->get
= us3_freq_get
;
185 driver
->exit
= us3_freq_cpu_exit
;
186 strcpy(driver
->name
, "UltraSPARC-III");
188 cpufreq_us3_driver
= driver
;
189 ret
= cpufreq_register_driver(driver
);
198 cpufreq_us3_driver
= NULL
;
200 kfree(us3_freq_table
);
201 us3_freq_table
= NULL
;
208 static void __exit
us3_freq_exit(void)
210 if (cpufreq_us3_driver
) {
211 cpufreq_unregister_driver(cpufreq_us3_driver
);
212 kfree(cpufreq_us3_driver
);
213 cpufreq_us3_driver
= NULL
;
214 kfree(us3_freq_table
);
215 us3_freq_table
= NULL
;
219 MODULE_AUTHOR("David S. Miller <davem@redhat.com>");
220 MODULE_DESCRIPTION("cpufreq driver for UltraSPARC-III");
221 MODULE_LICENSE("GPL");
223 module_init(us3_freq_init
);
224 module_exit(us3_freq_exit
);