Skip to content

Commit

Permalink
ch32vx: implement electronic signature (ESIG) register handling
Browse files Browse the repository at this point in the history
  • Loading branch information
perigoso authored and rg-silva committed Aug 11, 2023
1 parent af0b14c commit f9232ca
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions src/target/ch32vx.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include "general.h"
#include "target.h"
#include "target_internal.h"
#include "buffer_utils.h"

/* IDCODE register */
#define CH32VX_IDCODE 0x1ffff704U
Expand All @@ -36,6 +37,30 @@
#define CH32V303_IDCODE_FAMILY 0x303U
#define CH32V307_IDCODE_FAMILY 0x307U

/* Electronic Signature (ESIG) registers */
#define CH32VX_ESIG_FLASH_CAP 0x1ffff7e0U /* Flash capacity register, 16 bits, KiB units */
#define CH32VX_ESIG_UID1 0x1ffff7e8U /* Unique ID register, bits 0:31 */
#define CH32VX_ESIG_UID2 0x1ffff7ecU /* Unique ID register, bits 32:63 */
#define CH32VX_ESIG_UID3 0x1ffff7f0U /* Unique ID register, bits 64:95 */

static bool ch32vx_uid_cmd(target_s *t, int argc, const char **argv);

const command_s ch32vx_cmd_list[] = {
{"uid", ch32vx_uid_cmd, "Prints 96 bit unique id"},
{NULL, NULL, NULL},
};

static uint32_t ch32vx_read_flash_size(target_s *const t)
{
return target_mem_read16(t, CH32VX_ESIG_FLASH_CAP) * 1024U;
}

static void ch32vx_read_uid(target_s *const t, uint8_t *const uid)
{
for (size_t uid_reg_offset = 0; uid_reg_offset < 12U; uid_reg_offset += 4U)
write_be4(uid, uid_reg_offset, target_mem_read32(t, CH32VX_ESIG_UID1 + uid_reg_offset));
}

bool ch32vx_probe(target_s *const target)
{
const uint32_t idcode = target_mem_read32(target, CH32VX_IDCODE);
Expand Down Expand Up @@ -73,7 +98,28 @@ bool ch32vx_probe(target_s *const target)
break;
}

DEBUG_WARN("CH32Vx flash size: %u\n", ch32vx_read_flash_size(target));

target->part_id = idcode;

target_add_commands(target, ch32vx_cmd_list, "CH32Vx");

return true;
}

/* Reads the 96 bit unique id */
static bool ch32vx_uid_cmd(target_s *const target, const int argc, const char **const argv)
{
(void)argc;
(void)argv;

uint8_t uid[12U];
ch32vx_read_uid(target, uid);

tc_printf(target, "Unique id: 0x");
for (size_t i = 0U; i < sizeof(uid); i++)
tc_printf(target, "%02" PRIx8, uid[i]);
tc_printf(target, "\n");

return true;
}

0 comments on commit f9232ca

Please sign in to comment.