2 * linux/arch/arm/mach-integrator/core.c
4 * Copyright (C) 2000-2003 Deep Blue Solutions Ltd
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2, as
8 * published by the Free Software Foundation.
10 #include <linux/types.h>
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/device.h>
14 #include <linux/spinlock.h>
15 #include <linux/interrupt.h>
16 #include <linux/sched.h>
18 #include <asm/hardware.h>
21 #include <asm/hardware/amba.h>
22 #include <asm/arch/cm.h>
23 #include <asm/system.h>
25 #include <asm/mach/time.h>
29 static struct amba_device rtc_device
= {
34 .start
= INTEGRATOR_RTC_BASE
,
35 .end
= INTEGRATOR_RTC_BASE
+ SZ_4K
- 1,
36 .flags
= IORESOURCE_MEM
,
38 .irq
= { IRQ_RTCINT
, NO_IRQ
},
39 .periphid
= 0x00041030,
42 static struct amba_device uart0_device
= {
47 .start
= INTEGRATOR_UART0_BASE
,
48 .end
= INTEGRATOR_UART0_BASE
+ SZ_4K
- 1,
49 .flags
= IORESOURCE_MEM
,
51 .irq
= { IRQ_UARTINT0
, NO_IRQ
},
52 .periphid
= 0x0041010,
55 static struct amba_device uart1_device
= {
60 .start
= INTEGRATOR_UART1_BASE
,
61 .end
= INTEGRATOR_UART1_BASE
+ SZ_4K
- 1,
62 .flags
= IORESOURCE_MEM
,
64 .irq
= { IRQ_UARTINT1
, NO_IRQ
},
65 .periphid
= 0x0041010,
68 static struct amba_device kmi0_device
= {
74 .end
= KMI0_BASE
+ SZ_4K
- 1,
75 .flags
= IORESOURCE_MEM
,
77 .irq
= { IRQ_KMIINT0
, NO_IRQ
},
78 .periphid
= 0x00041050,
81 static struct amba_device kmi1_device
= {
87 .end
= KMI1_BASE
+ SZ_4K
- 1,
88 .flags
= IORESOURCE_MEM
,
90 .irq
= { IRQ_KMIINT1
, NO_IRQ
},
91 .periphid
= 0x00041050,
94 static struct amba_device
*amba_devs
[] __initdata
= {
102 static int __init
integrator_init(void)
106 for (i
= 0; i
< ARRAY_SIZE(amba_devs
); i
++) {
107 struct amba_device
*d
= amba_devs
[i
];
108 amba_device_register(d
, &iomem_resource
);
114 arch_initcall(integrator_init
);
116 #define CM_CTRL IO_ADDRESS(INTEGRATOR_HDR_BASE) + INTEGRATOR_HDR_CTRL_OFFSET
118 static DEFINE_SPINLOCK(cm_lock
);
121 * cm_control - update the CM_CTRL register.
122 * @mask: bits to change
125 void cm_control(u32 mask
, u32 set
)
130 spin_lock_irqsave(&cm_lock
, flags
);
131 val
= readl(CM_CTRL
) & ~mask
;
132 writel(val
| set
, CM_CTRL
);
133 spin_unlock_irqrestore(&cm_lock
, flags
);
136 EXPORT_SYMBOL(cm_control
);
139 * Where is the timer (VA)?
141 #define TIMER0_VA_BASE (IO_ADDRESS(INTEGRATOR_CT_BASE)+0x00000000)
142 #define TIMER1_VA_BASE (IO_ADDRESS(INTEGRATOR_CT_BASE)+0x00000100)
143 #define TIMER2_VA_BASE (IO_ADDRESS(INTEGRATOR_CT_BASE)+0x00000200)
144 #define VA_IC_BASE IO_ADDRESS(INTEGRATOR_IC_BASE)
147 * How long is the timer interval?
149 #define TIMER_INTERVAL (TICKS_PER_uSEC * mSEC_10)
150 #if TIMER_INTERVAL >= 0x100000
151 #define TICKS2USECS(x) (256 * (x) / TICKS_PER_uSEC)
152 #elif TIMER_INTERVAL >= 0x10000
153 #define TICKS2USECS(x) (16 * (x) / TICKS_PER_uSEC)
155 #define TICKS2USECS(x) ((x) / TICKS_PER_uSEC)
159 * What does it look like?
161 typedef struct TimerStruct
{
162 unsigned long TimerLoad
;
163 unsigned long TimerValue
;
164 unsigned long TimerControl
;
165 unsigned long TimerClear
;
168 static unsigned long timer_reload
;
171 * Returns number of ms since last clock interrupt. Note that interrupts
172 * will have been disabled by do_gettimeoffset()
174 unsigned long integrator_gettimeoffset(void)
176 volatile TimerStruct_t
*timer1
= (TimerStruct_t
*)TIMER1_VA_BASE
;
177 unsigned long ticks1
, ticks2
, status
;
180 * Get the current number of ticks. Note that there is a race
181 * condition between us reading the timer and checking for
182 * an interrupt. We get around this by ensuring that the
183 * counter has not reloaded between our two reads.
185 ticks2
= timer1
->TimerValue
& 0xffff;
188 status
= __raw_readl(VA_IC_BASE
+ IRQ_RAW_STATUS
);
189 ticks2
= timer1
->TimerValue
& 0xffff;
190 } while (ticks2
> ticks1
);
193 * Number of ticks since last interrupt.
195 ticks1
= timer_reload
- ticks2
;
198 * Interrupt pending? If so, we've reloaded once already.
200 if (status
& (1 << IRQ_TIMERINT1
))
201 ticks1
+= timer_reload
;
204 * Convert the ticks to usecs
206 return TICKS2USECS(ticks1
);
210 * IRQ handler for the timer
213 integrator_timer_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
215 volatile TimerStruct_t
*timer1
= (volatile TimerStruct_t
*)TIMER1_VA_BASE
;
217 write_seqlock(&xtime_lock
);
220 * clear the interrupt
222 timer1
->TimerClear
= 1;
226 write_sequnlock(&xtime_lock
);
231 static struct irqaction integrator_timer_irq
= {
232 .name
= "Integrator Timer Tick",
233 .flags
= SA_INTERRUPT
,
234 .handler
= integrator_timer_interrupt
238 * Set up timer interrupt, and return the current time in seconds.
240 void __init
integrator_time_init(unsigned long reload
, unsigned int ctrl
)
242 volatile TimerStruct_t
*timer0
= (volatile TimerStruct_t
*)TIMER0_VA_BASE
;
243 volatile TimerStruct_t
*timer1
= (volatile TimerStruct_t
*)TIMER1_VA_BASE
;
244 volatile TimerStruct_t
*timer2
= (volatile TimerStruct_t
*)TIMER2_VA_BASE
;
245 unsigned int timer_ctrl
= 0x80 | 0x40; /* periodic */
247 timer_reload
= reload
;
250 if (timer_reload
> 0x100000) {
252 timer_ctrl
|= 0x08; /* /256 */
253 } else if (timer_reload
> 0x010000) {
255 timer_ctrl
|= 0x04; /* /16 */
259 * Initialise to a known state (all timers off)
261 timer0
->TimerControl
= 0;
262 timer1
->TimerControl
= 0;
263 timer2
->TimerControl
= 0;
265 timer1
->TimerLoad
= timer_reload
;
266 timer1
->TimerValue
= timer_reload
;
267 timer1
->TimerControl
= timer_ctrl
;
270 * Make irqs happen for the system timer
272 setup_irq(IRQ_TIMERINT1
, &integrator_timer_irq
);