diff options
Diffstat (limited to 'arch/arm/mach-at91/at91rm9200_time.c')
-rw-r--r-- | arch/arm/mach-at91/at91rm9200_time.c | 37 |
1 files changed, 23 insertions, 14 deletions
diff --git a/arch/arm/mach-at91/at91rm9200_time.c b/arch/arm/mach-at91/at91rm9200_time.c index a028cdf8f974..dd7f782b0b91 100644 --- a/arch/arm/mach-at91/at91rm9200_time.c +++ b/arch/arm/mach-at91/at91rm9200_time.c | |||
@@ -43,9 +43,9 @@ static inline unsigned long read_CRTR(void) | |||
43 | { | 43 | { |
44 | unsigned long x1, x2; | 44 | unsigned long x1, x2; |
45 | 45 | ||
46 | x1 = at91_sys_read(AT91_ST_CRTR); | 46 | x1 = at91_st_read(AT91_ST_CRTR); |
47 | do { | 47 | do { |
48 | x2 = at91_sys_read(AT91_ST_CRTR); | 48 | x2 = at91_st_read(AT91_ST_CRTR); |
49 | if (x1 == x2) | 49 | if (x1 == x2) |
50 | break; | 50 | break; |
51 | x1 = x2; | 51 | x1 = x2; |
@@ -58,7 +58,7 @@ static inline unsigned long read_CRTR(void) | |||
58 | */ | 58 | */ |
59 | static irqreturn_t at91rm9200_timer_interrupt(int irq, void *dev_id) | 59 | static irqreturn_t at91rm9200_timer_interrupt(int irq, void *dev_id) |
60 | { | 60 | { |
61 | u32 sr = at91_sys_read(AT91_ST_SR) & irqmask; | 61 | u32 sr = at91_st_read(AT91_ST_SR) & irqmask; |
62 | 62 | ||
63 | /* | 63 | /* |
64 | * irqs should be disabled here, but as the irq is shared they are only | 64 | * irqs should be disabled here, but as the irq is shared they are only |
@@ -110,22 +110,22 @@ static void | |||
110 | clkevt32k_mode(enum clock_event_mode mode, struct clock_event_device *dev) | 110 | clkevt32k_mode(enum clock_event_mode mode, struct clock_event_device *dev) |
111 | { | 111 | { |
112 | /* Disable and flush pending timer interrupts */ | 112 | /* Disable and flush pending timer interrupts */ |
113 | at91_sys_write(AT91_ST_IDR, AT91_ST_PITS | AT91_ST_ALMS); | 113 | at91_st_write(AT91_ST_IDR, AT91_ST_PITS | AT91_ST_ALMS); |
114 | (void) at91_sys_read(AT91_ST_SR); | 114 | at91_st_read(AT91_ST_SR); |
115 | 115 | ||
116 | last_crtr = read_CRTR(); | 116 | last_crtr = read_CRTR(); |
117 | switch (mode) { | 117 | switch (mode) { |
118 | case CLOCK_EVT_MODE_PERIODIC: | 118 | case CLOCK_EVT_MODE_PERIODIC: |
119 | /* PIT for periodic irqs; fixed rate of 1/HZ */ | 119 | /* PIT for periodic irqs; fixed rate of 1/HZ */ |
120 | irqmask = AT91_ST_PITS; | 120 | irqmask = AT91_ST_PITS; |
121 | at91_sys_write(AT91_ST_PIMR, RM9200_TIMER_LATCH); | 121 | at91_st_write(AT91_ST_PIMR, RM9200_TIMER_LATCH); |
122 | break; | 122 | break; |
123 | case CLOCK_EVT_MODE_ONESHOT: | 123 | case CLOCK_EVT_MODE_ONESHOT: |
124 | /* ALM for oneshot irqs, set by next_event() | 124 | /* ALM for oneshot irqs, set by next_event() |
125 | * before 32 seconds have passed | 125 | * before 32 seconds have passed |
126 | */ | 126 | */ |
127 | irqmask = AT91_ST_ALMS; | 127 | irqmask = AT91_ST_ALMS; |
128 | at91_sys_write(AT91_ST_RTAR, last_crtr); | 128 | at91_st_write(AT91_ST_RTAR, last_crtr); |
129 | break; | 129 | break; |
130 | case CLOCK_EVT_MODE_SHUTDOWN: | 130 | case CLOCK_EVT_MODE_SHUTDOWN: |
131 | case CLOCK_EVT_MODE_UNUSED: | 131 | case CLOCK_EVT_MODE_UNUSED: |
@@ -133,7 +133,7 @@ clkevt32k_mode(enum clock_event_mode mode, struct clock_event_device *dev) | |||
133 | irqmask = 0; | 133 | irqmask = 0; |
134 | break; | 134 | break; |
135 | } | 135 | } |
136 | at91_sys_write(AT91_ST_IER, irqmask); | 136 | at91_st_write(AT91_ST_IER, irqmask); |
137 | } | 137 | } |
138 | 138 | ||
139 | static int | 139 | static int |
@@ -156,12 +156,12 @@ clkevt32k_next_event(unsigned long delta, struct clock_event_device *dev) | |||
156 | alm = read_CRTR(); | 156 | alm = read_CRTR(); |
157 | 157 | ||
158 | /* Cancel any pending alarm; flush any pending IRQ */ | 158 | /* Cancel any pending alarm; flush any pending IRQ */ |
159 | at91_sys_write(AT91_ST_RTAR, alm); | 159 | at91_st_write(AT91_ST_RTAR, alm); |
160 | (void) at91_sys_read(AT91_ST_SR); | 160 | at91_st_read(AT91_ST_SR); |
161 | 161 | ||
162 | /* Schedule alarm by writing RTAR. */ | 162 | /* Schedule alarm by writing RTAR. */ |
163 | alm += delta; | 163 | alm += delta; |
164 | at91_sys_write(AT91_ST_RTAR, alm); | 164 | at91_st_write(AT91_ST_RTAR, alm); |
165 | 165 | ||
166 | return status; | 166 | return status; |
167 | } | 167 | } |
@@ -175,15 +175,24 @@ static struct clock_event_device clkevt = { | |||
175 | .set_mode = clkevt32k_mode, | 175 | .set_mode = clkevt32k_mode, |
176 | }; | 176 | }; |
177 | 177 | ||
178 | void __iomem *at91_st_base; | ||
179 | |||
180 | void __init at91rm9200_ioremap_st(u32 addr) | ||
181 | { | ||
182 | at91_st_base = ioremap(addr, 256); | ||
183 | if (!at91_st_base) | ||
184 | panic("Impossible to ioremap ST\n"); | ||
185 | } | ||
186 | |||
178 | /* | 187 | /* |
179 | * ST (system timer) module supports both clockevents and clocksource. | 188 | * ST (system timer) module supports both clockevents and clocksource. |
180 | */ | 189 | */ |
181 | void __init at91rm9200_timer_init(void) | 190 | void __init at91rm9200_timer_init(void) |
182 | { | 191 | { |
183 | /* Disable all timer interrupts, and clear any pending ones */ | 192 | /* Disable all timer interrupts, and clear any pending ones */ |
184 | at91_sys_write(AT91_ST_IDR, | 193 | at91_st_write(AT91_ST_IDR, |
185 | AT91_ST_PITS | AT91_ST_WDOVF | AT91_ST_RTTINC | AT91_ST_ALMS); | 194 | AT91_ST_PITS | AT91_ST_WDOVF | AT91_ST_RTTINC | AT91_ST_ALMS); |
186 | (void) at91_sys_read(AT91_ST_SR); | 195 | at91_st_read(AT91_ST_SR); |
187 | 196 | ||
188 | /* Make IRQs happen for the system timer */ | 197 | /* Make IRQs happen for the system timer */ |
189 | setup_irq(AT91_ID_SYS, &at91rm9200_timer_irq); | 198 | setup_irq(AT91_ID_SYS, &at91rm9200_timer_irq); |
@@ -192,7 +201,7 @@ void __init at91rm9200_timer_init(void) | |||
192 | * directly for the clocksource and all clockevents, after adjusting | 201 | * directly for the clocksource and all clockevents, after adjusting |
193 | * its prescaler from the 1 Hz default. | 202 | * its prescaler from the 1 Hz default. |
194 | */ | 203 | */ |
195 | at91_sys_write(AT91_ST_RTMR, 1); | 204 | at91_st_write(AT91_ST_RTMR, 1); |
196 | 205 | ||
197 | /* Setup timer clockevent, with minimum of two ticks (important!!) */ | 206 | /* Setup timer clockevent, with minimum of two ticks (important!!) */ |
198 | clkevt.mult = div_sc(AT91_SLOW_CLOCK, NSEC_PER_SEC, clkevt.shift); | 207 | clkevt.mult = div_sc(AT91_SLOW_CLOCK, NSEC_PER_SEC, clkevt.shift); |