Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2000 Silicon Integrated System Corporation |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | /* |
| 18 | * Datasheet: |
| 19 | * - Name: Intel 82802AB/82802AC Firmware Hub (FWH) |
| 20 | * - URL: http://www.intel.com/design/chipsets/datashts/290658.htm |
| 21 | * - PDF: http://download.intel.com/design/chipsets/datashts/29065804.pdf |
| 22 | * - Order number: 290658-004 |
| 23 | */ |
| 24 | |
Felix Singer | 2e003a0 | 2022-08-19 02:36:28 +0200 | [diff] [blame] | 25 | #include <stdbool.h> |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 26 | #include "flash.h" |
Sean Nelson | 14ba668 | 2010-02-26 05:48:29 +0000 | [diff] [blame] | 27 | #include "chipdrivers.h" |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 28 | |
Sean Nelson | 28accc2 | 2010-03-19 18:47:06 +0000 | [diff] [blame] | 29 | void print_status_82802ab(uint8_t status) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 30 | { |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 31 | msg_cdbg("%s", status & 0x80 ? "Ready:" : "Busy:"); |
| 32 | msg_cdbg("%s", status & 0x40 ? "BE SUSPEND:" : "BE RUN/FINISH:"); |
| 33 | msg_cdbg("%s", status & 0x20 ? "BE ERROR:" : "BE OK:"); |
| 34 | msg_cdbg("%s", status & 0x10 ? "PROG ERR:" : "PROG OK:"); |
| 35 | msg_cdbg("%s", status & 0x8 ? "VP ERR:" : "VPP OK:"); |
| 36 | msg_cdbg("%s", status & 0x4 ? "PROG SUSPEND:" : "PROG RUN/FINISH:"); |
| 37 | msg_cdbg("%s", status & 0x2 ? "WP|TBL#|WP#,ABORT:" : "UNLOCK:"); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 38 | } |
| 39 | |
Carl-Daniel Hailfinger | 63fd902 | 2011-12-14 22:25:15 +0000 | [diff] [blame] | 40 | int probe_82802ab(struct flashctx *flash) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 41 | { |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 42 | chipaddr bios = flash->virtual_memory; |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 43 | uint8_t id1, id2, flashcontent1, flashcontent2; |
Carl-Daniel Hailfinger | a8cf362 | 2014-08-08 08:33:01 +0000 | [diff] [blame] | 44 | int shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED) ? 1 : 0; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 45 | |
Carl-Daniel Hailfinger | 4e9cebb | 2009-09-05 01:16:30 +0000 | [diff] [blame] | 46 | /* Reset to get a clean state */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 47 | chip_writeb(flash, 0xFF, bios); |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 48 | programmer_delay(10); |
Carl-Daniel Hailfinger | 4e9cebb | 2009-09-05 01:16:30 +0000 | [diff] [blame] | 49 | |
| 50 | /* Enter ID mode */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 51 | chip_writeb(flash, 0x90, bios); |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 52 | programmer_delay(10); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 53 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 54 | id1 = chip_readb(flash, bios + (0x00 << shifted)); |
| 55 | id2 = chip_readb(flash, bios + (0x01 << shifted)); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 56 | |
| 57 | /* Leave ID mode */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 58 | chip_writeb(flash, 0xFF, bios); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 59 | |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 60 | programmer_delay(10); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 61 | |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 62 | msg_cdbg("%s: id1 0x%02x, id2 0x%02x", __func__, id1, id2); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 63 | |
Carl-Daniel Hailfinger | 12aa0be | 2010-03-22 23:47:38 +0000 | [diff] [blame] | 64 | if (!oddparity(id1)) |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 65 | msg_cdbg(", id1 parity violation"); |
Carl-Daniel Hailfinger | 12aa0be | 2010-03-22 23:47:38 +0000 | [diff] [blame] | 66 | |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 67 | /* |
| 68 | * Read the product ID location again. We should now see normal |
| 69 | * flash contents. |
| 70 | */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 71 | flashcontent1 = chip_readb(flash, bios + (0x00 << shifted)); |
| 72 | flashcontent2 = chip_readb(flash, bios + (0x01 << shifted)); |
Carl-Daniel Hailfinger | 12aa0be | 2010-03-22 23:47:38 +0000 | [diff] [blame] | 73 | |
| 74 | if (id1 == flashcontent1) |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 75 | msg_cdbg(", id1 is normal flash content"); |
Carl-Daniel Hailfinger | 12aa0be | 2010-03-22 23:47:38 +0000 | [diff] [blame] | 76 | if (id2 == flashcontent2) |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 77 | msg_cdbg(", id2 is normal flash content"); |
Carl-Daniel Hailfinger | 12aa0be | 2010-03-22 23:47:38 +0000 | [diff] [blame] | 78 | |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 79 | msg_cdbg("\n"); |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 80 | if (id1 != flash->chip->manufacture_id || id2 != flash->chip->model_id) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 81 | return 0; |
| 82 | |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 83 | return 1; |
| 84 | } |
| 85 | |
Stefan Tauner | 4404f73 | 2013-09-12 08:28:56 +0000 | [diff] [blame] | 86 | /* FIXME: needs timeout */ |
Carl-Daniel Hailfinger | 63fd902 | 2011-12-14 22:25:15 +0000 | [diff] [blame] | 87 | uint8_t wait_82802ab(struct flashctx *flash) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 88 | { |
| 89 | uint8_t status; |
Carl-Daniel Hailfinger | b30a5ed | 2010-10-10 14:02:27 +0000 | [diff] [blame] | 90 | chipaddr bios = flash->virtual_memory; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 91 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 92 | chip_writeb(flash, 0x70, bios); |
Angel Pons | 68c32db | 2020-01-31 11:16:42 +0100 | [diff] [blame] | 93 | |
| 94 | while ((chip_readb(flash, bios) & 0x80) == 0) // it's busy |
| 95 | ; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 96 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 97 | status = chip_readb(flash, bios); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 98 | |
Carl-Daniel Hailfinger | 4e9cebb | 2009-09-05 01:16:30 +0000 | [diff] [blame] | 99 | /* Reset to get a clean state */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 100 | chip_writeb(flash, 0xFF, bios); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 101 | |
| 102 | return status; |
| 103 | } |
| 104 | |
Carl-Daniel Hailfinger | 63fd902 | 2011-12-14 22:25:15 +0000 | [diff] [blame] | 105 | int erase_block_82802ab(struct flashctx *flash, unsigned int page, |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 106 | unsigned int pagesize) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 107 | { |
Sean Nelson | 5459637 | 2010-01-09 05:30:14 +0000 | [diff] [blame] | 108 | chipaddr bios = flash->virtual_memory; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 109 | uint8_t status; |
| 110 | |
| 111 | // clear status register |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 112 | chip_writeb(flash, 0x50, bios + page); |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 113 | |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 114 | // now start it |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 115 | chip_writeb(flash, 0x20, bios + page); |
| 116 | chip_writeb(flash, 0xd0, bios + page); |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 117 | programmer_delay(10); |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 118 | |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 119 | // now let's see what the register is |
Carl-Daniel Hailfinger | b30a5ed | 2010-10-10 14:02:27 +0000 | [diff] [blame] | 120 | status = wait_82802ab(flash); |
Sean Nelson | 28accc2 | 2010-03-19 18:47:06 +0000 | [diff] [blame] | 121 | print_status_82802ab(status); |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 122 | |
Carl-Daniel Hailfinger | b4061f6 | 2011-06-26 17:04:16 +0000 | [diff] [blame] | 123 | /* FIXME: Check the status register for errors. */ |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 124 | return 0; |
| 125 | } |
| 126 | |
Carl-Daniel Hailfinger | 75a58f9 | 2010-10-13 22:26:56 +0000 | [diff] [blame] | 127 | /* chunksize is 1 */ |
Mark Marshall | f20b7be | 2014-05-09 21:16:21 +0000 | [diff] [blame] | 128 | int write_82802ab(struct flashctx *flash, const uint8_t *src, unsigned int start, unsigned int len) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 129 | { |
Nico Huber | 519be66 | 2018-12-23 20:03:35 +0100 | [diff] [blame] | 130 | unsigned int i; |
Carl-Daniel Hailfinger | b30a5ed | 2010-10-10 14:02:27 +0000 | [diff] [blame] | 131 | chipaddr dst = flash->virtual_memory + start; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 132 | |
Carl-Daniel Hailfinger | b30a5ed | 2010-10-10 14:02:27 +0000 | [diff] [blame] | 133 | for (i = 0; i < len; i++) { |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 134 | /* transfer data from source to destination */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 135 | chip_writeb(flash, 0x40, dst); |
| 136 | chip_writeb(flash, *src++, dst++); |
Carl-Daniel Hailfinger | b30a5ed | 2010-10-10 14:02:27 +0000 | [diff] [blame] | 137 | wait_82802ab(flash); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 138 | } |
Carl-Daniel Hailfinger | b30a5ed | 2010-10-10 14:02:27 +0000 | [diff] [blame] | 139 | |
| 140 | /* FIXME: Ignore errors for now. */ |
| 141 | return 0; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 142 | } |
| 143 | |
Carl-Daniel Hailfinger | 63fd902 | 2011-12-14 22:25:15 +0000 | [diff] [blame] | 144 | int unlock_28f004s5(struct flashctx *flash) |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 145 | { |
| 146 | chipaddr bios = flash->virtual_memory; |
Felix Singer | 2e003a0 | 2022-08-19 02:36:28 +0200 | [diff] [blame] | 147 | uint8_t mcfg, bcfg; |
| 148 | bool need_unlock = false, can_unlock = false; |
Nico Huber | 519be66 | 2018-12-23 20:03:35 +0100 | [diff] [blame] | 149 | unsigned int i; |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 150 | |
| 151 | /* Clear status register */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 152 | chip_writeb(flash, 0x50, bios); |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 153 | |
| 154 | /* Read identifier codes */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 155 | chip_writeb(flash, 0x90, bios); |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 156 | |
| 157 | /* Read master lock-bit */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 158 | mcfg = chip_readb(flash, bios + 0x3); |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 159 | msg_cdbg("master lock is "); |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 160 | if (mcfg) { |
| 161 | msg_cdbg("locked!\n"); |
| 162 | } else { |
| 163 | msg_cdbg("unlocked!\n"); |
Felix Singer | 2e003a0 | 2022-08-19 02:36:28 +0200 | [diff] [blame] | 164 | can_unlock = true; |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 165 | } |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 166 | |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 167 | /* Read block lock-bits */ |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 168 | for (i = 0; i < flash->chip->total_size * 1024; i+= (64 * 1024)) { |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 169 | bcfg = chip_readb(flash, bios + i + 2); // read block lock config |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 170 | msg_cdbg("block lock at %06x is %slocked!\n", i, bcfg ? "" : "un"); |
| 171 | if (bcfg) { |
Felix Singer | 2e003a0 | 2022-08-19 02:36:28 +0200 | [diff] [blame] | 172 | need_unlock = true; |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 173 | } |
| 174 | } |
| 175 | |
| 176 | /* Reset chip */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 177 | chip_writeb(flash, 0xFF, bios); |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 178 | |
| 179 | /* Unlock: clear block lock-bits, if needed */ |
| 180 | if (can_unlock && need_unlock) { |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 181 | msg_cdbg("Unlock: "); |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 182 | chip_writeb(flash, 0x60, bios); |
| 183 | chip_writeb(flash, 0xD0, bios); |
| 184 | chip_writeb(flash, 0xFF, bios); |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 185 | msg_cdbg("Done!\n"); |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | /* Error: master locked or a block is locked */ |
| 189 | if (!can_unlock && need_unlock) { |
| 190 | msg_cerr("At least one block is locked and lockdown is active!\n"); |
| 191 | return -1; |
| 192 | } |
| 193 | |
| 194 | return 0; |
| 195 | } |
Mattias Mattsson | fca3b01 | 2011-08-25 22:44:11 +0000 | [diff] [blame] | 196 | |
Carl-Daniel Hailfinger | 63fd902 | 2011-12-14 22:25:15 +0000 | [diff] [blame] | 197 | int unlock_lh28f008bjt(struct flashctx *flash) |
Mattias Mattsson | fca3b01 | 2011-08-25 22:44:11 +0000 | [diff] [blame] | 198 | { |
| 199 | chipaddr bios = flash->virtual_memory; |
| 200 | uint8_t mcfg, bcfg; |
Felix Singer | 2e003a0 | 2022-08-19 02:36:28 +0200 | [diff] [blame] | 201 | bool need_unlock = false, can_unlock = false; |
Nico Huber | 519be66 | 2018-12-23 20:03:35 +0100 | [diff] [blame] | 202 | unsigned int i; |
Mattias Mattsson | fca3b01 | 2011-08-25 22:44:11 +0000 | [diff] [blame] | 203 | |
| 204 | /* Wait if chip is busy */ |
| 205 | wait_82802ab(flash); |
| 206 | |
| 207 | /* Read identifier codes */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 208 | chip_writeb(flash, 0x90, bios); |
Mattias Mattsson | fca3b01 | 2011-08-25 22:44:11 +0000 | [diff] [blame] | 209 | |
| 210 | /* Read master lock-bit */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 211 | mcfg = chip_readb(flash, bios + 0x3); |
Mattias Mattsson | fca3b01 | 2011-08-25 22:44:11 +0000 | [diff] [blame] | 212 | msg_cdbg("master lock is "); |
| 213 | if (mcfg) { |
| 214 | msg_cdbg("locked!\n"); |
| 215 | } else { |
| 216 | msg_cdbg("unlocked!\n"); |
Felix Singer | 2e003a0 | 2022-08-19 02:36:28 +0200 | [diff] [blame] | 217 | can_unlock = true; |
Mattias Mattsson | fca3b01 | 2011-08-25 22:44:11 +0000 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | /* Read block lock-bits, 8 * 8 KB + 15 * 64 KB */ |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 221 | for (i = 0; i < flash->chip->total_size * 1024; |
Mattias Mattsson | fca3b01 | 2011-08-25 22:44:11 +0000 | [diff] [blame] | 222 | i += (i >= (64 * 1024) ? 64 * 1024 : 8 * 1024)) { |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 223 | bcfg = chip_readb(flash, bios + i + 2); /* read block lock config */ |
Mattias Mattsson | fca3b01 | 2011-08-25 22:44:11 +0000 | [diff] [blame] | 224 | msg_cdbg("block lock at %06x is %slocked!\n", i, |
| 225 | bcfg ? "" : "un"); |
| 226 | if (bcfg) |
Felix Singer | 2e003a0 | 2022-08-19 02:36:28 +0200 | [diff] [blame] | 227 | need_unlock = true; |
Mattias Mattsson | fca3b01 | 2011-08-25 22:44:11 +0000 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | /* Reset chip */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 231 | chip_writeb(flash, 0xFF, bios); |
Mattias Mattsson | fca3b01 | 2011-08-25 22:44:11 +0000 | [diff] [blame] | 232 | |
| 233 | /* Unlock: clear block lock-bits, if needed */ |
| 234 | if (can_unlock && need_unlock) { |
| 235 | msg_cdbg("Unlock: "); |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 236 | chip_writeb(flash, 0x60, bios); |
| 237 | chip_writeb(flash, 0xD0, bios); |
| 238 | chip_writeb(flash, 0xFF, bios); |
Mattias Mattsson | fca3b01 | 2011-08-25 22:44:11 +0000 | [diff] [blame] | 239 | wait_82802ab(flash); |
| 240 | msg_cdbg("Done!\n"); |
| 241 | } |
| 242 | |
| 243 | /* Error: master locked or a block is locked */ |
| 244 | if (!can_unlock && need_unlock) { |
| 245 | msg_cerr("At least one block is locked and lockdown is active!\n"); |
| 246 | return -1; |
| 247 | } |
| 248 | |
| 249 | return 0; |
| 250 | } |