⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ucbootstrap.h

📁 arm_uclinux_tools用于安装linux的编译器
💻 H
字号:
/* uCbootstrap.h:  Bootloader system call interface * * (c) 2002 Arcturus networks, Inc. * *  ARM7TDMI support by O.Zhadan,  2001 *  ( used undefined instruction trap ) */#ifndef __UCBOOTSTRAP_H__#define __UCBOOTSTRAP_H__#define NR_BSC 22            /* last used bootloader system call */#define __BN_reset        	0  /* reset and start the bootloader */#define __BN_test         	1  /* tests the system call interface */#define __BN_exec         	2  /* executes a bootloader image */#define __BN_exit         	3  /* terminates a bootloader image */#define __BN_program      	4  /* program FLASH from a chain */#define __BN_erase        	5  /* erase sector(s) of FLASH */#define __BN_open         	6#define __BN_write        	7#define __BN_read         	8#define __BN_close        	9#define __BN_mmap         	10 /* map a file descriptor into memory */#define __BN_munmap       	11 /* remove a file to memory mapping */#define __BN_gethwaddr    	12 /* get the hardware address of my interfaces */#define __BN_getserialnum 	13 /* get the serial number of this board */#define __BN_getbenv      	14 /* get a bootloader envvar */#define __BN_setbenv      	15 /* get a bootloader envvar */#define __BN_setpmask     	16 /* set the protection mask */#define __BN_readbenv      	17 /* read environment variables */#define __BN_flash_chattr_range	18#define __BN_flash_erase_range	19#define __BN_flash_write_range	20#define __BN_ramload            21 /* load kernel into RAM and exec *//* Calling conventions for (uC)linux */#define __bsc_return(type, res) \do { \   if ((unsigned int)(res) >= (unsigned int)(-64)) { \      /* let errno be a function, preserve res in %r0 */ \      int __err = -(res); \      errno = __err; \      res = -1; \   } \   return (type)(res); \} while (0)#define _bsc0(type,name) \type name(void) \{ \   register unsigned int __res __asm__ ("%sl") = __BN_##name; \   __asm__ __volatile__ (".word 0xe65a4f10; mov sl, r0" \                         : "=g" (__res) \                         : "0"  (__res) \                         : "%r0"); \   __bsc_return(type,__res); \}#define _bsc1(type,name,atype,a) \type name(atype a) \{ \   register unsigned int __res __asm__ ("%sl") = __BN_##name; \   __asm__ __volatile__ (".word 0xe65a4f10; mov sl, r0" \                         : "=g" (__res) \                         : "0"  (__res) \                         : "%r0"); \   __bsc_return(type,__res); \}#define _bsc2(type,name,atype,a,btype,b) \type name(atype a, btype b) \{ \   register unsigned int __res __asm__ ("%sl") = __BN_##name; \   __asm__ __volatile__ (".word 0xe65a4f10; mov sl, r0" \                         : "=g" (__res) \                         : "0"  (__res) \                         : "%r0"); \   __bsc_return(type,__res); \}#define _bsc3(type,name,atype,a,btype,b,ctype,c) \type name(atype a, btype b, ctype c) \{ \   register unsigned int __res __asm__ ("%sl") = __BN_##name; \   __asm__ __volatile__ (".word 0xe65a4f10; mov sl, r0" \                         : "=g" (__res) \                         : "0"  (__res) \                         : "%r0"); \   __bsc_return(type,__res); \}#define _bsc4(type,name,atype,a,btype,b,ctype,c,dtype,d) \type name(atype a, btype b, ctype c, dtype d) \{ \   register unsigned int __res __asm__ ("%sl") = __BN_##name; \   __asm__ __volatile__ (".word 0xe65a4f10; mov sl, r0" \                         : "=g" (__res) \                         : "0"  (__res) \                         : "%r0"); \   __bsc_return(type,__res); \}#define _bsc5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \type name(atype a, btype b, ctype c, dtype d, etype e) \{ \   register unsigned int __e   __asm__ ("%r4") = e; \   register unsigned int __res __asm__ ("%sl") = __BN_##name; \   __asm__ __volatile__ (".word 0xe65A4F10; mov sl, r0" \                         : "=g" (__res) \                         : "0"  (__res) \                         : "%r0"); \   __bsc_return(type,__res); \}/* Command codes for the flash_command routine */#define FLASH_SELECT    0       /* no command; just perform the mapping */#define FLASH_RESET     1       /* reset to read mode */#define FLASH_READ      1       /* reset to read mode, by any other name */#define FLASH_AUTOSEL   2       /* autoselect (fake Vid on pin 9) */#define FLASH_PROG      3       /* program a word */#define FLASH_CERASE    4       /* chip erase */#define FLASH_SERASE    5       /* sector erase */#define FLASH_ESUSPEND  6       /* suspend sector erase */#define FLASH_ERESUME   7       /* resume sector erase */#define FLASH_UB        8       /* go into unlock bypass mode */#define FLASH_UBPROG    9       /* program a word using unlock bypass */#define FLASH_UBRESET   10      /* reset to read mode from unlock bypass mode */#define FLASH_LASTCMD   10      /* used for parameter checking *//* Return codes from flash_status */#define STATUS_READY    0       /* ready for action */#define STATUS_BUSY     1       /* operation in progress */#define STATUS_ERSUSP   2       /* erase suspended */#define STATUS_TIMEOUT  3       /* operation timed out */#define STATUS_ERROR    4       /* unclassified but unhappy status *//* manufacturer ID */#define AMDPART   	0x01#define TOSPART		0x98#define SSTPART		0xbf#define ATPART		0x1f/* A list of 4 AMD device ID's - add others as needed */#define ID_AM29DL800T   0x224A#define ID_AM29DL800B   0x22CB#define ID_AM29LV800T   0x22DA#define ID_AM29LV800B   0x225B#define ID_AM29LV160B   0x2249#define ID_AM29LV160T   0x22C4#define ID_TC58FVT160	0x00C2#define ID_TC58FVB160	0x0043#define ID_TC58FVB160X2	0x00430043#define ID_AM29LV400B   0x22BA#define ID_AT49BV1614   0x00C0#define ID_SST39VF160   0x2782/* definition for arm7tdni */#define ID_AT27LV1024	0x0000#define ID_AT29LV1024	0x0001#define SECTOR_DIRTY   0x01#define SECTOR_ERASED  0x02#define SECTOR_PROTECT 0x04#define PGM_ERASE_FIRST 0x0001#define PGM_RESET_AFTER 0x0002#define PGM_EXEC_AFTER  0x0004#define PGM_HALT_AFTER  0x0008#define PGM_DEBUG       0x0010/* an mnode points at 4k pages of data through an offset table. */typedef struct _memnode {  int len;  int *offset;} mnode_t;#endif /* __UCBOOTSTRAP_H__ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -