blob: 464dd3046626540e5e3e487f9d1608cc20441821 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2002
3 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4 * Marius Groeger <mgroeger@sysgo.de>
5 *
6 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Alex Zuepke <azu@sysgo.de>
9 *
10 * See file CREDITS for list of people who contributed to this
11 * project.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wdenkf70cbb22004-02-23 20:48:38 +000020 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenkc6097192002-11-03 00:24:07 +000021 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 * MA 02111-1307 USA
27 */
28
29#include <common.h>
30#include <clps7111.h>
wdenkc6097192002-11-03 00:24:07 +000031#include <asm/proc-armv/ptrace.h>
wdenkf2140d52004-07-01 16:30:44 +000032#include <asm/hardware.h>
wdenkc6097192002-11-03 00:24:07 +000033
wdenk2ebee312004-02-23 19:30:57 +000034#ifndef CONFIG_NETARM
wdenkc6097192002-11-03 00:24:07 +000035/* we always count down the max. */
36#define TIMER_LOAD_VAL 0xffff
wdenkc6097192002-11-03 00:24:07 +000037/* macro to read the 16 bit timer */
38#define READ_TIMER (IO_TC1D & 0xffff)
Gary Jennejohn7968bb52007-01-24 12:16:56 +010039
40#ifdef CONFIG_LPC2292
41#undef READ_TIMER
42#define READ_TIMER (0xFFFFFFFF - GET32(T0TC))
43#endif
44
wdenk2ebee312004-02-23 19:30:57 +000045#else
46#define IRQEN (*(volatile unsigned int *)(NETARM_GEN_MODULE_BASE + NETARM_GEN_INTR_ENABLE))
wdenkf70cbb22004-02-23 20:48:38 +000047#define TM2CTRL (*(volatile unsigned int *)(NETARM_GEN_MODULE_BASE + NETARM_GEN_TIMER2_CONTROL))
48#define TM2STAT (*(volatile unsigned int *)(NETARM_GEN_MODULE_BASE + NETARM_GEN_TIMER2_STATUS))
wdenk2ebee312004-02-23 19:30:57 +000049#define TIMER_LOAD_VAL NETARM_GEN_TSTAT_CTC_MASK
50#define READ_TIMER (TM2STAT & NETARM_GEN_TSTAT_CTC_MASK)
51#endif
wdenkc6097192002-11-03 00:24:07 +000052
wdenk82db02f2004-07-11 22:19:26 +000053#ifdef CONFIG_S3C4510B
54/* require interrupts for the S3C4510B */
55# ifndef CONFIG_USE_IRQ
56# error CONFIG_USE_IRQ _must_ be defined when using CONFIG_S3C4510B
57# else
58static struct _irq_handler IRQ_HANDLER[N_IRQS];
59# endif
60#endif /* CONFIG_S3C4510B */
61
wdenkc6097192002-11-03 00:24:07 +000062#ifdef CONFIG_USE_IRQ
wdenkc6097192002-11-03 00:24:07 +000063void do_irq (struct pt_regs *pt_regs)
64{
Andreas Engel2d4b2532008-01-14 09:06:52 +000065#if defined(CONFIG_S3C4510B)
wdenk82db02f2004-07-11 22:19:26 +000066 unsigned int pending;
67
68 while ( (pending = GET_REG( REG_INTOFFSET)) != 0x54) { /* sentinal value for no pending interrutps */
69 IRQ_HANDLER[pending>>2].m_func( IRQ_HANDLER[pending>>2].m_data);
70
71 /* clear pending interrupt */
72 PUT_REG( REG_INTPEND, (1<<(pending>>2)));
73 }
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +020074#elif defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR)
75 /* No do_irq() for IntegratorAP/CM720T as yet */
Gary Jennejohn7968bb52007-01-24 12:16:56 +010076#elif defined(CONFIG_LPC2292)
77
78 void (*pfnct)(void);
79
80 pfnct = (void (*)(void))VICVectAddr;
81
82 (*pfnct)();
wdenk82db02f2004-07-11 22:19:26 +000083#else
84#error do_irq() not defined for this CPU type
85#endif
86}
Andreas Engel2d4b2532008-01-14 09:06:52 +000087#endif
wdenk82db02f2004-07-11 22:19:26 +000088
89#ifdef CONFIG_S3C4510B
90static void default_isr( void *data) {
91 printf ("default_isr(): called for IRQ %d\n", (int)data);
wdenkc6097192002-11-03 00:24:07 +000092}
93
wdenk82db02f2004-07-11 22:19:26 +000094static void timer_isr( void *data) {
95 unsigned int *pTime = (unsigned int *)data;
96
97 (*pTime)++;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020098 if ( !(*pTime % (CONFIG_SYS_HZ/4))) {
wdenk82db02f2004-07-11 22:19:26 +000099 /* toggle LED 0 */
100 PUT_REG( REG_IOPDATA, GET_REG(REG_IOPDATA) ^ 0x1);
101 }
102
103}
104#endif
105
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +0200106#if defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR)
107 /* Use IntegratorAP routines in board/integratorap.c */
108#else
109
Wolfgang Denk88bd7432005-10-09 00:22:48 +0200110static ulong timestamp;
111static ulong lastdec;
112
Jean-Christophe PLAGNIOL-VILLARD8c9fc002009-05-15 23:47:02 +0200113#if defined(CONFIG_USE_IRQ) && defined(CONFIG_S3C4510B)
Jean-Christophe PLAGNIOL-VILLARDda7b3db2009-05-09 13:21:18 +0200114int arch_interrupt_init (void)
wdenkc6097192002-11-03 00:24:07 +0000115{
Jean-Christophe PLAGNIOL-VILLARD8c9fc002009-05-15 23:47:02 +0200116 int i;
117
118 /* install default interrupt handlers */
119 for ( i = 0; i < N_IRQS; i++) {
120 IRQ_HANDLER[i].m_data = (void *)i;
121 IRQ_HANDLER[i].m_func = default_isr;
122 }
123
124 /* configure interrupts for IRQ mode */
125 PUT_REG( REG_INTMODE, 0x0);
126 /* clear any pending interrupts */
127 PUT_REG( REG_INTPEND, 0x1FFFFF);
128
129 lastdec = 0;
130
131 /* install interrupt handler for timer */
132 IRQ_HANDLER[INT_TIMER0].m_data = (void *)&timestamp;
133 IRQ_HANDLER[INT_TIMER0].m_func = timer_isr;
wdenkf2140d52004-07-01 16:30:44 +0000134
Jean-Christophe PLAGNIOL-VILLARD8c9fc002009-05-15 23:47:02 +0200135 return 0;
136}
137#endif
138
139int timer_init (void)
140{
wdenkf2140d52004-07-01 16:30:44 +0000141#if defined(CONFIG_NETARM)
wdenkf70cbb22004-02-23 20:48:38 +0000142 /* disable all interrupts */
wdenk2ebee312004-02-23 19:30:57 +0000143 IRQEN = 0;
144
145 /* operate timer 2 in non-prescale mode */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200146 TM2CTRL = ( NETARM_GEN_TIMER_SET_HZ(CONFIG_SYS_HZ) |
wdenk2ebee312004-02-23 19:30:57 +0000147 NETARM_GEN_TCTL_ENABLE |
148 NETARM_GEN_TCTL_INIT_COUNT(TIMER_LOAD_VAL));
149
150 /* set timer 2 counter */
151 lastdec = TIMER_LOAD_VAL;
wdenkf2140d52004-07-01 16:30:44 +0000152#elif defined(CONFIG_S3C4510B)
wdenk82db02f2004-07-11 22:19:26 +0000153 /* configure free running timer 0 */
154 PUT_REG( REG_TMOD, 0x0);
155 /* Stop timer 0 */
156 CLR_REG( REG_TMOD, TM0_RUN);
157
158 /* Configure for interval mode */
159 CLR_REG( REG_TMOD, TM1_TOGGLE);
160
161 /*
162 * Load Timer data register with count down value.
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200163 * count_down_val = CONFIG_SYS_SYS_CLK_FREQ/CONFIG_SYS_HZ
wdenk82db02f2004-07-11 22:19:26 +0000164 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200165 PUT_REG( REG_TDATA0, (CONFIG_SYS_SYS_CLK_FREQ / CONFIG_SYS_HZ));
wdenk82db02f2004-07-11 22:19:26 +0000166
167 /*
168 * Enable global interrupt
169 * Enable timer0 interrupt
170 */
171 CLR_REG( REG_INTMASK, ((1<<INT_GLOBAL) | (1<<INT_TIMER0)));
172
173 /* Start timer */
174 SET_REG( REG_TMOD, TM0_RUN);
Gary Jennejohn7968bb52007-01-24 12:16:56 +0100175#elif defined(CONFIG_LPC2292)
176 PUT32(T0IR, 0); /* disable all timer0 interrupts */
177 PUT32(T0TCR, 0); /* disable timer0 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200178 PUT32(T0PR, CONFIG_SYS_SYS_CLK_FREQ / CONFIG_SYS_HZ);
Wolfgang Denka1be4762008-05-20 16:00:29 +0200179 PUT32(T0MCR, 0);
Gary Jennejohn7968bb52007-01-24 12:16:56 +0100180 PUT32(T0TC, 0);
181 PUT32(T0TCR, 1); /* enable timer0 */
wdenk82db02f2004-07-11 22:19:26 +0000182
wdenkf2140d52004-07-01 16:30:44 +0000183#else
Jean-Christophe PLAGNIOL-VILLARD8c9fc002009-05-15 23:47:02 +0200184#error No timer_init() defined for this CPU type
wdenk2ebee312004-02-23 19:30:57 +0000185#endif
wdenkc6097192002-11-03 00:24:07 +0000186 timestamp = 0;
187
188 return (0);
189}
190
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +0200191#endif /* ! IntegratorAP */
192
wdenkc6097192002-11-03 00:24:07 +0000193/*
194 * timer without interrupts
195 */
196
wdenkf2140d52004-07-01 16:30:44 +0000197
Wolfgang Denk9ece4e62011-09-05 14:37:30 +0200198#if defined(CONFIG_NETARM) || defined(CONFIG_LPC2292)
wdenkf2140d52004-07-01 16:30:44 +0000199
wdenkc6097192002-11-03 00:24:07 +0000200ulong get_timer (ulong base)
201{
202 return get_timer_masked () - base;
203}
204
Ingo van Lilf0f778a2009-11-24 14:09:21 +0100205void __udelay (unsigned long usec)
wdenkc6097192002-11-03 00:24:07 +0000206{
207 ulong tmo;
208
209 tmo = usec / 1000;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200210 tmo *= CONFIG_SYS_HZ;
wdenkc6097192002-11-03 00:24:07 +0000211 tmo /= 1000;
212
213 tmo += get_timer (0);
214
215 while (get_timer_masked () < tmo)
Gary Jennejohn7968bb52007-01-24 12:16:56 +0100216#ifdef CONFIG_LPC2292
217 /* GJ - not sure whether this is really needed or a misunderstanding */
218 __asm__ __volatile__(" nop");
219#else
wdenkc6097192002-11-03 00:24:07 +0000220 /*NOP*/;
Gary Jennejohn7968bb52007-01-24 12:16:56 +0100221#endif
wdenkc6097192002-11-03 00:24:07 +0000222}
223
wdenkc6097192002-11-03 00:24:07 +0000224ulong get_timer_masked (void)
225{
226 ulong now = READ_TIMER;
227
228 if (lastdec >= now) {
229 /* normal mode */
230 timestamp += lastdec - now;
231 } else {
232 /* we have an overflow ... */
233 timestamp += lastdec + TIMER_LOAD_VAL - now;
234 }
235 lastdec = now;
236
237 return timestamp;
238}
239
240void udelay_masked (unsigned long usec)
241{
242 ulong tmo;
wdenk7af1f9d2005-04-04 12:08:28 +0000243 ulong endtime;
244 signed long diff;
wdenkc6097192002-11-03 00:24:07 +0000245
wdenk7af1f9d2005-04-04 12:08:28 +0000246 if (usec >= 1000) {
247 tmo = usec / 1000;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200248 tmo *= CONFIG_SYS_HZ;
wdenk7af1f9d2005-04-04 12:08:28 +0000249 tmo /= 1000;
250 } else {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200251 tmo = usec * CONFIG_SYS_HZ;
wdenk7af1f9d2005-04-04 12:08:28 +0000252 tmo /= (1000*1000);
253 }
wdenkc6097192002-11-03 00:24:07 +0000254
wdenk7af1f9d2005-04-04 12:08:28 +0000255 endtime = get_timer_masked () + tmo;
wdenkc6097192002-11-03 00:24:07 +0000256
wdenk7af1f9d2005-04-04 12:08:28 +0000257 do {
258 ulong now = get_timer_masked ();
259 diff = endtime - now;
260 } while (diff >= 0);
wdenkc6097192002-11-03 00:24:07 +0000261}
wdenkf2140d52004-07-01 16:30:44 +0000262
263#elif defined(CONFIG_S3C4510B)
264
wdenk82db02f2004-07-11 22:19:26 +0000265ulong get_timer (ulong base)
266{
267 return timestamp - base;
268}
wdenkf2140d52004-07-01 16:30:44 +0000269
Ingo van Lilf0f778a2009-11-24 14:09:21 +0100270void __udelay (unsigned long usec)
wdenkf2140d52004-07-01 16:30:44 +0000271{
wdenk82db02f2004-07-11 22:19:26 +0000272 u32 ticks;
wdenkf2140d52004-07-01 16:30:44 +0000273
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200274 ticks = (usec * CONFIG_SYS_HZ) / 1000000;
wdenkf2140d52004-07-01 16:30:44 +0000275
wdenk82db02f2004-07-11 22:19:26 +0000276 ticks += get_timer (0);
wdenkf2140d52004-07-01 16:30:44 +0000277
wdenk82db02f2004-07-11 22:19:26 +0000278 while (get_timer (0) < ticks)
279 /*NOP*/;
wdenkf2140d52004-07-01 16:30:44 +0000280
wdenkf2140d52004-07-01 16:30:44 +0000281}
282
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +0200283#elif defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR)
284 /* No timer routines for IntegratorAP/CM720T as yet */
wdenkf2140d52004-07-01 16:30:44 +0000285#else
286#error Timer routines not defined for this CPU type
287#endif