cpu_new           157 drivers/cpufreq/s3c24xx-cpufreq.c 	struct s3c_cpufreq_config cpu_new;
cpu_new           160 drivers/cpufreq/s3c24xx-cpufreq.c 	cpu_new = cpu_cur;  /* copy new from current */
cpu_new           166 drivers/cpufreq/s3c24xx-cpufreq.c 	cpu_new.pll = pll ? *pll : cpu_cur.pll;
cpu_new           173 drivers/cpufreq/s3c24xx-cpufreq.c 	cpu_new.freq.armclk = target_freq;
cpu_new           174 drivers/cpufreq/s3c24xx-cpufreq.c 	cpu_new.freq.fclk = cpu_new.pll.frequency;
cpu_new           176 drivers/cpufreq/s3c24xx-cpufreq.c 	if (s3c_cpufreq_calcdivs(&cpu_new) < 0) {
cpu_new           183 drivers/cpufreq/s3c24xx-cpufreq.c 	s3c_cpufreq_calc(&cpu_new);
cpu_new           187 drivers/cpufreq/s3c24xx-cpufreq.c 	if (cpu_new.freq.hclk != cpu_cur.freq.hclk) {
cpu_new           188 drivers/cpufreq/s3c24xx-cpufreq.c 		if (s3c_cpufreq_calcio(&cpu_new) < 0) {
cpu_new           194 drivers/cpufreq/s3c24xx-cpufreq.c 	s3c_cpufreq_show("new", &cpu_new);
cpu_new           199 drivers/cpufreq/s3c24xx-cpufreq.c 	freqs.new = cpu_new.freq;
cpu_new           202 drivers/cpufreq/s3c24xx-cpufreq.c 	freqs.freqs.new = cpu_new.freq.armclk / 1000;
cpu_new           208 drivers/cpufreq/s3c24xx-cpufreq.c 	s3c_cpufreq_updateclk(_clk_mpll, cpu_new.pll.frequency);
cpu_new           209 drivers/cpufreq/s3c24xx-cpufreq.c 	s3c_cpufreq_updateclk(clk_fclk, cpu_new.freq.fclk);
cpu_new           210 drivers/cpufreq/s3c24xx-cpufreq.c 	s3c_cpufreq_updateclk(clk_hclk, cpu_new.freq.hclk);
cpu_new           211 drivers/cpufreq/s3c24xx-cpufreq.c 	s3c_cpufreq_updateclk(clk_pclk, cpu_new.freq.pclk);
cpu_new           223 drivers/cpufreq/s3c24xx-cpufreq.c 	if (cpu_new.freq.hclk < cpu_cur.freq.hclk) {
cpu_new           224 drivers/cpufreq/s3c24xx-cpufreq.c 		s3c_cpufreq_setrefresh(&cpu_new);
cpu_new           225 drivers/cpufreq/s3c24xx-cpufreq.c 		s3c_cpufreq_setio(&cpu_new);
cpu_new           228 drivers/cpufreq/s3c24xx-cpufreq.c 	if (cpu_new.freq.fclk == cpu_cur.freq.fclk) {
cpu_new           231 drivers/cpufreq/s3c24xx-cpufreq.c 		s3c_cpufreq_setdivs(&cpu_new);
cpu_new           233 drivers/cpufreq/s3c24xx-cpufreq.c 		if (cpu_new.freq.fclk < cpu_cur.freq.fclk) {
cpu_new           236 drivers/cpufreq/s3c24xx-cpufreq.c 			s3c_cpufreq_setfvco(&cpu_new);
cpu_new           237 drivers/cpufreq/s3c24xx-cpufreq.c 			s3c_cpufreq_setdivs(&cpu_new);
cpu_new           241 drivers/cpufreq/s3c24xx-cpufreq.c 			s3c_cpufreq_setdivs(&cpu_new);
cpu_new           242 drivers/cpufreq/s3c24xx-cpufreq.c 			s3c_cpufreq_setfvco(&cpu_new);
cpu_new           247 drivers/cpufreq/s3c24xx-cpufreq.c 	if (cpu_new.freq.hclk > cpu_cur.freq.hclk) {
cpu_new           248 drivers/cpufreq/s3c24xx-cpufreq.c 		s3c_cpufreq_setrefresh(&cpu_new);
cpu_new           249 drivers/cpufreq/s3c24xx-cpufreq.c 		s3c_cpufreq_setio(&cpu_new);
cpu_new           253 drivers/cpufreq/s3c24xx-cpufreq.c 	cpu_cur = cpu_new;