Merge pull request #896 from RadinnAB/for-upstream
Add nRF51 erase UICR command and fix some warnings
This commit is contained in:
commit
a0dbb2a787
|
@ -436,27 +436,27 @@ handle_v_packet(char *packet, int plen)
|
||||||
} else if (!strncmp(packet, "vRun", 4)) {
|
} else if (!strncmp(packet, "vRun", 4)) {
|
||||||
/* Parse command line for get_cmdline semihosting call */
|
/* Parse command line for get_cmdline semihosting call */
|
||||||
char cmdline[83];
|
char cmdline[83];
|
||||||
char *pbuf = cmdline;
|
char *pcmdline = cmdline;
|
||||||
char *tok = packet + 4;
|
char *tok = packet + 4;
|
||||||
if (*tok == ';') tok++;
|
if (*tok == ';') tok++;
|
||||||
*cmdline='\0';
|
*cmdline='\0';
|
||||||
while(*tok != '\0') {
|
while(*tok != '\0') {
|
||||||
if(strlen(cmdline)+3 >= sizeof(cmdline)) break;
|
if(strlen(cmdline)+3 >= sizeof(cmdline)) break;
|
||||||
if (*tok == ';') {
|
if (*tok == ';') {
|
||||||
*pbuf++=' ';
|
*pcmdline++=' ';
|
||||||
*pbuf='\0';
|
*pcmdline='\0';
|
||||||
tok++;
|
tok++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (isxdigit(*tok) && isxdigit(*(tok+1))) {
|
if (isxdigit(*tok) && isxdigit(*(tok+1))) {
|
||||||
unhexify(pbuf, tok, 2);
|
unhexify(pcmdline, tok, 2);
|
||||||
if ((*pbuf == ' ') || (*pbuf == '\\')) {
|
if ((*pcmdline == ' ') || (*pcmdline == '\\')) {
|
||||||
*(pbuf+1)=*pbuf;
|
*(pcmdline+1)=*pcmdline;
|
||||||
*pbuf++='\\';
|
*pcmdline++='\\';
|
||||||
}
|
}
|
||||||
pbuf++;
|
pcmdline++;
|
||||||
tok+=2;
|
tok+=2;
|
||||||
*pbuf='\0';
|
*pcmdline='\0';
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -21,7 +21,9 @@
|
||||||
#ifndef __GENERAL_H
|
#ifndef __GENERAL_H
|
||||||
#define __GENERAL_H
|
#define __GENERAL_H
|
||||||
|
|
||||||
#define _GNU_SOURCE
|
#if !defined(_GNU_SOURCE)
|
||||||
|
# define _GNU_SOURCE
|
||||||
|
#endif
|
||||||
#if !defined(__USE_MINGW_ANSI_STDIO)
|
#if !defined(__USE_MINGW_ANSI_STDIO)
|
||||||
# define __USE_MINGW_ANSI_STDIO 1
|
# define __USE_MINGW_ANSI_STDIO 1
|
||||||
#endif
|
#endif
|
||||||
|
@ -57,18 +59,21 @@ enum BMP_DEBUG {
|
||||||
* BMP PC-Hosted is the preferred way. Printing DEBUG_WARN
|
* BMP PC-Hosted is the preferred way. Printing DEBUG_WARN
|
||||||
* and DEBUG_INFO is kept for comptibiluty.
|
* and DEBUG_INFO is kept for comptibiluty.
|
||||||
*/
|
*/
|
||||||
# if defined(ENABLE_DEBUG)
|
# if !defined(PLATFORM_PRINTF)
|
||||||
# define DEBUG_WARN printf
|
# define PLATFORM_PRINTF printf
|
||||||
# define DEBUG_INFO printf
|
|
||||||
# else
|
|
||||||
# define DEBUG_WARN(...)
|
|
||||||
# define DEBUG_INFO(...)
|
|
||||||
# endif
|
# endif
|
||||||
# define DEBUG_GDB(...)
|
# if defined(ENABLE_DEBUG)
|
||||||
# define DEBUG_TARGET(...)
|
# define DEBUG_WARN PLATFORM_PRINTF
|
||||||
# define DEBUG_PROBE(...)
|
# define DEBUG_INFO PLATFORM_PRINTF
|
||||||
# define DEBUG_WIRE(...)
|
# else
|
||||||
# define DEBUG_GDB_WIRE(...)
|
# define DEBUG_WARN(...) do {} while(0)
|
||||||
|
# define DEBUG_INFO(...) do {} while(0)
|
||||||
|
# endif
|
||||||
|
# define DEBUG_GDB(...) do {} while(0)
|
||||||
|
# define DEBUG_TARGET(...) do {} while(0)
|
||||||
|
# define DEBUG_PROBE(...) do {} while(0)
|
||||||
|
# define DEBUG_WIRE(...) do {} while(0)
|
||||||
|
# define DEBUG_GDB_WIRE(...) do {} while(0)
|
||||||
#else
|
#else
|
||||||
# include <stdarg.h>
|
# include <stdarg.h>
|
||||||
extern int cl_debuglevel;
|
extern int cl_debuglevel;
|
||||||
|
|
|
@ -51,7 +51,7 @@ static int cdcacm_gdb_dtr = 1;
|
||||||
|
|
||||||
static void cdcacm_set_modem_state(usbd_device *dev, int iface, bool dsr, bool dcd);
|
static void cdcacm_set_modem_state(usbd_device *dev, int iface, bool dsr, bool dcd);
|
||||||
|
|
||||||
static const struct usb_device_descriptor dev = {
|
static const struct usb_device_descriptor dev_desc = {
|
||||||
.bLength = USB_DT_DEVICE_SIZE,
|
.bLength = USB_DT_DEVICE_SIZE,
|
||||||
.bDescriptorType = USB_DT_DEVICE,
|
.bDescriptorType = USB_DT_DEVICE,
|
||||||
.bcdUSB = 0x0200,
|
.bcdUSB = 0x0200,
|
||||||
|
@ -551,7 +551,7 @@ void cdcacm_init(void)
|
||||||
|
|
||||||
serial_no_read(serial_no);
|
serial_no_read(serial_no);
|
||||||
|
|
||||||
usbdev = usbd_init(&USB_DRIVER, &dev, &config, usb_strings,
|
usbdev = usbd_init(&USB_DRIVER, &dev_desc, &config, usb_strings,
|
||||||
sizeof(usb_strings)/sizeof(char *),
|
sizeof(usb_strings)/sizeof(char *),
|
||||||
usbd_control_buffer, sizeof(usbd_control_buffer));
|
usbd_control_buffer, sizeof(usbd_control_buffer));
|
||||||
|
|
||||||
|
|
|
@ -63,7 +63,7 @@ static struct {
|
||||||
} prog;
|
} prog;
|
||||||
static uint8_t current_error;
|
static uint8_t current_error;
|
||||||
|
|
||||||
const struct usb_device_descriptor dev = {
|
const struct usb_device_descriptor dev_desc = {
|
||||||
.bLength = USB_DT_DEVICE_SIZE,
|
.bLength = USB_DT_DEVICE_SIZE,
|
||||||
.bDescriptorType = USB_DT_DEVICE,
|
.bDescriptorType = USB_DT_DEVICE,
|
||||||
.bcdUSB = 0x0200,
|
.bcdUSB = 0x0200,
|
||||||
|
@ -293,7 +293,7 @@ void dfu_init(const usbd_driver *driver)
|
||||||
{
|
{
|
||||||
get_dev_unique_id(serial_no);
|
get_dev_unique_id(serial_no);
|
||||||
|
|
||||||
usbdev = usbd_init(driver, &dev, &config,
|
usbdev = usbd_init(driver, &dev_desc, &config,
|
||||||
usb_strings, 4,
|
usb_strings, 4,
|
||||||
usbd_control_buffer, sizeof(usbd_control_buffer));
|
usbd_control_buffer, sizeof(usbd_control_buffer));
|
||||||
|
|
||||||
|
|
|
@ -334,7 +334,7 @@ static bool cortexm_prepare(ADIv5_AP_t *ap)
|
||||||
uint32_t dhcsr_ctl = CORTEXM_DHCSR_DBGKEY | CORTEXM_DHCSR_C_DEBUGEN |
|
uint32_t dhcsr_ctl = CORTEXM_DHCSR_DBGKEY | CORTEXM_DHCSR_C_DEBUGEN |
|
||||||
CORTEXM_DHCSR_C_HALT;
|
CORTEXM_DHCSR_C_HALT;
|
||||||
uint32_t dhcsr_valid = CORTEXM_DHCSR_S_HALT | CORTEXM_DHCSR_C_DEBUGEN;
|
uint32_t dhcsr_valid = CORTEXM_DHCSR_S_HALT | CORTEXM_DHCSR_C_DEBUGEN;
|
||||||
#ifdef PLATFORM_HAS_DEBUG
|
#if defined(ENABLE_DEBUG) && defined(PLATFORM_HAS_DEBUG)
|
||||||
uint32_t start_time = platform_time_ms();
|
uint32_t start_time = platform_time_ms();
|
||||||
#endif
|
#endif
|
||||||
uint32_t dhcsr;
|
uint32_t dhcsr;
|
||||||
|
|
|
@ -125,12 +125,12 @@ int adiv5_swdp_scan(uint32_t targetid)
|
||||||
initial_dp->seq_out(0xE79E, 16); /* 0b0111100111100111 */
|
initial_dp->seq_out(0xE79E, 16); /* 0b0111100111100111 */
|
||||||
dp_line_reset(initial_dp);
|
dp_line_reset(initial_dp);
|
||||||
initial_dp->fault = 0;
|
initial_dp->fault = 0;
|
||||||
volatile struct exception e;
|
volatile struct exception e2;
|
||||||
TRY_CATCH (e, EXCEPTION_ALL) {
|
TRY_CATCH (e2, EXCEPTION_ALL) {
|
||||||
idcode = initial_dp->low_access(initial_dp, ADIV5_LOW_READ,
|
idcode = initial_dp->low_access(initial_dp, ADIV5_LOW_READ,
|
||||||
ADIV5_DP_IDCODE, 0);
|
ADIV5_DP_IDCODE, 0);
|
||||||
}
|
}
|
||||||
if (e.type) {
|
if (e2.type) {
|
||||||
DEBUG_WARN("No usable DP found\n");
|
DEBUG_WARN("No usable DP found\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -526,7 +526,7 @@ bool cortexm_attach(target *t)
|
||||||
platform_timeout timeout;
|
platform_timeout timeout;
|
||||||
platform_timeout_set(&timeout, 1000);
|
platform_timeout_set(&timeout, 1000);
|
||||||
while (1) {
|
while (1) {
|
||||||
uint32_t dhcsr = target_mem_read32(t, CORTEXM_DHCSR);
|
dhcsr = target_mem_read32(t, CORTEXM_DHCSR);
|
||||||
if (!(dhcsr & CORTEXM_DHCSR_S_RESET_ST))
|
if (!(dhcsr & CORTEXM_DHCSR_S_RESET_ST))
|
||||||
break;
|
break;
|
||||||
if (platform_timeout_is_expired(&timeout)) {
|
if (platform_timeout_is_expired(&timeout)) {
|
||||||
|
@ -572,8 +572,8 @@ static void cortexm_regs_read(target *t, void *data)
|
||||||
for(i = 0; i < sizeof(regnum_cortex_m) / 4; i++)
|
for(i = 0; i < sizeof(regnum_cortex_m) / 4; i++)
|
||||||
*regs++ = base_regs[regnum_cortex_m[i]];
|
*regs++ = base_regs[regnum_cortex_m[i]];
|
||||||
if (t->target_options & TOPT_FLAVOUR_V7MF)
|
if (t->target_options & TOPT_FLAVOUR_V7MF)
|
||||||
for(size_t t = 0; t < sizeof(regnum_cortex_mf) / 4; t++)
|
for(i = 0; i < sizeof(regnum_cortex_mf) / 4; i++)
|
||||||
*regs++ = ap->dp->ap_reg_read(ap, regnum_cortex_mf[t]);
|
*regs++ = ap->dp->ap_reg_read(ap, regnum_cortex_mf[i]);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
if (0) {}
|
if (0) {}
|
||||||
|
|
|
@ -31,6 +31,7 @@ static int nrf51_flash_write(struct target_flash *f,
|
||||||
target_addr dest, const void *src, size_t len);
|
target_addr dest, const void *src, size_t len);
|
||||||
|
|
||||||
static bool nrf51_cmd_erase_all(target *t, int argc, const char **argv);
|
static bool nrf51_cmd_erase_all(target *t, int argc, const char **argv);
|
||||||
|
static bool nrf51_cmd_erase_uicr(target *t, int argc, const char **argv);
|
||||||
static bool nrf51_cmd_read_hwid(target *t, int argc, const char **argv);
|
static bool nrf51_cmd_read_hwid(target *t, int argc, const char **argv);
|
||||||
static bool nrf51_cmd_read_fwid(target *t, int argc, const char **argv);
|
static bool nrf51_cmd_read_fwid(target *t, int argc, const char **argv);
|
||||||
static bool nrf51_cmd_read_deviceid(target *t, int argc, const char **argv);
|
static bool nrf51_cmd_read_deviceid(target *t, int argc, const char **argv);
|
||||||
|
@ -41,6 +42,7 @@ static bool nrf51_cmd_read(target *t, int argc, const char **argv);
|
||||||
|
|
||||||
const struct command_s nrf51_cmd_list[] = {
|
const struct command_s nrf51_cmd_list[] = {
|
||||||
{"erase_mass", (cmd_handler)nrf51_cmd_erase_all, "Erase entire flash memory"},
|
{"erase_mass", (cmd_handler)nrf51_cmd_erase_all, "Erase entire flash memory"},
|
||||||
|
{"erase_uicr", (cmd_handler)nrf51_cmd_erase_uicr, "Erase UICR registers"},
|
||||||
{"read", (cmd_handler)nrf51_cmd_read, "Read device parameters"},
|
{"read", (cmd_handler)nrf51_cmd_read, "Read device parameters"},
|
||||||
{NULL, NULL, NULL}
|
{NULL, NULL, NULL}
|
||||||
};
|
};
|
||||||
|
@ -244,6 +246,31 @@ static bool nrf51_cmd_erase_all(target *t, int argc, const char **argv)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool nrf51_cmd_erase_uicr(target *t, int argc, const char **argv)
|
||||||
|
{
|
||||||
|
(void)argc;
|
||||||
|
(void)argv;
|
||||||
|
tc_printf(t, "erase..\n");
|
||||||
|
|
||||||
|
/* Enable erase */
|
||||||
|
target_mem_write32(t, NRF51_NVMC_CONFIG, NRF51_NVMC_CONFIG_EEN);
|
||||||
|
|
||||||
|
/* Poll for NVMC_READY */
|
||||||
|
while (target_mem_read32(t, NRF51_NVMC_READY) == 0)
|
||||||
|
if(target_check_error(t))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
/* Erase UICR */
|
||||||
|
target_mem_write32(t, NRF51_NVMC_ERASEUICR, 1);
|
||||||
|
|
||||||
|
/* Poll for NVMC_READY */
|
||||||
|
while (target_mem_read32(t, NRF51_NVMC_READY) == 0)
|
||||||
|
if(target_check_error(t))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
static bool nrf51_cmd_read_hwid(target *t, int argc, const char **argv)
|
static bool nrf51_cmd_read_hwid(target *t, int argc, const char **argv)
|
||||||
{
|
{
|
||||||
(void)argc;
|
(void)argc;
|
||||||
|
|
|
@ -248,7 +248,7 @@ bool sam3x_probe(target *t)
|
||||||
case CHIPID_CIDR_ARCH_SAM4SDC | CHIPID_CIDR_EPROC_CM4:
|
case CHIPID_CIDR_ARCH_SAM4SDC | CHIPID_CIDR_EPROC_CM4:
|
||||||
t->driver = "Atmel SAM4S";
|
t->driver = "Atmel SAM4S";
|
||||||
target_add_ram(t, 0x20000000, 0x400000);
|
target_add_ram(t, 0x20000000, 0x400000);
|
||||||
size_t size = sam_flash_size(cidr);
|
size = sam_flash_size(cidr);
|
||||||
if (size <= 0x80000) {
|
if (size <= 0x80000) {
|
||||||
/* Smaller devices have a single bank */
|
/* Smaller devices have a single bank */
|
||||||
sam4_add_flash(t, SAM4S_EEFC_BASE(0), 0x400000, size);
|
sam4_add_flash(t, SAM4S_EEFC_BASE(0), 0x400000, size);
|
||||||
|
|
|
@ -386,7 +386,7 @@ static bool stm32f1_cmd_erase_mass(target *t, int argc, const char **argv)
|
||||||
if(target_check_error(t))
|
if(target_check_error(t))
|
||||||
return false;
|
return false;
|
||||||
/* Check for error */
|
/* Check for error */
|
||||||
uint16_t sr = target_mem_read32(t, FLASH_SR + FLASH_BANK2_OFFSET);
|
sr = target_mem_read32(t, FLASH_SR + FLASH_BANK2_OFFSET);
|
||||||
if ((sr & SR_ERROR_MASK) || !(sr & SR_EOP))
|
if ((sr & SR_ERROR_MASK) || !(sr & SR_EOP))
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -384,9 +384,9 @@ static int stm32f4_flash_erase(struct target_flash *f, target_addr addr,
|
||||||
stm32f4_flash_unlock(t);
|
stm32f4_flash_unlock(t);
|
||||||
|
|
||||||
enum align psize = ALIGN_WORD;
|
enum align psize = ALIGN_WORD;
|
||||||
for (struct target_flash *f = t->flash; f; f = f->next) {
|
for (struct target_flash *currf = t->flash; currf; currf = currf->next) {
|
||||||
if (f->write == stm32f4_flash_write) {
|
if (currf->write == stm32f4_flash_write) {
|
||||||
psize = ((struct stm32f4_flash *)f)->psize;
|
psize = ((struct stm32f4_flash *)currf)->psize;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
while(len) {
|
while(len) {
|
||||||
|
|
|
@ -276,7 +276,7 @@ int target_flash_done(target *t)
|
||||||
if (tmp)
|
if (tmp)
|
||||||
return tmp;
|
return tmp;
|
||||||
if (f->done) {
|
if (f->done) {
|
||||||
int tmp = f->done(f);
|
tmp = f->done(f);
|
||||||
if (tmp)
|
if (tmp)
|
||||||
return tmp;
|
return tmp;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue