blob: 240c5c44bcbee40db6cbe5b19815e10e4a312ae7 [file] [log] [blame]
Patrick Delaunay7daa91d2020-03-18 09:24:49 +01001/* 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 Delaunay1d96b182020-03-18 09:24:58 +010014#define PHASE_OTP 0xF2
Patrick Delaunay541c7de2020-03-18 09:24:59 +010015#define PHASE_PMIC 0xF4
Patrick Delaunay7daa91d2020-03-18 09:24:49 +010016#define PHASE_END 0xFE
17#define PHASE_RESET 0xFF
18#define PHASE_DO_RESET 0x1FF
19
20#define DEFAULT_ADDRESS 0xFFFFFFFF
21
Patrick Delaunaybd577492021-07-05 09:39:01 +020022#define CMD_SIZE 512
Patrick Delaunay1d96b182020-03-18 09:24:58 +010023#define OTP_SIZE 1024
Patrick Delaunay541c7de2020-03-18 09:24:59 +010024#define PMIC_SIZE 8
Patrick Delaunay1d96b182020-03-18 09:24:58 +010025
Patrick Delaunay7daa91d2020-03-18 09:24:49 +010026enum stm32prog_target {
27 STM32PROG_NONE,
Patrick Delaunay7aae1e32020-03-18 09:24:51 +010028 STM32PROG_MMC,
Patrick Delaunay6ab74962020-03-18 09:24:54 +010029 STM32PROG_NAND,
30 STM32PROG_NOR,
Patrick Delaunay41e6ace2020-03-18 09:25:03 +010031 STM32PROG_SPI_NAND,
32 STM32PROG_RAM
Patrick Delaunay7daa91d2020-03-18 09:24:49 +010033};
34
35enum stm32prog_link_t {
Patrick Delaunayb823d992020-03-18 09:25:00 +010036 LINK_SERIAL,
Patrick Delaunay7daa91d2020-03-18 09:24:49 +010037 LINK_USB,
38 LINK_UNDEFINED,
39};
40
Patrick Delaunay19676ef2021-04-02 14:05:17 +020041enum stm32prog_header_t {
42 HEADER_NONE,
43 HEADER_STM32IMAGE,
44 HEADER_FIP,
45};
46
Patrick Delaunay7daa91d2020-03-18 09:24:49 +010047struct image_header_s {
Patrick Delaunay19676ef2021-04-02 14:05:17 +020048 enum stm32prog_header_t type;
Patrick Delaunay7daa91d2020-03-18 09:24:49 +010049 u32 image_checksum;
50 u32 image_length;
51};
52
53struct raw_header_s {
54 u32 magic_number;
55 u32 image_signature[64 / 4];
56 u32 image_checksum;
57 u32 header_version;
58 u32 image_length;
59 u32 image_entry_point;
60 u32 reserved1;
61 u32 load_address;
62 u32 reserved2;
63 u32 version_number;
64 u32 option_flags;
65 u32 ecdsa_algorithm;
66 u32 ecdsa_public_key[64 / 4];
67 u32 padding[83 / 4];
68 u32 binary_type;
69};
70
71#define BL_HEADER_SIZE sizeof(struct raw_header_s)
72
73/* partition type in flashlayout file */
74enum stm32prog_part_type {
75 PART_BINARY,
76 PART_SYSTEM,
77 PART_FILESYSTEM,
78 RAW_IMAGE
79};
80
81/* device information */
82struct stm32prog_dev_t {
83 enum stm32prog_target target;
84 char dev_id;
Patrick Delaunay7aae1e32020-03-18 09:24:51 +010085 u32 erase_size;
86 struct mmc *mmc;
Patrick Delaunay6ab74962020-03-18 09:24:54 +010087 struct mtd_info *mtd;
Patrick Delaunay7daa91d2020-03-18 09:24:49 +010088 /* list of partition for this device / ordered in offset */
89 struct list_head part_list;
Patrick Delaunay5ce50062020-03-18 09:24:53 +010090 bool full_update;
Patrick Delaunay7daa91d2020-03-18 09:24:49 +010091};
92
93/* partition information build from FlashLayout and device */
94struct stm32prog_part_t {
95 /* FlashLayout information */
96 int option;
97 int id;
98 enum stm32prog_part_type part_type;
99 enum stm32prog_target target;
100 char dev_id;
101
102 /* partition name
103 * (16 char in gpt, + 1 for null terminated string
104 */
105 char name[16 + 1];
106 u64 addr;
107 u64 size;
Patrick Delaunay851d6f32020-03-18 09:24:56 +0100108 enum stm32prog_part_type bin_nb; /* SSBL repeatition */
Patrick Delaunay7daa91d2020-03-18 09:24:49 +0100109
110 /* information on associated device */
111 struct stm32prog_dev_t *dev; /* pointer to device */
Patrick Delaunay6915b492020-03-18 09:24:52 +0100112 s16 part_id; /* partition id in device */
Patrick Delaunay7daa91d2020-03-18 09:24:49 +0100113 int alt_id; /* alt id in usb/dfu */
114
115 struct list_head list;
116};
117
118#define STM32PROG_MAX_DEV 5
119struct stm32prog_data {
120 /* Layout information */
121 int dev_nb; /* device number*/
122 struct stm32prog_dev_t dev[STM32PROG_MAX_DEV]; /* array of device */
123 int part_nb; /* nb of partition */
124 struct stm32prog_part_t *part_array; /* array of partition */
Patrick Delaunay1008a502021-07-26 11:21:38 +0200125#ifdef CONFIG_STM32MP15x_STM32IMAGE
Patrick Delaunayc5112242020-03-18 09:24:55 +0100126 bool tee_detected;
Patrick Delaunay1008a502021-07-26 11:21:38 +0200127#endif
Patrick Delaunayc5112242020-03-18 09:24:55 +0100128 bool fsbl_nor_detected;
Patrick Delaunay7daa91d2020-03-18 09:24:49 +0100129
130 /* command internal information */
131 unsigned int phase;
132 u32 offset;
133 char error[255];
134 struct stm32prog_part_t *cur_part;
Patrick Delaunay1d96b182020-03-18 09:24:58 +0100135 u32 *otp_part;
Patrick Delaunay541c7de2020-03-18 09:24:59 +0100136 u8 pmic_part[PMIC_SIZE];
Patrick Delaunay7daa91d2020-03-18 09:24:49 +0100137
Patrick Delaunayb823d992020-03-18 09:25:00 +0100138 /* SERIAL information */
139 u32 cursor;
140 u32 packet_number;
Patrick Delaunayb823d992020-03-18 09:25:00 +0100141 u8 *buffer; /* size = USART_RAM_BUFFER_SIZE*/
142 int dfu_seq;
143 u8 read_phase;
Patrick Delaunay41e6ace2020-03-18 09:25:03 +0100144
145 /* bootm information */
146 u32 uimage;
147 u32 dtb;
Patrick Delaunayab198fe2021-05-18 15:12:06 +0200148 u32 initrd;
149 u32 initrd_size;
Patrick Delaunay7daa91d2020-03-18 09:24:49 +0100150};
151
152extern struct stm32prog_data *stm32prog_data;
153
Patrick Delaunay1d96b182020-03-18 09:24:58 +0100154/* OTP access */
155int stm32prog_otp_write(struct stm32prog_data *data, u32 offset,
156 u8 *buffer, long *size);
157int stm32prog_otp_read(struct stm32prog_data *data, u32 offset,
158 u8 *buffer, long *size);
159int stm32prog_otp_start(struct stm32prog_data *data);
160
Patrick Delaunay541c7de2020-03-18 09:24:59 +0100161/* PMIC access */
162int stm32prog_pmic_write(struct stm32prog_data *data, u32 offset,
163 u8 *buffer, long *size);
164int stm32prog_pmic_read(struct stm32prog_data *data, u32 offset,
165 u8 *buffer, long *size);
166int stm32prog_pmic_start(struct stm32prog_data *data);
167
Patrick Delaunay7daa91d2020-03-18 09:24:49 +0100168/* generic part*/
Patrick Delaunay19676ef2021-04-02 14:05:17 +0200169void stm32prog_header_check(struct raw_header_s *raw_header,
170 struct image_header_s *header);
Patrick Delaunay7daa91d2020-03-18 09:24:49 +0100171int stm32prog_dfu_init(struct stm32prog_data *data);
172void stm32prog_next_phase(struct stm32prog_data *data);
173void stm32prog_do_reset(struct stm32prog_data *data);
174
175char *stm32prog_get_error(struct stm32prog_data *data);
176
177#define stm32prog_err(args...) {\
178 if (data->phase != PHASE_RESET) { \
179 sprintf(data->error, args); \
180 data->phase = PHASE_RESET; \
Patrick Delaunay2b15af52020-11-06 19:01:30 +0100181 log_err("Error: %s\n", data->error); } \
Patrick Delaunay7daa91d2020-03-18 09:24:49 +0100182 }
183
184/* Main function */
185int stm32prog_init(struct stm32prog_data *data, ulong addr, ulong size);
Patrick Delaunay29b2e2e2021-02-25 13:37:01 +0100186void stm32prog_clean(struct stm32prog_data *data);
187
188#ifdef CONFIG_CMD_STM32PROG_SERIAL
Patrick Delaunayb823d992020-03-18 09:25:00 +0100189int stm32prog_serial_init(struct stm32prog_data *data, int link_dev);
190bool stm32prog_serial_loop(struct stm32prog_data *data);
Patrick Delaunay29b2e2e2021-02-25 13:37:01 +0100191#else
192static inline int stm32prog_serial_init(struct stm32prog_data *data, int link_dev)
193{
194 return -ENOSYS;
195}
196
197static inline bool stm32prog_serial_loop(struct stm32prog_data *data)
198{
199 return false;
200}
201#endif
202
203#ifdef CONFIG_CMD_STM32PROG_USB
Patrick Delaunay7daa91d2020-03-18 09:24:49 +0100204bool stm32prog_usb_loop(struct stm32prog_data *data, int dev);
Patrick Delaunay29b2e2e2021-02-25 13:37:01 +0100205#else
206static inline bool stm32prog_usb_loop(struct stm32prog_data *data, int dev)
207{
208 return false;
209}
210#endif
Patrick Delaunay7daa91d2020-03-18 09:24:49 +0100211
212#endif