cpu_cur            36 drivers/cpufreq/s3c24xx-cpufreq.c static struct s3c_cpufreq_config cpu_cur;
cpu_cur            53 drivers/cpufreq/s3c24xx-cpufreq.c 	return &cpu_cur;
cpu_cur           160 drivers/cpufreq/s3c24xx-cpufreq.c 	cpu_new = cpu_cur;  /* copy new from current */
cpu_cur           162 drivers/cpufreq/s3c24xx-cpufreq.c 	s3c_cpufreq_show("cur", &cpu_cur);
cpu_cur           166 drivers/cpufreq/s3c24xx-cpufreq.c 	cpu_new.pll = pll ? *pll : cpu_cur.pll;
cpu_cur           187 drivers/cpufreq/s3c24xx-cpufreq.c 	if (cpu_new.freq.hclk != cpu_cur.freq.hclk) {
cpu_cur           198 drivers/cpufreq/s3c24xx-cpufreq.c 	freqs.old = cpu_cur.freq;
cpu_cur           201 drivers/cpufreq/s3c24xx-cpufreq.c 	freqs.freqs.old = cpu_cur.freq.armclk / 1000;
cpu_cur           223 drivers/cpufreq/s3c24xx-cpufreq.c 	if (cpu_new.freq.hclk < cpu_cur.freq.hclk) {
cpu_cur           228 drivers/cpufreq/s3c24xx-cpufreq.c 	if (cpu_new.freq.fclk == cpu_cur.freq.fclk) {
cpu_cur           233 drivers/cpufreq/s3c24xx-cpufreq.c 		if (cpu_new.freq.fclk < cpu_cur.freq.fclk) {
cpu_cur           247 drivers/cpufreq/s3c24xx-cpufreq.c 	if (cpu_new.freq.hclk > cpu_cur.freq.hclk) {
cpu_cur           253 drivers/cpufreq/s3c24xx-cpufreq.c 	cpu_cur = cpu_new;
cpu_cur           305 drivers/cpufreq/s3c24xx-cpufreq.c 	if (!pll_reg || cpu_cur.lock_pll) {
cpu_cur           351 drivers/cpufreq/s3c24xx-cpufreq.c 	policy->cpuinfo.transition_latency = cpu_cur.info->latency;
cpu_cur           456 drivers/cpufreq/s3c24xx-cpufreq.c 	cpu_cur.info = info;
cpu_cur           480 drivers/cpufreq/s3c24xx-cpufreq.c 	cpu_cur.board = ours;
cpu_cur           489 drivers/cpufreq/s3c24xx-cpufreq.c 	if (!cpu_cur.info->get_iotiming) {
cpu_cur           496 drivers/cpufreq/s3c24xx-cpufreq.c 	ret = (cpu_cur.info->get_iotiming)(&cpu_cur, &s3c24xx_iotiming);
cpu_cur           537 drivers/cpufreq/s3c24xx-cpufreq.c 	unsigned int bits = cpu_cur.info->locktime_bits;
cpu_cur           546 drivers/cpufreq/s3c24xx-cpufreq.c 	val = calc_locktime(rate, cpu_cur.info->locktime_u) << bits;
cpu_cur           547 drivers/cpufreq/s3c24xx-cpufreq.c 	val |= calc_locktime(rate, cpu_cur.info->locktime_m);
cpu_cur           559 drivers/cpufreq/s3c24xx-cpufreq.c 	size = cpu_cur.info->calc_freqtable(&cpu_cur, NULL, 0);
cpu_cur           568 drivers/cpufreq/s3c24xx-cpufreq.c 	ret = cpu_cur.info->calc_freqtable(&cpu_cur, ftab, size);
cpu_cur           578 drivers/cpufreq/s3c24xx-cpufreq.c 	if (cpu_cur.info && cpu_cur.board) {
cpu_cur           584 drivers/cpufreq/s3c24xx-cpufreq.c 		s3c_cpufreq_getcur(&cpu_cur);
cpu_cur           585 drivers/cpufreq/s3c24xx-cpufreq.c 		s3c_cpufreq_show("cur", &cpu_cur);
cpu_cur           587 drivers/cpufreq/s3c24xx-cpufreq.c 		if (cpu_cur.board->auto_io) {
cpu_cur           596 drivers/cpufreq/s3c24xx-cpufreq.c 		if (cpu_cur.board->need_io && !cpu_cur.info->set_iotiming) {
cpu_cur           602 drivers/cpufreq/s3c24xx-cpufreq.c 		if (!cpu_cur.info->need_pll)
cpu_cur           603 drivers/cpufreq/s3c24xx-cpufreq.c 			cpu_cur.lock_pll = 1;
cpu_cur           607 drivers/cpufreq/s3c24xx-cpufreq.c 		s3c_cpufreq_freq_min(&cpu_cur.max, &cpu_cur.board->max,
cpu_cur           608 drivers/cpufreq/s3c24xx-cpufreq.c 				     &cpu_cur.info->max);
cpu_cur           610 drivers/cpufreq/s3c24xx-cpufreq.c 		if (cpu_cur.info->calc_freqtable)