]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
arm: timer and interrupt init rework
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Fri, 15 May 2009 21:47:02 +0000 (23:47 +0200)
committerWolfgang Denk <wd@denx.de>
Fri, 12 Jun 2009 18:39:48 +0000 (20:39 +0200)
actually the timer init use the interrupt_init as init callback
which make the interrupt and timer implementation difficult to follow

so now rename it as int timer_init(void) and use interrupt_init for interrupt

btw also remane the corresponding file to the functionnality implemented

as ixp arch implement two timer - one based on interrupt - so all the timer
related code is moved to timer.c

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43 files changed:
board/armltd/integratorap/integratorap.c
board/armltd/integratorcp/integratorcp.c
board/atmel/at91cap9adk/at91cap9adk.c
board/davinci/common/misc.h
board/m501sk/m501sk.c
board/netstar/netstar.c
board/voiceblue/voiceblue.c
cpu/arm1136/mx31/Makefile
cpu/arm1136/mx31/timer.c [moved from cpu/arm1136/mx31/interrupts.c with 97% similarity]
cpu/arm1136/omap24xx/Makefile
cpu/arm1136/omap24xx/timer.c [moved from cpu/arm1136/omap24xx/interrupts.c with 97% similarity]
cpu/arm1176/s3c64xx/Makefile
cpu/arm1176/s3c64xx/timer.c [moved from cpu/arm1176/s3c64xx/interrupts.c with 99% similarity]
cpu/arm720t/interrupts.c
cpu/arm920t/at91rm9200/Makefile
cpu/arm920t/at91rm9200/timer.c [moved from cpu/arm920t/at91rm9200/interrupts.c with 99% similarity]
cpu/arm920t/imx/Makefile
cpu/arm920t/imx/timer.c [moved from cpu/arm920t/imx/interrupts.c with 99% similarity]
cpu/arm920t/ks8695/Makefile
cpu/arm920t/ks8695/timer.c [moved from cpu/arm920t/ks8695/interrupts.c with 93% similarity]
cpu/arm920t/s3c24x0/Makefile
cpu/arm920t/s3c24x0/timer.c [moved from cpu/arm920t/s3c24x0/interrupts.c with 99% similarity]
cpu/arm925t/Makefile
cpu/arm925t/timer.c [moved from cpu/arm925t/interrupts.c with 99% similarity]
cpu/arm926ejs/Makefile
cpu/arm926ejs/interrupts.c [deleted file]
cpu/arm_cortexa8/omap3/Makefile
cpu/arm_cortexa8/omap3/timer.c [moved from cpu/arm_cortexa8/omap3/interrupts.c with 99% similarity]
cpu/ixp/Makefile
cpu/ixp/interrupts.c
cpu/ixp/timer.c
cpu/lh7a40x/Makefile
cpu/lh7a40x/timer.c [moved from cpu/lh7a40x/interrupts.c with 99% similarity]
cpu/pxa/Makefile
cpu/pxa/timer.c [moved from cpu/pxa/interrupts.c with 96% similarity]
cpu/s3c44b0/Makefile
cpu/s3c44b0/timer.c [moved from cpu/s3c44b0/interrupts.c with 98% similarity]
cpu/sa1100/Makefile
cpu/sa1100/timer.c [moved from cpu/sa1100/interrupts.c with 95% similarity]
include/asm-arm/u-boot-arm.h
include/configs/ixdpg425.h
include/configs/pdnb3.h
lib_arm/board.c

index 9631967b07136f95dcfa5279adc71e246f5e234c..5ececd649587afd9818da45ac6fd46e05c26161a 100644 (file)
@@ -540,7 +540,7 @@ static ulong div_timer       = 1;   /* Divisor to convert timer reading
  * - the Integrator/AP timer issues an interrupt
  *   each time it reaches zero
  */
