kopia lustrzana https://github.com/stlink-org/stlink
Breakpoint handling for Cortex M7
rodzic
aba9591b9a
commit
768fe88e6c
|
@ -542,8 +542,9 @@ static int delete_data_watchpoint(stlink_t *sl, stm32_addr_t addr)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define CODE_BREAK_NUM 6
|
int code_break_num;
|
||||||
#define CODE_LIT_NUM 2
|
int code_lit_num;
|
||||||
|
#define CODE_BREAK_NUM_MAX 15
|
||||||
#define CODE_BREAK_LOW 0x01
|
#define CODE_BREAK_LOW 0x01
|
||||||
#define CODE_BREAK_HIGH 0x02
|
#define CODE_BREAK_HIGH 0x02
|
||||||
|
|
||||||
|
@ -552,37 +553,41 @@ struct code_hw_breakpoint {
|
||||||
int type;
|
int type;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct code_hw_breakpoint code_breaks[CODE_BREAK_NUM];
|
struct code_hw_breakpoint code_breaks[CODE_BREAK_NUM_MAX];
|
||||||
|
|
||||||
static void init_code_breakpoints(stlink_t *sl) {
|
static void init_code_breakpoints(stlink_t *sl) {
|
||||||
memset(sl->q_buf, 0, 4);
|
memset(sl->q_buf, 0, 4);
|
||||||
stlink_write_debug32(sl, CM3_REG_FP_CTRL, 0x03 /*KEY | ENABLE4*/);
|
stlink_write_debug32(sl, CM3_REG_FP_CTRL, 0x03 /*KEY | ENABLE4*/);
|
||||||
unsigned int val = stlink_read_debug32(sl, CM3_REG_FP_CTRL);
|
unsigned int val = stlink_read_debug32(sl, CM3_REG_FP_CTRL);
|
||||||
if (((val & 3) != 1) ||
|
code_break_num = ((val >> 4) & 0xf);
|
||||||
((((val >> 8) & 0x70) | ((val >> 4) & 0xf)) != CODE_BREAK_NUM) ||
|
code_lit_num = ((val >> 8) & 0xf);
|
||||||
(((val >> 8) & 0xf) != CODE_LIT_NUM)){
|
|
||||||
ELOG("[FP_CTRL] = 0x%08x expecting 0x%08x\n", val,
|
|
||||||
((CODE_BREAK_NUM & 0x70) << 8) | (CODE_LIT_NUM << 8) | ((CODE_BREAK_NUM & 0xf) << 4) | 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
ILOG("Found %i hw breakpoint registers\n", code_break_num);
|
||||||
|
|
||||||
for(int i = 0; i < CODE_BREAK_NUM; i++) {
|
for(int i = 0; i < code_break_num; i++) {
|
||||||
code_breaks[i].type = 0;
|
code_breaks[i].type = 0;
|
||||||
stlink_write_debug32(sl, CM3_REG_FP_COMP0 + i * 4, 0);
|
stlink_write_debug32(sl, CM3_REG_FP_COMP0 + i * 4, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int update_code_breakpoint(stlink_t *sl, stm32_addr_t addr, int set) {
|
static int update_code_breakpoint(stlink_t *sl, stm32_addr_t addr, int set) {
|
||||||
stm32_addr_t fpb_addr = addr & ~0x3;
|
stm32_addr_t fpb_addr;
|
||||||
int type = addr & 0x2 ? CODE_BREAK_HIGH : CODE_BREAK_LOW;
|
uint32_t mask;
|
||||||
|
int type = (addr & 0x2) ? CODE_BREAK_HIGH : CODE_BREAK_LOW;
|
||||||
|
|
||||||
if(addr & 1) {
|
if(addr & 1) {
|
||||||
ELOG("update_code_breakpoint: unaligned address %08x\n", addr);
|
ELOG("update_code_breakpoint: unaligned address %08x\n", addr);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (sl->chip_id==STM32_CHIPID_F7) {
|
||||||
|
fpb_addr = addr;
|
||||||
|
} else {
|
||||||
|
fpb_addr = addr & ~0x3;
|
||||||
|
}
|
||||||
|
|
||||||
int id = -1;
|
int id = -1;
|
||||||
for(int i = 0; i < CODE_BREAK_NUM; i++) {
|
for(int i = 0; i < code_break_num; i++) {
|
||||||
if(fpb_addr == code_breaks[i].addr ||
|
if(fpb_addr == code_breaks[i].addr ||
|
||||||
(set && code_breaks[i].type == 0)) {
|
(set && code_breaks[i].type == 0)) {
|
||||||
id = i;
|
id = i;
|
||||||
|
@ -599,16 +604,23 @@ static int update_code_breakpoint(stlink_t *sl, stm32_addr_t addr, int set) {
|
||||||
|
|
||||||
brk->addr = fpb_addr;
|
brk->addr = fpb_addr;
|
||||||
|
|
||||||
|
if (sl->chip_id==STM32_CHIPID_F7) {
|
||||||
|
if(set) brk->type = type;
|
||||||
|
else brk->type = 0;
|
||||||
|
|
||||||
|
mask = (brk->addr) | 1;
|
||||||
|
} else {
|
||||||
if(set) brk->type |= type;
|
if(set) brk->type |= type;
|
||||||
else brk->type &= ~type;
|
else brk->type &= ~type;
|
||||||
|
|
||||||
|
mask = (brk->addr) | 1 | (brk->type << 30);
|
||||||
|
}
|
||||||
|
|
||||||
if(brk->type == 0) {
|
if(brk->type == 0) {
|
||||||
DLOG("clearing hw break %d\n", id);
|
DLOG("clearing hw break %d\n", id);
|
||||||
|
|
||||||
stlink_write_debug32(sl, 0xe0002008 + id * 4, 0);
|
stlink_write_debug32(sl, 0xe0002008 + id * 4, 0);
|
||||||
} else {
|
} else {
|
||||||
uint32_t mask = (brk->addr) | 1 | (brk->type << 30);
|
|
||||||
|
|
||||||
DLOG("setting hw break %d at %08x (%d)\n",
|
DLOG("setting hw break %d at %08x (%d)\n",
|
||||||
id, brk->addr, brk->type);
|
id, brk->addr, brk->type);
|
||||||
DLOG("reg %08x \n",
|
DLOG("reg %08x \n",
|
||||||
|
@ -701,6 +713,7 @@ static int flash_go(stlink_t *sl) {
|
||||||
|
|
||||||
// Some kinds of clock settings do not allow writing to flash.
|
// Some kinds of clock settings do not allow writing to flash.
|
||||||
stlink_reset(sl);
|
stlink_reset(sl);
|
||||||
|
stlink_force_debug(sl);
|
||||||
|
|
||||||
for(struct flash_block* fb = flash_root; fb; fb = fb->next) {
|
for(struct flash_block* fb = flash_root; fb; fb = fb->next) {
|
||||||
DLOG("flash_do: block %08x -> %04x\n", fb->addr, fb->length);
|
DLOG("flash_do: block %08x -> %04x\n", fb->addr, fb->length);
|
||||||
|
|
Ładowanie…
Reference in New Issue