Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 1 | /* |
| 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 Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 16 | */ |
| 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 Tauner | fdc4f7e | 2013-08-27 18:02:12 +0000 | [diff] [blame] | 33 | #define AT45DB_READ_ARRAY 0xE8 |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 34 | #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 | |
| 48 | static 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 | |
| 60 | int 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 | |
| 78 | static 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. */ |
| 95 | static 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 Tauner | 23e10b8 | 2016-01-23 16:16:49 +0000 | [diff] [blame] | 98 | const size_t sec_count = at45db_get_sector_count(flash); |
| 99 | if (sec_count < 2) |
| 100 | return 0; |
| 101 | |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 102 | /* 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 */ |
| 138 | int 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 Tauner | fdc4f7e | 2013-08-27 18:02:12 +0000 | [diff] [blame] | 145 | /* 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 Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 147 | 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 Tauner | fdc4f7e | 2013-08-27 18:02:12 +0000 | [diff] [blame] | 157 | |
| 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 Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 164 | if (status & AT45DB_PROT) |
| 165 | at45db_prettyprint_protection_register(flash, AT45DB_READ_PROTECT, "protect"); |
| 166 | |
Stefan Tauner | fdc4f7e | 2013-08-27 18:02:12 +0000 | [diff] [blame] | 167 | if (!isAT45DB321C) |
| 168 | at45db_prettyprint_protection_register(flash, AT45DB_READ_LOCKDOWN, "lock"); |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 169 | |
| 170 | return 0; |
| 171 | } |
| 172 | |
| 173 | /* Probe function for AT45DB* chips that support multiple page sizes. */ |
| 174 | int 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 | |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 218 | /* In case of non-power-of-two page sizes we need to convert the address flashrom uses to the address the |
| 219 | * 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 | */ |
| 223 | static 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 | |
| 232 | int 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. */ |
Carl-Daniel Hailfinger | a5bcbce | 2014-07-19 22:03:29 +0000 | [diff] [blame] | 244 | const unsigned int max_data_read = flash->mst->spi.max_data_read; |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 245 | const unsigned int max_chunk = (max_data_read > 0) ? max_data_read : page_size; |
Stefan Tauner | 7141b98 | 2014-05-16 17:52:04 +0000 | [diff] [blame] | 246 | while (len > 0) { |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 247 | unsigned int chunk = min(max_chunk, len); |
Stefan Tauner | 7141b98 | 2014-05-16 17:52:04 +0000 | [diff] [blame] | 248 | int ret = spi_nbyte_read(flash, at45db_convert_addr(addr, page_size), buf, chunk); |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 249 | if (ret) { |
| 250 | msg_cerr("%s: error sending read command!\n", __func__); |
| 251 | return ret; |
| 252 | } |
| 253 | addr += chunk; |
Stefan Tauner | 7141b98 | 2014-05-16 17:52:04 +0000 | [diff] [blame] | 254 | buf += chunk; |
| 255 | len -= chunk; |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | return 0; |
| 259 | } |
| 260 | |
Stefan Tauner | fdc4f7e | 2013-08-27 18:02:12 +0000 | [diff] [blame] | 261 | /* Legacy continuous read, used where spi_read_at45db() is not available. |
| 262 | * The first 4 (dummy) bytes read need to be discarded. */ |
| 263 | int spi_read_at45db_e8(struct flashctx *flash, uint8_t *buf, unsigned int addr, unsigned int len) |
| 264 | { |
| 265 | const unsigned int page_size = flash->chip->page_size; |
| 266 | const unsigned int total_size = flash->chip->total_size * 1024; |
| 267 | if ((addr + len) > total_size) { |
| 268 | msg_cerr("%s: tried to read beyond flash boundary: addr=%u, len=%u, size=%u\n", |
| 269 | __func__, addr, len, total_size); |
| 270 | return 1; |
| 271 | } |
| 272 | |
| 273 | /* We have to split this up into chunks to fit within the programmer's read size limit, but those |
| 274 | * chunks can cross page boundaries. */ |
Carl-Daniel Hailfinger | a5bcbce | 2014-07-19 22:03:29 +0000 | [diff] [blame] | 275 | const unsigned int max_data_read = flash->mst->spi.max_data_read; |
Stefan Tauner | fdc4f7e | 2013-08-27 18:02:12 +0000 | [diff] [blame] | 276 | const unsigned int max_chunk = (max_data_read > 0) ? max_data_read : page_size; |
Stefan Tauner | 7141b98 | 2014-05-16 17:52:04 +0000 | [diff] [blame] | 277 | while (len > 0) { |
Stefan Tauner | fdc4f7e | 2013-08-27 18:02:12 +0000 | [diff] [blame] | 278 | const unsigned int addr_at45 = at45db_convert_addr(addr, page_size); |
| 279 | const unsigned char cmd[] = { |
| 280 | AT45DB_READ_ARRAY, |
| 281 | (addr_at45 >> 16) & 0xff, |
| 282 | (addr_at45 >> 8) & 0xff, |
| 283 | (addr_at45 >> 0) & 0xff |
| 284 | }; |
| 285 | /* We need to leave place for 4 dummy bytes and handle them explicitly. */ |
| 286 | unsigned int chunk = min(max_chunk, len + 4); |
| 287 | uint8_t tmp[chunk]; |
| 288 | int ret = spi_send_command(flash, sizeof(cmd), chunk, cmd, tmp); |
| 289 | if (ret) { |
| 290 | msg_cerr("%s: error sending read command!\n", __func__); |
| 291 | return ret; |
| 292 | } |
| 293 | /* Copy result without dummy bytes into buf and advance address counter respectively. */ |
Stefan Tauner | 7141b98 | 2014-05-16 17:52:04 +0000 | [diff] [blame] | 294 | memcpy(buf, tmp + 4, chunk - 4); |
Stefan Tauner | fdc4f7e | 2013-08-27 18:02:12 +0000 | [diff] [blame] | 295 | addr += chunk - 4; |
Stefan Tauner | 7141b98 | 2014-05-16 17:52:04 +0000 | [diff] [blame] | 296 | buf += chunk - 4; |
| 297 | len -= chunk - 4; |
Stefan Tauner | fdc4f7e | 2013-08-27 18:02:12 +0000 | [diff] [blame] | 298 | } |
| 299 | return 0; |
| 300 | } |
| 301 | |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 302 | /* Returns 0 when ready, 1 on errors and timeouts. */ |
| 303 | static int at45db_wait_ready (struct flashctx *flash, unsigned int us, unsigned int retries) |
| 304 | { |
| 305 | while (true) { |
| 306 | uint8_t status; |
| 307 | int ret = at45db_read_status_register(flash, &status); |
| 308 | if ((status & AT45DB_READY) == AT45DB_READY) |
| 309 | return 0; |
| 310 | if (ret != 0 || retries-- == 0) |
| 311 | return 1; |
| 312 | programmer_delay(us); |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | static int at45db_erase(struct flashctx *flash, uint8_t opcode, unsigned int at45db_addr, unsigned int stepsize, unsigned int retries) |
| 317 | { |
| 318 | const uint8_t cmd[] = { |
| 319 | opcode, |
| 320 | (at45db_addr >> 16) & 0xff, |
| 321 | (at45db_addr >> 8) & 0xff, |
| 322 | (at45db_addr >> 0) & 0xff |
| 323 | }; |
| 324 | |
| 325 | /* Send erase command. */ |
| 326 | int ret = spi_send_command(flash, sizeof(cmd), 0, cmd, NULL); |
| 327 | if (ret != 0) { |
| 328 | msg_cerr("%s: error sending erase command!\n", __func__); |
| 329 | return ret; |
| 330 | } |
| 331 | |
| 332 | /* Wait for completion. */ |
| 333 | ret = at45db_wait_ready(flash, stepsize, retries); |
| 334 | if (ret != 0) |
Stefan Tauner | 23e10b8 | 2016-01-23 16:16:49 +0000 | [diff] [blame] | 335 | msg_cerr("%s: chip did not become ready again after sending the erase command!\n", __func__); |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 336 | |
| 337 | return ret; |
| 338 | } |
| 339 | |
| 340 | int spi_erase_at45db_page(struct flashctx *flash, unsigned int addr, unsigned int blocklen) |
| 341 | { |
| 342 | const unsigned int page_size = flash->chip->page_size; |
| 343 | const unsigned int total_size = flash->chip->total_size * 1024; |
| 344 | |
| 345 | if ((addr % page_size) != 0 || (blocklen % page_size) != 0) { |
| 346 | msg_cerr("%s: cannot erase partial pages: addr=%u, blocklen=%u\n", __func__, addr, blocklen); |
| 347 | return 1; |
| 348 | } |
| 349 | |
| 350 | if ((addr + blocklen) > total_size) { |
| 351 | msg_cerr("%s: tried to erase a block beyond flash boundary: addr=%u, blocklen=%u, size=%u\n", |
| 352 | __func__, addr, blocklen, total_size); |
| 353 | return 1; |
| 354 | } |
| 355 | |
| 356 | /* Needs typically about 35 ms for completion, so let's wait 100 ms in 500 us steps. */ |
| 357 | return at45db_erase(flash, AT45DB_PAGE_ERASE, at45db_convert_addr(addr, page_size), 500, 200); |
| 358 | } |
| 359 | |
| 360 | int spi_erase_at45db_block(struct flashctx *flash, unsigned int addr, unsigned int blocklen) |
| 361 | { |
| 362 | const unsigned int page_size = flash->chip->page_size; |
| 363 | const unsigned int total_size = flash->chip->total_size * 1024; |
| 364 | |
| 365 | if ((addr % page_size) != 0 || (blocklen % page_size) != 0) { // FIXME: should check blocks not pages |
| 366 | msg_cerr("%s: cannot erase partial pages: addr=%u, blocklen=%u\n", __func__, addr, blocklen); |
| 367 | return 1; |
| 368 | } |
| 369 | |
| 370 | if ((addr + blocklen) > total_size) { |
| 371 | msg_cerr("%s: tried to erase a block beyond flash boundary: addr=%u, blocklen=%u, size=%u\n", |
| 372 | __func__, addr, blocklen, total_size); |
| 373 | return 1; |
| 374 | } |
| 375 | |
| 376 | /* Needs typically between 20 and 100 ms for completion, so let's wait 300 ms in 1 ms steps. */ |
| 377 | return at45db_erase(flash, AT45DB_BLOCK_ERASE, at45db_convert_addr(addr, page_size), 1000, 300); |
| 378 | } |
| 379 | |
| 380 | int spi_erase_at45db_sector(struct flashctx *flash, unsigned int addr, unsigned int blocklen) |
| 381 | { |
| 382 | const unsigned int page_size = flash->chip->page_size; |
| 383 | const unsigned int total_size = flash->chip->total_size * 1024; |
| 384 | |
| 385 | if ((addr % page_size) != 0 || (blocklen % page_size) != 0) { // FIXME: should check sectors not pages |
| 386 | msg_cerr("%s: cannot erase partial pages: addr=%u, blocklen=%u\n", __func__, addr, blocklen); |
| 387 | return 1; |
| 388 | } |
| 389 | |
| 390 | if ((addr + blocklen) > total_size) { |
| 391 | msg_cerr("%s: tried to erase a sector beyond flash boundary: addr=%u, blocklen=%u, size=%u\n", |
| 392 | __func__, addr, blocklen, total_size); |
| 393 | return 1; |
| 394 | } |
| 395 | |
| 396 | /* Needs typically about 5 s for completion, so let's wait 20 seconds in 200 ms steps. */ |
| 397 | return at45db_erase(flash, AT45DB_SECTOR_ERASE, at45db_convert_addr(addr, page_size), 200000, 100); |
| 398 | } |
| 399 | |
| 400 | int spi_erase_at45db_chip(struct flashctx *flash, unsigned int addr, unsigned int blocklen) |
| 401 | { |
| 402 | const unsigned int total_size = flash->chip->total_size * 1024; |
| 403 | |
| 404 | if ((addr + blocklen) > total_size) { |
| 405 | msg_cerr("%s: tried to erase beyond flash boundary: addr=%u, blocklen=%u, size=%u\n", |
| 406 | __func__, addr, blocklen, total_size); |
| 407 | return 1; |
| 408 | } |
| 409 | |
| 410 | /* Needs typically from about 5 to over 60 s for completion, so let's wait 100 s in 500 ms steps. |
| 411 | * NB: the address is not a real address but a magic number. This hack allows to share code. */ |
| 412 | return at45db_erase(flash, AT45DB_CHIP_ERASE, AT45DB_CHIP_ERASE_ADDR, 500000, 200); |
| 413 | } |
| 414 | |
Stefan Tauner | 1dd5d3a | 2013-08-27 18:02:19 +0000 | [diff] [blame] | 415 | /* This one is really special and works only for AT45CS1282. It uses two different opcodes depending on the |
| 416 | * address and has an asymmetric layout. */ |
| 417 | int spi_erase_at45cs_sector(struct flashctx *flash, unsigned int addr, unsigned int blocklen) |
| 418 | { |
| 419 | const unsigned int page_size = flash->chip->page_size; |
| 420 | const unsigned int total_size = flash->chip->total_size * 1024; |
| 421 | const struct block_eraser be = flash->chip->block_erasers[0]; |
| 422 | const unsigned int sec_0a_top = be.eraseblocks[0].size; |
| 423 | const unsigned int sec_0b_top = be.eraseblocks[0].size + be.eraseblocks[1].size; |
| 424 | |
| 425 | if ((addr + blocklen) > total_size) { |
| 426 | msg_cerr("%s: tried to erase a sector beyond flash boundary: addr=%u, blocklen=%u, size=%u\n", |
| 427 | __func__, addr, blocklen, total_size); |
| 428 | return 1; |
| 429 | } |
| 430 | |
| 431 | bool partial_range = false; |
| 432 | uint8_t opcode = 0x7C; /* Used for all but sector 0a. */ |
| 433 | if (addr < sec_0a_top) { |
| 434 | opcode = 0x50; |
| 435 | /* One single sector of 8 pages at address 0. */ |
| 436 | if (addr != 0 || blocklen != (8 * page_size)) |
| 437 | partial_range = true; |
| 438 | } else if (addr < sec_0b_top) { |
| 439 | /* One single sector of 248 pages adjacent to the first. */ |
| 440 | if (addr != sec_0a_top || blocklen != (248 * page_size)) |
| 441 | partial_range = true; |
| 442 | } else { |
| 443 | /* The rest is filled by 63 aligned sectors of 256 pages. */ |
| 444 | if ((addr % (256 * page_size)) != 0 || (blocklen % (256 * page_size)) != 0) |
| 445 | partial_range = true; |
| 446 | } |
| 447 | if (partial_range) { |
| 448 | msg_cerr("%s: cannot erase partial sectors: addr=%u, blocklen=%u\n", __func__, addr, blocklen); |
| 449 | return 1; |
| 450 | } |
| 451 | |
| 452 | /* Needs up to 4 s for completion, so let's wait 20 seconds in 200 ms steps. */ |
| 453 | return at45db_erase(flash, opcode, at45db_convert_addr(addr, page_size), 200000, 100); |
| 454 | } |
| 455 | |
Mark Marshall | f20b7be | 2014-05-09 21:16:21 +0000 | [diff] [blame] | 456 | static int at45db_fill_buffer1(struct flashctx *flash, const uint8_t *bytes, unsigned int off, unsigned int len) |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 457 | { |
| 458 | const unsigned int page_size = flash->chip->page_size; |
| 459 | if ((off + len) > page_size) { |
| 460 | msg_cerr("Tried to write %u bytes at offset %u into a buffer of only %u B.\n", |
| 461 | len, off, page_size); |
| 462 | return 1; |
| 463 | } |
| 464 | |
| 465 | /* Create a suitable buffer to store opcode, address and data chunks for buffer1. */ |
Stefan Tauner | 23e10b8 | 2016-01-23 16:16:49 +0000 | [diff] [blame] | 466 | const int max_data_write = flash->mst->spi.max_data_write - 4; |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 467 | const unsigned int max_chunk = (max_data_write > 0 && max_data_write <= page_size) ? |
| 468 | max_data_write : page_size; |
| 469 | uint8_t buf[4 + max_chunk]; |
| 470 | |
| 471 | buf[0] = AT45DB_BUFFER1_WRITE; |
| 472 | while (off < page_size) { |
| 473 | unsigned int cur_chunk = min(max_chunk, page_size - off); |
| 474 | buf[1] = (off >> 16) & 0xff; |
| 475 | buf[2] = (off >> 8) & 0xff; |
| 476 | buf[3] = (off >> 0) & 0xff; |
| 477 | memcpy(&buf[4], bytes + off, cur_chunk); |
| 478 | int ret = spi_send_command(flash, 4 + cur_chunk, 0, buf, NULL); |
| 479 | if (ret != 0) { |
| 480 | msg_cerr("%s: error sending buffer write!\n", __func__); |
| 481 | return ret; |
| 482 | } |
| 483 | off += cur_chunk; |
| 484 | } |
| 485 | return 0; |
| 486 | } |
| 487 | |
| 488 | static int at45db_commit_buffer1(struct flashctx *flash, unsigned int at45db_addr) |
| 489 | { |
| 490 | const uint8_t cmd[] = { |
| 491 | AT45DB_BUFFER1_PAGE_PROGRAM, |
| 492 | (at45db_addr >> 16) & 0xff, |
| 493 | (at45db_addr >> 8) & 0xff, |
| 494 | (at45db_addr >> 0) & 0xff |
| 495 | }; |
| 496 | |
| 497 | /* Send buffer to device. */ |
| 498 | int ret = spi_send_command(flash, sizeof(cmd), 0, cmd, NULL); |
| 499 | if (ret != 0) { |
| 500 | msg_cerr("%s: error sending buffer to main memory command!\n", __func__); |
| 501 | return ret; |
| 502 | } |
| 503 | |
| 504 | /* Wait for completion (typically a few ms). */ |
| 505 | ret = at45db_wait_ready(flash, 250, 200); // 50 ms |
| 506 | if (ret != 0) { |
Stefan Tauner | 23e10b8 | 2016-01-23 16:16:49 +0000 | [diff] [blame] | 507 | msg_cerr("%s: chip did not become ready again!\n", __func__); |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 508 | return ret; |
| 509 | } |
| 510 | |
| 511 | return 0; |
| 512 | } |
| 513 | |
Mark Marshall | f20b7be | 2014-05-09 21:16:21 +0000 | [diff] [blame] | 514 | static int at45db_program_page(struct flashctx *flash, const uint8_t *buf, unsigned int at45db_addr) |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 515 | { |
| 516 | int ret = at45db_fill_buffer1(flash, buf, 0, flash->chip->page_size); |
| 517 | if (ret != 0) { |
| 518 | msg_cerr("%s: filling the buffer failed!\n", __func__); |
| 519 | return ret; |
| 520 | } |
| 521 | |
| 522 | ret = at45db_commit_buffer1(flash, at45db_addr); |
| 523 | if (ret != 0) { |
| 524 | msg_cerr("%s: committing page failed!\n", __func__); |
| 525 | return ret; |
| 526 | } |
| 527 | |
| 528 | return 0; |
| 529 | } |
| 530 | |
Mark Marshall | f20b7be | 2014-05-09 21:16:21 +0000 | [diff] [blame] | 531 | int spi_write_at45db(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len) |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 532 | { |
| 533 | const unsigned int page_size = flash->chip->page_size; |
| 534 | const unsigned int total_size = flash->chip->total_size; |
| 535 | |
| 536 | if ((start % page_size) != 0 || (len % page_size) != 0) { |
| 537 | msg_cerr("%s: cannot write partial pages: start=%u, len=%u\n", __func__, start, len); |
| 538 | return 1; |
| 539 | } |
| 540 | |
| 541 | if ((start + len) > (total_size * 1024)) { |
| 542 | msg_cerr("%s: tried to write beyond flash boundary: start=%u, len=%u, size=%u\n", |
| 543 | __func__, start, len, total_size); |
| 544 | return 1; |
| 545 | } |
| 546 | |
| 547 | unsigned int i; |
| 548 | for (i = 0; i < len; i += page_size) { |
| 549 | if (at45db_program_page(flash, buf + i, at45db_convert_addr(start + i, page_size)) != 0) { |
| 550 | msg_cerr("Writing page %u failed!\n", i); |
| 551 | return 1; |
| 552 | } |
| 553 | } |
| 554 | return 0; |
| 555 | } |