代码拉取完成,页面将自动刷新
同步操作将从 健哥/xuxiake 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#ifndef __XUXIAKE_H
#define __XUXIAKE_H
#ifndef __ASSEMBLY__
#include <asm-generic/errno.h>
#include <lib.h>
#ifdef DEBUG
#define xxk_debug(str) xxk_print(str)
#define xxk_debug_hex(hex) xxk_print_hex(hex)
#else
#define xxk_debug(str) while(0);
#define xxk_debug_hex(hex) while(0);
#endif /* ifdef DEBUG */
#define xxk_info(str) xxk_print(str)
#define xxk_info_hex(hex) xxk_print_hex(hex)
#define xxk_error(str) xxk_print(str)
#define xxk_error_hex(hex) xxk_print_hex(hex)
//TODO: It is more clearer that if define _vectors as array
extern void _vectors(void);
/**
* low level trap handler
*/
extern void _trap_handler(void);
/**
* setup the _vectors/_trap_handler to exception vector
*/
void setup_exception_vector(void);
void copy_user_program(void);
void jump_to_user_mode(void);
/**
* mmu init
*
* Including static memory and device register map and turn on MMU
*/
void mmu_init(void);
struct trap_regs;
/**
* Data abort handler. came from low exception level or curent exception level
*
* Return 1 means exeption haneld; 0 means unhandled
*/
int da_handler(unsigned long esr, struct trap_regs *t);
/**
* Instruction abort handler. came from low exception level or curent exception
* level
*
* Return 1 means exeption haneld; 0 means unhandled
*/
int ia_handler(unsigned long esr, struct trap_regs *t);
/**
* The overall entry of XU xiake
*/
void cpu_entry(void);
#endif /* #ifndef __ASSEMBLY__ */
#endif /* #ifndef __XUXIAKE_H */
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。