forked from auracaster/openocd
The device has compatible flash macro with STM32F1 family, reuse stm32f1x driver code. Detect non-ARM target - for simplicy test target type name 'riscv' and the address has 32 bits. In case of RISC-V CPU use simple chunked write algo - async algo cannot be used as the core implemented in this device doesn't allow memory access while running. Change-Id: Ie3886fbd8573652691f91a02335812a7300689f7 Signed-off-by: Tomas Vanek <vanekt@fbl.cz> Reviewed-on: https://review.openocd.org/c/openocd/+/6704 Tested-by: jenkins Reviewed-by: Tim Newsome <tim@sifive.com>
34 lines
648 B
C
34 lines
648 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#include <stdint.h>
|
|
|
|
#define FLASH_BSY (1 << 0)
|
|
#define FLASH_PGERR (1 << 2)
|
|
#define FLASH_WRPRTERR (1 << 4)
|
|
|
|
void flash_write(volatile uint32_t *flash_sr,
|
|
uint32_t hwords_count,
|
|
uint16_t *buffer,
|
|
uint16_t *target_addr) __attribute__((naked));
|
|
|
|
void flash_write(volatile uint32_t *flash_sr,
|
|
uint32_t hwords_count,
|
|
uint16_t *buffer,
|
|
uint16_t *target_addr)
|
|
{
|
|
do {
|
|
*target_addr = *buffer++;
|
|
|
|
register uint32_t sr;
|
|
do {
|
|
sr = *flash_sr;
|
|
} while (sr & FLASH_BSY);
|
|
|
|
if (sr & (FLASH_PGERR | FLASH_WRPRTERR))
|
|
break;
|
|
|
|
target_addr++;
|
|
} while (--hwords_count);
|
|
asm("ebreak");
|
|
}
|