Blame view

tools/stm32image.c 3.82 KB
4549e789c   Tom Rini   SPDX: Convert all...
1
  // SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
81260e333   Patrick Delaunay   tools/mkimage: ad...
2
3
  /*
   * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
81260e333   Patrick Delaunay   tools/mkimage: ad...
4
5
6
7
8
9
10
11
12
13
14
15
16
   */
  
  #include <image.h>
  #include "imagetool.h"
  
  /* magic ='S' 'T' 'M' 0x32 */
  #define HEADER_MAGIC be32_to_cpu(0x53544D32)
  #define VER_MAJOR_IDX	2
  #define VER_MINOR_IDX	1
  #define VER_VARIANT_IDX	0
  #define HEADER_VERSION_V1	0x1
  /* default option : bit0 => no signature */
  #define HEADER_DEFAULT_OPTION	(cpu_to_le32(0x00000001))
8099e3db6   Patrick Delaunay   mkimage: change s...
17
18
  /* default binary type for U-Boot */
  #define HEADER_TYPE_UBOOT	(cpu_to_le32(0x00000000))
81260e333   Patrick Delaunay   tools/mkimage: ad...
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  
  struct stm32_header {
  	uint32_t magic_number;
  	uint32_t image_signature[64 / 4];
  	uint32_t image_checksum;
  	uint8_t  header_version[4];
  	uint32_t image_length;
  	uint32_t image_entry_point;
  	uint32_t reserved1;
  	uint32_t load_address;
  	uint32_t reserved2;
  	uint32_t version_number;
  	uint32_t option_flags;
  	uint32_t ecdsa_algorithm;
  	uint32_t ecdsa_public_key[64 / 4];
8099e3db6   Patrick Delaunay   mkimage: change s...
34
35
  	uint32_t padding[83 / 4];
  	uint32_t binary_type;
81260e333   Patrick Delaunay   tools/mkimage: ad...
36
37
38
39
40
41
42
43
44
45
46
47
  };
  
  static struct stm32_header stm32image_header;
  
  static void stm32image_default_header(struct stm32_header *ptr)
  {
  	if (!ptr)
  		return;
  
  	ptr->magic_number = HEADER_MAGIC;
  	ptr->header_version[VER_MAJOR_IDX] = HEADER_VERSION_V1;
  	ptr->option_flags = HEADER_DEFAULT_OPTION;
441749d9d   Antonio Borneo   tools: mkimage: f...
48
  	ptr->ecdsa_algorithm = cpu_to_le32(1);
8099e3db6   Patrick Delaunay   mkimage: change s...
49
  	ptr->binary_type = HEADER_TYPE_UBOOT;
81260e333   Patrick Delaunay   tools/mkimage: ad...
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
  }
  
  static uint32_t stm32image_checksum(void *start, uint32_t len)
  {
  	uint32_t csum = 0;
  	uint32_t hdr_len = sizeof(struct stm32_header);
  	uint8_t *p;
  
  	if (len < hdr_len)
  		return 0;
  
  	p = start + hdr_len;
  	len -= hdr_len;
  
  	while (len > 0) {
  		csum += *p;
  		p++;
  		len--;
  	}
  
  	return csum;
  }
  
  static int stm32image_check_image_types(uint8_t type)
  {
  	if (type == IH_TYPE_STM32IMAGE)
  		return EXIT_SUCCESS;
  	return EXIT_FAILURE;
  }
  
  static int stm32image_verify_header(unsigned char *ptr, int image_size,
  				    struct image_tool_params *params)
  {
  	struct stm32_header *stm32hdr = (struct stm32_header *)ptr;
  	int i;
  
  	if (image_size < sizeof(struct stm32_header))
  		return -1;
  	if (stm32hdr->magic_number != HEADER_MAGIC)
  		return -1;
  	if (stm32hdr->header_version[VER_MAJOR_IDX] != HEADER_VERSION_V1)
  		return -1;
  	if (stm32hdr->reserved1 || stm32hdr->reserved2)
  		return -1;
  	for (i = 0; i < (sizeof(stm32hdr->padding) / 4); i++) {
  		if (stm32hdr->padding[i] != 0)
  			return -1;
  	}
  
  	return 0;
  }
  
  static void stm32image_print_header(const void *ptr)
  {
  	struct stm32_header *stm32hdr = (struct stm32_header *)ptr;
  
  	printf("Image Type   : STMicroelectronics STM32 V%d.%d
  ",
  	       stm32hdr->header_version[VER_MAJOR_IDX],
  	       stm32hdr->header_version[VER_MINOR_IDX]);
  	printf("Image Size   : %lu bytes
  ",
  	       (unsigned long)le32_to_cpu(stm32hdr->image_length));
  	printf("Image Load   : 0x%08x
  ",
  	       le32_to_cpu(stm32hdr->load_address));
  	printf("Entry Point  : 0x%08x
  ",
  	       le32_to_cpu(stm32hdr->image_entry_point));
  	printf("Checksum     : 0x%08x
  ",
  	       le32_to_cpu(stm32hdr->image_checksum));
  	printf("Option     : 0x%08x
  ",
  	       le32_to_cpu(stm32hdr->option_flags));
8099e3db6   Patrick Delaunay   mkimage: change s...
125
126
127
  	printf("BinaryType : 0x%08x
  ",
  	       le32_to_cpu(stm32hdr->binary_type));
81260e333   Patrick Delaunay   tools/mkimage: ad...
128
129
130
131
132
133
134
135
136
137
138
139
140
  }
  
  static void stm32image_set_header(void *ptr, struct stat *sbuf, int ifd,
  				  struct image_tool_params *params)
  {
  	struct stm32_header *stm32hdr = (struct stm32_header *)ptr;
  
  	stm32image_default_header(stm32hdr);
  
  	stm32hdr->load_address = cpu_to_le32(params->addr);
  	stm32hdr->image_entry_point = cpu_to_le32(params->ep);
  	stm32hdr->image_length = cpu_to_le32((uint32_t)sbuf->st_size -
  					     sizeof(struct stm32_header));
441749d9d   Antonio Borneo   tools: mkimage: f...
141
142
  	stm32hdr->image_checksum =
  		cpu_to_le32(stm32image_checksum(ptr, sbuf->st_size));
81260e333   Patrick Delaunay   tools/mkimage: ad...
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
  }
  
  /*
   * stm32image parameters
   */
  U_BOOT_IMAGE_TYPE(
  	stm32image,
  	"STMicroelectronics STM32MP Image support",
  	sizeof(struct stm32_header),
  	(void *)&stm32image_header,
  	NULL,
  	stm32image_verify_header,
  	stm32image_print_header,
  	stm32image_set_header,
  	NULL,
  	stm32image_check_image_types,
  	NULL,
  	NULL
  );