mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-04-26 18:09:16 -04:00

Decide where to start from with data from resetinfo part of FW_RAM. Co-authored-by: Jonas Thörnblad <jonas@tillitis.se> Co-authored-by: Mikael Ågren <mikael@tillitis.se>
31 lines
601 B
C
31 lines
601 B
C
// Copyright (C) 2025 - Tillitis AB
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
#ifndef TKEY_RESETINFO_H
|
|
#define TKEY_RESETINFO_H
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
#define TK1_MMIO_RESETINFO_BASE 0xd0000f00
|
|
#define TK1_MMIO_RESETINFO_SIZE 0x100
|
|
|
|
|
|
enum reset_start {
|
|
START_DEFAULT = 0, // Probably cold boot
|
|
START_FLASH1 = 1,
|
|
START_FLASH2 = 2,
|
|
START_FLASH1_VER = 3,
|
|
START_FLASH2_VER = 4,
|
|
START_CLIENT = 5,
|
|
START_CLIENT_VER = 6,
|
|
};
|
|
|
|
struct reset {
|
|
uint32_t type; // Reset type
|
|
uint8_t app_digest[32]; // Program digest
|
|
uint8_t next_app_data[220]; // Data to leave around for next app
|
|
};
|
|
|
|
#endif
|