2018-05-06 17:58:06 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2012-06-03 23:46:04 +02:00
|
|
|
|
2016-05-27 15:31:34 +02:00
|
|
|
#ifndef _U_BOOT_MIPS_H_
|
|
|
|
|
#define _U_BOOT_MIPS_H_
|
2013-02-12 22:22:12 +01:00
|
|
|
|
2016-01-09 18:34:14 +01:00
|
|
|
void exc_handler(void);
|
|
|
|
|
void except_vec3_generic(void);
|
|
|
|
|
void except_vec_ejtag_debug(void);
|
|
|
|
|
|
2018-10-09 08:59:10 +02:00
|
|
|
int arch_misc_init(void);
|
|
|
|
|
|
2020-04-21 09:28:25 +02:00
|
|
|
void trap_restore(void);
|
|
|
|
|
|
2016-05-27 15:31:34 +02:00
|
|
|
#endif /* _U_BOOT_MIPS_H_ */
|