-
Notifications
You must be signed in to change notification settings - Fork 337
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
target/riscv: set VLENB/MTOPI/MTOPEI existence on 0.11 targets #1207
Open
en-sc
wants to merge
1
commit into
riscv-collab:riscv
Choose a base branch
from
en-sc:en-sc/fix-011-init-regs
base: riscv
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -36,23 +36,45 @@ static const struct reg_arch_type *riscv011_gdb_regno_reg_type(uint32_t regno) | |||||||||||||||||||||||||||||||||||||||||||||||
return &riscv011_reg_type; | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
static int riscv011_init_reg(struct target *target, uint32_t regno) | ||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||
return riscv_reg_impl_init_cache_entry(target, regno, | ||||||||||||||||||||||||||||||||||||||||||||||||
riscv_reg_impl_gdb_regno_exist(target, regno), | ||||||||||||||||||||||||||||||||||||||||||||||||
riscv011_gdb_regno_reg_type(regno)); | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
int riscv011_reg_init_all(struct target *target) | ||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||
if (riscv_reg_impl_init_cache(target) != ERROR_OK) | ||||||||||||||||||||||||||||||||||||||||||||||||
return ERROR_FAIL; | ||||||||||||||||||||||||||||||||||||||||||||||||
int res = riscv_reg_impl_init_cache(target); | ||||||||||||||||||||||||||||||||||||||||||||||||
if (res != ERROR_OK) | ||||||||||||||||||||||||||||||||||||||||||||||||
return res; | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
init_shared_reg_info(target); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
for (uint32_t regno = 0; regno < target->reg_cache->num_regs; ++regno) | ||||||||||||||||||||||||||||||||||||||||||||||||
if (riscv011_init_reg(target, regno) != ERROR_OK) | ||||||||||||||||||||||||||||||||||||||||||||||||
return ERROR_FAIL; | ||||||||||||||||||||||||||||||||||||||||||||||||
RISCV_INFO(r); | ||||||||||||||||||||||||||||||||||||||||||||||||
assert(!r->vlenb | ||||||||||||||||||||||||||||||||||||||||||||||||
&& "VLENB discovery is not supported on RISC-V 0.11 targets"); | ||||||||||||||||||||||||||||||||||||||||||||||||
assert(!r->mtopi_readable | ||||||||||||||||||||||||||||||||||||||||||||||||
&& "MTOPI discovery is not supported on RISC-V 0.11 targets"); | ||||||||||||||||||||||||||||||||||||||||||||||||
assert(!r->mtopei_readable | ||||||||||||||||||||||||||||||||||||||||||||||||
&& "MTOPEI discovery is not supported on RISC-V 0.11 targets"); | ||||||||||||||||||||||||||||||||||||||||||||||||
uint32_t non_discoverable_regs[] = { | ||||||||||||||||||||||||||||||||||||||||||||||||
GDB_REGNO_VLENB, | ||||||||||||||||||||||||||||||||||||||||||||||||
GDB_REGNO_MTOPI, | ||||||||||||||||||||||||||||||||||||||||||||||||
GDB_REGNO_MTOPEI | ||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+49
to
+59
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||
for (unsigned int i = 0; i < ARRAY_SIZE(non_discoverable_regs); ++i) { | ||||||||||||||||||||||||||||||||||||||||||||||||
const uint32_t regno = non_discoverable_regs[i]; | ||||||||||||||||||||||||||||||||||||||||||||||||
res = riscv_reg_impl_init_cache_entry(target, regno, | ||||||||||||||||||||||||||||||||||||||||||||||||
/*exist*/ false, riscv011_gdb_regno_reg_type(regno)); | ||||||||||||||||||||||||||||||||||||||||||||||||
if (res != ERROR_OK) | ||||||||||||||||||||||||||||||||||||||||||||||||
return res; | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
for (uint32_t regno = 0; regno < target->reg_cache->num_regs; ++regno) { | ||||||||||||||||||||||||||||||||||||||||||||||||
const struct reg * const reg = riscv_reg_impl_cache_entry(target, regno); | ||||||||||||||||||||||||||||||||||||||||||||||||
if (riscv_reg_impl_is_initialized(reg)) | ||||||||||||||||||||||||||||||||||||||||||||||||
continue; | ||||||||||||||||||||||||||||||||||||||||||||||||
res = riscv_reg_impl_init_cache_entry(target, regno, | ||||||||||||||||||||||||||||||||||||||||||||||||
riscv_reg_impl_gdb_regno_exist(target, regno), | ||||||||||||||||||||||||||||||||||||||||||||||||
riscv011_gdb_regno_reg_type(regno)); | ||||||||||||||||||||||||||||||||||||||||||||||||
if (res != ERROR_OK) | ||||||||||||||||||||||||||||||||||||||||||||||||
return res; | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
if (riscv_reg_impl_expose_csrs(target) != ERROR_OK) | ||||||||||||||||||||||||||||||||||||||||||||||||
return ERROR_FAIL; | ||||||||||||||||||||||||||||||||||||||||||||||||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.