Lines Matching refs:centaur
92 struct eps_cpu_data *centaur; in eps_get() local
97 centaur = eps_cpu[cpu]; in eps_get()
98 if (centaur == NULL) in eps_get()
103 return centaur->fsb * ((lo >> 8) & 0xff); in eps_get()
106 static int eps_set_state(struct eps_cpu_data *centaur, in eps_set_state() argument
156 struct eps_cpu_data *centaur; in eps_target() local
163 centaur = eps_cpu[cpu]; in eps_target()
166 dest_state = centaur->freq_table[index].driver_data & 0xffff; in eps_target()
167 ret = eps_set_state(centaur, policy, dest_state); in eps_target()
183 struct eps_cpu_data *centaur; in eps_cpu_init() local
335 centaur = kzalloc(sizeof(*centaur) in eps_cpu_init()
338 if (!centaur) in eps_cpu_init()
340 eps_cpu[0] = centaur; in eps_cpu_init()
343 centaur->fsb = fsb; in eps_cpu_init()
345 centaur->bios_limit = limit; in eps_cpu_init()
349 f_table = ¢aur->freq_table[0]; in eps_cpu_init()
371 ret = cpufreq_table_validate_and_show(policy, ¢aur->freq_table[0]); in eps_cpu_init()
373 kfree(centaur); in eps_cpu_init()