X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fasm-arm%2Fu-boot-arm.h;h=6d2f8bccb50fd0170c8108ee696b7377c29d0ba5;hb=bc0d3296f1780b50e6b9630aee5eb368f2afb6cb;hp=4ee5a327e5f594da73c28d4ccbea8718513141c0;hpb=4e0018f1cf91b3f38f8478d6a174c198b72fe6df;p=u-boot diff --git a/include/asm-arm/u-boot-arm.h b/include/asm-arm/u-boot-arm.h index 4ee5a327e5..6d2f8bccb5 100644 --- a/include/asm-arm/u-boot-arm.h +++ b/include/asm-arm/u-boot-arm.h @@ -40,6 +40,10 @@ extern ulong FIQ_STACK_START; /* top of FIQ stack */ int cpu_init(void); int cleanup_before_linux(void); +/* cpu/.../arch/cpu.c */ +int arch_cpu_init(void); +int arch_misc_init(void); + /* board/.../... */ int board_init(void); int dram_init (void); @@ -55,8 +59,12 @@ void setup_revision_tag (struct tag **params); int setenv (char *, char *); /* cpu/.../interrupt.c */ +int arch_interrupt_init (void); 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_ */