Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */ |
| 2 | /* |
| 3 | * Copyright (C) 2020, STMicroelectronics - All Rights Reserved |
| 4 | */ |
| 5 | |
| 6 | #ifndef _STM32PROG_H_ |
| 7 | #define _STM32PROG_H_ |
| 8 | |
| 9 | /* - phase defines ------------------------------------------------*/ |
| 10 | #define PHASE_FLASHLAYOUT 0x00 |
| 11 | #define PHASE_FIRST_USER 0x10 |
| 12 | #define PHASE_LAST_USER 0xF0 |
| 13 | #define PHASE_CMD 0xF1 |
Patrick Delaunay | 1d96b18 | 2020-03-18 09:24:58 +0100 | [diff] [blame] | 14 | #define PHASE_OTP 0xF2 |
Patrick Delaunay | 541c7de | 2020-03-18 09:24:59 +0100 | [diff] [blame] | 15 | #define PHASE_PMIC 0xF4 |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 16 | #define PHASE_END 0xFE |
| 17 | #define PHASE_RESET 0xFF |
| 18 | #define PHASE_DO_RESET 0x1FF |
| 19 | |
| 20 | #define DEFAULT_ADDRESS 0xFFFFFFFF |
| 21 | |
Patrick Delaunay | bd57749 | 2021-07-05 09:39:01 +0200 | [diff] [blame] | 22 | #define CMD_SIZE 512 |
Patrick Delaunay | 8da5df9 | 2022-03-28 19:25:28 +0200 | [diff] [blame] | 23 | #define OTP_SIZE_SMC 1024 |
| 24 | #define OTP_SIZE_TA 776 |
Patrick Delaunay | 541c7de | 2020-03-18 09:24:59 +0100 | [diff] [blame] | 25 | #define PMIC_SIZE 8 |
Patrick Delaunay | 1d96b18 | 2020-03-18 09:24:58 +0100 | [diff] [blame] | 26 | |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 27 | enum stm32prog_target { |
| 28 | STM32PROG_NONE, |
Patrick Delaunay | 7aae1e3 | 2020-03-18 09:24:51 +0100 | [diff] [blame] | 29 | STM32PROG_MMC, |
Patrick Delaunay | 6ab7496 | 2020-03-18 09:24:54 +0100 | [diff] [blame] | 30 | STM32PROG_NAND, |
| 31 | STM32PROG_NOR, |
Patrick Delaunay | 41e6ace | 2020-03-18 09:25:03 +0100 | [diff] [blame] | 32 | STM32PROG_SPI_NAND, |
| 33 | STM32PROG_RAM |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | enum stm32prog_link_t { |
Patrick Delaunay | b823d99 | 2020-03-18 09:25:00 +0100 | [diff] [blame] | 37 | LINK_SERIAL, |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 38 | LINK_USB, |
| 39 | LINK_UNDEFINED, |
| 40 | }; |
| 41 | |
Patrick Delaunay | 19676ef | 2021-04-02 14:05:17 +0200 | [diff] [blame] | 42 | enum stm32prog_header_t { |
| 43 | HEADER_NONE, |
| 44 | HEADER_STM32IMAGE, |
Patrick Delaunay | 953d8bf | 2022-03-28 19:25:29 +0200 | [diff] [blame] | 45 | HEADER_STM32IMAGE_V2, |
Patrick Delaunay | 19676ef | 2021-04-02 14:05:17 +0200 | [diff] [blame] | 46 | HEADER_FIP, |
| 47 | }; |
| 48 | |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 49 | struct image_header_s { |
Patrick Delaunay | 19676ef | 2021-04-02 14:05:17 +0200 | [diff] [blame] | 50 | enum stm32prog_header_t type; |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 51 | u32 image_checksum; |
| 52 | u32 image_length; |
Patrick Delaunay | 953d8bf | 2022-03-28 19:25:29 +0200 | [diff] [blame] | 53 | u32 length; |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 54 | }; |
| 55 | |
Patrick Delaunay | 953d8bf | 2022-03-28 19:25:29 +0200 | [diff] [blame] | 56 | struct stm32_header_v1 { |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 57 | u32 magic_number; |
Patrick Delaunay | 953d8bf | 2022-03-28 19:25:29 +0200 | [diff] [blame] | 58 | u8 image_signature[64]; |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 59 | u32 image_checksum; |
| 60 | u32 header_version; |
| 61 | u32 image_length; |
| 62 | u32 image_entry_point; |
| 63 | u32 reserved1; |
| 64 | u32 load_address; |
| 65 | u32 reserved2; |
| 66 | u32 version_number; |
| 67 | u32 option_flags; |
| 68 | u32 ecdsa_algorithm; |
Patrick Delaunay | 953d8bf | 2022-03-28 19:25:29 +0200 | [diff] [blame] | 69 | u8 ecdsa_public_key[64]; |
| 70 | u8 padding[83]; |
| 71 | u8 binary_type; |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 72 | }; |
| 73 | |
Patrick Delaunay | 953d8bf | 2022-03-28 19:25:29 +0200 | [diff] [blame] | 74 | struct stm32_header_v2 { |
| 75 | u32 magic_number; |
| 76 | u8 image_signature[64]; |
| 77 | u32 image_checksum; |
| 78 | u32 header_version; |
| 79 | u32 image_length; |
| 80 | u32 image_entry_point; |
| 81 | u32 reserved1; |
| 82 | u32 load_address; |
| 83 | u32 reserved2; |
| 84 | u32 version_number; |
| 85 | u32 extension_flags; |
| 86 | u32 extension_headers_length; |
| 87 | u32 binary_type; |
| 88 | u8 padding[16]; |
| 89 | u32 extension_header_type; |
| 90 | u32 extension_header_length; |
| 91 | u8 extension_padding[376]; |
| 92 | }; |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 93 | |
| 94 | /* partition type in flashlayout file */ |
| 95 | enum stm32prog_part_type { |
| 96 | PART_BINARY, |
Patrick Delaunay | 8dc5768 | 2022-03-28 19:25:30 +0200 | [diff] [blame] | 97 | PART_FIP, |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 98 | PART_SYSTEM, |
| 99 | PART_FILESYSTEM, |
Patrick Delaunay | 8dc5768 | 2022-03-28 19:25:30 +0200 | [diff] [blame] | 100 | RAW_IMAGE, |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 101 | }; |
| 102 | |
| 103 | /* device information */ |
| 104 | struct stm32prog_dev_t { |
| 105 | enum stm32prog_target target; |
| 106 | char dev_id; |
Patrick Delaunay | 7aae1e3 | 2020-03-18 09:24:51 +0100 | [diff] [blame] | 107 | u32 erase_size; |
| 108 | struct mmc *mmc; |
Patrick Delaunay | 6ab7496 | 2020-03-18 09:24:54 +0100 | [diff] [blame] | 109 | struct mtd_info *mtd; |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 110 | /* list of partition for this device / ordered in offset */ |
| 111 | struct list_head part_list; |
Patrick Delaunay | 5ce5006 | 2020-03-18 09:24:53 +0100 | [diff] [blame] | 112 | bool full_update; |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 113 | }; |
| 114 | |
| 115 | /* partition information build from FlashLayout and device */ |
| 116 | struct stm32prog_part_t { |
| 117 | /* FlashLayout information */ |
| 118 | int option; |
| 119 | int id; |
| 120 | enum stm32prog_part_type part_type; |
| 121 | enum stm32prog_target target; |
| 122 | char dev_id; |
| 123 | |
| 124 | /* partition name |
| 125 | * (16 char in gpt, + 1 for null terminated string |
| 126 | */ |
| 127 | char name[16 + 1]; |
| 128 | u64 addr; |
| 129 | u64 size; |
Patrick Delaunay | 851d6f3 | 2020-03-18 09:24:56 +0100 | [diff] [blame] | 130 | enum stm32prog_part_type bin_nb; /* SSBL repeatition */ |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 131 | |
| 132 | /* information on associated device */ |
| 133 | struct stm32prog_dev_t *dev; /* pointer to device */ |
Patrick Delaunay | 6915b49 | 2020-03-18 09:24:52 +0100 | [diff] [blame] | 134 | s16 part_id; /* partition id in device */ |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 135 | int alt_id; /* alt id in usb/dfu */ |
| 136 | |
| 137 | struct list_head list; |
| 138 | }; |
| 139 | |
| 140 | #define STM32PROG_MAX_DEV 5 |
| 141 | struct stm32prog_data { |
| 142 | /* Layout information */ |
| 143 | int dev_nb; /* device number*/ |
| 144 | struct stm32prog_dev_t dev[STM32PROG_MAX_DEV]; /* array of device */ |
| 145 | int part_nb; /* nb of partition */ |
| 146 | struct stm32prog_part_t *part_array; /* array of partition */ |
Patrick Delaunay | 1008a50 | 2021-07-26 11:21:38 +0200 | [diff] [blame] | 147 | #ifdef CONFIG_STM32MP15x_STM32IMAGE |
Patrick Delaunay | c511224 | 2020-03-18 09:24:55 +0100 | [diff] [blame] | 148 | bool tee_detected; |
Patrick Delaunay | 1008a50 | 2021-07-26 11:21:38 +0200 | [diff] [blame] | 149 | #endif |
Patrick Delaunay | c511224 | 2020-03-18 09:24:55 +0100 | [diff] [blame] | 150 | bool fsbl_nor_detected; |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 151 | |
| 152 | /* command internal information */ |
| 153 | unsigned int phase; |
| 154 | u32 offset; |
| 155 | char error[255]; |
| 156 | struct stm32prog_part_t *cur_part; |
Patrick Delaunay | 21ea4ef | 2022-09-06 18:53:19 +0200 | [diff] [blame^] | 157 | void *otp_part; |
Patrick Delaunay | 541c7de | 2020-03-18 09:24:59 +0100 | [diff] [blame] | 158 | u8 pmic_part[PMIC_SIZE]; |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 159 | |
Patrick Delaunay | b823d99 | 2020-03-18 09:25:00 +0100 | [diff] [blame] | 160 | /* SERIAL information */ |
| 161 | u32 cursor; |
| 162 | u32 packet_number; |
Patrick Delaunay | b823d99 | 2020-03-18 09:25:00 +0100 | [diff] [blame] | 163 | u8 *buffer; /* size = USART_RAM_BUFFER_SIZE*/ |
| 164 | int dfu_seq; |
| 165 | u8 read_phase; |
Patrick Delaunay | 41e6ace | 2020-03-18 09:25:03 +0100 | [diff] [blame] | 166 | |
| 167 | /* bootm information */ |
Patrick Delaunay | 21ea4ef | 2022-09-06 18:53:19 +0200 | [diff] [blame^] | 168 | uintptr_t uimage; |
| 169 | uintptr_t dtb; |
| 170 | uintptr_t initrd; |
| 171 | size_t initrd_size; |
Patrick Delaunay | 8da5df9 | 2022-03-28 19:25:28 +0200 | [diff] [blame] | 172 | |
Patrick Delaunay | 21ea4ef | 2022-09-06 18:53:19 +0200 | [diff] [blame^] | 173 | uintptr_t script; |
Patrick Delaunay | b9ef46b | 2022-03-28 19:25:32 +0200 | [diff] [blame] | 174 | |
Patrick Delaunay | 8da5df9 | 2022-03-28 19:25:28 +0200 | [diff] [blame] | 175 | /* OPTEE PTA NVMEM */ |
| 176 | struct udevice *tee; |
| 177 | u32 tee_session; |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 178 | }; |
| 179 | |
| 180 | extern struct stm32prog_data *stm32prog_data; |
| 181 | |
Patrick Delaunay | 1d96b18 | 2020-03-18 09:24:58 +0100 | [diff] [blame] | 182 | /* OTP access */ |
| 183 | int stm32prog_otp_write(struct stm32prog_data *data, u32 offset, |
| 184 | u8 *buffer, long *size); |
| 185 | int stm32prog_otp_read(struct stm32prog_data *data, u32 offset, |
| 186 | u8 *buffer, long *size); |
| 187 | int stm32prog_otp_start(struct stm32prog_data *data); |
| 188 | |
Patrick Delaunay | 541c7de | 2020-03-18 09:24:59 +0100 | [diff] [blame] | 189 | /* PMIC access */ |
| 190 | int stm32prog_pmic_write(struct stm32prog_data *data, u32 offset, |
| 191 | u8 *buffer, long *size); |
| 192 | int stm32prog_pmic_read(struct stm32prog_data *data, u32 offset, |
| 193 | u8 *buffer, long *size); |
| 194 | int stm32prog_pmic_start(struct stm32prog_data *data); |
| 195 | |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 196 | /* generic part*/ |
Patrick Delaunay | 953d8bf | 2022-03-28 19:25:29 +0200 | [diff] [blame] | 197 | void stm32prog_header_check(uintptr_t raw_header, struct image_header_s *header); |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 198 | int stm32prog_dfu_init(struct stm32prog_data *data); |
| 199 | void stm32prog_next_phase(struct stm32prog_data *data); |
| 200 | void stm32prog_do_reset(struct stm32prog_data *data); |
| 201 | |
| 202 | char *stm32prog_get_error(struct stm32prog_data *data); |
| 203 | |
| 204 | #define stm32prog_err(args...) {\ |
| 205 | if (data->phase != PHASE_RESET) { \ |
| 206 | sprintf(data->error, args); \ |
| 207 | data->phase = PHASE_RESET; \ |
Patrick Delaunay | 2b15af5 | 2020-11-06 19:01:30 +0100 | [diff] [blame] | 208 | log_err("Error: %s\n", data->error); } \ |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | /* Main function */ |
Patrick Delaunay | 21ea4ef | 2022-09-06 18:53:19 +0200 | [diff] [blame^] | 212 | int stm32prog_init(struct stm32prog_data *data, uintptr_t addr, ulong size); |
Patrick Delaunay | 29b2e2e | 2021-02-25 13:37:01 +0100 | [diff] [blame] | 213 | void stm32prog_clean(struct stm32prog_data *data); |
| 214 | |
| 215 | #ifdef CONFIG_CMD_STM32PROG_SERIAL |
Patrick Delaunay | b823d99 | 2020-03-18 09:25:00 +0100 | [diff] [blame] | 216 | int stm32prog_serial_init(struct stm32prog_data *data, int link_dev); |
| 217 | bool stm32prog_serial_loop(struct stm32prog_data *data); |
Patrick Delaunay | 29b2e2e | 2021-02-25 13:37:01 +0100 | [diff] [blame] | 218 | #else |
| 219 | static inline int stm32prog_serial_init(struct stm32prog_data *data, int link_dev) |
| 220 | { |
| 221 | return -ENOSYS; |
| 222 | } |
| 223 | |
| 224 | static inline bool stm32prog_serial_loop(struct stm32prog_data *data) |
| 225 | { |
| 226 | return false; |
| 227 | } |
| 228 | #endif |
| 229 | |
| 230 | #ifdef CONFIG_CMD_STM32PROG_USB |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 231 | bool stm32prog_usb_loop(struct stm32prog_data *data, int dev); |
Patrick Delaunay | 29b2e2e | 2021-02-25 13:37:01 +0100 | [diff] [blame] | 232 | #else |
| 233 | static inline bool stm32prog_usb_loop(struct stm32prog_data *data, int dev) |
| 234 | { |
| 235 | return false; |
| 236 | } |
| 237 | #endif |
Patrick Delaunay | 7daa91d | 2020-03-18 09:24:49 +0100 | [diff] [blame] | 238 | |
| 239 | #endif |