ESPHome 2026.5.0
Loading...
Searching...
No Matches
stm32flash.h
Go to the documentation of this file.
1/*
2 stm32flash - Open Source ST STM32 flash program for Arduino
3 Copyright (C) 2010 Geoffrey McRae <geoff@spacevs.com>
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18*/
19
20#pragma once
21
23#ifdef USE_SHD_FIRMWARE_DATA
24
25#include <cstdint>
26#include <memory>
28
29namespace esphome::shelly_dimmer {
30
31/* flags */
32constexpr auto STREAM_OPT_BYTE = (1 << 0); /* byte (not frame) oriented */
33constexpr auto STREAM_OPT_GVR_ETX = (1 << 1); /* cmd GVR returns protection status */
34constexpr auto STREAM_OPT_CMD_INIT = (1 << 2); /* use INIT cmd to autodetect speed */
35constexpr auto STREAM_OPT_RETRY = (1 << 3); /* allowed read() retry after timeout */
36constexpr auto STREAM_OPT_I2C = (1 << 4); /* i2c */
37constexpr auto STREAM_OPT_STRETCH_W = (1 << 5); /* warning for no-stretching commands */
38
41
42constexpr auto STM32_MAX_RX_FRAME = 256; /* cmd read memory */
43constexpr auto STM32_MAX_TX_FRAME = (1 + 256 + 1); /* cmd write memory */
44
45constexpr auto STM32_MAX_PAGES = 0x0000ffff;
46constexpr auto STM32_MASS_ERASE = 0x00100000; /* > 2 x max_pages */
47
48using stm32_err_t = enum Stm32Err {
49 STM32_ERR_OK = 0,
50 STM32_ERR_UNKNOWN, /* Generic error */
51 STM32_ERR_NACK,
52 STM32_ERR_NO_CMD, /* Command not available in bootloader */
53};
54
55using flags_t = enum Flags {
56 F_NO_ME = 1 << 0, /* Mass-Erase not supported */
57 F_OBLL = 1 << 1, /* OBL_LAUNCH required */
58};
59
60using stm32_cmd_t = struct Stm32Cmd {
61 uint8_t get;
62 uint8_t gvr;
63 uint8_t gid;
64 uint8_t rm;
65 uint8_t go;
66 uint8_t wm;
67 uint8_t er; /* this may be extended erase */
68 uint8_t wp;
69 uint8_t uw;
70 uint8_t rp;
71 uint8_t ur;
72 uint8_t crc;
73};
74
75using stm32_dev_t = struct Stm32Dev { // NOLINT
76 const uint16_t id;
77 const char *name;
78 const uint32_t ram_start, ram_end;
79 const uint32_t fl_start, fl_end;
80 const uint16_t fl_pps; // pages per sector
81 const uint32_t *fl_ps; // page size
82 const uint32_t opt_start, opt_end;
83 const uint32_t mem_start, mem_end;
84 const uint32_t flags;
85};
86
87using stm32_t = struct Stm32 {
88 uart::UARTDevice *stream;
89 uint8_t flags;
90 struct VarlenCmd *cmd_get_reply;
91 uint8_t bl_version;
92 uint8_t version;
93 uint8_t option1, option2;
94 uint16_t pid;
95 stm32_cmd_t *cmd;
96 const stm32_dev_t *dev;
97};
98
99/*
100 * Specify the length of reply for command GET
101 * This is helpful for frame-oriented protocols, e.g. i2c, to avoid time
102 * consuming try-fail-timeout-retry operation.
103 * On byte-oriented protocols, i.e. UART, this information would be skipped
104 * after read the first byte, so not needed.
105 */
106struct VarlenCmd {
107 uint8_t version;
108 uint8_t length;
109};
110
111using stm32_unique_ptr = std::unique_ptr<stm32_t, void (*)(stm32_t *)>;
112
113stm32_unique_ptr stm32_init(uart::UARTDevice *stream, uint8_t flags, char init);
114stm32_err_t stm32_read_memory(const stm32_unique_ptr &stm, uint32_t address, uint8_t *data, unsigned int len);
115stm32_err_t stm32_write_memory(const stm32_unique_ptr &stm, uint32_t address, const uint8_t *data, unsigned int len);
125uint32_t stm32_sw_crc(uint32_t crc, uint8_t *buf, unsigned int len);
126
127} // namespace esphome::shelly_dimmer
128
129#endif // USE_SHD_FIRMWARE_DATA
uint8_t address
Definition bl0906.h:4
uint16_t flags
uint16_t id
stm32_err_t stm32_wunprot_memory(const stm32_unique_ptr &stm)
stm32_err_t stm32_reset_device(const stm32_unique_ptr &stm)
constexpr auto STREAM_OPT_I2C
Definition stm32flash.h:36
constexpr auto STM32_MAX_TX_FRAME
Definition stm32flash.h:43
stm32_unique_ptr stm32_init(uart::UARTDevice *stream, const uint8_t flags, const char init)
constexpr auto STREAM_OPT_CMD_INIT
Definition stm32flash.h:34
constexpr auto STREAM_OPT_RETRY
Definition stm32flash.h:35
struct Stm32 { uart::UARTDevice *stream; uint8_t flags; struct VarlenCmd *cmd_get_reply; uint8_t bl_version; uint8_t version; uint8_t option1, option2; uint16_t pid; stm32_cmd_t *cmd; const stm32_dev_t *dev;} stm32_t
Definition stm32flash.h:87
constexpr auto STREAM_SERIAL
Definition stm32flash.h:39
stm32_err_t stm32_readprot_memory(const stm32_unique_ptr &stm)
stm32_err_t stm32_crc_wrapper(const stm32_unique_ptr &stm, uint32_t address, uint32_t length, uint32_t *crc)
struct Stm32Cmd { uint8_t get; uint8_t gvr; uint8_t gid; uint8_t rm; uint8_t go; uint8_t wm; uint8_t er; uint8_t wp; uint8_t uw; uint8_t rp; uint8_t ur; uint8_t crc;} stm32_cmd_t
Definition stm32flash.h:60
stm32_err_t stm32_write_memory(const stm32_unique_ptr &stm, uint32_t address, const uint8_t *data, const unsigned int len)
constexpr auto STM32_MAX_RX_FRAME
Definition stm32flash.h:42
constexpr auto STM32_MASS_ERASE
Definition stm32flash.h:46
constexpr auto STM32_MAX_PAGES
Definition stm32flash.h:45
stm32_err_t stm32_runprot_memory(const stm32_unique_ptr &stm)
stm32_err_t stm32_go(const stm32_unique_ptr &stm, const uint32_t address)
stm32_err_t stm32_crc_memory(const stm32_unique_ptr &stm, const uint32_t address, const uint32_t length, uint32_t *const crc)
stm32_err_t stm32_read_memory(const stm32_unique_ptr &stm, const uint32_t address, uint8_t *data, const unsigned int len)
uint32_t stm32_sw_crc(uint32_t crc, uint8_t *buf, unsigned int len)
constexpr auto STREAM_I2C
Definition stm32flash.h:40
struct Stm32Dev { const uint16_t id; const char *name; const uint32_t ram_start, ram_end; const uint32_t fl_start, fl_end; const uint16_t fl_pps; const uint32_t *fl_ps; const uint32_t opt_start, opt_end; const uint32_t mem_start, mem_end; const uint32_t flags;} stm32_dev_t
Definition stm32flash.h:75
constexpr auto STREAM_OPT_BYTE
Definition stm32flash.h:32
constexpr auto STREAM_OPT_GVR_ETX
Definition stm32flash.h:33
constexpr auto STREAM_OPT_STRETCH_W
Definition stm32flash.h:37
stm32_err_t stm32_erase_memory(const stm32_unique_ptr &stm, uint32_t spage, uint32_t pages)
std::unique_ptr< stm32_t, void(*)(stm32_t *)> stm32_unique_ptr
Definition stm32flash.h:111
enum Stm32Err { STM32_ERR_OK=0, STM32_ERR_UNKNOWN, STM32_ERR_NACK, STM32_ERR_NO_CMD, } stm32_err_t
Definition stm32flash.h:48
stm32_err_t stm32_wprot_memory(const stm32_unique_ptr &stm)
enum Flags { F_NO_ME=1<< 0, F_OBLL=1<< 1, } flags_t
Definition stm32flash.h:55
std::string size_t len
static void uint32_t
uint16_t length
Definition tt21100.cpp:0