1 /* SPDX-License-Identifier: GPL-2.0+ */
4 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
5 * Marius Groeger <mgroeger@sysgo.de>
8 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
9 * Alex Zuepke <azu@sysgo.de>
12 #ifndef _U_BOOT_ARM_H_
13 #define _U_BOOT_ARM_H_ 1
17 /* for the following variables, see start.S */
18 extern ulong IRQ_STACK_START; /* top of IRQ stack */
19 extern ulong FIQ_STACK_START; /* top of FIQ stack */
20 extern ulong _datarel_start_ofs;
21 extern ulong _datarelrolocal_start_ofs;
22 extern ulong _datarellocal_start_ofs;
23 extern ulong _datarelro_start_ofs;
24 extern ulong IRQ_STACK_START_IN; /* 8 bytes in IRQ stack */
29 int cleanup_before_linux(void);
31 /* Set up ARMv7 MMU, caches and TLBs */
32 void cpu_init_cp15(void);
34 /* cpu/.../arch/cpu.c */
35 int arch_misc_init(void);
40 /* calls to c from vectors.S */
44 void do_undefined_instruction(struct pt_regs *pt_regs);
45 void do_software_interrupt(struct pt_regs *pt_regs);
46 void do_prefetch_abort(struct pt_regs *pt_regs);
47 void do_data_abort(struct pt_regs *pt_regs);
48 void do_not_used(struct pt_regs *pt_regs);
50 void do_fiq(struct pt_regs *pt_regs, unsigned int esr);
51 void do_irq(struct pt_regs *pt_regs, unsigned int esr);
53 void do_fiq(struct pt_regs *pt_regs);
54 void do_irq(struct pt_regs *pt_regswq);
57 void reset_misc(void);
59 #endif /* __ASSEMBLY__ */
61 #endif /* _U_BOOT_ARM_H_ */