Don't read dmcontrol to set hartsel (#723)
* Don't read dmcontrol to set hartsel We already know what dmcontrol should be. This addresses a long-standing TODO. In a toy test, this reduced the number of scans by 10+%. (Most of those are probably in poll(), so don't actually affect perceived performance.) Change-Id: I18e5ca391f0f5fb35f30d44dfef834e5a66aee20 Signed-off-by: Tim Newsome <tim@sifive.com> * Make code easier to read Co-authored-by: Jan Matyas <50193733+JanMatCodasip@users.noreply.github.com> Signed-off-by: Tim Newsome <tim@sifive.com> Signed-off-by: Tim Newsome <tim@sifive.com> Co-authored-by: Jan Matyas <50193733+JanMatCodasip@users.noreply.github.com>
This commit is contained in:
parent
04020c19d0
commit
911d68ef25
|
@ -4110,10 +4110,7 @@ static int riscv013_select_current_hart(struct target *target)
|
|||
if (r->current_hartid == dm->current_hartid)
|
||||
return ERROR_OK;
|
||||
|
||||
uint32_t dmcontrol;
|
||||
/* TODO: can't we just "dmcontrol = DMI_DMACTIVE"? */
|
||||
if (dmi_read(target, &dmcontrol, DM_DMCONTROL) != ERROR_OK)
|
||||
return ERROR_FAIL;
|
||||
uint32_t dmcontrol = DM_DMCONTROL_DMACTIVE;
|
||||
dmcontrol = set_hartsel(dmcontrol, r->current_hartid);
|
||||
int result = dmi_write(target, DM_DMCONTROL, dmcontrol);
|
||||
dm->current_hartid = r->current_hartid;
|
||||
|
|
Loading…
Reference in New Issue