Skip to content

Commit

Permalink
update config files
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Sa <[email protected]>
  • Loading branch information
ninolomata committed Nov 9, 2023
1 parent 4ff4c72 commit a7ba9b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions bao/configs/cva6-baremetal/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ struct config config = {
.image = {
.base_addr = 0x80200000,
.load_addr = VM_IMAGE_OFFSET(baremetal_image),
.size = VM_IMAGE_SIZE(baremetal_image)
.size = VM_IMAGE_SIZE(baremetal_image),
.inplace = true
},

.entry = 0x80200000,
Expand Down Expand Up @@ -68,7 +69,7 @@ struct config config = {
},

.arch = {
.plic_base = 0xc000000,
.irqc.plic.base = 0xc000000,
}
},
},
Expand Down
3 changes: 2 additions & 1 deletion bao/configs/cva6-linux/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ struct config config = {
.base_addr =0x80200000,
.load_addr = VM_IMAGE_OFFSET(linux_image),
.size = VM_IMAGE_SIZE(linux_image),
.inplace = true
},

.entry = 0x80200000,
Expand Down Expand Up @@ -69,7 +70,7 @@ struct config config = {
},

.arch = {
.plic_base = 0xc000000,
.irqc.plic.base = 0xc000000,
}
},
}
Expand Down

0 comments on commit a7ba9b2

Please sign in to comment.