This is an automated email from Gerrit. "Michal Lenc <michall...@seznam.cz>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9096
-- gerrit commit 74f4ce1c3e7159dae7afd0f49927300df13a6a41 Author: Michal Lenc <michall...@seznam.cz> Date: Mon Aug 25 15:39:15 2025 +0200 doc/openocd.texi: add entry describing atsamv user signature area Change-Id: I3bbaba304868dca49d6dd7006276d2d3a95facad Signed-off-by: Michal Lenc <michall...@seznam.cz> diff --git a/doc/openocd.texi b/doc/openocd.texi index 22c7fcedd0..4d8f795582 100644 --- a/doc/openocd.texi +++ b/doc/openocd.texi @@ -6965,6 +6965,18 @@ This driver uses the same command names/syntax as @xref{at91sam3}. flash bank $_FLASHNAME atsamv 0x00400000 0 0 0 $_TARGETNAME @end example +These families also have a user signature area located at the beginning +of an embedded flash. This is a 512 bytes large page whose data are not +erased by assering ERASE pin or by software ERASE command. It can be +used to store configuration, keys, trimming values and so on. The area +overlaps with the beginning of standard flash and uses special commands +to perform write/read operations. OpenOCD locates the signature area +at fake address above 32 bit address space, specifically at 0x100000000. + +@example +flash bank $_SIGNATURENAME atsamv 0x100000000 0 0 0 $_TARGETNAME +@end example + @deffn {Command} {atsamv gpnvm} [@option{show} [@option{all}|number]] @deffnx {Command} {atsamv gpnvm} (@option{clr}|@option{set}) number With no parameters, @option{show} or @option{show all}, --