Changeset 95c675b in mainline for boot/arch/riscv64/include/types.h
- Timestamp:
- 2017-10-17T13:11:35Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60af4cdb
- Parents:
- dbf32b1 (diff), a416d070 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/riscv64/include/types.h
rdbf32b1 r95c675b 30 30 #define BOOT_riscv64_TYPES_H_ 31 31 32 #include <arch/common.h> 33 32 34 #define MEMMAP_MAX_RECORDS 32 33 35 #define TASKMAP_MAX_RECORDS 32 … … 38 40 39 41 typedef int64_t ptrdiff_t; 42 43 typedef struct { 44 volatile uint64_t *tohost; 45 volatile uint64_t *fromhost; 46 } ucbinfo_t; 40 47 41 48 typedef struct { … … 65 72 66 73 typedef struct { 74 ucbinfo_t ucbinfo; 75 uintptr_t physmem_start; 76 uintptr_t htif_frame; 77 uintptr_t pt_frame; 67 78 memmap_t memmap; 68 79 taskmap_t taskmap;
Note:
See TracChangeset
for help on using the changeset viewer.