-int interrupt_init (void)
+int timer_init (void)
 {
        /* Load timer with initial value */
        *(volatile ulong *)(CONFIG_SYS_TIMERBASE + 0) = TIMER_LOAD_VAL;
index 72629ce2b3161c71da243bbbf9032126d2403f15..0d3afd8d2443d1e09c0919503f4707d888afff0c 100644 (file)
@@ -163,7 +163,7 @@ static ulong timestamp;             /* U-Boot ticks since startup         */
 
 /* starts up a counter
  * - the Integrator/CP timer can be set up to issue an interrupt */
-int interrupt_init (void)
+int timer_init (void)
 {
        /* Load timer with initial value */
        *(volatile ulong *)(CONFIG_SYS_TIMERBASE + 0) = TIMER_LOAD_VAL;
index f52edaaa0306fc9e73b1718adb1d28de1c68dfb1..9f73df690337d8cd5fb4aa9b762d7ae50573f352 100644 (file)
@@ -61,7 +61,6 @@ static void at91cap9_slowclock_hw_init(void)
        if (at91_sys_read(AT91_PMC_VER) == ARCH_ID_AT91CAP9_REVC) {
                unsigned i, tmp = at91_sys_read(AT91_SCKCR);
                if ((tmp & AT91CAP9_SCKCR_OSCSEL) == AT91CAP9_SCKCR_OSCSEL_RC) {
-                       extern void timer_init(void);
                        timer_init();
                        tmp |= AT91CAP9_SCKCR_OSC32EN;
                        at91_sys_write(AT91_SCKCR, tmp);
index 4a57dbb89b672971fb4694b2561a6f8498703dbd..5d29784403fec75b63ff126c92427388f165ed60 100644 (file)
@@ -22,7 +22,6 @@
 #ifndef __MISC_H
 #define __MISC_H
 
-extern void timer_init(void);
 extern int eth_hw_init(void);
 
 void dv_display_clk_infos(void);
index dc5b786c00b623f6e4a90056526f88de1331e1c0..1e6a605672244e50c063b94d6cafcf439d15aaef 100644 (file)
@@ -127,7 +127,7 @@ int board_init(void)
        m501sk_gpio_init();
 
        /* Do interrupt init here, because flash needs timers */
-       interrupt_init();
+       timer_init();
        flash_init();
 
        return 0;
index ee4f2cdca7f624fe4843d8cc40930c93e33c68bb..ffd60bfae0c7be8b83c95c1b68e87ed6fdb50e6e 100644 (file)
@@ -48,7 +48,7 @@ int dram_init(void)
        /* Take the Ethernet controller out of reset and wait
         * for the EEPROM load to complete. */
        *((volatile unsigned short *) GPIO_DATA_OUTPUT_REG) |= 0x80;
-       udelay(10);     /* doesn't work before interrupt_init call */
+       udelay(10);     /* doesn't work before timer_init call */
        *((volatile unsigned short *) GPIO_DATA_OUTPUT_REG) &= ~0x80;
        udelay(500);
 
index c8dde3651e62db79f99469a97748ac866920a5f8..59b3310ae888d7ebde7f045b7c15f9056e8f2743 100644 (file)
@@ -43,7 +43,7 @@ int dram_init(void)
        /* Take the Ethernet controller out of reset and wait
         * for the EEPROM load to complete. */
        *((volatile unsigned short *) GPIO_DATA_OUTPUT_REG) |= 0x80;
-       udelay(10);     /* doesn't work before interrupt_init call */
+       udelay(10);     /* doesn't work before timer_init call */
        *((volatile unsigned short *) GPIO_DATA_OUTPUT_REG) &= ~0x80;
        udelay(500);
 
index 0e06f0a2b21043485f9d7d922698840080f85623..1e49e8d80f935300cb64d5257fca1f3a9914cb51 100644 (file)
@@ -25,7 +25,8 @@ include $(TOPDIR)/config.mk
 
 LIB    = $(obj)lib$(SOC).a
 
-COBJS  = interrupts.o generic.o
+COBJS  += generic.o
+COBJS  += timer.o
 
 SRCS   := $(SOBJS:.o=.S) $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(SOBJS) $(COBJS))
similarity index 97%
rename from cpu/arm1136/mx31/interrupts.c
rename to cpu/arm1136/mx31/timer.c
index ab7202fef2ad881116edd041d9a4067838cf9330..29b484e4482fc6b025047a146f2c141d23af89a3 100644 (file)
@@ -89,9 +89,8 @@ static inline unsigned long long us_to_tick(unsigned long long us)
 }
 #endif
 
-/* nothing really to do with interrupts, just starts up a counter. */
 /* The 32768Hz 32-bit timer overruns in 131072 seconds */
-int interrupt_init (void)
+int timer_init (void)
 {
        int i;
 
index f9afed72f66d668ee1c1f0054bfff0932ae94280..2a79d9bbba3841cf78735ecc872930ae463e06ab 100644 (file)
@@ -25,9 +25,10 @@ include $(TOPDIR)/config.mk
 
 LIB    = $(obj)lib$(SOC).a
 
-COBJS  = interrupts.o
 SOBJS  = start.o
 
+COBJS  = timer.o
+
 SRCS   := $(SOBJS:.o=.S) $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(SOBJS) $(COBJS))
 
similarity index 97%
rename from cpu/arm1136/omap24xx/interrupts.c
rename to cpu/arm1136/omap24xx/timer.c
index a0c535dae8eedee5108fa770beb2a35691b6ecf6..8dd8d7b008d83f3223b68ca0d4b9e0ebc7a73ef1 100644 (file)
@@ -42,8 +42,7 @@
 static ulong timestamp;
 static ulong lastinc;
 
-/* nothing really to do with interrupts, just starts up a counter. */
-int interrupt_init (void)
+int timer_init (void)
 {
        int32_t val;
 
index fa4ee3f24e2309efd7e29365b032dd2bb4652cd0..4656d9a87763df8665deb2f43fe03c8c6c0f232d 100644 (file)
@@ -28,8 +28,8 @@ include $(TOPDIR)/config.mk
 
 LIB    = $(obj)lib$(SOC).a
 
-COBJS-y        = interrupts.o
 COBJS-$(CONFIG_S3C6400)        += cpu_init.o speed.o
+COBJS-y        += timer.o
 
 OBJS   := $(addprefix $(obj),$(SOBJS) $(COBJS-y))
 
similarity index 99%
rename from cpu/arm1176/s3c64xx/interrupts.c
rename to cpu/arm1176/s3c64xx/timer.c
index 7bb98486c57e00bdd0c88b6d7925c04cf95ffb7c..22a5b77701f886c7803bcf08c9aa5f5e76522b43 100644 (file)
@@ -66,7 +66,7 @@ static unsigned long lastdec;
 /* Monotonic incrementing timer */
 static unsigned long long timestamp;
 
-int interrupt_init(void)
+int timer_init(void)
 {
        s3c64xx_timers *const timers = s3c64xx_get_base_timers();
 
index 39ed345bb76b23e8824212e09962741b928b0794..ff21314d8e2426b08617a89127fd11b8ed4c3751 100644 (file)
@@ -110,9 +110,34 @@ static void timer_isr( void *data) {
 static ulong timestamp;
 static ulong lastdec;
 
+#if defined(CONFIG_USE_IRQ) && defined(CONFIG_S3C4510B)
 int interrupt_init (void)
 {
+       int i;
+
+       /* install default interrupt handlers */
+       for ( i = 0; i < N_IRQS; i++) {
+               IRQ_HANDLER[i].m_data = (void *)i;
+               IRQ_HANDLER[i].m_func = default_isr;
+       }
+
+       /* configure interrupts for IRQ mode */
+       PUT_REG( REG_INTMODE, 0x0);
+       /* clear any pending interrupts */
+       PUT_REG( REG_INTPEND, 0x1FFFFF);
+
+       lastdec = 0;
+
+       /* install interrupt handler for timer */
+       IRQ_HANDLER[INT_TIMER0].m_data = (void *)&timestamp;
+       IRQ_HANDLER[INT_TIMER0].m_func = timer_isr;
+
+       return 0;
+}
+#endif
 
+int timer_init (void)
+{
 #if defined(CONFIG_NETARM)
        /* disable all interrupts */
        IRQEN = 0;
@@ -137,25 +162,6 @@ int interrupt_init (void)
        /* set timer 1 counter */
        lastdec = IO_TC1D = TIMER_LOAD_VAL;
 #elif defined(CONFIG_S3C4510B)
-       int i;
-
-       /* install default interrupt handlers */
-       for ( i = 0; i < N_IRQS; i++) {
-               IRQ_HANDLER[i].m_data = (void *)i;
-               IRQ_HANDLER[i].m_func = default_isr;
-       }
-
-       /* configure interrupts for IRQ mode */
-       PUT_REG( REG_INTMODE, 0x0);
-       /* clear any pending interrupts */
-       PUT_REG( REG_INTPEND, 0x1FFFFF);
-
-       lastdec = 0;
-
-       /* install interrupt handler for timer */
-       IRQ_HANDLER[INT_TIMER0].m_data = (void *)&timestamp;
-       IRQ_HANDLER[INT_TIMER0].m_func = timer_isr;
-
        /* configure free running timer 0 */
        PUT_REG( REG_TMOD, 0x0);
        /* Stop timer 0 */
@@ -187,7 +193,7 @@ int interrupt_init (void)
        PUT32(T0TCR, 1);        /* enable timer0 */
 
 #else
-#error No interrupt_init() defined for this CPU type
+#error No timer_init() defined for this CPU type
 #endif
        timestamp = 0;
 
index 161ca9492fca7574aa0119fbf86d419ae542221f..73aeeac39defc199f2c1ee39571d8a93c89998d0 100644 (file)
@@ -31,10 +31,10 @@ COBJS       += bcm5221.o
 COBJS  += dm9161.o
 COBJS  += ether.o
 COBJS  += i2c.o
-COBJS  += interrupts.o
 COBJS  += lxt972.o
 COBJS  += reset.o
 COBJS  += spi.o
+COBJS  += timer.o
 COBJS  += usb.o
 
 SRCS   := $(SOBJS:.o=.S) $(COBJS:.o=.c)
similarity index 99%
rename from cpu/arm920t/at91rm9200/interrupts.c
rename to cpu/arm920t/at91rm9200/timer.c
index 4c38a9a0c8d537ddc433aaa2b51a9e4c1d0c3dbf..235d1073886f6a07a364c3df58fde50e628690d1 100644 (file)
@@ -45,7 +45,7 @@ AT91PS_TC tmr;
 static ulong timestamp;
 static ulong lastinc;
 
-int interrupt_init (void)
+int timer_init (void)
 {
        tmr = AT91C_BASE_TC0;
 
index d3352deb4b67539c08b2666824885159de2ad9ff..28945e22cb8f67bfd120aebd49db259ddb22b384 100644 (file)
@@ -25,7 +25,9 @@ include $(TOPDIR)/config.mk
 
 LIB    = $(obj)lib$(SOC).a
 
-COBJS  = generic.o interrupts.o speed.o
+COBJS  += generic.o
+COBJS  += speed.o
+COBJS  += timer.o
 
 SRCS   := $(SOBJS:.o=.S) $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(SOBJS) $(COBJS))
similarity index 99%
rename from cpu/arm920t/imx/interrupts.c
rename to cpu/arm920t/imx/timer.c
index 1beaf9dcf563cab0e98968939c77e375d6eb0abe..280c682940524e0c15666bed1490ea64ed1eba49 100644 (file)
@@ -35,7 +35,7 @@
 #include <arm920t.h>
 #include <asm/arch/imx-regs.h>
 
-int interrupt_init (void)
+int timer_init (void)
 {
        int i;
        /* setup GP Timer 1 */
index f6b006300b120efa2128ae35e224a1ba8d3c247a..f53fdc2b2511f695c7aa26017401e83f0f1133fb 100644 (file)
@@ -25,9 +25,10 @@ include $(TOPDIR)/config.mk
 
 LIB    = $(obj)lib$(SOC).a
 
-COBJS  = interrupts.o
 SOBJS  = lowlevel_init.o
 
+COBJS  = timer.o
+
 SRCS   := $(SOBJS:.o=.S) $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(SOBJS) $(COBJS))
 
similarity index 93%
rename from cpu/arm920t/ks8695/interrupts.c
rename to cpu/arm920t/ks8695/timer.c
index 883d689ed06303398711e29533a612c9151e5b94..22987bc48bec43bc08a00235d608be30dfccc723 100644 (file)
 #define        ks8695_read(a)    *((volatile ulong *) (KS8695_IO_BASE + (a)))
 #define        ks8695_write(a,v) *((volatile ulong *) (KS8695_IO_BASE + (a))) = (v)
 
-int timer_inited;
 ulong timer_ticks;
 
-int interrupt_init (void)
+int timer_init (void)
 {
-       /* nothing happens here - we don't setup any IRQs */
-       return (0);
+       reset_timer();
+
+       return 0;
 }
 
 /*
@@ -53,7 +53,6 @@ void reset_timer_masked(void)
        ks8695_write(KS8695_TIMER1_PCOUNT, TIMER_PULSE);
        ks8695_write(KS8695_TIMER_CTRL, 0x2);
        timer_ticks = 0;
-       timer_inited++;
 }
 
 void reset_timer(void)
@@ -87,9 +86,6 @@ void udelay(ulong usec)
        ulong start = get_timer_masked();
        ulong end;
 
-       if (!timer_inited)
-               reset_timer();
-
        /* Only 1ms resolution :-( */
        end = usec / 1000;
        while (get_timer(start) < end)
index 3afe19ce9c76e26c91f29a30cd611019a8329ad3..5d2be2c1b294ddc851115c0a53e217163cca2ed8 100644 (file)
@@ -25,7 +25,10 @@ include $(TOPDIR)/config.mk
 
 LIB    = $(obj)lib$(SOC).a
 
-COBJS  = interrupts.o speed.o usb.o usb_ohci.o
+COBJS  += speed.o
+COBJS  += timer.o
+COBJS  += usb.o
+COBJS  += usb_ohci.o
 
 SRCS   := $(SOBJS:.o=.S) $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(SOBJS) $(COBJS))
similarity index 99%
rename from cpu/arm920t/s3c24x0/interrupts.c
rename to cpu/arm920t/s3c24x0/timer.c
index b8ce6ae94a881f9db34bf17eab85b24ac8c1d3fd..f3c0ed62cc8207ada37e45d0026ed1b56d54f9bc 100644 (file)
@@ -52,7 +52,7 @@ static inline ulong READ_TIMER(void)
 static ulong timestamp;
 static ulong lastdec;
 
-int interrupt_init (void)
+int timer_init (void)
 {
        S3C24X0_TIMERS * const timers = S3C24X0_GetBase_TIMERS();
 
index 0d4912cd72803fb86008e2942d21fd6ae0889a49..8d0e88f902601a8c1f004aa30c994b16ec6a0167 100644 (file)
@@ -26,7 +26,10 @@ include $(TOPDIR)/config.mk
 LIB    = $(obj)lib$(CPU).a
 
 START  = start.o
-COBJS  = interrupts.o cpu.o omap925.o
+
+COBJS  += cpu.o
+COBJS  += omap925.o
+COBJS  += timer.o
 
 SRCS   := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(SOBJS) $(COBJS))
similarity index 99%
rename from cpu/arm925t/interrupts.c
rename to cpu/arm925t/timer.c
index 179992debedbd2b1d00f9de83724fbeadfefb7af..c16ef2577f8abb9b88bd953d416e8cb3903c59e8 100644 (file)
@@ -47,7 +47,7 @@ static uint32_t timestamp;
 static uint32_t lastdec;
 
 /* nothing really to do with interrupts, just starts up a counter. */
-int interrupt_init (void)
+int timer_init (void)
 {
        /* Start the decrementer ticking down from 0xffffffff */
        __raw_writel(TIMER_LOAD_VAL, CONFIG_SYS_TIMERBASE + LOAD_TIM);
index d5ac7d3fd980e66e909bbe55dadaf3c3906c3737..7701b03bbeb736a530a9ad970be5cbe01904f599 100644 (file)
@@ -26,7 +26,7 @@ include $(TOPDIR)/config.mk
 LIB    = $(obj)lib$(CPU).a
 
 START  = start.o
-COBJS  = interrupts.o cpu.o
+COBJS  = cpu.o
 
 SRCS   := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(COBJS) $(SOBJS))
diff --git a/cpu/arm926ejs/interrupts.c b/cpu/arm926ejs/interrupts.c
deleted file mode 100644 (file)
index ce979f3..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * (C) Copyright 2003
- * Texas Instruments <www.ti.com>
- *
- * (C) Copyright 2002
- * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
- * Marius Groeger <mgroeger@sysgo.de>
- *
- * (C) Copyright 2002
- * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
- * Alex Zuepke <azu@sysgo.de>
- *
- * (C) Copyright 2002-2004
- * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
- *
- * (C) Copyright 2004
- * Philippe Robin, ARM Ltd. <philippe.robin@arm.com>
- *
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.         See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
- */
-
-#include <common.h>
-#include <arm926ejs.h>
-
-#ifdef CONFIG_INTEGRATOR
-
-       /* Timer functionality supplied by Integrator board (AP or CP) */
-
-#else
-
-/* nothing really to do with interrupts, just starts up a counter. */
-int interrupt_init (void)
-{
-       extern void timer_init(void);
-
-       timer_init();
-
-       return 0;
-}
-
-#endif /* CONFIG_INTEGRATOR */
index d1e658d57cb8650b09d4cd1181ebb60768395da5..edf5cb29a7270017c92e1bad8062756433c6ae9d 100644 (file)
@@ -32,7 +32,7 @@ COBJS += clock.o
 COBJS  += mem.o
 COBJS  += syslib.o
 COBJS  += sys_info.o
-COBJS  += interrupts.o
+COBJS  += timer.o
 
 SRCS   := $(SOBJS:.o=.S) $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(COBJS) $(SOBJS))
similarity index 99%
rename from cpu/arm_cortexa8/omap3/interrupts.c
rename to cpu/arm_cortexa8/omap3/timer.c
index 3fe13fbaaf847d22c8f0c607381cd644ec5205af..05cfe763aa489547f799bd3cd4545cd75204994a 100644 (file)
@@ -50,7 +50,7 @@ static gptimer_t *timer_base = (gptimer_t *)CONFIG_SYS_TIMERBASE;
 #define TIMER_CLOCK    (V_SCLK / (2 << CONFIG_SYS_PTV))
 #define TIMER_LOAD_VAL 0xffffffff
 
-int interrupt_init(void)
+int timer_init(void)
 {
        /* start the counter ticking up, reload value on overflow */
        writel(TIMER_LOAD_VAL, &timer_base->tldr);
index a673cb1b9fc3a7c6f5bc46f4ce3e4ee503a0603d..1403c4f390f65e61e1f1a2e95eb101d4be454d66 100644 (file)
@@ -26,12 +26,10 @@ include $(TOPDIR)/config.mk
 LIB    = $(obj)lib$(CPU).a
 
 START  = start.o
+
 COBJS-y        += cpu.o
-ifndef CONFIG_USE_IRQ
+COBJS-$(CONFIG_USE_IRQ)        += interrupts.o
 COBJS-y        += timer.o
-else
-COBJS-y        += interrupts.o
-endif
 
 SRCS   := $(START:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
 OBJS   := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
index ee0129ead3f8f1bbaa2952244e98f14df717afce..a05e439fdb5de4b8a4837c6db0a2b2afde9277f3 100644 (file)
 #include <asm/arch/ixp425.h>
 #include <asm/proc-armv/ptrace.h>
 
-/*
- * When interrupts are enabled, use timer 2 for time/delay generation...
- */
-
-#define FREQ           66666666
-#define CLOCK_TICK_RATE        (((FREQ / CONFIG_SYS_HZ & ~IXP425_OST_RELOAD_MASK) + 1) * CONFIG_SYS_HZ)
-#define LATCH          ((CLOCK_TICK_RATE + CONFIG_SYS_HZ/2) / CONFIG_SYS_HZ)   /* For divider */
-
 struct _irq_handler {
        void                *m_data;
        void (*m_func)( void *data);
@@ -48,8 +40,6 @@ struct _irq_handler {
 
 static struct _irq_handler IRQ_HANDLER[N_IRQS];
 
-static volatile ulong timestamp;
-
 static void default_isr(void *data)
 {
        printf("default_isr():  called for IRQ %d, Interrupt Status=%x PR=%x\n",
@@ -61,33 +51,20 @@ static int next_irq(void)
        return (((*IXP425_ICIH & 0x000000fc) >> 2) - 1);
 }
 
-static void timer_isr(void *data)
-{
-       unsigned int *pTime = (unsigned int *)data;
-
-       (*pTime)++;
-
-       /*
-        * Reset IRQ source
-        */
-       *IXP425_OSST = IXP425_OSST_TIMER_2_PEND;
-}
-
-ulong get_timer (ulong base)
+void do_irq (struct pt_regs *pt_regs)
 {
-       return timestamp - base;
-}
+       int irq = next_irq();
 
-void reset_timer (void)
-{
-       timestamp = 0;
+       IRQ_HANDLER[irq].m_func(IRQ_HANDLER[irq].m_data);
 }
 
-void do_irq (struct pt_regs *pt_regs)
+void irq_install_handler (int irq, interrupt_handler_t handle_irq, void *data)
 {
-       int irq = next_irq();
+       if (irq >= N_IRQS || !handle_irq)
+               return;
 
-       IRQ_HANDLER[irq].m_func(IRQ_HANDLER[irq].m_data);
+       IRQ_HANDLER[irq].m_data = data;
+       IRQ_HANDLER[irq].m_func = handle_irq;
 }
 
 int interrupt_init (void)
@@ -95,23 +72,11 @@ int interrupt_init (void)
        int i;
 
        /* install default interrupt handlers */
-       for (i = 0; i < N_IRQS; i++) {
-               IRQ_HANDLER[i].m_data = (void *)i;
-               IRQ_HANDLER[i].m_func = default_isr;
-       }
-
-       /* install interrupt handler for timer */
-       IRQ_HANDLER[IXP425_TIMER_2_IRQ].m_data = (void *)&timestamp;
-       IRQ_HANDLER[IXP425_TIMER_2_IRQ].m_func = timer_isr;
-
-       /* setup the Timer counter value */
-       *IXP425_OSRT2 = (LATCH & ~IXP425_OST_RELOAD_MASK) | IXP425_OST_ENABLE;
+       for (i = 0; i < N_IRQS; i++)
+               irq_install_handler(i, default_isr, (void *)i);
 
        /* configure interrupts for IRQ mode */
        *IXP425_ICLR = 0x00000000;
 
-       /* enable timer irq */
-       *IXP425_ICMR = (1 << IXP425_TIMER_2_IRQ);
-
        return (0);
 }
index deb227a1a63742fe15a56e5d180b4e3693396d60..685614966b72de124151f12364dfc2ffa4c8b64f 100644 (file)
 #include <common.h>
 #include <asm/arch/ixp425.h>
 
+#ifdef CONFIG_TIMER_IRQ
+
+#define FREQ           66666666
+#define CLOCK_TICK_RATE        (((FREQ / CONFIG_SYS_HZ & ~IXP425_OST_RELOAD_MASK) + 1) * CONFIG_SYS_HZ)
+#define LATCH          ((CLOCK_TICK_RATE + CONFIG_SYS_HZ/2) / CONFIG_SYS_HZ)   /* For divider */
+
+/*
+ * When interrupts are enabled, use timer 2 for time/delay generation...
+ */
+
+static volatile ulong timestamp;
+
+static void timer_isr(void *data)
+{
+       unsigned int *pTime = (unsigned int *)data;
+
+       (*pTime)++;
+
+       /*
+        * Reset IRQ source
+        */
+       *IXP425_OSST = IXP425_OSST_TIMER_2_PEND;
+}
+
+ulong get_timer (ulong base)
+{
+       return timestamp - base;
+}
+
+void reset_timer (void)
+{
+       timestamp = 0;
+}
+
+int timer_init (void)
+{
+       /* install interrupt handler for timer */
+       irq_install_handler(IXP425_TIMER_2_IRQ, timer_isr, (void *)&timestamp);
+
+       /* setup the Timer counter value */
+       *IXP425_OSRT2 = (LATCH & ~IXP425_OST_RELOAD_MASK) | IXP425_OST_ENABLE;
+
+       /* enable timer irq */
+       *IXP425_ICMR = (1 << IXP425_TIMER_2_IRQ);
+
+       return 0;
+}
+#else
 ulong get_timer (ulong base)
 {
        return get_timer_masked () - base;
@@ -79,3 +127,9 @@ ulong get_timer_masked (void)
        }
        return (reload_constant - current);
 }
+
+int timer_init(void)
+{
+       return 0;
+}
+#endif
index bac2a640cb04d0fd7a7f98cc0f2fe934b6ca4c8f..b9ae76effaccb25a272e004496c0caa9222cdecc 100644 (file)
@@ -26,7 +26,7 @@ include $(TOPDIR)/config.mk
 LIB    = $(obj)lib$(CPU).a
 
 START  = start.o
-COBJS  = cpu.o speed.o interrupts.o serial.o
+COBJS  = cpu.o speed.o serial.o timer.o
 
 SRCS   := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(SOBJS) $(COBJS))
similarity index 99%
rename from cpu/lh7a40x/interrupts.c
rename to cpu/lh7a40x/timer.c
index d39e70777556f344323f3fd4630ee8338b00cbfc..f0baf1473799107ffd8d0382d8e0dc6c2e605564 100644 (file)
@@ -47,7 +47,7 @@ static inline ulong READ_TIMER(void)
 static ulong timestamp;
 static ulong lastdec;
 
-int interrupt_init (void)
+int timer_init (void)
 {
        lh7a40x_timers_t* timers = LH7A40X_TIMERS_PTR;
        lh7a40x_timer_t* timer = &timers->timer1;
index 42903b2ea4f0972063e75bf3d6d64962148eeb7c..5dc3a52c8d557f634493b86b39770f4dfd065062 100644 (file)
@@ -26,7 +26,13 @@ include $(TOPDIR)/config.mk
 LIB    = $(obj)lib$(CPU).a
 
 START  = start.o
-COBJS  = serial.o interrupts.o cpu.o i2c.o pxafb.o usb.o
+
+COBJS  += cpu.o
+COBJS  += i2c.o
+COBJS  += pxafb.o
+COBJS  += serial.o
+COBJS  += timer.o
+COBJS  += usb.o
 
 SRCS   := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(SOBJS) $(COBJS))
similarity index 96%
rename from cpu/pxa/interrupts.c
rename to cpu/pxa/timer.c
index 2bc5c50a9171f433ddd254bae568dd144475a0ad..e2df3a57fcbabb90b07ed3a0d6aac60ee3c65a3f 100644 (file)
@@ -56,10 +56,11 @@ static inline unsigned long long us_to_tick(unsigned long long us)
        return us;
 }
 
-int interrupt_init (void)
+int timer_init (void)
 {
-       /* nothing happens here - we don't setup any IRQs */
-       return (0);
+       reset_timer();
+
+       return 0;
 }
 
 void reset_timer (void)
index ae909a699f6b483b04479aa552c2622b0812aa2c..6da2016f66081242a47f6ee8872ee650a25beb05 100644 (file)
@@ -26,7 +26,10 @@ include $(TOPDIR)/config.mk
 LIB    = $(obj)lib$(CPU).a
 
 START  = start.o
-COBJS  = cache.o cpu.o interrupts.o
+
+COBJS  += cache.o
+COBJS  += cpu.o
+COBJS  += timer.o
 
 SRCS   := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(SOBJS) $(COBJS))
similarity index 98%
rename from cpu/s3c44b0/interrupts.c
rename to cpu/s3c44b0/timer.c
index eb23e6ab114d0e5f248be22b8fc9c8ae92a0762a..34184abb735b81891264aa57ce9265f6e31aa4ba 100644 (file)
@@ -40,7 +40,7 @@
 static ulong timestamp;
 static ulong lastdec;
 
-int interrupt_init (void)
+int timer_init (void)
 {
        TCFG0 = 0x000000E9;
        TCFG1 = 0x00000004;
index fd696f7efb194948f591671d4c192f6c4140d59a..28b668267c4912f874e941e7a859db8d83bc3cdf 100644 (file)
@@ -26,7 +26,9 @@ include $(TOPDIR)/config.mk
 LIB    = $(obj)lib$(CPU).a
 
 START  = start.o
-COBJS  = interrupts.o cpu.o
+
+COBJS  += cpu.o
+COBJS  += timer.o
 
 SRCS   := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(SOBJS) $(COBJS))
similarity index 95%
rename from cpu/sa1100/interrupts.c
rename to cpu/sa1100/timer.c
index 2eff045709f6229a282b9deb000056037ee4ef5e..3f77e815cb61729e05851b1a449e4867c46f0800 100644 (file)
 #include <common.h>
 #include <SA-1100.h>
 
-int interrupt_init (void)
+int timer_init (void)
 {
-       /* nothing happens here - we don't setup any IRQs */
-       return (0);
+       return 0;
 }
 
 void reset_timer (void)
index e7d58fe8cdae7c9def3297c7650f84279ed68059..238d4085419e91f5840ad8d270401737056d34a9 100644 (file)
@@ -62,4 +62,7 @@ void  reset_timer_masked      (void);
 ulong  get_timer_masked        (void);
 void   udelay_masked           (unsigned long usec);
 
+/* cpu/.../timer.c */
+int    timer_init              (void);
+
 #endif /* _U_BOOT_ARM_H_ */
index 75707e597dba2af3fcd8c67ab03c2e85653ae3ee..0c092347ca794abd9cb6c1a253b4d99190e71b86 100644 (file)
@@ -55,6 +55,7 @@
  */
 #undef CONFIG_USE_IRQ                  /* we don't need IRQ/FIQ stuff  */
 #define CONFIG_USE_IRQ          1      /* we need IRQ stuff for timer  */
+#define CONFIG_TIMER_IRQ
 
 #define CONFIG_BOOTCOUNT_LIMIT         /* support for bootcount limit  */
 #define CONFIG_SYS_BOOTCOUNT_ADDR      0x60003000 /* inside qmrg sram          */
index edaa81b59b0cac7cc73f65547349d633a5ca555b..1255f21e8b08b40d275a67f7cfc8c055ddf5276b 100644 (file)
@@ -51,6 +51,7 @@
  * Misc configuration options
  */
 #define CONFIG_USE_IRQ          1      /* we need IRQ stuff for timer  */
+#define CONFIG_TIMER_IRQ
 
 #define CONFIG_BOOTCOUNT_LIMIT         /* support for bootcount limit  */
 #define CONFIG_SYS_BOOTCOUNT_ADDR      0x60003000 /* inside qmrg sram          */
index e3040acdc62760075eee407d2744fafddf820741..c7768e52893b44523f692d1873a2f2998b0d2232 100644 (file)
@@ -266,7 +266,10 @@ init_fnc_t *init_sequence[] = {
        arch_cpu_init,          /* basic arch cpu dependent setup */
 #endif
        board_init,             /* basic board dependent setup */
+#if defined(CONFIG_USE_IRQ)
        interrupt_init,         /* set up exceptions */
+#endif
+       timer_init,             /* initialize timer */
        env_init,               /* initialize environment */
        init_baudrate,          /* initialze baudrate settings */
        serial_init,            /* serial communications setup */