blob: b165468145060a851f1d68c868cf2518c4f25f2e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Maxime Ripardbf8940d2015-10-15 14:34:17 +02002/*
3 * Copyright 2014 Broadcom Corporation.
4 * Copyright 2015 Free Electrons.
Maxime Ripardbf8940d2015-10-15 14:34:17 +02005 */
6
7#include <config.h>
8#include <common.h>
Simon Glassb79fdc72020-05-10 11:39:54 -06009#include <flash.h>
Maxime Ripardbf8940d2015-10-15 14:34:17 +020010
Maxime Ripardbf8940d2015-10-15 14:34:17 +020011#include <fastboot.h>
Maxime Ripard3d4ef382015-10-15 14:34:19 +020012#include <image-sparse.h>
Maxime Ripardbf8940d2015-10-15 14:34:17 +020013
14#include <linux/mtd/mtd.h>
15#include <jffs2/jffs2.h>
16#include <nand.h>
17
Maxime Ripardbf8940d2015-10-15 14:34:17 +020018struct fb_nand_sparse {
Steve Raecc0f08cd2016-06-07 11:19:36 -070019 struct mtd_info *mtd;
Maxime Ripardbf8940d2015-10-15 14:34:17 +020020 struct part_info *part;
21};
22
Maxime Ripard6fb77c42015-10-15 14:34:18 +020023__weak int board_fastboot_erase_partition_setup(char *name)
24{
25 return 0;
26}
27
28__weak int board_fastboot_write_partition_setup(char *name)
29{
30 return 0;
31}
32
Steve Rae9bc34792016-06-07 11:19:37 -070033static int fb_nand_lookup(const char *partname,
Sergey Kubushyn61717572016-06-07 14:22:59 -070034 struct mtd_info **mtd,
Alex Kiernanc4ded032018-05-29 15:30:40 +000035 struct part_info **part,
36 char *response)
Maxime Ripardbf8940d2015-10-15 14:34:17 +020037{
38 struct mtd_device *dev;
39 int ret;
40 u8 pnum;
41
42 ret = mtdparts_init();
43 if (ret) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +090044 pr_err("Cannot initialize MTD partitions\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +000045 fastboot_fail("cannot init mtdparts", response);
Maxime Ripardbf8940d2015-10-15 14:34:17 +020046 return ret;
47 }
48
49 ret = find_dev_and_part(partname, &dev, &pnum, part);
50 if (ret) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +090051 pr_err("cannot find partition: '%s'", partname);
Alex Kiernanc4ded032018-05-29 15:30:40 +000052 fastboot_fail("cannot find partition", response);
Maxime Ripardbf8940d2015-10-15 14:34:17 +020053 return ret;
54 }
55
56 if (dev->id->type != MTD_DEV_TYPE_NAND) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +090057 pr_err("partition '%s' is not stored on a NAND device",
Maxime Ripardbf8940d2015-10-15 14:34:17 +020058 partname);
Alex Kiernanc4ded032018-05-29 15:30:40 +000059 fastboot_fail("not a NAND device", response);
Maxime Ripardbf8940d2015-10-15 14:34:17 +020060 return -EINVAL;
61 }
62
Grygorii Strashkoedba8cc2017-06-26 19:12:56 -050063 *mtd = get_nand_dev_by_index(dev->id->num);
Maxime Ripardbf8940d2015-10-15 14:34:17 +020064
65 return 0;
66}
67
Scott Wood151c06e2016-05-30 13:57:54 -050068static int _fb_nand_erase(struct mtd_info *mtd, struct part_info *part)
Maxime Ripardbf8940d2015-10-15 14:34:17 +020069{
70 nand_erase_options_t opts;
71 int ret;
72
73 memset(&opts, 0, sizeof(opts));
74 opts.offset = part->offset;
75 opts.length = part->size;
76 opts.quiet = 1;
77
78 printf("Erasing blocks 0x%llx to 0x%llx\n",
79 part->offset, part->offset + part->size);
80
Scott Wood151c06e2016-05-30 13:57:54 -050081 ret = nand_erase_opts(mtd, &opts);
Maxime Ripardbf8940d2015-10-15 14:34:17 +020082 if (ret)
83 return ret;
84
85 printf("........ erased 0x%llx bytes from '%s'\n",
86 part->size, part->name);
87
88 return 0;
89}
90
Scott Wood151c06e2016-05-30 13:57:54 -050091static int _fb_nand_write(struct mtd_info *mtd, struct part_info *part,
Alex Kiernanf73a7df2018-05-29 15:30:53 +000092 void *buffer, u32 offset,
Alex Kiernan52fdf102018-05-29 15:30:45 +000093 size_t length, size_t *written)
Maxime Ripardbf8940d2015-10-15 14:34:17 +020094{
95 int flags = WITH_WR_VERIFY;
96
97#ifdef CONFIG_FASTBOOT_FLASH_NAND_TRIMFFS
98 flags |= WITH_DROP_FFS;
99#endif
100
Scott Wood151c06e2016-05-30 13:57:54 -0500101 return nand_write_skip_bad(mtd, offset, &length, written,
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200102 part->size - (offset - part->offset),
103 buffer, flags);
104}
105
Steve Raecc0f08cd2016-06-07 11:19:36 -0700106static lbaint_t fb_nand_sparse_write(struct sparse_storage *info,
107 lbaint_t blk, lbaint_t blkcnt, const void *buffer)
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200108{
Steve Raecc0f08cd2016-06-07 11:19:36 -0700109 struct fb_nand_sparse *sparse = info->priv;
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200110 size_t written;
111 int ret;
112
Steve Raecc0f08cd2016-06-07 11:19:36 -0700113 ret = _fb_nand_write(sparse->mtd, sparse->part, (void *)buffer,
114 blk * info->blksz,
115 blkcnt * info->blksz, &written);
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200116 if (ret < 0) {
117 printf("Failed to write sparse chunk\n");
118 return ret;
119 }
120
Steve Raecc0f08cd2016-06-07 11:19:36 -0700121/* TODO - verify that the value "written" includes the "bad-blocks" ... */
122
123 /*
124 * the return value must be 'blkcnt' ("good-blocks") plus the
125 * number of "bad-blocks" encountered within this space...
126 */
127 return written / info->blksz;
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200128}
129
Steve Rae2c724042016-06-07 11:19:38 -0700130static lbaint_t fb_nand_sparse_reserve(struct sparse_storage *info,
131 lbaint_t blk, lbaint_t blkcnt)
132{
133 int bad_blocks = 0;
134
135/*
136 * TODO - implement a function to determine the total number
137 * of blocks which must be used in order to reserve the specified
138 * number ("blkcnt") of "good-blocks", starting at "blk"...
139 * ( possibly something like the "check_skip_len()" function )
140 */
141
142 /*
143 * the return value must be 'blkcnt' ("good-blocks") plus the
144 * number of "bad-blocks" encountered within this space...
145 */
146 return blkcnt + bad_blocks;
147}
148
Alex Kiernand1a119d2018-05-29 15:30:48 +0000149/**
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000150 * fastboot_nand_get_part_info() - Lookup NAND partion by name
151 *
152 * @part_name: Named device to lookup
153 * @part_info: Pointer to returned part_info pointer
154 * @response: Pointer to fastboot response buffer
155 */
Sam Protsenkocacb03e2019-06-13 21:11:07 +0300156int fastboot_nand_get_part_info(const char *part_name,
157 struct part_info **part_info, char *response)
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000158{
159 struct mtd_info *mtd = NULL;
160
161 return fb_nand_lookup(part_name, &mtd, part_info, response);
162}
163
164/**
Alex Kiernand1a119d2018-05-29 15:30:48 +0000165 * fastboot_nand_flash_write() - Write image to NAND for fastboot
166 *
167 * @cmd: Named device to write image to
168 * @download_buffer: Pointer to image data
169 * @download_bytes: Size of image data
170 * @response: Pointer to fastboot response buffer
171 */
172void fastboot_nand_flash_write(const char *cmd, void *download_buffer,
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000173 u32 download_bytes, char *response)
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200174{
175 struct part_info *part;
Scott Wood151c06e2016-05-30 13:57:54 -0500176 struct mtd_info *mtd = NULL;
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200177 int ret;
178
Alex Kiernanc4ded032018-05-29 15:30:40 +0000179 ret = fb_nand_lookup(cmd, &mtd, &part, response);
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200180 if (ret) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900181 pr_err("invalid NAND device");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000182 fastboot_fail("invalid NAND device", response);
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200183 return;
184 }
185
Maxime Ripard6fb77c42015-10-15 14:34:18 +0200186 ret = board_fastboot_write_partition_setup(part->name);
187 if (ret)
188 return;
189
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200190 if (is_sparse_image(download_buffer)) {
191 struct fb_nand_sparse sparse_priv;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700192 struct sparse_storage sparse;
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200193
Steve Raecc0f08cd2016-06-07 11:19:36 -0700194 sparse_priv.mtd = mtd;
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200195 sparse_priv.part = part;
196
Steve Raecc0f08cd2016-06-07 11:19:36 -0700197 sparse.blksz = mtd->writesize;
198 sparse.start = part->offset / sparse.blksz;
199 sparse.size = part->size / sparse.blksz;
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200200 sparse.write = fb_nand_sparse_write;
Steve Rae2c724042016-06-07 11:19:38 -0700201 sparse.reserve = fb_nand_sparse_reserve;
Jassi Brar2f83f212018-04-06 12:05:09 +0530202 sparse.mssg = fastboot_fail;
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200203
Steve Raecc0f08cd2016-06-07 11:19:36 -0700204 printf("Flashing sparse image at offset " LBAFU "\n",
205 sparse.start);
206
207 sparse.priv = &sparse_priv;
Alex Kiernanc4ded032018-05-29 15:30:40 +0000208 ret = write_sparse_image(&sparse, cmd, download_buffer,
209 response);
Jassi Brar2f83f212018-04-06 12:05:09 +0530210 if (!ret)
Alex Kiernanc4ded032018-05-29 15:30:40 +0000211 fastboot_okay(NULL, response);
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200212 } else {
213 printf("Flashing raw image at offset 0x%llx\n",
214 part->offset);
215
Scott Wood151c06e2016-05-30 13:57:54 -0500216 ret = _fb_nand_write(mtd, part, download_buffer, part->offset,
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200217 download_bytes, NULL);
218
219 printf("........ wrote %u bytes to '%s'\n",
220 download_bytes, part->name);
221 }
222
223 if (ret) {
Alex Kiernanc4ded032018-05-29 15:30:40 +0000224 fastboot_fail("error writing the image", response);
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200225 return;
226 }
227
Alex Kiernanc4ded032018-05-29 15:30:40 +0000228 fastboot_okay(NULL, response);
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200229}
230
Alex Kiernand1a119d2018-05-29 15:30:48 +0000231/**
232 * fastboot_nand_flash_erase() - Erase NAND for fastboot
233 *
234 * @cmd: Named device to erase
235 * @response: Pointer to fastboot response buffer
236 */
237void fastboot_nand_erase(const char *cmd, char *response)
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200238{
239 struct part_info *part;
Scott Wood151c06e2016-05-30 13:57:54 -0500240 struct mtd_info *mtd = NULL;
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200241 int ret;
242
Alex Kiernanc4ded032018-05-29 15:30:40 +0000243 ret = fb_nand_lookup(cmd, &mtd, &part, response);
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200244 if (ret) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900245 pr_err("invalid NAND device");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000246 fastboot_fail("invalid NAND device", response);
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200247 return;
248 }
249
Maxime Ripard6fb77c42015-10-15 14:34:18 +0200250 ret = board_fastboot_erase_partition_setup(part->name);
251 if (ret)
252 return;
253
Scott Wood151c06e2016-05-30 13:57:54 -0500254 ret = _fb_nand_erase(mtd, part);
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200255 if (ret) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900256 pr_err("failed erasing from device %s", mtd->name);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000257 fastboot_fail("failed erasing from device", response);
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200258 return;
259 }
260
Alex Kiernanc4ded032018-05-29 15:30:40 +0000261 fastboot_okay(NULL, response);
Maxime Ripardbf8940d2015-10-15 14:34:17 +0200262}