core(feat): Add FIRMWARE VERSION command to prodtest.

pull/3750/head
Andrew Kozlik 1 month ago
parent ab11afa442
commit b14a8fd58c

@ -0,0 +1 @@
Added FIRMWARE VERSION command.

@ -98,9 +98,11 @@ The command requires two input parameters:
If the display is not touched within the specified timeout, the command will return an `ERROR TIMEOUT`.
The command does not check whether the touch point lies within the quadrant or not. It only returns the x and y coordinate of the touch point.
Example (to draw a rectangle in the top-left quadrant and wait for 9 seconds for touch input):
```
TOUCH 0 9
TOUCH 09
OK 50 90
```
@ -201,27 +203,41 @@ OK (null)
The `OTP WRITE` command enables you to store a string parameter (which can be used to identify the model and production batch, for instance) into the device's OTP memory.
The parameter can be up to 31 characters in length.
The standard format is `<internal_model>-<YYMMDD>`, where YYMMDD represents the provisioning date. In case of Model T the `internal_model` is `TREZOR2`.
Example:
```
OTP WRITE 10002
OTP WRITE T2B1-231231
OK
```
### VARIANT
The `VARIANT` command allows you to write up to 32 decimal values (representing device variant options), each ranging from 0 to 255, and delimited by spaces, into the OTP memory.
The `VARIANT` command writes up to 31 decimal values (representing device variant options), each ranging from 0 to 255, and delimited by spaces, into the OTP memory. This command should be called after the `LOCK` command was successfully executed.
Example (to write 8 bytes into OTP memory):
The standard format is `VARIANT <unit_color> <unit_btconly> <unit_packaging>`.
Example (to write 3 bytes into OTP memory):
```
VARIANT 128 64 100 1 2 3 0 0
VARIANT 3 0 2
```
### VARIANT READ
The `VARIANT READ` command allows you to read 32 bytes of stored variant data (representing device variant options), each ranging from 0 to 255, and delimited by spaces.
The `VARIANT READ` command allows you to read 32 bytes of stored variant data (representing device variant options), each ranging from 0 to 255, and delimited by spaces. The first byte is the format version, followed by the bytes written using the VARIANT command and padded with null bytes.
Example:
```
VARIANT READ
OK 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255
OK 1 3 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
```
### FIRMWARE VERSION
Returns the version of the prodtest firmware.
The command returns `OK` followed by the version in the format `<major>.<minor>.<patch>`.
Example:
```
FIRMWARE VERSION
OK 0.2.6
```
### WIPE

@ -41,6 +41,7 @@
#include "supervise.h"
#include "touch.h"
#include "usb.h"
#include "version.h"
#ifdef USE_OPTIGA
#include "optiga_commands.h"
@ -453,6 +454,10 @@ power_off:
}
#endif
static void test_firmware_version(void) {
vcp_println("OK %d.%d.%d", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH);
}
static void test_wipe(void) {
// erase start of the firmware (metadata) -> invalidate FW
ensure(flash_unlock_write(), NULL);
@ -497,9 +502,10 @@ static void test_haptic(const char *args) {
#endif
static void test_otp_read(void) {
uint8_t data[32];
uint8_t data[FLASH_OTP_BLOCK_SIZE + 1];
memzero(data, sizeof(data));
ensure(flash_otp_read(FLASH_OTP_BLOCK_BATCH, 0, data, sizeof(data)), NULL);
ensure(flash_otp_read(FLASH_OTP_BLOCK_BATCH, 0, data, FLASH_OTP_BLOCK_SIZE),
NULL);
// strip trailing 0xFF
for (size_t i = 0; i < sizeof(data); i++) {
@ -518,7 +524,12 @@ static void test_otp_read(void) {
}
static void test_otp_write(const char *args) {
char data[32];
if (sectrue == flash_otp_is_locked(FLASH_OTP_BLOCK_BATCH)) {
vcp_println("ERROR ALREADY WRITTEN");
return;
}
char data[FLASH_OTP_BLOCK_SIZE];
memzero(data, sizeof(data));
strncpy(data, args, sizeof(data) - 1);
ensure(flash_otp_write(FLASH_OTP_BLOCK_BATCH, 0, (const uint8_t *)data,
@ -529,7 +540,7 @@ static void test_otp_write(const char *args) {
}
static void test_otp_read_device_variant() {
uint8_t data[32] = {0};
uint8_t data[FLASH_OTP_BLOCK_SIZE] = {0};
if (sectrue !=
flash_otp_read(FLASH_OTP_BLOCK_DEVICE_VARIANT, 0, data, sizeof(data))) {
vcp_println("ERROR");
@ -557,7 +568,12 @@ static void test_otp_write_device_variant(const char *args) {
}
#endif
volatile char data[32];
if (sectrue == flash_otp_is_locked(FLASH_OTP_BLOCK_DEVICE_VARIANT)) {
vcp_println("ERROR ALREADY WRITTEN");
return;
}
volatile char data[FLASH_OTP_BLOCK_SIZE];
memzero((char *)data, sizeof(data));
data[0] = 1;
@ -568,7 +584,7 @@ static void test_otp_write_device_variant(const char *args) {
while (args[n] != 0) {
if (args[n] == ' ') {
if (arg_len != 0) {
if (arg_num < 32) {
if (arg_num < sizeof(data)) {
data[arg_num] = (uint8_t)atoi(&args[arg_start]);
}
arg_num++;
@ -581,7 +597,7 @@ static void test_otp_write_device_variant(const char *args) {
n++;
}
if (arg_len != 0 && arg_num < 32) {
if (arg_len != 0 && arg_num < sizeof(data)) {
data[arg_num] = (uint8_t)atoi(&args[arg_start]);
}
@ -745,6 +761,9 @@ int main(void) {
} else if (startswith(line, "VARIANT ")) {
test_otp_write_device_variant(line + 8);
} else if (startswith(line, "FIRMWARE VERSION")) {
test_firmware_version();
} else if (startswith(line, "WIPE")) {
test_wipe();

Loading…
Cancel
Save