src/target/riscv: optimize debug map reg display message
Change-Id: Ib0b1255c05fff1a9bfa4b167eb8f15c2116a463e Signed-off-by: wangyanwen <wangyanwen@nucleisys.com>
This commit is contained in:
parent
f1837d84c4
commit
c710f09fb5
|
@ -1906,12 +1906,10 @@ static int examine_dm(struct target *target)
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
value = nuclei_get_dmcustom(target, 0, i, 0);
|
// NOTE: Nuclei added
|
||||||
LOG_INFO("coreid=%d, 00 : 0x%lx", i, value);
|
LOG_INFO("coreid=%d, nuclei debug map reg 00: 0x%lx, 16: 0x%lx, 32: 0x%lx", \
|
||||||
value = nuclei_get_dmcustom(target, 0, i, 16);
|
i, nuclei_get_dmcustom(target, 0, i, 0), nuclei_get_dmcustom(target, 0, i, 16), \
|
||||||
LOG_INFO("coreid=%d, 16 : 0x%lx", i, value);
|
nuclei_get_dmcustom(target, 0, i, 32));
|
||||||
value = nuclei_get_dmcustom(target, 0, i, 32);
|
|
||||||
LOG_INFO("coreid=%d, 32 : 0x%lx", i, value);
|
|
||||||
}
|
}
|
||||||
LOG_TARGET_DEBUG(target, "Detected %d harts.", dm->hart_count);
|
LOG_TARGET_DEBUG(target, "Detected %d harts.", dm->hart_count);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue