aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/mti-malta
diff options
context:
space:
mode:
authorSteven J. Hill <Steven.Hill@imgtec.com>2013-04-10 17:28:36 -0400
committerRalf Baechle <ralf@linux-mips.org>2013-05-09 11:55:20 -0400
commitdfa762e1c31c30607e4e5259f287dd3e174cbcc3 (patch)
treeb23b7335ac92646a29df85c897b5f4783944dc5b /arch/mips/mti-malta
parent28ea215186d365408756577e9e612ee334e26f8e (diff)
MIPS: Refactor GIC clocksource code.
Reorganize some of the GIC clocksource driver code. Below is a list of the various changes. * No longer select CSRC_GIC by default for Malta platform. * Limit choice for either the GIC or R4K clocksource, not both. * Change location in Makefile. * Created new 'gic_read_count' function in common 'irq-gic.c' file. * Change 'git_hpt_read' function in 'csrc-gic.c' to use new function. * Surround GIC specific code in Malta platform code with #ifdef's. * Only initialize the GIC clocksource if it was selected. Original code called it unconditionally if a GIC was found. Signed-off-by: Steven J. Hill <Steven.Hill@imgtec.com>
Diffstat (limited to 'arch/mips/mti-malta')
-rw-r--r--arch/mips/mti-malta/malta-time.c37
1 files changed, 24 insertions, 13 deletions
diff --git a/arch/mips/mti-malta/malta-time.c b/arch/mips/mti-malta/malta-time.c
index 381ad062f192..79e5169eabd3 100644
--- a/arch/mips/mti-malta/malta-time.c
+++ b/arch/mips/mti-malta/malta-time.c
@@ -71,7 +71,9 @@ static void __init estimate_frequencies(void)
71{ 71{
72 unsigned long flags; 72 unsigned long flags;
73 unsigned int count, start; 73 unsigned int count, start;
74#ifdef CONFIG_IRQ_GIC
74 unsigned int giccount = 0, gicstart = 0; 75 unsigned int giccount = 0, gicstart = 0;
76#endif
75 77
76 local_irq_save(flags); 78 local_irq_save(flags);
77 79
@@ -81,26 +83,32 @@ static void __init estimate_frequencies(void)
81 83
82 /* Initialize counters. */ 84 /* Initialize counters. */
83 start = read_c0_count(); 85 start = read_c0_count();
86#ifdef CONFIG_IRQ_GIC
84 if (gic_present) 87 if (gic_present)
85 GICREAD(GIC_REG(SHARED, GIC_SH_COUNTER_31_00), gicstart); 88 GICREAD(GIC_REG(SHARED, GIC_SH_COUNTER_31_00), gicstart);
89#endif
86 90
87 /* Read counter exactly on falling edge of update flag. */ 91 /* Read counter exactly on falling edge of update flag. */
88 while (CMOS_READ(RTC_REG_A) & RTC_UIP); 92 while (CMOS_READ(RTC_REG_A) & RTC_UIP);
89 while (!(CMOS_READ(RTC_REG_A) & RTC_UIP)); 93 while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
90 94
91 count = read_c0_count(); 95 count = read_c0_count();
96#ifdef CONFIG_IRQ_GIC
92 if (gic_present) 97 if (gic_present)
93 GICREAD(GIC_REG(SHARED, GIC_SH_COUNTER_31_00), giccount); 98 GICREAD(GIC_REG(SHARED, GIC_SH_COUNTER_31_00), giccount);
99#endif
94 100
95 local_irq_restore(flags); 101 local_irq_restore(flags);
96 102
97 count -= start; 103 count -= start;
98 if (gic_present)
99 giccount -= gicstart;
100
101 mips_hpt_frequency = count; 104 mips_hpt_frequency = count;
102 if (gic_present) 105
106#ifdef CONFIG_IRQ_GIC
107 if (gic_present) {
108 giccount -= gicstart;
103 gic_frequency = giccount; 109 gic_frequency = giccount;
110 }
111#endif
104} 112}
105 113
106void read_persistent_clock(struct timespec *ts) 114void read_persistent_clock(struct timespec *ts)
@@ -156,24 +164,27 @@ void __init plat_time_init(void)
156 (prid != (PRID_COMP_MIPS | PRID_IMP_25KF))) 164 (prid != (PRID_COMP_MIPS | PRID_IMP_25KF)))
157 freq *= 2; 165 freq *= 2;
158 freq = freqround(freq, 5000); 166 freq = freqround(freq, 5000);
159 pr_debug("CPU frequency %d.%02d MHz\n", freq/1000000, 167 printk("CPU frequency %d.%02d MHz\n", freq/1000000,
160 (freq%1000000)*100/1000000); 168 (freq%1000000)*100/1000000);
161 cpu_khz = freq / 1000; 169 cpu_khz = freq / 1000;
162 170
163 if (gic_present) { 171 mips_scroll_message();
164 freq = freqround(gic_frequency, 5000);
165 pr_debug("GIC frequency %d.%02d MHz\n", freq/1000000,
166 (freq%1000000)*100/1000000);
167 gic_clocksource_init(gic_frequency);
168 } else
169 init_r4k_clocksource();
170 172
171#ifdef CONFIG_I8253 173#ifdef CONFIG_I8253
172 /* Only Malta has a PIT. */ 174 /* Only Malta has a PIT. */
173 setup_pit_timer(); 175 setup_pit_timer();
174#endif 176#endif
175 177
176 mips_scroll_message(); 178#ifdef CONFIG_IRQ_GIC
179 if (gic_present) {
180 freq = freqround(gic_frequency, 5000);
181 printk("GIC frequency %d.%02d MHz\n", freq/1000000,
182 (freq%1000000)*100/1000000);
183#ifdef CONFIG_CSRC_GIC
184 gic_clocksource_init(gic_frequency);
185#endif
186 }
187#endif
177 188
178 plat_perf_setup(); 189 plat_perf_setup();
179} 190}