summaryrefslogtreecommitdiff
path: root/include/asm-i386/u-boot-i386.h
diff options
context:
space:
mode:
authorDaniel Schaeffer <daniel.schaeffer@timesys.com>2009-10-08 13:24:39 -0400
committerDaniel Schaeffer <daniel.schaeffer@timesys.com>2009-10-08 13:24:39 -0400
commitf117c1244207ee257342803fb98b52d9b891a285 (patch)
tree2b9b800c8c311bad905c849985e603b9499f5ea3 /include/asm-i386/u-boot-i386.h
parente60beb13cf0135dc71c541021487b5ccc4d269cb (diff)
This patch originally from LogicPD OMAP35x Release 1.6.1 Original Patch Name: u-boot-2009.03-beagleboard.patch
Diffstat (limited to 'include/asm-i386/u-boot-i386.h')
-rw-r--r--include/asm-i386/u-boot-i386.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/asm-i386/u-boot-i386.h b/include/asm-i386/u-boot-i386.h
index 12d10a78a0..3921e01e69 100644
--- a/include/asm-i386/u-boot-i386.h
+++ b/include/asm-i386/u-boot-i386.h
@@ -43,8 +43,21 @@ extern ulong i386boot_bios_size; /* size of BIOS emulation code */
/* cpu/.../cpu.c */
int cpu_init(void);
+
+/* cpu/.../timer.c */
+void timer_isr(void *);
+typedef void (timer_fnc_t) (void);
+int register_timer_isr (timer_fnc_t *isr_func);
+
+/* Architecture specific - can be in cpu/i386/, lib_i386/, or $(BOARD)/ */
int timer_init(void);
+/* cpu/.../interrupts.c */
+int cpu_init_interrupts(void);
+
+/* cpu/.../exceptions.c */
+int cpu_init_exceptions(void);
+
/* board/.../... */
int board_init(void);
int dram_init(void);