Remove -sg's private version decoding

Remove duplication of stlink version decoding, and put the decoded version information
into the stlink object itself.
pull/29/head
Karl Palsson 2011-11-03 00:36:31 +00:00
rodzic 66c50cec89
commit afb487cfb6
4 zmienionych plików z 12 dodań i 50 usunięć

Wyświetl plik

@ -356,19 +356,18 @@ void _parse_version(stlink_t *sl, stlink_version_t *slv) {
void stlink_version(stlink_t *sl) {
D(sl, "*** looking up stlink version\n");
stlink_version_t slv;
sl->backend->version(sl);
_parse_version(sl, &slv);
_parse_version(sl, &sl->version);
DD(sl, "st vid = 0x%04x (expect 0x%04x)\n", slv.st_vid, USB_ST_VID);
DD(sl, "stlink pid = 0x%04x\n", slv.stlink_pid);
DD(sl, "stlink version = 0x%x\n", slv.stlink_v);
DD(sl, "jtag version = 0x%x\n", slv.jtag_v);
DD(sl, "swim version = 0x%x\n", slv.swim_v);
if (slv.jtag_v == 0) {
DD(sl, "st vid = 0x%04x (expect 0x%04x)\n", sl->version.st_vid, USB_ST_VID);
DD(sl, "stlink pid = 0x%04x\n", sl->version.stlink_pid);
DD(sl, "stlink version = 0x%x\n", sl->version.stlink_v);
DD(sl, "jtag version = 0x%x\n", sl->version.jtag_v);
DD(sl, "swim version = 0x%x\n", sl->version.swim_v);
if (sl->version.jtag_v == 0) {
DD(sl, " notice: the firmware doesn't support a jtag/swd interface\n");
}
if (slv.swim_v == 0) {
if (sl->version.swim_v == 0) {
DD(sl, " notice: the firmware doesn't support a swim interface\n");
}
}

Wyświetl plik

@ -179,6 +179,7 @@ extern "C" {
stm32_addr_t sram_base;
size_t sram_size;
struct stlink_version_ version;
};
// some quick and dirty logging...

Wyświetl plik

@ -268,35 +268,6 @@ void stlink_stat(stlink_t *stl, char *txt) {
}
static void parse_version(stlink_t *stl) {
struct stlink_libsg *sl = stl->backend_data;
sl->st_vid = 0;
sl->stlink_pid = 0;
if (stl->q_len <= 0) {
fprintf(stderr, "Error: could not parse the stlink version");
return;
}
uint32_t b0 = stl->q_buf[0]; //lsb
uint32_t b1 = stl->q_buf[1];
uint32_t b2 = stl->q_buf[2];
uint32_t b3 = stl->q_buf[3];
uint32_t b4 = stl->q_buf[4];
uint32_t b5 = stl->q_buf[5]; //msb
// b0 b1 || b2 b3 | b4 b5
// 4b | 6b | 6b || 2B | 2B
// stlink_v | jtag_v | swim_v || st_vid | stlink_pid
sl->stlink_v = (b0 & 0xf0) >> 4;
sl->jtag_v = ((b0 & 0x0f) << 2) | ((b1 & 0xc0) >> 6);
sl->swim_v = b1 & 0x3f;
sl->st_vid = (b3 << 8) | b2;
sl->stlink_pid = (b5 << 8) | b4;
}
void _stlink_sg_version(stlink_t *stl) {
struct stlink_libsg *sl = stl->backend_data;
D(stl, "\n*** stlink_version ***\n");
@ -305,7 +276,6 @@ void _stlink_sg_version(stlink_t *stl) {
stl->q_len = 6;
sl->q_addr = 0;
stlink_q(stl);
parse_version(stl);
}
// Get stlink mode:
@ -781,7 +751,6 @@ stlink_t* stlink_open(const char *dev_name, const int verbose) {
slsg->sg_fd = sg_fd;
sl->core_stat = STLINK_CORE_STAT_UNKNOWN;
slsg->core_id = 0;
slsg->q_addr = 0;
clear_buf(sl);
@ -814,13 +783,13 @@ stlink_t* stlink_quirk_open(const char *dev_name, const int verbose) {
stlink_version(sl);
struct stlink_libsg *sg = sl->backend_data;
if ((sg->st_vid != USB_ST_VID) || (sg->stlink_pid != USB_STLINK_PID)) {
if ((sl->version.st_vid != USB_ST_VID) || (sl->version.stlink_pid != USB_STLINK_PID)) {
fprintf(stderr, "Error: the device %s is not a stlink\n",
dev_name);
fprintf(stderr, " VID: got %04x expect %04x \n",
sg->st_vid, USB_ST_VID);
sl->version.st_vid, USB_ST_VID);
fprintf(stderr, " PID: got %04x expect %04x \n",
sg->stlink_pid, USB_STLINK_PID);
sl->version.stlink_pid, USB_STLINK_PID);
return NULL;
}

Wyświetl plik

@ -54,13 +54,6 @@ extern "C" {
// Sense (error information) data
unsigned char sense_buf[SENSE_BUF_LEN];
uint32_t st_vid;
uint32_t stlink_pid;
uint32_t stlink_v;
uint32_t jtag_v;
uint32_t swim_v;
uint32_t core_id;
reg reg;
};
#else