blob: 58c6d10b88870210a286da05ec5d7fc8f172da22 [file] [log] [blame]
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00001/*
2 * Support for Atmel AT45DB series DataFlash chips.
3 * This file is part of the flashrom project.
4 *
5 * Copyright (C) 2012 Aidan Thornton
6 * Copyright (C) 2013 Stefan Tauner
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Aidan Thorntondb4e87d2013-08-27 18:01:53 +000016 */
17
18#include <string.h>
19#include "flash.h"
20#include "chipdrivers.h"
21#include "programmer.h"
22#include "spi.h"
23
24/* Status register bits */
25#define AT45DB_READY (1<<7)
26#define AT45DB_CMP (1<<6)
27#define AT45DB_PROT (1<<1)
28#define AT45DB_POWEROF2 (1<<0)
29
30/* Opcodes */
31#define AT45DB_STATUS 0xD7 /* NB: this is a block erase command on most other chips(!). */
32#define AT45DB_DISABLE_PROTECT 0x3D, 0x2A, 0x7F, 0x9A
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +000033#define AT45DB_READ_ARRAY 0xE8
Aidan Thorntondb4e87d2013-08-27 18:01:53 +000034#define AT45DB_READ_PROTECT 0x32
35#define AT45DB_READ_LOCKDOWN 0x35
36#define AT45DB_PAGE_ERASE 0x81
37#define AT45DB_BLOCK_ERASE 0x50
38#define AT45DB_SECTOR_ERASE 0x7C
39#define AT45DB_CHIP_ERASE 0xC7
40#define AT45DB_CHIP_ERASE_ADDR 0x94809A /* Magic address. See usage. */
41#define AT45DB_BUFFER1_WRITE 0x84
42#define AT45DB_BUFFER1_PAGE_PROGRAM 0x88
43/* Buffer 2 is unused yet.
44#define AT45DB_BUFFER2_WRITE 0x87
45#define AT45DB_BUFFER2_PAGE_PROGRAM 0x89
46*/
47
48static uint8_t at45db_read_status_register(struct flashctx *flash, uint8_t *status)
49{
50 static const uint8_t cmd[] = { AT45DB_STATUS };
51
52 int ret = spi_send_command(flash, sizeof(cmd), 1, cmd, status);
53 if (ret != 0)
54 msg_cerr("Reading the status register failed!\n");
55 else
56 msg_cspew("Status register: 0x%02x.\n", *status);
57 return ret;
58}
59
60int spi_disable_blockprotect_at45db(struct flashctx *flash)
61{
62 static const uint8_t cmd[4] = { AT45DB_DISABLE_PROTECT }; /* NB: 4 bytes magic number */
63 int ret = spi_send_command(flash, sizeof(cmd), 0, cmd, NULL);
64 if (ret != 0) {
65 msg_cerr("Sending disable lockdown failed!\n");
66 return ret;
67 }
68 uint8_t status;
69 ret = at45db_read_status_register(flash, &status);
70 if (ret != 0 || ((status & AT45DB_PROT) != 0)) {
71 msg_cerr("Disabling lockdown failed!\n");
72 return 1;
73 }
74
75 return 0;
76}
77
78static unsigned int at45db_get_sector_count(struct flashctx *flash)
79{
80 unsigned int i, j;
81 unsigned int cnt = 0;
82 for (i = 0; i < NUM_ERASEFUNCTIONS; i++) {
83 if (flash->chip->block_erasers[i].block_erase == &spi_erase_at45db_sector) {
84 for (j = 0; j < NUM_ERASEREGIONS; j++) {
85 cnt += flash->chip->block_erasers[i].eraseblocks[j].count;
86 }
87 }
88 }
89 msg_cspew("%s: number of sectors=%u\n", __func__, cnt);
90 return cnt;
91}
92
93/* Reads and prettyprints protection/lockdown registers.
94 * Some elegance of the printouts had to be cut down a bit to share this code. */
95static uint8_t at45db_prettyprint_protection_register(struct flashctx *flash, uint8_t opcode, const char *regname)
96{
97 const uint8_t cmd[] = { opcode, 0, 0, 0 };
Stefan Tauner23e10b82016-01-23 16:16:49 +000098 const size_t sec_count = at45db_get_sector_count(flash);
99 if (sec_count < 2)
100 return 0;
101
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000102 /* The first two sectors share the first result byte. */
103 uint8_t buf[at45db_get_sector_count(flash) - 1];
104
105 int ret = spi_send_command(flash, sizeof(cmd), sizeof(buf), cmd, buf);
106 if (ret != 0) {
107 msg_cerr("Reading the %s register failed!\n", regname);
108 return ret;
109 }
110
111 unsigned int i;
112 for (i = 0; i < sizeof(buf); i++) {
113 if (buf[i] != 0x00)
114 break;
115 if (i == sizeof(buf) - 1) {
116 msg_cdbg("No Sector is %sed.\n", regname);
117 return 0;
118 }
119 }
120
121 /* TODO: print which addresses are mapped to (un)locked sectors. */
122 msg_cdbg("Sector 0a is %s%sed.\n", ((buf[0] & 0xC0) == 0x00) ? "un" : "", regname);
123 msg_cdbg("Sector 0b is %s%sed.\n", ((buf[0] & 0x30) == 0x00) ? "un" : "", regname);
124 for (i = 1; i < sizeof(buf); i++)
125 msg_cdbg("Sector %2u is %s%sed.\n", i, (buf[i] == 0x00) ? "un" : "", regname);
126
127 return 0;
128}
129
130/* bit 7: busy flag
131 * bit 6: memory/buffer compare result
132 * bit 5-2: density (encoding see below)
133 * bit 1: protection enabled (soft or hard)
134 * bit 0: "power of 2" page size indicator (e.g. 1 means 256B; 0 means 264B)
135 *
136 * 5-2 encoding: bit 2 is always 1, bits 3-5 encode the density as "2^(bits - 1)" in Mb e.g.:
137 * AT45DB161D 1011 16Mb */
138int spi_prettyprint_status_register_at45db(struct flashctx *flash)
139{
140 uint8_t status;
141 if (at45db_read_status_register(flash, &status) != 0) {
142 return 1;
143 }
144
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +0000145 /* AT45DB321C does not support lockdown or a page size of a power of 2... */
146 const bool isAT45DB321C = (strcmp(flash->chip->name, "AT45DB321C") == 0);
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000147 msg_cdbg("Chip status register is 0x%02x\n", status);
148 msg_cdbg("Chip status register: Bit 7 / Ready is %sset\n", (status & AT45DB_READY) ? "" : "not ");
149 msg_cdbg("Chip status register: Bit 6 / Compare match is %sset\n", (status & AT45DB_CMP) ? "" : "not ");
150 spi_prettyprint_status_register_bit(status, 5);
151 spi_prettyprint_status_register_bit(status, 4);
152 spi_prettyprint_status_register_bit(status, 3);
153 spi_prettyprint_status_register_bit(status, 2);
154 const uint8_t dens = (status >> 3) & 0x7; /* Bit 2 is always 1, we use the other bits only */
155 msg_cdbg("Chip status register: Density is %u Mb\n", 1 << (dens - 1));
156 msg_cdbg("Chip status register: Bit 1 / Protection is %sset\n", (status & AT45DB_PROT) ? "" : "not ");
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +0000157
158 if (isAT45DB321C)
159 spi_prettyprint_status_register_bit(status, 0);
160 else
161 msg_cdbg("Chip status register: Bit 0 / \"Power of 2\" is %sset\n",
162 (status & AT45DB_POWEROF2) ? "" : "not ");
163
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000164 if (status & AT45DB_PROT)
165 at45db_prettyprint_protection_register(flash, AT45DB_READ_PROTECT, "protect");
166
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +0000167 if (!isAT45DB321C)
168 at45db_prettyprint_protection_register(flash, AT45DB_READ_LOCKDOWN, "lock");
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000169
170 return 0;
171}
172
173/* Probe function for AT45DB* chips that support multiple page sizes. */
174int probe_spi_at45db(struct flashctx *flash)
175{
176 uint8_t status;
177 struct flashchip *chip = flash->chip;
178
179 if (!probe_spi_rdid(flash))
180 return 0;
181
182 /* Some AT45DB* chips support two different page sizes each (e.g. 264 and 256 B). In order to tell which
183 * page size this chip has we need to read the status register. */
184 if (at45db_read_status_register(flash, &status) != 0)
185 return 0;
186
187 /* We assume sane power-of-2 page sizes and adjust the chip attributes in case this is not the case. */
188 if ((status & AT45DB_POWEROF2) == 0) {
189 chip->total_size = (chip->total_size / 32) * 33;
190 chip->page_size = (chip->page_size / 32) * 33;
191
192 unsigned int i, j;
193 for (i = 0; i < NUM_ERASEFUNCTIONS; i++) {
194 struct block_eraser *eraser = &chip->block_erasers[i];
195 for (j = 0; j < NUM_ERASEREGIONS; j++) {
196 eraser->eraseblocks[j].size = (eraser->eraseblocks[j].size / 32) * 33;
197 }
198 }
199 }
200
201 switch (chip->page_size) {
202 case 256: chip->gran = write_gran_256bytes; break;
203 case 264: chip->gran = write_gran_264bytes; break;
204 case 512: chip->gran = write_gran_512bytes; break;
205 case 528: chip->gran = write_gran_528bytes; break;
206 case 1024: chip->gran = write_gran_1024bytes; break;
207 case 1056: chip->gran = write_gran_1056bytes; break;
208 default:
209 msg_cerr("%s: unknown page size %d.\n", __func__, chip->page_size);
210 return 0;
211 }
212
213 msg_cdbg2("%s: total size %i kB, page size %i B\n", __func__, chip->total_size * 1024, chip->page_size);
214
215 return 1;
216}
217
Nico Huberc3b02dc2023-08-12 01:13:45 +0200218/* In case of non-power-of-two page sizes we need to convert the address flashprog uses to the address the
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000219 * DataFlash chips use. The latter uses a segmented address space where the page address is encoded in the
220 * more significant bits and the offset within the page is encoded in the less significant bits. The exact
221 * partition depends on the page size.
222 */
223static unsigned int at45db_convert_addr(unsigned int addr, unsigned int page_size)
224{
225 unsigned int page_bits = address_to_bits(page_size - 1);
226 unsigned int at45db_addr = ((addr / page_size) << page_bits) | (addr % page_size);
227 msg_cspew("%s: addr=0x%x, page_size=%u, page_bits=%u -> at45db_addr=0x%x\n",
228 __func__, addr, page_size, page_bits, at45db_addr);
229 return at45db_addr;
230}
231
232int spi_read_at45db(struct flashctx *flash, uint8_t *buf, unsigned int addr, unsigned int len)
233{
234 const unsigned int page_size = flash->chip->page_size;
235 const unsigned int total_size = flash->chip->total_size * 1024;
236 if ((addr + len) > total_size) {
237 msg_cerr("%s: tried to read beyond flash boundary: addr=%u, len=%u, size=%u\n",
238 __func__, addr, len, total_size);
239 return 1;
240 }
241
242 /* We have to split this up into chunks to fit within the programmer's read size limit, but those
243 * chunks can cross page boundaries. */
Nico Huber9a11cbf2023-01-13 01:19:07 +0100244 const unsigned int max_data_read = flash->mst.spi->max_data_read;
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000245 const unsigned int max_chunk = (max_data_read > 0) ? max_data_read : page_size;
Stefan Tauner7141b982014-05-16 17:52:04 +0000246 while (len > 0) {
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000247 unsigned int chunk = min(max_chunk, len);
Nico Huberca1c7fd2023-04-28 21:44:41 +0000248 int ret = spi_nbyte_read(flash, buf, at45db_convert_addr(addr, page_size), chunk);
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000249 if (ret) {
250 msg_cerr("%s: error sending read command!\n", __func__);
251 return ret;
252 }
Richard Hughes842d6782021-01-15 09:48:12 +0000253 flashprog_progress_add(flash, chunk);
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000254 addr += chunk;
Stefan Tauner7141b982014-05-16 17:52:04 +0000255 buf += chunk;
256 len -= chunk;
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000257 }
258
259 return 0;
260}
261
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +0000262/* Legacy continuous read, used where spi_read_at45db() is not available.
263 * The first 4 (dummy) bytes read need to be discarded. */
264int spi_read_at45db_e8(struct flashctx *flash, uint8_t *buf, unsigned int addr, unsigned int len)
265{
266 const unsigned int page_size = flash->chip->page_size;
267 const unsigned int total_size = flash->chip->total_size * 1024;
268 if ((addr + len) > total_size) {
269 msg_cerr("%s: tried to read beyond flash boundary: addr=%u, len=%u, size=%u\n",
270 __func__, addr, len, total_size);
271 return 1;
272 }
273
274 /* We have to split this up into chunks to fit within the programmer's read size limit, but those
275 * chunks can cross page boundaries. */
Nico Huber9a11cbf2023-01-13 01:19:07 +0100276 const unsigned int max_data_read = flash->mst.spi->max_data_read;
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +0000277 const unsigned int max_chunk = (max_data_read > 0) ? max_data_read : page_size;
Stefan Tauner7141b982014-05-16 17:52:04 +0000278 while (len > 0) {
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +0000279 const unsigned int addr_at45 = at45db_convert_addr(addr, page_size);
280 const unsigned char cmd[] = {
281 AT45DB_READ_ARRAY,
282 (addr_at45 >> 16) & 0xff,
283 (addr_at45 >> 8) & 0xff,
284 (addr_at45 >> 0) & 0xff
285 };
286 /* We need to leave place for 4 dummy bytes and handle them explicitly. */
287 unsigned int chunk = min(max_chunk, len + 4);
288 uint8_t tmp[chunk];
289 int ret = spi_send_command(flash, sizeof(cmd), chunk, cmd, tmp);
290 if (ret) {
291 msg_cerr("%s: error sending read command!\n", __func__);
292 return ret;
293 }
294 /* Copy result without dummy bytes into buf and advance address counter respectively. */
Stefan Tauner7141b982014-05-16 17:52:04 +0000295 memcpy(buf, tmp + 4, chunk - 4);
Richard Hughes842d6782021-01-15 09:48:12 +0000296 flashprog_progress_add(flash, chunk - 4);
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +0000297 addr += chunk - 4;
Stefan Tauner7141b982014-05-16 17:52:04 +0000298 buf += chunk - 4;
299 len -= chunk - 4;
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +0000300 }
301 return 0;
302}
303
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000304/* Returns 0 when ready, 1 on errors and timeouts. */
305static int at45db_wait_ready (struct flashctx *flash, unsigned int us, unsigned int retries)
306{
307 while (true) {
308 uint8_t status;
309 int ret = at45db_read_status_register(flash, &status);
310 if ((status & AT45DB_READY) == AT45DB_READY)
311 return 0;
312 if (ret != 0 || retries-- == 0)
313 return 1;
314 programmer_delay(us);
315 }
316}
317
318static int at45db_erase(struct flashctx *flash, uint8_t opcode, unsigned int at45db_addr, unsigned int stepsize, unsigned int retries)
319{
320 const uint8_t cmd[] = {
321 opcode,
322 (at45db_addr >> 16) & 0xff,
323 (at45db_addr >> 8) & 0xff,
324 (at45db_addr >> 0) & 0xff
325 };
326
327 /* Send erase command. */
328 int ret = spi_send_command(flash, sizeof(cmd), 0, cmd, NULL);
329 if (ret != 0) {
330 msg_cerr("%s: error sending erase command!\n", __func__);
331 return ret;
332 }
333
334 /* Wait for completion. */
335 ret = at45db_wait_ready(flash, stepsize, retries);
336 if (ret != 0)
Stefan Tauner23e10b82016-01-23 16:16:49 +0000337 msg_cerr("%s: chip did not become ready again after sending the erase command!\n", __func__);
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000338
339 return ret;
340}
341
342int spi_erase_at45db_page(struct flashctx *flash, unsigned int addr, unsigned int blocklen)
343{
344 const unsigned int page_size = flash->chip->page_size;
345 const unsigned int total_size = flash->chip->total_size * 1024;
Elyes HAOUAS0cacb112019-02-04 12:16:38 +0100346
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000347 if ((addr % page_size) != 0 || (blocklen % page_size) != 0) {
348 msg_cerr("%s: cannot erase partial pages: addr=%u, blocklen=%u\n", __func__, addr, blocklen);
349 return 1;
350 }
351
352 if ((addr + blocklen) > total_size) {
353 msg_cerr("%s: tried to erase a block beyond flash boundary: addr=%u, blocklen=%u, size=%u\n",
354 __func__, addr, blocklen, total_size);
355 return 1;
356 }
357
358 /* Needs typically about 35 ms for completion, so let's wait 100 ms in 500 us steps. */
359 return at45db_erase(flash, AT45DB_PAGE_ERASE, at45db_convert_addr(addr, page_size), 500, 200);
360}
361
362int spi_erase_at45db_block(struct flashctx *flash, unsigned int addr, unsigned int blocklen)
363{
364 const unsigned int page_size = flash->chip->page_size;
365 const unsigned int total_size = flash->chip->total_size * 1024;
Elyes HAOUAS0cacb112019-02-04 12:16:38 +0100366
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000367 if ((addr % page_size) != 0 || (blocklen % page_size) != 0) { // FIXME: should check blocks not pages
368 msg_cerr("%s: cannot erase partial pages: addr=%u, blocklen=%u\n", __func__, addr, blocklen);
369 return 1;
370 }
371
372 if ((addr + blocklen) > total_size) {
373 msg_cerr("%s: tried to erase a block beyond flash boundary: addr=%u, blocklen=%u, size=%u\n",
374 __func__, addr, blocklen, total_size);
375 return 1;
376 }
377
378 /* Needs typically between 20 and 100 ms for completion, so let's wait 300 ms in 1 ms steps. */
379 return at45db_erase(flash, AT45DB_BLOCK_ERASE, at45db_convert_addr(addr, page_size), 1000, 300);
380}
381
382int spi_erase_at45db_sector(struct flashctx *flash, unsigned int addr, unsigned int blocklen)
383{
384 const unsigned int page_size = flash->chip->page_size;
385 const unsigned int total_size = flash->chip->total_size * 1024;
Elyes HAOUAS0cacb112019-02-04 12:16:38 +0100386
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000387 if ((addr % page_size) != 0 || (blocklen % page_size) != 0) { // FIXME: should check sectors not pages
388 msg_cerr("%s: cannot erase partial pages: addr=%u, blocklen=%u\n", __func__, addr, blocklen);
389 return 1;
390 }
391
392 if ((addr + blocklen) > total_size) {
393 msg_cerr("%s: tried to erase a sector beyond flash boundary: addr=%u, blocklen=%u, size=%u\n",
394 __func__, addr, blocklen, total_size);
395 return 1;
396 }
397
398 /* Needs typically about 5 s for completion, so let's wait 20 seconds in 200 ms steps. */
399 return at45db_erase(flash, AT45DB_SECTOR_ERASE, at45db_convert_addr(addr, page_size), 200000, 100);
400}
401
402int spi_erase_at45db_chip(struct flashctx *flash, unsigned int addr, unsigned int blocklen)
403{
404 const unsigned int total_size = flash->chip->total_size * 1024;
Elyes HAOUAS0cacb112019-02-04 12:16:38 +0100405
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000406 if ((addr + blocklen) > total_size) {
407 msg_cerr("%s: tried to erase beyond flash boundary: addr=%u, blocklen=%u, size=%u\n",
408 __func__, addr, blocklen, total_size);
409 return 1;
410 }
411
412 /* Needs typically from about 5 to over 60 s for completion, so let's wait 100 s in 500 ms steps.
413 * NB: the address is not a real address but a magic number. This hack allows to share code. */
414 return at45db_erase(flash, AT45DB_CHIP_ERASE, AT45DB_CHIP_ERASE_ADDR, 500000, 200);
415}
416
Stefan Tauner1dd5d3a2013-08-27 18:02:19 +0000417/* This one is really special and works only for AT45CS1282. It uses two different opcodes depending on the
418 * address and has an asymmetric layout. */
419int spi_erase_at45cs_sector(struct flashctx *flash, unsigned int addr, unsigned int blocklen)
420{
421 const unsigned int page_size = flash->chip->page_size;
422 const unsigned int total_size = flash->chip->total_size * 1024;
423 const struct block_eraser be = flash->chip->block_erasers[0];
424 const unsigned int sec_0a_top = be.eraseblocks[0].size;
425 const unsigned int sec_0b_top = be.eraseblocks[0].size + be.eraseblocks[1].size;
426
427 if ((addr + blocklen) > total_size) {
428 msg_cerr("%s: tried to erase a sector beyond flash boundary: addr=%u, blocklen=%u, size=%u\n",
429 __func__, addr, blocklen, total_size);
430 return 1;
431 }
432
433 bool partial_range = false;
434 uint8_t opcode = 0x7C; /* Used for all but sector 0a. */
435 if (addr < sec_0a_top) {
436 opcode = 0x50;
437 /* One single sector of 8 pages at address 0. */
438 if (addr != 0 || blocklen != (8 * page_size))
439 partial_range = true;
440 } else if (addr < sec_0b_top) {
441 /* One single sector of 248 pages adjacent to the first. */
442 if (addr != sec_0a_top || blocklen != (248 * page_size))
443 partial_range = true;
444 } else {
445 /* The rest is filled by 63 aligned sectors of 256 pages. */
446 if ((addr % (256 * page_size)) != 0 || (blocklen % (256 * page_size)) != 0)
447 partial_range = true;
448 }
449 if (partial_range) {
450 msg_cerr("%s: cannot erase partial sectors: addr=%u, blocklen=%u\n", __func__, addr, blocklen);
451 return 1;
452 }
453
454 /* Needs up to 4 s for completion, so let's wait 20 seconds in 200 ms steps. */
455 return at45db_erase(flash, opcode, at45db_convert_addr(addr, page_size), 200000, 100);
456}
457
Mark Marshallf20b7be2014-05-09 21:16:21 +0000458static int at45db_fill_buffer1(struct flashctx *flash, const uint8_t *bytes, unsigned int off, unsigned int len)
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000459{
460 const unsigned int page_size = flash->chip->page_size;
461 if ((off + len) > page_size) {
462 msg_cerr("Tried to write %u bytes at offset %u into a buffer of only %u B.\n",
463 len, off, page_size);
464 return 1;
465 }
466
467 /* Create a suitable buffer to store opcode, address and data chunks for buffer1. */
Nico Huber9a11cbf2023-01-13 01:19:07 +0100468 const unsigned int max_data_write = flash->mst.spi->max_data_write;
Nico Huber519be662018-12-23 20:03:35 +0100469 const unsigned int max_chunk = max_data_write > 4 && max_data_write - 4 <= page_size ?
470 max_data_write - 4 : page_size;
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000471 uint8_t buf[4 + max_chunk];
472
473 buf[0] = AT45DB_BUFFER1_WRITE;
474 while (off < page_size) {
475 unsigned int cur_chunk = min(max_chunk, page_size - off);
476 buf[1] = (off >> 16) & 0xff;
477 buf[2] = (off >> 8) & 0xff;
478 buf[3] = (off >> 0) & 0xff;
479 memcpy(&buf[4], bytes + off, cur_chunk);
480 int ret = spi_send_command(flash, 4 + cur_chunk, 0, buf, NULL);
481 if (ret != 0) {
482 msg_cerr("%s: error sending buffer write!\n", __func__);
483 return ret;
484 }
485 off += cur_chunk;
486 }
487 return 0;
488}
489
490static int at45db_commit_buffer1(struct flashctx *flash, unsigned int at45db_addr)
491{
492 const uint8_t cmd[] = {
493 AT45DB_BUFFER1_PAGE_PROGRAM,
494 (at45db_addr >> 16) & 0xff,
495 (at45db_addr >> 8) & 0xff,
496 (at45db_addr >> 0) & 0xff
497 };
498
499 /* Send buffer to device. */
500 int ret = spi_send_command(flash, sizeof(cmd), 0, cmd, NULL);
501 if (ret != 0) {
502 msg_cerr("%s: error sending buffer to main memory command!\n", __func__);
503 return ret;
504 }
505
506 /* Wait for completion (typically a few ms). */
507 ret = at45db_wait_ready(flash, 250, 200); // 50 ms
508 if (ret != 0) {
Stefan Tauner23e10b82016-01-23 16:16:49 +0000509 msg_cerr("%s: chip did not become ready again!\n", __func__);
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000510 return ret;
511 }
512
513 return 0;
514}
515
Mark Marshallf20b7be2014-05-09 21:16:21 +0000516static int at45db_program_page(struct flashctx *flash, const uint8_t *buf, unsigned int at45db_addr)
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000517{
518 int ret = at45db_fill_buffer1(flash, buf, 0, flash->chip->page_size);
519 if (ret != 0) {
520 msg_cerr("%s: filling the buffer failed!\n", __func__);
521 return ret;
522 }
523
524 ret = at45db_commit_buffer1(flash, at45db_addr);
525 if (ret != 0) {
526 msg_cerr("%s: committing page failed!\n", __func__);
527 return ret;
528 }
529
530 return 0;
531}
532
Mark Marshallf20b7be2014-05-09 21:16:21 +0000533int spi_write_at45db(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len)
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000534{
535 const unsigned int page_size = flash->chip->page_size;
536 const unsigned int total_size = flash->chip->total_size;
Elyes HAOUAS0cacb112019-02-04 12:16:38 +0100537
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000538 if ((start % page_size) != 0 || (len % page_size) != 0) {
539 msg_cerr("%s: cannot write partial pages: start=%u, len=%u\n", __func__, start, len);
540 return 1;
541 }
542
543 if ((start + len) > (total_size * 1024)) {
544 msg_cerr("%s: tried to write beyond flash boundary: start=%u, len=%u, size=%u\n",
545 __func__, start, len, total_size);
546 return 1;
547 }
548
549 unsigned int i;
550 for (i = 0; i < len; i += page_size) {
551 if (at45db_program_page(flash, buf + i, at45db_convert_addr(start + i, page_size)) != 0) {
552 msg_cerr("Writing page %u failed!\n", i);
553 return 1;
554 }
Richard Hughes842d6782021-01-15 09:48:12 +0000555 flashprog_progress_add(flash, page_size);
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000556 }
557 return 0;
558}