123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 |
- #ifndef __BMI_MSG_H__
- #define __BMI_MSG_H__
- #ifndef ATH_TARGET
- #include "athstartpack.h"
- #endif
- #define BMI_DATASZ_MAX 256
- #define BMI_NO_COMMAND 0
- #define BMI_DONE 1
-
- #define BMI_READ_MEMORY 2
-
- #define BMI_WRITE_MEMORY 3
-
- #define BMI_SEGMENTED_WRITE_ADDR 0x1234
- struct bmi_segmented_file_header {
- A_UINT32 magic_num;
- A_UINT32 file_flags;
- };
- #define BMI_SGMTFILE_MAGIC_NUM 0x544d4753
- #define BMI_SGMTFILE_FLAG_COMPRESS 1
- struct bmi_segmented_metadata {
- A_UINT32 addr;
- A_UINT32 length;
- };
- #define BMI_SGMTFILE_DONE 0xffffffff
- #define BMI_SGMTFILE_BDDATA 0xfffffffe
- #define BMI_SGMTFILE_BEGINADDR 0xfffffffd
- #define BMI_SGMTFILE_EXEC 0xfffffffc
- #define BMI_EXECUTE 4
-
- #define BMI_SET_APP_START 5
-
- #define BMI_READ_SOC_REGISTER 6
- #define BMI_READ_SOC_WORD 6
-
- #define BMI_WRITE_SOC_REGISTER 7
- #define BMI_WRITE_SOC_WORD 7
-
- #define BMI_GET_TARGET_ID 8
- #define BMI_GET_TARGET_INFO 8
-
- PREPACK struct bmi_target_info {
- A_UINT32 target_info_byte_count;
- A_UINT32 target_ver;
- A_UINT32 target_type;
- } POSTPACK;
- #define TARGET_VERSION_SENTINAL 0xffffffff
- #define TARGET_TYPE_UNKNOWN 0
- #define TARGET_TYPE_AR6001 1
- #define TARGET_TYPE_AR6002 2
- #define TARGET_TYPE_AR6003 3
- #define TARGET_TYPE_AR6004 5
- #define TARGET_TYPE_AR6006 6
- #define TARGET_TYPE_AR9888 7
- #define TARGET_TYPE_AR6320 8
- #define TARGET_TYPE_AR900B 9
- #define TARGET_TYPE_AR9888V2 10
- #define TARGET_TYPE_AR6320V1 11
- #define TARGET_TYPE_AR6320V2 12
- #define TARGET_TYPE_AR6320V3 13
- #define TARGET_TYPE_QCA9377V1 14
- #define TARGET_TYPE_QCA9984 15
- #define TARGET_TYPE_IPQ4019 16
- #define TARGET_TYPE_QCA9888 17
- #define BMI_ROMPATCH_INSTALL 9
-
- #define BMI_ROMPATCH_UNINSTALL 10
-
- #define BMI_ROMPATCH_ACTIVATE 11
-
- #define BMI_ROMPATCH_DEACTIVATE 12
-
- #define BMI_LZ_STREAM_START 13
-
- #define BMI_LZ_DATA 14
-
- #define BMI_NVRAM_PROCESS 15
- #define BMI_NVRAM_SEG_NAME_SZ 16
-
- #define BMI_SIGN_STREAM_START 17
-
- #ifndef ATH_TARGET
- #include "athendpack.h"
- #endif
- #define BMI_CE_NUM_TO_TARG 0
- #define BMI_CE_NUM_TO_HOST 1
- #endif
|