Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * It handles everything related to status registers of the JEDEC family 25. |
| 4 | * |
| 5 | * Copyright (C) 2007, 2008, 2009, 2010 Carl-Daniel Hailfinger |
| 6 | * Copyright (C) 2008 coresystems GmbH |
| 7 | * Copyright (C) 2008 Ronald Hoogenboom <ronald@zonnet.nl> |
| 8 | * Copyright (C) 2012 Stefan Tauner |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; version 2 of the License. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 22 | */ |
| 23 | |
| 24 | #include "flash.h" |
| 25 | #include "chipdrivers.h" |
| 26 | #include "spi.h" |
| 27 | |
| 28 | /* === Generic functions === */ |
| 29 | int spi_write_status_enable(struct flashctx *flash) |
| 30 | { |
| 31 | static const unsigned char cmd[JEDEC_EWSR_OUTSIZE] = { JEDEC_EWSR }; |
| 32 | int result; |
| 33 | |
| 34 | /* Send EWSR (Enable Write Status Register). */ |
| 35 | result = spi_send_command(flash, sizeof(cmd), JEDEC_EWSR_INSIZE, cmd, NULL); |
| 36 | |
| 37 | if (result) |
| 38 | msg_cerr("%s failed\n", __func__); |
| 39 | |
| 40 | return result; |
| 41 | } |
| 42 | |
| 43 | static int spi_write_status_register_flag(struct flashctx *flash, int status, const unsigned char enable_opcode) |
| 44 | { |
| 45 | int result; |
| 46 | int i = 0; |
| 47 | /* |
| 48 | * WRSR requires either EWSR or WREN depending on chip type. |
| 49 | * The code below relies on the fact hat EWSR and WREN have the same |
| 50 | * INSIZE and OUTSIZE. |
| 51 | */ |
| 52 | struct spi_command cmds[] = { |
| 53 | { |
| 54 | .writecnt = JEDEC_WREN_OUTSIZE, |
| 55 | .writearr = (const unsigned char[]){ enable_opcode }, |
| 56 | .readcnt = 0, |
| 57 | .readarr = NULL, |
| 58 | }, { |
| 59 | .writecnt = JEDEC_WRSR_OUTSIZE, |
| 60 | .writearr = (const unsigned char[]){ JEDEC_WRSR, (unsigned char) status }, |
| 61 | .readcnt = 0, |
| 62 | .readarr = NULL, |
| 63 | }, { |
| 64 | .writecnt = 0, |
| 65 | .writearr = NULL, |
| 66 | .readcnt = 0, |
| 67 | .readarr = NULL, |
| 68 | }}; |
| 69 | |
| 70 | result = spi_send_multicommand(flash, cmds); |
| 71 | if (result) { |
| 72 | msg_cerr("%s failed during command execution\n", __func__); |
| 73 | /* No point in waiting for the command to complete if execution |
| 74 | * failed. |
| 75 | */ |
| 76 | return result; |
| 77 | } |
| 78 | /* WRSR performs a self-timed erase before the changes take effect. |
| 79 | * This may take 50-85 ms in most cases, and some chips apparently |
| 80 | * allow running RDSR only once. Therefore pick an initial delay of |
| 81 | * 100 ms, then wait in 10 ms steps until a total of 5 s have elapsed. |
| 82 | */ |
| 83 | programmer_delay(100 * 1000); |
| 84 | while (spi_read_status_register(flash) & SPI_SR_WIP) { |
| 85 | if (++i > 490) { |
| 86 | msg_cerr("Error: WIP bit after WRSR never cleared\n"); |
| 87 | return TIMEOUT_ERROR; |
| 88 | } |
| 89 | programmer_delay(10 * 1000); |
| 90 | } |
| 91 | return 0; |
| 92 | } |
| 93 | |
| 94 | int spi_write_status_register(struct flashctx *flash, int status) |
| 95 | { |
| 96 | int feature_bits = flash->chip->feature_bits; |
| 97 | int ret = 1; |
| 98 | |
| 99 | if (!(feature_bits & (FEATURE_WRSR_WREN | FEATURE_WRSR_EWSR))) { |
| 100 | msg_cdbg("Missing status register write definition, assuming " |
| 101 | "EWSR is needed\n"); |
| 102 | feature_bits |= FEATURE_WRSR_EWSR; |
| 103 | } |
| 104 | if (feature_bits & FEATURE_WRSR_WREN) |
| 105 | ret = spi_write_status_register_flag(flash, status, JEDEC_WREN); |
| 106 | if (ret && (feature_bits & FEATURE_WRSR_EWSR)) |
| 107 | ret = spi_write_status_register_flag(flash, status, JEDEC_EWSR); |
| 108 | return ret; |
| 109 | } |
| 110 | |
| 111 | uint8_t spi_read_status_register(struct flashctx *flash) |
| 112 | { |
| 113 | static const unsigned char cmd[JEDEC_RDSR_OUTSIZE] = { JEDEC_RDSR }; |
| 114 | /* FIXME: No workarounds for driver/hardware bugs in generic code. */ |
| 115 | unsigned char readarr[2]; /* JEDEC_RDSR_INSIZE=1 but wbsio needs 2 */ |
| 116 | int ret; |
| 117 | |
| 118 | /* Read Status Register */ |
| 119 | ret = spi_send_command(flash, sizeof(cmd), sizeof(readarr), cmd, readarr); |
| 120 | if (ret) |
| 121 | msg_cerr("RDSR failed!\n"); |
| 122 | |
| 123 | return readarr[0]; |
| 124 | } |
| 125 | |
Stefan Tauner | 9530a02 | 2012-12-29 15:04:05 +0000 | [diff] [blame] | 126 | /* A generic block protection disable. |
| 127 | * Tests if a protection is enabled with the block protection mask (bp_mask) and returns success otherwise. |
| 128 | * Tests if the register bits are locked with the lock_mask (lock_mask). |
Stefan Tauner | cecb2c5 | 2013-06-20 22:55:41 +0000 | [diff] [blame] | 129 | * Tests if a hardware protection is active (i.e. low pin/high bit value) with the write protection mask |
| 130 | * (wp_mask) and bails out in that case. |
| 131 | * If there are register lock bits set we try to disable them by unsetting those bits of the previous register |
| 132 | * contents that are set in the lock_mask. We then check if removing the lock bits has worked and continue as if |
| 133 | * they never had been engaged: |
| 134 | * If the lock bits are out of the way try to disable engaged protections. |
| 135 | * To support uncommon global unprotects (e.g. on most AT2[56]xx1(A)) unprotect_mask can be used to force |
| 136 | * bits to 0 additionally to those set in bp_mask and lock_mask. Only bits set in unprotect_mask are potentially |
| 137 | * preserved when doing the final unprotect. |
| 138 | * |
| 139 | * To sum up: |
| 140 | * bp_mask: set those bits that correspond to the bits in the status register that indicate an active protection |
| 141 | * (which should be unset after this function returns). |
| 142 | * lock_mask: set the bits that correspond to the bits that lock changing the bits above. |
| 143 | * wp_mask: set the bits that correspond to bits indicating non-software revocable protections. |
| 144 | * unprotect_mask: set the bits that should be preserved if possible when unprotecting. |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 145 | */ |
Stefan Tauner | cecb2c5 | 2013-06-20 22:55:41 +0000 | [diff] [blame] | 146 | static int spi_disable_blockprotect_generic(struct flashctx *flash, uint8_t bp_mask, uint8_t lock_mask, uint8_t wp_mask, uint8_t unprotect_mask) |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 147 | { |
| 148 | uint8_t status; |
| 149 | int result; |
| 150 | |
| 151 | status = spi_read_status_register(flash); |
Stefan Tauner | 9530a02 | 2012-12-29 15:04:05 +0000 | [diff] [blame] | 152 | if ((status & bp_mask) == 0) { |
| 153 | msg_cdbg2("Block protection is disabled.\n"); |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 154 | return 0; |
Stefan Tauner | 9530a02 | 2012-12-29 15:04:05 +0000 | [diff] [blame] | 155 | } |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 156 | |
| 157 | msg_cdbg("Some block protection in effect, disabling... "); |
Stefan Tauner | 9530a02 | 2012-12-29 15:04:05 +0000 | [diff] [blame] | 158 | if ((status & lock_mask) != 0) { |
| 159 | msg_cdbg("\n\tNeed to disable the register lock first... "); |
| 160 | if (wp_mask != 0 && (status & wp_mask) == 0) { |
| 161 | msg_cerr("Hardware protection is active, disabling write protection is impossible.\n"); |
| 162 | return 1; |
| 163 | } |
| 164 | /* All bits except the register lock bit (often called SPRL, SRWD, WPEN) are readonly. */ |
| 165 | result = spi_write_status_register(flash, status & ~lock_mask); |
| 166 | if (result) { |
| 167 | msg_cerr("spi_write_status_register failed.\n"); |
| 168 | return result; |
| 169 | } |
Stefan Tauner | cecb2c5 | 2013-06-20 22:55:41 +0000 | [diff] [blame] | 170 | status = spi_read_status_register(flash); |
| 171 | if ((status & lock_mask) != 0) { |
| 172 | msg_cerr("Unsetting lock bit(s) failed.\n"); |
| 173 | return 1; |
| 174 | } |
Stefan Tauner | 9530a02 | 2012-12-29 15:04:05 +0000 | [diff] [blame] | 175 | msg_cdbg("done.\n"); |
| 176 | } |
| 177 | /* Global unprotect. Make sure to mask the register lock bit as well. */ |
Stefan Tauner | cecb2c5 | 2013-06-20 22:55:41 +0000 | [diff] [blame] | 178 | result = spi_write_status_register(flash, status & ~(bp_mask | lock_mask) & unprotect_mask); |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 179 | if (result) { |
| 180 | msg_cerr("spi_write_status_register failed.\n"); |
| 181 | return result; |
| 182 | } |
| 183 | status = spi_read_status_register(flash); |
Stefan Tauner | 9530a02 | 2012-12-29 15:04:05 +0000 | [diff] [blame] | 184 | if ((status & bp_mask) != 0) { |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 185 | msg_cerr("Block protection could not be disabled!\n"); |
Stefan Tauner | cecb2c5 | 2013-06-20 22:55:41 +0000 | [diff] [blame] | 186 | flash->chip->printlock(flash); |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 187 | return 1; |
| 188 | } |
Stefan Tauner | 9530a02 | 2012-12-29 15:04:05 +0000 | [diff] [blame] | 189 | msg_cdbg("disabled.\n"); |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 190 | return 0; |
| 191 | } |
| 192 | |
Stefan Tauner | 9530a02 | 2012-12-29 15:04:05 +0000 | [diff] [blame] | 193 | /* A common block protection disable that tries to unset the status register bits masked by 0x3C. */ |
| 194 | int spi_disable_blockprotect(struct flashctx *flash) |
| 195 | { |
Stefan Tauner | cecb2c5 | 2013-06-20 22:55:41 +0000 | [diff] [blame] | 196 | return spi_disable_blockprotect_generic(flash, 0x3C, 0, 0, 0xFF); |
Stefan Tauner | 9530a02 | 2012-12-29 15:04:05 +0000 | [diff] [blame] | 197 | } |
| 198 | |
Stefan Tauner | a60d408 | 2014-06-04 16:17:03 +0000 | [diff] [blame] | 199 | /* A common block protection disable that tries to unset the status register bits masked by 0x0C (BP0-1) and |
| 200 | * protected/locked by bit #7. Useful when bits 4-5 may be non-0). */ |
| 201 | int spi_disable_blockprotect_bp1_srwd(struct flashctx *flash) |
| 202 | { |
| 203 | return spi_disable_blockprotect_generic(flash, 0x0C, 1 << 7, 0, 0xFF); |
| 204 | } |
| 205 | |
Stefan Tauner | 278ba6e | 2013-06-28 21:28:27 +0000 | [diff] [blame] | 206 | /* A common block protection disable that tries to unset the status register bits masked by 0x1C (BP0-2) and |
| 207 | * protected/locked by bit #7. Useful when bit #5 is neither a protection bit nor reserved (and hence possibly |
| 208 | * non-0). */ |
| 209 | int spi_disable_blockprotect_bp2_srwd(struct flashctx *flash) |
| 210 | { |
| 211 | return spi_disable_blockprotect_generic(flash, 0x1C, 1 << 7, 0, 0xFF); |
| 212 | } |
| 213 | |
| 214 | /* A common block protection disable that tries to unset the status register bits masked by 0x3C (BP0-3) and |
| 215 | * protected/locked by bit #7. */ |
| 216 | int spi_disable_blockprotect_bp3_srwd(struct flashctx *flash) |
| 217 | { |
| 218 | return spi_disable_blockprotect_generic(flash, 0x3C, 1 << 7, 0, 0xFF); |
| 219 | } |
| 220 | |
| 221 | /* A common block protection disable that tries to unset the status register bits masked by 0x7C (BP0-4) and |
| 222 | * protected/locked by bit #7. */ |
| 223 | int spi_disable_blockprotect_bp4_srwd(struct flashctx *flash) |
| 224 | { |
| 225 | return spi_disable_blockprotect_generic(flash, 0x7C, 1 << 7, 0, 0xFF); |
| 226 | } |
Stefan Tauner | 9530a02 | 2012-12-29 15:04:05 +0000 | [diff] [blame] | 227 | |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 228 | static void spi_prettyprint_status_register_hex(uint8_t status) |
| 229 | { |
| 230 | msg_cdbg("Chip status register is 0x%02x.\n", status); |
| 231 | } |
| 232 | |
Stefan Tauner | b6b00e9 | 2013-06-28 21:28:43 +0000 | [diff] [blame] | 233 | /* Common highest bit: Status Register Write Disable (SRWD) or Status Register Protect (SRP). */ |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 234 | static void spi_prettyprint_status_register_srwd(uint8_t status) |
| 235 | { |
Stefan Tauner | b6b00e9 | 2013-06-28 21:28:43 +0000 | [diff] [blame] | 236 | msg_cdbg("Chip status register: Status Register Write Disable (SRWD, SRP, ...) is %sset\n", |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 237 | (status & (1 << 7)) ? "" : "not "); |
| 238 | } |
| 239 | |
| 240 | /* Common highest bit: Block Protect Write Disable (BPL). */ |
| 241 | static void spi_prettyprint_status_register_bpl(uint8_t status) |
| 242 | { |
| 243 | msg_cdbg("Chip status register: Block Protect Write Disable (BPL) is %sset\n", |
| 244 | (status & (1 << 7)) ? "" : "not "); |
| 245 | } |
| 246 | |
| 247 | /* Common lowest 2 bits: WEL and WIP. */ |
| 248 | static void spi_prettyprint_status_register_welwip(uint8_t status) |
| 249 | { |
| 250 | msg_cdbg("Chip status register: Write Enable Latch (WEL) is %sset\n", |
| 251 | (status & (1 << 1)) ? "" : "not "); |
| 252 | msg_cdbg("Chip status register: Write In Progress (WIP/BUSY) is %sset\n", |
| 253 | (status & (1 << 0)) ? "" : "not "); |
| 254 | } |
| 255 | |
| 256 | /* Common block protection (BP) bits. */ |
| 257 | static void spi_prettyprint_status_register_bp(uint8_t status, int bp) |
| 258 | { |
| 259 | switch (bp) { |
| 260 | /* Fall through. */ |
| 261 | case 4: |
| 262 | msg_cdbg("Chip status register: Block Protect 4 (BP4) is %sset\n", |
Stefan Tauner | 5c316f9 | 2015-02-08 21:57:52 +0000 | [diff] [blame] | 263 | (status & (1 << 6)) ? "" : "not "); |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 264 | case 3: |
| 265 | msg_cdbg("Chip status register: Block Protect 3 (BP3) is %sset\n", |
| 266 | (status & (1 << 5)) ? "" : "not "); |
| 267 | case 2: |
| 268 | msg_cdbg("Chip status register: Block Protect 2 (BP2) is %sset\n", |
| 269 | (status & (1 << 4)) ? "" : "not "); |
| 270 | case 1: |
| 271 | msg_cdbg("Chip status register: Block Protect 1 (BP1) is %sset\n", |
| 272 | (status & (1 << 3)) ? "" : "not "); |
| 273 | case 0: |
| 274 | msg_cdbg("Chip status register: Block Protect 0 (BP0) is %sset\n", |
| 275 | (status & (1 << 2)) ? "" : "not "); |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | /* Unnamed bits. */ |
Aidan Thornton | db4e87d | 2013-08-27 18:01:53 +0000 | [diff] [blame] | 280 | void spi_prettyprint_status_register_bit(uint8_t status, int bit) |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 281 | { |
| 282 | msg_cdbg("Chip status register: Bit %i is %sset\n", bit, (status & (1 << bit)) ? "" : "not "); |
| 283 | } |
| 284 | |
| 285 | int spi_prettyprint_status_register_plain(struct flashctx *flash) |
| 286 | { |
| 287 | uint8_t status = spi_read_status_register(flash); |
| 288 | spi_prettyprint_status_register_hex(status); |
| 289 | return 0; |
| 290 | } |
| 291 | |
Stefan Tauner | 278ba6e | 2013-06-28 21:28:27 +0000 | [diff] [blame] | 292 | /* Print the plain hex value and the welwip bits only. */ |
| 293 | int spi_prettyprint_status_register_default_welwip(struct flashctx *flash) |
| 294 | { |
| 295 | uint8_t status = spi_read_status_register(flash); |
| 296 | spi_prettyprint_status_register_hex(status); |
| 297 | |
| 298 | spi_prettyprint_status_register_welwip(status); |
| 299 | return 0; |
| 300 | } |
| 301 | |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 302 | /* Works for many chips of the |
| 303 | * AMIC A25L series |
| 304 | * and MX MX25L512 |
| 305 | */ |
Stefan Tauner | 12f3d51 | 2014-05-27 21:27:27 +0000 | [diff] [blame] | 306 | int spi_prettyprint_status_register_bp1_srwd(struct flashctx *flash) |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 307 | { |
| 308 | uint8_t status = spi_read_status_register(flash); |
| 309 | spi_prettyprint_status_register_hex(status); |
| 310 | |
| 311 | spi_prettyprint_status_register_srwd(status); |
| 312 | spi_prettyprint_status_register_bit(status, 6); |
| 313 | spi_prettyprint_status_register_bit(status, 5); |
| 314 | spi_prettyprint_status_register_bit(status, 4); |
| 315 | spi_prettyprint_status_register_bp(status, 1); |
| 316 | spi_prettyprint_status_register_welwip(status); |
| 317 | return 0; |
| 318 | } |
| 319 | |
| 320 | /* Works for many chips of the |
| 321 | * AMIC A25L series |
Stefan Tauner | f445161 | 2013-04-19 01:59:15 +0000 | [diff] [blame] | 322 | * PMC Pm25LD series |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 323 | */ |
Stefan Tauner | 12f3d51 | 2014-05-27 21:27:27 +0000 | [diff] [blame] | 324 | int spi_prettyprint_status_register_bp2_srwd(struct flashctx *flash) |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 325 | { |
| 326 | uint8_t status = spi_read_status_register(flash); |
| 327 | spi_prettyprint_status_register_hex(status); |
| 328 | |
| 329 | spi_prettyprint_status_register_srwd(status); |
| 330 | spi_prettyprint_status_register_bit(status, 6); |
| 331 | spi_prettyprint_status_register_bit(status, 5); |
| 332 | spi_prettyprint_status_register_bp(status, 2); |
| 333 | spi_prettyprint_status_register_welwip(status); |
| 334 | return 0; |
| 335 | } |
| 336 | |
| 337 | /* Works for many chips of the |
| 338 | * ST M25P series |
| 339 | * MX MX25L series |
| 340 | */ |
Stefan Tauner | 12f3d51 | 2014-05-27 21:27:27 +0000 | [diff] [blame] | 341 | int spi_prettyprint_status_register_bp3_srwd(struct flashctx *flash) |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 342 | { |
| 343 | uint8_t status = spi_read_status_register(flash); |
| 344 | spi_prettyprint_status_register_hex(status); |
| 345 | |
| 346 | spi_prettyprint_status_register_srwd(status); |
| 347 | spi_prettyprint_status_register_bit(status, 6); |
| 348 | spi_prettyprint_status_register_bp(status, 3); |
| 349 | spi_prettyprint_status_register_welwip(status); |
| 350 | return 0; |
| 351 | } |
| 352 | |
Stefan Tauner | 12f3d51 | 2014-05-27 21:27:27 +0000 | [diff] [blame] | 353 | int spi_prettyprint_status_register_bp4_srwd(struct flashctx *flash) |
Stefan Tauner | 278ba6e | 2013-06-28 21:28:27 +0000 | [diff] [blame] | 354 | { |
| 355 | uint8_t status = spi_read_status_register(flash); |
| 356 | spi_prettyprint_status_register_hex(status); |
| 357 | |
| 358 | spi_prettyprint_status_register_srwd(status); |
| 359 | spi_prettyprint_status_register_bp(status, 4); |
| 360 | spi_prettyprint_status_register_welwip(status); |
| 361 | return 0; |
| 362 | } |
| 363 | |
Stefan Tauner | 85f09f7 | 2014-05-27 21:27:14 +0000 | [diff] [blame] | 364 | int spi_prettyprint_status_register_bp2_bpl(struct flashctx *flash) |
| 365 | { |
| 366 | uint8_t status = spi_read_status_register(flash); |
| 367 | spi_prettyprint_status_register_hex(status); |
| 368 | |
| 369 | spi_prettyprint_status_register_bpl(status); |
| 370 | spi_prettyprint_status_register_bit(status, 6); |
| 371 | spi_prettyprint_status_register_bit(status, 5); |
| 372 | spi_prettyprint_status_register_bp(status, 2); |
| 373 | spi_prettyprint_status_register_welwip(status); |
| 374 | return 0; |
| 375 | } |
| 376 | |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 377 | /* === Amic === |
| 378 | * FIXME: spi_disable_blockprotect is incorrect but works fine for chips using |
Stefan Tauner | 12f3d51 | 2014-05-27 21:27:27 +0000 | [diff] [blame] | 379 | * spi_prettyprint_status_register_bp1_srwd or |
| 380 | * spi_prettyprint_status_register_bp2_srwd. |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 381 | * FIXME: spi_disable_blockprotect is incorrect and will fail for chips using |
| 382 | * spi_prettyprint_status_register_amic_a25l032 if those have locks controlled |
| 383 | * by the second status register. |
| 384 | */ |
| 385 | |
| 386 | int spi_prettyprint_status_register_amic_a25l032(struct flashctx *flash) |
| 387 | { |
| 388 | uint8_t status = spi_read_status_register(flash); |
| 389 | spi_prettyprint_status_register_hex(status); |
| 390 | |
| 391 | spi_prettyprint_status_register_srwd(status); |
| 392 | msg_cdbg("Chip status register: Sector Protect Size (SEC) is %i KB\n", (status & (1 << 6)) ? 4 : 64); |
| 393 | msg_cdbg("Chip status register: Top/Bottom (TB) is %s\n", (status & (1 << 5)) ? "bottom" : "top"); |
| 394 | spi_prettyprint_status_register_bp(status, 2); |
| 395 | spi_prettyprint_status_register_welwip(status); |
| 396 | msg_cdbg("Chip status register 2 is NOT decoded!\n"); |
| 397 | return 0; |
| 398 | } |
| 399 | |
| 400 | /* === Atmel === */ |
| 401 | |
| 402 | static void spi_prettyprint_status_register_atmel_at25_wpen(uint8_t status) |
| 403 | { |
| 404 | msg_cdbg("Chip status register: Write Protect Enable (WPEN) is %sset\n", |
| 405 | (status & (1 << 7)) ? "" : "not "); |
| 406 | } |
| 407 | |
| 408 | static void spi_prettyprint_status_register_atmel_at25_srpl(uint8_t status) |
| 409 | { |
| 410 | msg_cdbg("Chip status register: Sector Protection Register Lock (SRPL) is %sset\n", |
| 411 | (status & (1 << 7)) ? "" : "not "); |
| 412 | } |
| 413 | |
| 414 | static void spi_prettyprint_status_register_atmel_at25_epewpp(uint8_t status) |
| 415 | { |
| 416 | msg_cdbg("Chip status register: Erase/Program Error (EPE) is %sset\n", |
| 417 | (status & (1 << 5)) ? "" : "not "); |
| 418 | msg_cdbg("Chip status register: WP# pin (WPP) is %sasserted\n", |
| 419 | (status & (1 << 4)) ? "not " : ""); |
| 420 | } |
| 421 | |
| 422 | static void spi_prettyprint_status_register_atmel_at25_swp(uint8_t status) |
| 423 | { |
| 424 | msg_cdbg("Chip status register: Software Protection Status (SWP): "); |
| 425 | switch (status & (3 << 2)) { |
| 426 | case 0x0 << 2: |
| 427 | msg_cdbg("no sectors are protected\n"); |
| 428 | break; |
| 429 | case 0x1 << 2: |
| 430 | msg_cdbg("some sectors are protected\n"); |
| 431 | /* FIXME: Read individual Sector Protection Registers. */ |
| 432 | break; |
| 433 | case 0x3 << 2: |
| 434 | msg_cdbg("all sectors are protected\n"); |
| 435 | break; |
| 436 | default: |
| 437 | msg_cdbg("reserved for future use\n"); |
| 438 | break; |
| 439 | } |
| 440 | } |
| 441 | |
| 442 | int spi_prettyprint_status_register_at25df(struct flashctx *flash) |
| 443 | { |
| 444 | uint8_t status = spi_read_status_register(flash); |
| 445 | spi_prettyprint_status_register_hex(status); |
| 446 | |
| 447 | spi_prettyprint_status_register_atmel_at25_srpl(status); |
| 448 | spi_prettyprint_status_register_bit(status, 6); |
| 449 | spi_prettyprint_status_register_atmel_at25_epewpp(status); |
| 450 | spi_prettyprint_status_register_atmel_at25_swp(status); |
| 451 | spi_prettyprint_status_register_welwip(status); |
| 452 | return 0; |
| 453 | } |
| 454 | |
| 455 | int spi_prettyprint_status_register_at25df_sec(struct flashctx *flash) |
| 456 | { |
| 457 | /* FIXME: We should check the security lockdown. */ |
| 458 | msg_cdbg("Ignoring security lockdown (if present)\n"); |
| 459 | msg_cdbg("Ignoring status register byte 2\n"); |
| 460 | return spi_prettyprint_status_register_at25df(flash); |
| 461 | } |
| 462 | |
Stefan Tauner | 57794ac | 2012-12-29 15:04:20 +0000 | [diff] [blame] | 463 | /* used for AT25F512, AT25F1024(A), AT25F2048 */ |
| 464 | int spi_prettyprint_status_register_at25f(struct flashctx *flash) |
| 465 | { |
| 466 | uint8_t status; |
| 467 | |
| 468 | status = spi_read_status_register(flash); |
| 469 | spi_prettyprint_status_register_hex(status); |
| 470 | |
| 471 | spi_prettyprint_status_register_atmel_at25_wpen(status); |
| 472 | spi_prettyprint_status_register_bit(status, 6); |
| 473 | spi_prettyprint_status_register_bit(status, 5); |
| 474 | spi_prettyprint_status_register_bit(status, 4); |
| 475 | spi_prettyprint_status_register_bp(status, 1); |
| 476 | spi_prettyprint_status_register_welwip(status); |
| 477 | return 0; |
| 478 | } |
| 479 | |
| 480 | int spi_prettyprint_status_register_at25f512a(struct flashctx *flash) |
| 481 | { |
| 482 | uint8_t status; |
| 483 | |
| 484 | status = spi_read_status_register(flash); |
| 485 | spi_prettyprint_status_register_hex(status); |
| 486 | |
| 487 | spi_prettyprint_status_register_atmel_at25_wpen(status); |
| 488 | spi_prettyprint_status_register_bit(status, 6); |
| 489 | spi_prettyprint_status_register_bit(status, 5); |
| 490 | spi_prettyprint_status_register_bit(status, 4); |
| 491 | spi_prettyprint_status_register_bit(status, 3); |
| 492 | spi_prettyprint_status_register_bp(status, 0); |
| 493 | spi_prettyprint_status_register_welwip(status); |
| 494 | return 0; |
| 495 | } |
| 496 | |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 497 | int spi_prettyprint_status_register_at25f512b(struct flashctx *flash) |
| 498 | { |
| 499 | uint8_t status = spi_read_status_register(flash); |
| 500 | spi_prettyprint_status_register_hex(status); |
| 501 | |
| 502 | spi_prettyprint_status_register_atmel_at25_srpl(status); |
| 503 | spi_prettyprint_status_register_bit(status, 6); |
| 504 | spi_prettyprint_status_register_atmel_at25_epewpp(status); |
| 505 | spi_prettyprint_status_register_bit(status, 3); |
| 506 | spi_prettyprint_status_register_bp(status, 0); |
| 507 | spi_prettyprint_status_register_welwip(status); |
| 508 | return 0; |
| 509 | } |
| 510 | |
Stefan Tauner | 57794ac | 2012-12-29 15:04:20 +0000 | [diff] [blame] | 511 | int spi_prettyprint_status_register_at25f4096(struct flashctx *flash) |
| 512 | { |
| 513 | uint8_t status; |
| 514 | |
| 515 | status = spi_read_status_register(flash); |
| 516 | spi_prettyprint_status_register_hex(status); |
| 517 | |
| 518 | spi_prettyprint_status_register_atmel_at25_wpen(status); |
| 519 | spi_prettyprint_status_register_bit(status, 6); |
| 520 | spi_prettyprint_status_register_bit(status, 5); |
| 521 | spi_prettyprint_status_register_bp(status, 2); |
| 522 | spi_prettyprint_status_register_welwip(status); |
| 523 | return 0; |
| 524 | } |
| 525 | |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 526 | int spi_prettyprint_status_register_at25fs010(struct flashctx *flash) |
| 527 | { |
| 528 | uint8_t status = spi_read_status_register(flash); |
| 529 | spi_prettyprint_status_register_hex(status); |
| 530 | |
| 531 | spi_prettyprint_status_register_atmel_at25_wpen(status); |
| 532 | msg_cdbg("Chip status register: Bit 6 / Block Protect 4 (BP4) is " |
| 533 | "%sset\n", (status & (1 << 6)) ? "" : "not "); |
| 534 | msg_cdbg("Chip status register: Bit 5 / Block Protect 3 (BP3) is " |
| 535 | "%sset\n", (status & (1 << 5)) ? "" : "not "); |
| 536 | spi_prettyprint_status_register_bit(status, 4); |
| 537 | msg_cdbg("Chip status register: Bit 3 / Block Protect 1 (BP1) is " |
| 538 | "%sset\n", (status & (1 << 3)) ? "" : "not "); |
| 539 | msg_cdbg("Chip status register: Bit 2 / Block Protect 0 (BP0) is " |
| 540 | "%sset\n", (status & (1 << 2)) ? "" : "not "); |
| 541 | /* FIXME: Pretty-print detailed sector protection status. */ |
| 542 | spi_prettyprint_status_register_welwip(status); |
| 543 | return 0; |
| 544 | } |
| 545 | |
| 546 | int spi_prettyprint_status_register_at25fs040(struct flashctx *flash) |
| 547 | { |
| 548 | uint8_t status = spi_read_status_register(flash); |
| 549 | spi_prettyprint_status_register_hex(status); |
| 550 | |
| 551 | spi_prettyprint_status_register_atmel_at25_wpen(status); |
| 552 | spi_prettyprint_status_register_bp(status, 4); |
| 553 | /* FIXME: Pretty-print detailed sector protection status. */ |
| 554 | spi_prettyprint_status_register_welwip(status); |
| 555 | return 0; |
| 556 | } |
| 557 | |
| 558 | int spi_prettyprint_status_register_at26df081a(struct flashctx *flash) |
| 559 | { |
| 560 | uint8_t status = spi_read_status_register(flash); |
| 561 | spi_prettyprint_status_register_hex(status); |
| 562 | |
| 563 | spi_prettyprint_status_register_atmel_at25_srpl(status); |
| 564 | msg_cdbg("Chip status register: Sequential Program Mode Status (SPM) is %sset\n", |
| 565 | (status & (1 << 6)) ? "" : "not "); |
| 566 | spi_prettyprint_status_register_atmel_at25_epewpp(status); |
| 567 | spi_prettyprint_status_register_atmel_at25_swp(status); |
| 568 | spi_prettyprint_status_register_welwip(status); |
| 569 | return 0; |
| 570 | } |
| 571 | |
Stefan Tauner | cecb2c5 | 2013-06-20 22:55:41 +0000 | [diff] [blame] | 572 | /* Some Atmel DataFlash chips support per sector protection bits and the write protection bits in the status |
| 573 | * register do indicate if none, some or all sectors are protected. It is possible to globally (un)lock all |
| 574 | * sectors at once by writing 0 not only the protection bits (2 and 3) but also completely unrelated bits (4 and |
| 575 | * 5) which normally are not touched. |
| 576 | * Affected are all known Atmel chips matched by AT2[56]D[FLQ]..1A? but the AT26DF041. */ |
| 577 | int spi_disable_blockprotect_at2x_global_unprotect(struct flashctx *flash) |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 578 | { |
Stefan Tauner | cecb2c5 | 2013-06-20 22:55:41 +0000 | [diff] [blame] | 579 | return spi_disable_blockprotect_generic(flash, 0x0C, 1 << 7, 1 << 4, 0x00); |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 580 | } |
| 581 | |
Stefan Tauner | cecb2c5 | 2013-06-20 22:55:41 +0000 | [diff] [blame] | 582 | int spi_disable_blockprotect_at2x_global_unprotect_sec(struct flashctx *flash) |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 583 | { |
| 584 | /* FIXME: We should check the security lockdown. */ |
| 585 | msg_cinfo("Ignoring security lockdown (if present)\n"); |
Stefan Tauner | cecb2c5 | 2013-06-20 22:55:41 +0000 | [diff] [blame] | 586 | return spi_disable_blockprotect_at2x_global_unprotect(flash); |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 587 | } |
| 588 | |
Stefan Tauner | 57794ac | 2012-12-29 15:04:20 +0000 | [diff] [blame] | 589 | int spi_disable_blockprotect_at25f(struct flashctx *flash) |
| 590 | { |
Stefan Tauner | cecb2c5 | 2013-06-20 22:55:41 +0000 | [diff] [blame] | 591 | return spi_disable_blockprotect_generic(flash, 0x0C, 1 << 7, 0, 0xFF); |
Stefan Tauner | 57794ac | 2012-12-29 15:04:20 +0000 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | int spi_disable_blockprotect_at25f512a(struct flashctx *flash) |
| 595 | { |
Stefan Tauner | cecb2c5 | 2013-06-20 22:55:41 +0000 | [diff] [blame] | 596 | return spi_disable_blockprotect_generic(flash, 0x04, 1 << 7, 0, 0xFF); |
Stefan Tauner | 57794ac | 2012-12-29 15:04:20 +0000 | [diff] [blame] | 597 | } |
| 598 | |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 599 | int spi_disable_blockprotect_at25f512b(struct flashctx *flash) |
| 600 | { |
Stefan Tauner | cecb2c5 | 2013-06-20 22:55:41 +0000 | [diff] [blame] | 601 | return spi_disable_blockprotect_generic(flash, 0x04, 1 << 7, 1 << 4, 0xFF); |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 602 | } |
| 603 | |
| 604 | int spi_disable_blockprotect_at25fs010(struct flashctx *flash) |
| 605 | { |
Stefan Tauner | cecb2c5 | 2013-06-20 22:55:41 +0000 | [diff] [blame] | 606 | return spi_disable_blockprotect_generic(flash, 0x6C, 1 << 7, 0, 0xFF); |
Stefan Tauner | 9530a02 | 2012-12-29 15:04:05 +0000 | [diff] [blame] | 607 | } |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 608 | |
| 609 | int spi_disable_blockprotect_at25fs040(struct flashctx *flash) |
| 610 | { |
Stefan Tauner | cecb2c5 | 2013-06-20 22:55:41 +0000 | [diff] [blame] | 611 | return spi_disable_blockprotect_generic(flash, 0x7C, 1 << 7, 0, 0xFF); |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 612 | } |
| 613 | |
Nikolay Nikolaev | d0e3ea1 | 2013-06-28 21:29:08 +0000 | [diff] [blame] | 614 | /* === Eon === */ |
| 615 | |
| 616 | int spi_prettyprint_status_register_en25s_wp(struct flashctx *flash) |
| 617 | { |
| 618 | uint8_t status = spi_read_status_register(flash); |
| 619 | spi_prettyprint_status_register_hex(status); |
| 620 | |
| 621 | spi_prettyprint_status_register_srwd(status); |
| 622 | msg_cdbg("Chip status register: WP# disable (WPDIS) is %sabled\n", (status & (1 << 6)) ? "en " : "dis"); |
| 623 | spi_prettyprint_status_register_bp(status, 3); |
| 624 | spi_prettyprint_status_register_welwip(status); |
| 625 | return 0; |
| 626 | } |
| 627 | |
Nikolay Nikolaev | c80c4a3 | 2013-06-28 21:29:44 +0000 | [diff] [blame] | 628 | /* === Intel/Numonyx/Micron - Spansion === */ |
Stefan Tauner | 54aaa4a | 2012-12-29 15:04:12 +0000 | [diff] [blame] | 629 | |
Nikolay Nikolaev | 6f59b0b | 2013-06-28 21:29:51 +0000 | [diff] [blame] | 630 | int spi_disable_blockprotect_n25q(struct flashctx *flash) |
| 631 | { |
| 632 | return spi_disable_blockprotect_generic(flash, 0x5C, 1 << 7, 0, 0xFF); |
| 633 | } |
| 634 | |
| 635 | int spi_prettyprint_status_register_n25q(struct flashctx *flash) |
| 636 | { |
| 637 | uint8_t status = spi_read_status_register(flash); |
| 638 | spi_prettyprint_status_register_hex(status); |
| 639 | |
| 640 | spi_prettyprint_status_register_srwd(status); |
| 641 | if (flash->chip->total_size <= 32 / 8 * 1024) /* N25Q16 and N25Q32: reserved */ |
| 642 | spi_prettyprint_status_register_bit(status, 6); |
| 643 | else |
| 644 | msg_cdbg("Chip status register: Block Protect 3 (BP3) is %sset\n", |
| 645 | (status & (1 << 6)) ? "" : "not "); |
| 646 | msg_cdbg("Chip status register: Top/Bottom (TB) is %s\n", (status & (1 << 5)) ? "bottom" : "top"); |
| 647 | spi_prettyprint_status_register_bp(status, 2); |
| 648 | spi_prettyprint_status_register_welwip(status); |
| 649 | return 0; |
| 650 | } |
| 651 | |
Nikolay Nikolaev | c80c4a3 | 2013-06-28 21:29:44 +0000 | [diff] [blame] | 652 | /* Used by Intel/Numonyx S33 and Spansion S25FL-S chips */ |
Stefan Tauner | 54aaa4a | 2012-12-29 15:04:12 +0000 | [diff] [blame] | 653 | /* TODO: Clear P_FAIL and E_FAIL with Clear SR Fail Flags Command (30h) here? */ |
Nikolay Nikolaev | c80c4a3 | 2013-06-28 21:29:44 +0000 | [diff] [blame] | 654 | int spi_disable_blockprotect_bp2_ep_srwd(struct flashctx *flash) |
Stefan Tauner | 54aaa4a | 2012-12-29 15:04:12 +0000 | [diff] [blame] | 655 | { |
Stefan Tauner | 278ba6e | 2013-06-28 21:28:27 +0000 | [diff] [blame] | 656 | return spi_disable_blockprotect_bp2_srwd(flash); |
Stefan Tauner | 54aaa4a | 2012-12-29 15:04:12 +0000 | [diff] [blame] | 657 | } |
| 658 | |
Nikolay Nikolaev | c80c4a3 | 2013-06-28 21:29:44 +0000 | [diff] [blame] | 659 | /* Used by Intel/Numonyx S33 and Spansion S25FL-S chips */ |
| 660 | int spi_prettyprint_status_register_bp2_ep_srwd(struct flashctx *flash) |
Stefan Tauner | 54aaa4a | 2012-12-29 15:04:12 +0000 | [diff] [blame] | 661 | { |
| 662 | uint8_t status = spi_read_status_register(flash); |
Stefan Tauner | c2eec2c | 2014-05-03 21:33:01 +0000 | [diff] [blame] | 663 | spi_prettyprint_status_register_hex(status); |
Stefan Tauner | 54aaa4a | 2012-12-29 15:04:12 +0000 | [diff] [blame] | 664 | |
| 665 | spi_prettyprint_status_register_srwd(status); |
| 666 | msg_cdbg("Chip status register: Program Fail Flag (P_FAIL) is %sset\n", |
| 667 | (status & (1 << 6)) ? "" : "not "); |
| 668 | msg_cdbg("Chip status register: Erase Fail Flag (E_FAIL) is %sset\n", |
| 669 | (status & (1 << 5)) ? "" : "not "); |
| 670 | spi_prettyprint_status_register_bp(status, 2); |
| 671 | spi_prettyprint_status_register_welwip(status); |
| 672 | return 0; |
| 673 | } |
| 674 | |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 675 | /* === SST === */ |
| 676 | |
| 677 | static void spi_prettyprint_status_register_sst25_common(uint8_t status) |
| 678 | { |
| 679 | spi_prettyprint_status_register_hex(status); |
| 680 | |
| 681 | spi_prettyprint_status_register_bpl(status); |
| 682 | msg_cdbg("Chip status register: Auto Address Increment Programming (AAI) is %sset\n", |
| 683 | (status & (1 << 6)) ? "" : "not "); |
| 684 | spi_prettyprint_status_register_bp(status, 3); |
| 685 | spi_prettyprint_status_register_welwip(status); |
| 686 | } |
| 687 | |
| 688 | int spi_prettyprint_status_register_sst25(struct flashctx *flash) |
| 689 | { |
| 690 | uint8_t status = spi_read_status_register(flash); |
| 691 | spi_prettyprint_status_register_sst25_common(status); |
| 692 | return 0; |
| 693 | } |
| 694 | |
| 695 | int spi_prettyprint_status_register_sst25vf016(struct flashctx *flash) |
| 696 | { |
| 697 | static const char *const bpt[] = { |
| 698 | "none", |
| 699 | "1F0000H-1FFFFFH", |
| 700 | "1E0000H-1FFFFFH", |
| 701 | "1C0000H-1FFFFFH", |
| 702 | "180000H-1FFFFFH", |
| 703 | "100000H-1FFFFFH", |
| 704 | "all", "all" |
| 705 | }; |
| 706 | uint8_t status = spi_read_status_register(flash); |
| 707 | spi_prettyprint_status_register_sst25_common(status); |
| 708 | msg_cdbg("Resulting block protection : %s\n", bpt[(status & 0x1c) >> 2]); |
| 709 | return 0; |
| 710 | } |
| 711 | |
| 712 | int spi_prettyprint_status_register_sst25vf040b(struct flashctx *flash) |
| 713 | { |
| 714 | static const char *const bpt[] = { |
| 715 | "none", |
| 716 | "0x70000-0x7ffff", |
| 717 | "0x60000-0x7ffff", |
| 718 | "0x40000-0x7ffff", |
| 719 | "all blocks", "all blocks", "all blocks", "all blocks" |
| 720 | }; |
| 721 | uint8_t status = spi_read_status_register(flash); |
| 722 | spi_prettyprint_status_register_sst25_common(status); |
| 723 | msg_cdbg("Resulting block protection : %s\n", bpt[(status & 0x1c) >> 2]); |
| 724 | return 0; |
| 725 | } |