2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2002-11-03 00:24:07 +00:00
|
|
|
/*
|
|
|
|
* (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>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _U_BOOT_ARM_H_
|
|
|
|
#define _U_BOOT_ARM_H_ 1
|
|
|
|
|
2017-05-17 14:22:50 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
/* for the following variables, see start.S */
|
|
|
|
extern ulong IRQ_STACK_START; /* top of IRQ stack */
|
|
|
|
extern ulong FIQ_STACK_START; /* top of FIQ stack */
|
2010-10-11 11:13:28 +00:00
|
|
|
extern ulong _datarel_start_ofs;
|
|
|
|
extern ulong _datarelrolocal_start_ofs;
|
|
|
|
extern ulong _datarellocal_start_ofs;
|
|
|
|
extern ulong _datarelro_start_ofs;
|
2010-09-17 11:10:39 +00:00
|
|
|
extern ulong IRQ_STACK_START_IN; /* 8 bytes in IRQ stack */
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2019-12-28 17:44:55 +00:00
|
|
|
void s_init(void);
|
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
/* cpu/.../cpu.c */
|
|
|
|
int cleanup_before_linux(void);
|
|
|
|
|
2011-11-05 03:56:51 +00:00
|
|
|
/* Set up ARMv7 MMU, caches and TLBs */
|
|
|
|
void cpu_init_cp15(void);
|
|
|
|
|
2009-04-16 19:30:44 +00:00
|
|
|
/* cpu/.../arch/cpu.c */
|
2009-05-31 12:53:20 +00:00
|
|
|
int arch_misc_init(void);
|
2009-04-16 19:30:44 +00:00
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
/* board/.../... */
|
|
|
|
int board_init(void);
|
|
|
|
|
2014-10-08 20:57:59 +00:00
|
|
|
/* calls to c from vectors.S */
|
2017-05-17 14:22:59 +00:00
|
|
|
struct pt_regs;
|
|
|
|
|
2014-10-08 20:57:59 +00:00
|
|
|
void bad_mode(void);
|
|
|
|
void do_undefined_instruction(struct pt_regs *pt_regs);
|
|
|
|
void do_software_interrupt(struct pt_regs *pt_regs);
|
|
|
|
void do_prefetch_abort(struct pt_regs *pt_regs);
|
|
|
|
void do_data_abort(struct pt_regs *pt_regs);
|
|
|
|
void do_not_used(struct pt_regs *pt_regs);
|
|
|
|
#ifdef CONFIG_ARM64
|
|
|
|
void do_fiq(struct pt_regs *pt_regs, unsigned int esr);
|
|
|
|
void do_irq(struct pt_regs *pt_regs, unsigned int esr);
|
|
|
|
#else
|
|
|
|
void do_fiq(struct pt_regs *pt_regs);
|
|
|
|
void do_irq(struct pt_regs *pt_regswq);
|
|
|
|
#endif
|
|
|
|
|
2019-12-28 17:45:00 +00:00
|
|
|
void reset_misc(void);
|
|
|
|
|
2017-05-17 14:22:50 +00:00
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
#endif /* _U_BOOT_ARM_H_ */
|