Changeset a35b458 in mainline for kernel/arch/riscv64/src/riscv64.c
- Timestamp:
- 2018-03-02T20:10:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1380b7
- Parents:
- 3061bc1
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:38:31)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:10:49)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/riscv64/src/riscv64.c
r3061bc1 ra35b458 69 69 htif_frame = bootinfo->htif_frame; 70 70 pt_frame = bootinfo->pt_frame; 71 71 72 72 htif_init(bootinfo->ucbinfo.tohost, bootinfo->ucbinfo.fromhost); 73 73 74 74 /* Copy tasks map. */ 75 75 init.cnt = min3(bootinfo->taskmap.cnt, TASKMAP_MAX_RECORDS, 76 76 CONFIG_INIT_TASKS); 77 77 78 78 for (size_t i = 0; i < init.cnt; i++) { 79 79 init.tasks[i].paddr = KA2PA(bootinfo->taskmap.tasks[i].addr); … … 82 82 bootinfo->taskmap.tasks[i].name); 83 83 } 84 84 85 85 /* Copy physical memory map. */ 86 86 memmap.total = bootinfo->memmap.total;
Note:
See TracChangeset
for help on using the changeset viewer.