2 * U-boot - interrupts.c Interrupt related routines
4 * Copyright (c) 2005 blackfin.uclinux.org
6 * This file is based on interrupts.c
7 * Copyright 1996 Roman Zippel
8 * Copyright 1999 D. Jeff Dionne <jeff@uclinux.org>
9 * Copyright 2000-2001 Lineo, Inc. D. Jefff Dionne <jeff@lineo.ca>
10 * Copyright 2002 Arcturus Networks Inc. MaTed <mated@sympatico.ca>
11 * Copyright 2003 Metrowerks/Motorola
12 * Copyright 2003 Bas Vermeulen <bas@buyways.nl>,
13 * BuyWays B.V. (www.buyways.nl)
15 * (C) Copyright 2000-2004
16 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
18 * See file CREDITS for list of people who contributed to this
21 * This program is free software; you can redistribute it and/or
22 * modify it under the terms of the GNU General Public License as
23 * published by the Free Software Foundation; either version 2 of
24 * the License, or (at your option) any later version.
26 * This program is distributed in the hope that it will be useful,
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 * GNU General Public License for more details.
31 * You should have received a copy of the GNU General Public License
32 * along with this program; if not, write to the Free Software
33 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
38 #include <asm/machdep.h>
41 #include <asm/blackfin.h>
44 static ulong timestamp;
45 static ulong last_time;
48 int irq_flags; /* needed by asm-blackfin/system.h */
50 /* Functions just to satisfy the linker */
53 * This function is derived from PowerPC code (read timebase as long long).
54 * On BF561 it just returns the timer value.
56 unsigned long long get_ticks(void)
62 * This function is derived from PowerPC code (timebase clock frequency).
63 * On BF561 it returns the number of timer ticks per second.
73 void enable_interrupts(void)
75 restore_flags(int_flag);
78 int disable_interrupts(void)
80 save_and_cli(int_flag);
84 int interrupt_init(void)
89 void udelay(unsigned long usec)
91 unsigned long delay, start, stop;
93 cclk = (CONFIG_CCLK_HZ);
97 * how many clock ticks to delay?
98 * - request(in useconds) * clock_ticks(Hz) / useconds/second
101 delay = (usec * (cclk / 244)) >> 12;
104 delay = (1000 * (cclk / 244)) >> 12;
108 asm volatile (" %0 = CYCLES;":"=r" (start));
110 asm volatile (" %0 = CYCLES; ":"=r" (stop));
111 } while (stop - start < delay);
117 void timer_init(void)
121 *pTCOUNT = MAX_TIM_LOAD;
122 *pTPERIOD = MAX_TIM_LOAD;
131 * Any network command or flash
132 * command is started get_timer shall
133 * be called before TCOUNT gets reset,
134 * to implement the accurate timeouts.
136 * How ever milliconds doesn't return
137 * the number that has been elapsed from
140 * As get_timer is used in the u-boot
141 * only for timeouts this should be
144 ulong get_timer(ulong base)
148 /* Number of clocks elapsed */
149 ulong clocks = (MAX_TIM_LOAD - (*pTCOUNT));
152 * Find if the TCOUNT is reset
153 * timestamp gives the number of times
156 if (clocks < last_time)
160 /* Get the number of milliseconds */
161 milisec = clocks / (CONFIG_CCLK_HZ / 1000);
164 * Find the number of millisonds
165 * that got elapsed before this TCOUNT
168 milisec += timestamp * (MAX_TIM_LOAD / (CONFIG_CCLK_HZ / 1000));
170 return (milisec - base);