blob: 5ec0f94ab3eb6a27ff172b8585b46d1183b91450 [file] [log] [blame]
Steve Raeb4e4bbe2014-09-03 10:05:51 -07001/*
2 * Copyright (c) 2009, Google Inc.
3 * All rights reserved.
4 *
5 * Copyright (c) 2009-2014, The Linux Foundation. All rights reserved.
Steve Raee6ca1ad2014-09-03 10:05:54 -07006 * Portions Copyright 2014 Broadcom Corporation.
Steve Raeb4e4bbe2014-09-03 10:05:51 -07007 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * * Neither the name of The Linux Foundation nor
16 * the names of its contributors may be used to endorse or promote
17 * products derived from this software without specific prior written
18 * permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
30 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
Steve Rae1c39d852014-09-03 10:05:53 -070032 * NOTE:
33 * Although it is very similar, this license text is not identical
34 * to the "BSD-3-Clause", therefore, DO NOT MODIFY THIS LICENSE TEXT!
Steve Raeb4e4bbe2014-09-03 10:05:51 -070035 */
36
Steve Raee6ca1ad2014-09-03 10:05:54 -070037#include <config.h>
38#include <common.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060039#include <blk.h>
Maxime Ripard3d4ef382015-10-15 14:34:19 +020040#include <image-sparse.h>
Steve Raecc0f08cd2016-06-07 11:19:36 -070041#include <div64.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060042#include <log.h>
Steve Raee6ca1ad2014-09-03 10:05:54 -070043#include <malloc.h>
44#include <part.h>
45#include <sparse_format.h>
Simon Glass90526e92020-05-10 11:39:56 -060046#include <asm/cache.h>
Steve Raee6ca1ad2014-09-03 10:05:54 -070047
Maxime Ripard40aeeda2015-10-15 14:34:12 +020048#include <linux/math64.h>
qianfan Zhao62649162021-11-16 09:35:38 +080049#include <linux/err.h>
Maxime Ripard40aeeda2015-10-15 14:34:12 +020050
Alex Kiernanc4ded032018-05-29 15:30:40 +000051static void default_log(const char *ignored, char *response) {}
Jassi Brar2f83f212018-04-06 12:05:09 +053052
qianfan Zhao62649162021-11-16 09:35:38 +080053static lbaint_t write_sparse_chunk_raw(struct sparse_storage *info,
54 lbaint_t blk, lbaint_t blkcnt,
55 void *data,
56 char *response)
57{
58 lbaint_t n = blkcnt, write_blks, blks = 0, aligned_buf_blks = 100;
59 uint32_t *aligned_buf = NULL;
60
61 if (CONFIG_IS_ENABLED(SYS_DCACHE_OFF)) {
62 write_blks = info->write(info, blk, n, data);
63 if (write_blks < n)
64 goto write_fail;
65
66 return write_blks;
67 }
68
69 aligned_buf = memalign(ARCH_DMA_MINALIGN, info->blksz * aligned_buf_blks);
70 if (!aligned_buf) {
71 info->mssg("Malloc failed for: CHUNK_TYPE_RAW", response);
72 return -ENOMEM;
73 }
74
75 while (blkcnt > 0) {
76 n = min(aligned_buf_blks, blkcnt);
77 memcpy(aligned_buf, data, n * info->blksz);
78
79 /* write_blks might be > n due to NAND bad-blocks */
80 write_blks = info->write(info, blk + blks, n, aligned_buf);
81 if (write_blks < n) {
82 free(aligned_buf);
83 goto write_fail;
84 }
85
86 blks += write_blks;
87 data += n * info->blksz;
88 blkcnt -= n;
89 }
90
91 free(aligned_buf);
92 return blks;
93
94write_fail:
95 if (IS_ERR_VALUE(write_blks)) {
96 printf("%s: Write failed, block #" LBAFU " [" LBAFU "] (%lld)\n",
97 __func__, blk + blks, n, (long long)write_blks);
98 info->mssg("flash write failure", response);
99 return write_blks;
100 }
101
102 /* write_blks < n */
103 printf("%s: Write failed, block #" LBAFU " [" LBAFU "]\n",
104 __func__, blk + blks, n);
105 info->mssg("flash write failure(incomplete)", response);
106 return -1;
107}
108
Jassi Brar2f83f212018-04-06 12:05:09 +0530109int write_sparse_image(struct sparse_storage *info,
Alex Kiernanc4ded032018-05-29 15:30:40 +0000110 const char *part_name, void *data, char *response)
Maxime Ripard7bfc3b12015-10-15 14:34:11 +0200111{
Steve Raecc0f08cd2016-06-07 11:19:36 -0700112 lbaint_t blk;
113 lbaint_t blkcnt;
114 lbaint_t blks;
Sean Anderson89be8e32021-05-27 12:02:34 -0400115 uint64_t bytes_written = 0;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700116 unsigned int chunk;
117 unsigned int offset;
Sean Anderson89be8e32021-05-27 12:02:34 -0400118 uint64_t chunk_data_sz;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700119 uint32_t *fill_buf = NULL;
120 uint32_t fill_val;
121 sparse_header_t *sparse_header;
122 chunk_header_t *chunk_header;
123 uint32_t total_blocks = 0;
Steve Rae0abd63b2016-06-07 11:19:39 -0700124 int fill_buf_num_blks;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700125 int i;
Steve Rae0abd63b2016-06-07 11:19:39 -0700126 int j;
127
Alex Kiernanc232d142018-05-29 15:30:52 +0000128 fill_buf_num_blks = CONFIG_IMAGE_SPARSE_FILLBUF_SIZE / info->blksz;
Maxime Ripard7bfc3b12015-10-15 14:34:11 +0200129
Maxime Ripardbb83c0f2015-10-15 14:34:10 +0200130 /* Read and skip over sparse image header */
Steve Raecc0f08cd2016-06-07 11:19:36 -0700131 sparse_header = (sparse_header_t *)data;
Maxime Ripardbb83c0f2015-10-15 14:34:10 +0200132
Steve Raecc0f08cd2016-06-07 11:19:36 -0700133 data += sparse_header->file_hdr_sz;
134 if (sparse_header->file_hdr_sz > sizeof(sparse_header_t)) {
135 /*
136 * Skip the remaining bytes in a header that is longer than
137 * we expected.
138 */
139 data += (sparse_header->file_hdr_sz - sizeof(sparse_header_t));
140 }
Maxime Ripardbb83c0f2015-10-15 14:34:10 +0200141
Jassi Brar2f83f212018-04-06 12:05:09 +0530142 if (!info->mssg)
143 info->mssg = default_log;
144
Maxime Ripardbb83c0f2015-10-15 14:34:10 +0200145 debug("=== Sparse Image Header ===\n");
146 debug("magic: 0x%x\n", sparse_header->magic);
147 debug("major_version: 0x%x\n", sparse_header->major_version);
148 debug("minor_version: 0x%x\n", sparse_header->minor_version);
149 debug("file_hdr_sz: %d\n", sparse_header->file_hdr_sz);
150 debug("chunk_hdr_sz: %d\n", sparse_header->chunk_hdr_sz);
151 debug("blk_sz: %d\n", sparse_header->blk_sz);
152 debug("total_blks: %d\n", sparse_header->total_blks);
153 debug("total_chunks: %d\n", sparse_header->total_chunks);
154
Maxime Ripard40aeeda2015-10-15 14:34:12 +0200155 /*
156 * Verify that the sparse block size is a multiple of our
157 * storage backend block size
158 */
Steve Raecc0f08cd2016-06-07 11:19:36 -0700159 div_u64_rem(sparse_header->blk_sz, info->blksz, &offset);
Maxime Ripard40aeeda2015-10-15 14:34:12 +0200160 if (offset) {
Steve Raee6ca1ad2014-09-03 10:05:54 -0700161 printf("%s: Sparse image block size issue [%u]\n",
162 __func__, sparse_header->blk_sz);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000163 info->mssg("sparse image block size issue", response);
Jassi Brar2f83f212018-04-06 12:05:09 +0530164 return -1;
Steve Raee6ca1ad2014-09-03 10:05:54 -0700165 }
166
Steve Rae64ece842016-06-07 11:19:35 -0700167 puts("Flashing Sparse Image\n");
Steve Raee6ca1ad2014-09-03 10:05:54 -0700168
Steve Raeb4e4bbe2014-09-03 10:05:51 -0700169 /* Start processing chunks */
Steve Raecc0f08cd2016-06-07 11:19:36 -0700170 blk = info->start;
Maxime Ripard7bfc3b12015-10-15 14:34:11 +0200171 for (chunk = 0; chunk < sparse_header->total_chunks; chunk++) {
Steve Raecc0f08cd2016-06-07 11:19:36 -0700172 /* Read and skip over chunk header */
173 chunk_header = (chunk_header_t *)data;
174 data += sizeof(chunk_header_t);
Maxime Riparda5d1e042015-10-15 14:34:14 +0200175
Steve Raecc0f08cd2016-06-07 11:19:36 -0700176 if (chunk_header->chunk_type != CHUNK_TYPE_RAW) {
177 debug("=== Chunk Header ===\n");
178 debug("chunk_type: 0x%x\n", chunk_header->chunk_type);
179 debug("chunk_data_sz: 0x%x\n", chunk_header->chunk_sz);
180 debug("total_size: 0x%x\n", chunk_header->total_sz);
Steve Raeb4e4bbe2014-09-03 10:05:51 -0700181 }
Maxime Ripard7bfc3b12015-10-15 14:34:11 +0200182
Steve Raecc0f08cd2016-06-07 11:19:36 -0700183 if (sparse_header->chunk_hdr_sz > sizeof(chunk_header_t)) {
184 /*
185 * Skip the remaining bytes in a header that is longer
186 * than we expected.
187 */
188 data += (sparse_header->chunk_hdr_sz -
189 sizeof(chunk_header_t));
Maxime Ripard7bfc3b12015-10-15 14:34:11 +0200190 }
191
Sean Anderson89be8e32021-05-27 12:02:34 -0400192 chunk_data_sz = ((u64)sparse_header->blk_sz) * chunk_header->chunk_sz;
193 blkcnt = DIV_ROUND_UP_ULL(chunk_data_sz, info->blksz);
Steve Raecc0f08cd2016-06-07 11:19:36 -0700194 switch (chunk_header->chunk_type) {
195 case CHUNK_TYPE_RAW:
196 if (chunk_header->total_sz !=
197 (sparse_header->chunk_hdr_sz + chunk_data_sz)) {
Alex Kiernanc4ded032018-05-29 15:30:40 +0000198 info->mssg("Bogus chunk size for chunk type Raw",
199 response);
Jassi Brar2f83f212018-04-06 12:05:09 +0530200 return -1;
Maxime Ripard7bfc3b12015-10-15 14:34:11 +0200201 }
202
Steve Raecc0f08cd2016-06-07 11:19:36 -0700203 if (blk + blkcnt > info->start + info->size) {
204 printf(
205 "%s: Request would exceed partition size!\n",
206 __func__);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000207 info->mssg("Request would exceed partition size!",
208 response);
Jassi Brar2f83f212018-04-06 12:05:09 +0530209 return -1;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700210 }
Maxime Ripard7bfc3b12015-10-15 14:34:11 +0200211
qianfan Zhao62649162021-11-16 09:35:38 +0800212 blks = write_sparse_chunk_raw(info, blk, blkcnt,
213 data, response);
214 if (blks < 0)
Jassi Brar2f83f212018-04-06 12:05:09 +0530215 return -1;
qianfan Zhao62649162021-11-16 09:35:38 +0800216
Steve Raecc0f08cd2016-06-07 11:19:36 -0700217 blk += blks;
Sean Anderson89be8e32021-05-27 12:02:34 -0400218 bytes_written += ((u64)blkcnt) * info->blksz;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700219 total_blocks += chunk_header->chunk_sz;
220 data += chunk_data_sz;
221 break;
222
223 case CHUNK_TYPE_FILL:
224 if (chunk_header->total_sz !=
225 (sparse_header->chunk_hdr_sz + sizeof(uint32_t))) {
Alex Kiernanc4ded032018-05-29 15:30:40 +0000226 info->mssg("Bogus chunk size for chunk type FILL", response);
Jassi Brar2f83f212018-04-06 12:05:09 +0530227 return -1;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700228 }
229
230 fill_buf = (uint32_t *)
231 memalign(ARCH_DMA_MINALIGN,
Steve Rae0abd63b2016-06-07 11:19:39 -0700232 ROUNDUP(
233 info->blksz * fill_buf_num_blks,
234 ARCH_DMA_MINALIGN));
Steve Raecc0f08cd2016-06-07 11:19:36 -0700235 if (!fill_buf) {
Alex Kiernanc4ded032018-05-29 15:30:40 +0000236 info->mssg("Malloc failed for: CHUNK_TYPE_FILL",
237 response);
Jassi Brar2f83f212018-04-06 12:05:09 +0530238 return -1;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700239 }
240
241 fill_val = *(uint32_t *)data;
242 data = (char *)data + sizeof(uint32_t);
243
Steve Rae0abd63b2016-06-07 11:19:39 -0700244 for (i = 0;
245 i < (info->blksz * fill_buf_num_blks /
246 sizeof(fill_val));
247 i++)
Steve Raecc0f08cd2016-06-07 11:19:36 -0700248 fill_buf[i] = fill_val;
249
250 if (blk + blkcnt > info->start + info->size) {
251 printf(
252 "%s: Request would exceed partition size!\n",
253 __func__);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000254 info->mssg("Request would exceed partition size!",
255 response);
Jassi Brar2f83f212018-04-06 12:05:09 +0530256 return -1;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700257 }
258
Steve Rae0abd63b2016-06-07 11:19:39 -0700259 for (i = 0; i < blkcnt;) {
260 j = blkcnt - i;
261 if (j > fill_buf_num_blks)
262 j = fill_buf_num_blks;
263 blks = info->write(info, blk, j, fill_buf);
264 /* blks might be > j (eg. NAND bad-blocks) */
265 if (blks < j) {
266 printf("%s: %s " LBAFU " [%d]\n",
267 __func__,
268 "Write failed, block #",
269 blk, j);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000270 info->mssg("flash write failure",
271 response);
Steve Raecc0f08cd2016-06-07 11:19:36 -0700272 free(fill_buf);
Jassi Brar2f83f212018-04-06 12:05:09 +0530273 return -1;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700274 }
275 blk += blks;
Steve Rae0abd63b2016-06-07 11:19:39 -0700276 i += j;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700277 }
Sean Anderson89be8e32021-05-27 12:02:34 -0400278 bytes_written += ((u64)blkcnt) * info->blksz;
279 total_blocks += DIV_ROUND_UP_ULL(chunk_data_sz,
280 sparse_header->blk_sz);
Steve Raecc0f08cd2016-06-07 11:19:36 -0700281 free(fill_buf);
282 break;
283
284 case CHUNK_TYPE_DONT_CARE:
Steve Rae2c724042016-06-07 11:19:38 -0700285 blk += info->reserve(info, blk, blkcnt);
Steve Raecc0f08cd2016-06-07 11:19:36 -0700286 total_blocks += chunk_header->chunk_sz;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700287 break;
288
289 case CHUNK_TYPE_CRC32:
290 if (chunk_header->total_sz !=
291 sparse_header->chunk_hdr_sz) {
Alex Kiernanc4ded032018-05-29 15:30:40 +0000292 info->mssg("Bogus chunk size for chunk type Dont Care",
293 response);
Jassi Brar2f83f212018-04-06 12:05:09 +0530294 return -1;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700295 }
296 total_blocks += chunk_header->chunk_sz;
297 data += chunk_data_sz;
298 break;
299
300 default:
301 printf("%s: Unknown chunk type: %x\n", __func__,
302 chunk_header->chunk_type);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000303 info->mssg("Unknown chunk type", response);
Jassi Brar2f83f212018-04-06 12:05:09 +0530304 return -1;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700305 }
Steve Raeb4e4bbe2014-09-03 10:05:51 -0700306 }
307
Steve Raee3793542016-02-09 11:19:11 -0800308 debug("Wrote %d blocks, expected to write %d blocks\n",
Steve Raecc0f08cd2016-06-07 11:19:36 -0700309 total_blocks, sparse_header->total_blks);
Sean Anderson89be8e32021-05-27 12:02:34 -0400310 printf("........ wrote %llu bytes to '%s'\n", bytes_written, part_name);
Steve Raeb4e4bbe2014-09-03 10:05:51 -0700311
Jassi Brar2f83f212018-04-06 12:05:09 +0530312 if (total_blocks != sparse_header->total_blks) {
Alex Kiernanc4ded032018-05-29 15:30:40 +0000313 info->mssg("sparse image write failure", response);
Jassi Brar2f83f212018-04-06 12:05:09 +0530314 return -1;
315 }
Steve Raeb4e4bbe2014-09-03 10:05:51 -0700316
Jassi Brar2f83f212018-04-06 12:05:09 +0530317 return 0;
Steve Raeb4e4bbe2014-09-03 10:05:51 -0700318}