blob: e93e6383f64422cef841f071e0d734e2f11417d2 [file] [log] [blame]
rminnich8d3ff912003-10-25 17:01:29 +00001/*
uweb25f1ea2007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
rminnich8d3ff912003-10-25 17:01:29 +00003 *
uwe555dd972007-09-09 20:21:05 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2004 Tyan Corp <yhlu@tyan.com>
uwe4475e902009-05-19 14:14:21 +00006 * Copyright (C) 2005-2008 coresystems GmbH
hailfinger23060112009-05-08 12:49:03 +00007 * Copyright (C) 2008,2009 Carl-Daniel Hailfinger
rminnich8d3ff912003-10-25 17:01:29 +00008 *
uweb25f1ea2007-08-29 17:52:32 +00009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
rminnich8d3ff912003-10-25 17:01:29 +000013 *
uweb25f1ea2007-08-29 17:52:32 +000014 * 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.
rminnich8d3ff912003-10-25 17:01:29 +000018 *
uweb25f1ea2007-08-29 17:52:32 +000019 * 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
rminnich8d3ff912003-10-25 17:01:29 +000022 */
23
hailfingera83a5fe2010-05-30 22:24:40 +000024#include <stdio.h>
rminnich8d3ff912003-10-25 17:01:29 +000025#include <fcntl.h>
stepan1da96c02006-11-21 23:48:51 +000026#include <sys/types.h>
27#include <sys/stat.h>
rminnich8d3ff912003-10-25 17:01:29 +000028#include <string.h>
29#include <stdlib.h>
ollie6a600992005-11-26 21:55:36 +000030#include <getopt.h>
hailfinger3b471632010-03-27 16:36:40 +000031#if HAVE_UTSNAME == 1
32#include <sys/utsname.h>
33#endif
rminnich8d3ff912003-10-25 17:01:29 +000034#include "flash.h"
hailfinger66966da2009-06-15 14:14:48 +000035#include "flashchips.h"
David Hendricks82fd8ae2010-08-04 14:34:54 -070036#include "programmer.h"
rminnich8d3ff912003-10-25 17:01:29 +000037
David Hendricks82fd8ae2010-08-04 14:34:54 -070038const char * const flashrom_version = FLASHROM_VERSION;
rminnich8d3ff912003-10-25 17:01:29 +000039char *chip_to_probe = NULL;
stuge98c09aa2008-06-18 02:08:40 +000040int verbose = 0;
hailfinger80422e22009-12-13 22:28:00 +000041
hailfinger90c7d542010-05-31 15:27:27 +000042#if CONFIG_INTERNAL == 1
hailfinger6fe23d62009-08-12 11:39:29 +000043enum programmer programmer = PROGRAMMER_INTERNAL;
hailfinger90c7d542010-05-31 15:27:27 +000044#elif CONFIG_DUMMY == 1
hailfinger80422e22009-12-13 22:28:00 +000045enum programmer programmer = PROGRAMMER_DUMMY;
46#else
hailfingerf95c8f62010-01-10 13:28:48 +000047/* If neither internal nor dummy are selected, we must pick a sensible default.
48 * Since there is no reason to prefer a particular external programmer, we fail
49 * if more than one of them is selected. If only one is selected, it is clear
50 * that the user wants that one to become the default.
51 */
David Hendricks82fd8ae2010-08-04 14:34:54 -070052#if CONFIG_NIC3COM+CONFIG_NICREALTEK+CONFIG_NICNATSEMI+CONFIG_GFXNVIDIA+CONFIG_DRKAISER+CONFIG_SATASII+CONFIG_ATAHPT+CONFIG_FT2232_SPI+CONFIG_SERPROG+CONFIG_BUSPIRATE_SPI+CONFIG_DEDIPROG+CONFIG_RAYER_SPI > 1
hailfinger90c7d542010-05-31 15:27:27 +000053#error Please enable either CONFIG_DUMMY or CONFIG_INTERNAL or disable support for all programmers except one.
hailfingerf95c8f62010-01-10 13:28:48 +000054#endif
55enum programmer programmer =
hailfinger90c7d542010-05-31 15:27:27 +000056#if CONFIG_NIC3COM == 1
hailfingerf95c8f62010-01-10 13:28:48 +000057 PROGRAMMER_NIC3COM
58#endif
hailfinger90c7d542010-05-31 15:27:27 +000059#if CONFIG_NICREALTEK == 1
hailfinger5aa36982010-05-21 21:54:07 +000060 PROGRAMMER_NICREALTEK
61 PROGRAMMER_NICREALTEK2
62#endif
hailfingerf0a368f2010-06-07 22:37:54 +000063#if CONFIG_NICNATSEMI == 1
64 PROGRAMMER_NICNATSEMI
65#endif
hailfinger90c7d542010-05-31 15:27:27 +000066#if CONFIG_GFXNVIDIA == 1
hailfingerf95c8f62010-01-10 13:28:48 +000067 PROGRAMMER_GFXNVIDIA
68#endif
hailfinger90c7d542010-05-31 15:27:27 +000069#if CONFIG_DRKAISER == 1
hailfingerf95c8f62010-01-10 13:28:48 +000070 PROGRAMMER_DRKAISER
71#endif
hailfinger90c7d542010-05-31 15:27:27 +000072#if CONFIG_SATASII == 1
hailfingerf95c8f62010-01-10 13:28:48 +000073 PROGRAMMER_SATASII
74#endif
hailfinger90c7d542010-05-31 15:27:27 +000075#if CONFIG_ATAHPT == 1
uwe7e627c82010-02-21 21:17:00 +000076 PROGRAMMER_ATAHPT
77#endif
hailfinger90c7d542010-05-31 15:27:27 +000078#if CONFIG_FT2232_SPI == 1
79 PROGRAMMER_FT2232_SPI
hailfingerf95c8f62010-01-10 13:28:48 +000080#endif
hailfinger90c7d542010-05-31 15:27:27 +000081#if CONFIG_SERPROG == 1
hailfingerf95c8f62010-01-10 13:28:48 +000082 PROGRAMMER_SERPROG
83#endif
hailfinger90c7d542010-05-31 15:27:27 +000084#if CONFIG_BUSPIRATE_SPI == 1
85 PROGRAMMER_BUSPIRATE_SPI
hailfingerf95c8f62010-01-10 13:28:48 +000086#endif
hailfinger90c7d542010-05-31 15:27:27 +000087#if CONFIG_DEDIPROG == 1
hailfingerdfb32a02010-01-19 11:15:48 +000088 PROGRAMMER_DEDIPROG
89#endif
David Hendricks82fd8ae2010-08-04 14:34:54 -070090#if CONFIG_RAYER_SPI == 1
91 PROGRAMMER_RAYER_SPI
92#endif
hailfingerf95c8f62010-01-10 13:28:48 +000093;
hailfinger80422e22009-12-13 22:28:00 +000094#endif
95
David Hendricks82fd8ae2010-08-04 14:34:54 -070096static char *programmer_param = NULL;
stepan782fb172007-04-06 11:58:03 +000097
David Hendricks82fd8ae2010-08-04 14:34:54 -070098/* Supported buses for the current programmer. */
99enum chipbustype buses_supported;
hailfinger80422e22009-12-13 22:28:00 +0000100
101/**
102 * Programmers supporting multiple buses can have differing size limits on
103 * each bus. Store the limits for each bus in a common struct.
104 */
David Hendricks82fd8ae2010-08-04 14:34:54 -0700105struct decode_sizes max_rom_decode;
106
107/* If nonzero, used as the start address of bottom-aligned flash. */
108unsigned long flashbase;
109
110/* Is writing allowed with this programmer? */
111int programmer_may_write;
hailfinger80422e22009-12-13 22:28:00 +0000112
hailfingerabe249e2009-05-08 17:43:22 +0000113const struct programmer_entry programmer_table[] = {
hailfinger90c7d542010-05-31 15:27:27 +0000114#if CONFIG_INTERNAL == 1
hailfingerabe249e2009-05-08 17:43:22 +0000115 {
hailfinger3548a9a2009-08-12 14:34:35 +0000116 .name = "internal",
hailfinger6c69ab02009-05-11 15:46:43 +0000117 .init = internal_init,
118 .shutdown = internal_shutdown,
hailfinger11ae3c42009-05-11 14:13:25 +0000119 .map_flash_region = physmap,
120 .unmap_flash_region = physunmap,
hailfinger6c69ab02009-05-11 15:46:43 +0000121 .chip_readb = internal_chip_readb,
122 .chip_readw = internal_chip_readw,
123 .chip_readl = internal_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +0000124 .chip_readn = internal_chip_readn,
hailfinger6c69ab02009-05-11 15:46:43 +0000125 .chip_writeb = internal_chip_writeb,
126 .chip_writew = internal_chip_writew,
127 .chip_writel = internal_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +0000128 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000129 .delay = internal_delay,
hailfingerabe249e2009-05-08 17:43:22 +0000130 },
hailfinger80422e22009-12-13 22:28:00 +0000131#endif
stepan927d4e22007-04-04 22:45:58 +0000132
hailfinger90c7d542010-05-31 15:27:27 +0000133#if CONFIG_DUMMY == 1
hailfingera9df33c2009-05-09 00:54:55 +0000134 {
hailfinger3548a9a2009-08-12 14:34:35 +0000135 .name = "dummy",
hailfinger6c69ab02009-05-11 15:46:43 +0000136 .init = dummy_init,
137 .shutdown = dummy_shutdown,
hailfinger11ae3c42009-05-11 14:13:25 +0000138 .map_flash_region = dummy_map,
139 .unmap_flash_region = dummy_unmap,
hailfinger6c69ab02009-05-11 15:46:43 +0000140 .chip_readb = dummy_chip_readb,
141 .chip_readw = dummy_chip_readw,
142 .chip_readl = dummy_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +0000143 .chip_readn = dummy_chip_readn,
hailfinger6c69ab02009-05-11 15:46:43 +0000144 .chip_writeb = dummy_chip_writeb,
145 .chip_writew = dummy_chip_writew,
146 .chip_writel = dummy_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +0000147 .chip_writen = dummy_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000148 .delay = internal_delay,
hailfingera9df33c2009-05-09 00:54:55 +0000149 },
hailfinger571a6b32009-09-16 10:09:21 +0000150#endif
hailfingera9df33c2009-05-09 00:54:55 +0000151
hailfinger90c7d542010-05-31 15:27:27 +0000152#if CONFIG_NIC3COM == 1
uwe0f5a3a22009-05-13 11:36:06 +0000153 {
hailfinger3548a9a2009-08-12 14:34:35 +0000154 .name = "nic3com",
uwe0f5a3a22009-05-13 11:36:06 +0000155 .init = nic3com_init,
156 .shutdown = nic3com_shutdown,
uwe3e656bd2009-05-17 23:12:17 +0000157 .map_flash_region = fallback_map,
158 .unmap_flash_region = fallback_unmap,
uwe0f5a3a22009-05-13 11:36:06 +0000159 .chip_readb = nic3com_chip_readb,
hailfinger43716942009-05-16 01:23:55 +0000160 .chip_readw = fallback_chip_readw,
161 .chip_readl = fallback_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +0000162 .chip_readn = fallback_chip_readn,
uwe0f5a3a22009-05-13 11:36:06 +0000163 .chip_writeb = nic3com_chip_writeb,
hailfinger43716942009-05-16 01:23:55 +0000164 .chip_writew = fallback_chip_writew,
165 .chip_writel = fallback_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +0000166 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000167 .delay = internal_delay,
uwe0f5a3a22009-05-13 11:36:06 +0000168 },
hailfinger571a6b32009-09-16 10:09:21 +0000169#endif
uwe0f5a3a22009-05-13 11:36:06 +0000170
hailfinger90c7d542010-05-31 15:27:27 +0000171#if CONFIG_NICREALTEK == 1
hailfinger5aa36982010-05-21 21:54:07 +0000172 {
173 .name = "nicrealtek",
174 .init = nicrealtek_init,
175 .shutdown = nicrealtek_shutdown,
176 .map_flash_region = fallback_map,
177 .unmap_flash_region = fallback_unmap,
178 .chip_readb = nicrealtek_chip_readb,
179 .chip_readw = fallback_chip_readw,
180 .chip_readl = fallback_chip_readl,
181 .chip_readn = fallback_chip_readn,
182 .chip_writeb = nicrealtek_chip_writeb,
183 .chip_writew = fallback_chip_writew,
184 .chip_writel = fallback_chip_writel,
185 .chip_writen = fallback_chip_writen,
186 .delay = internal_delay,
187 },
188 {
189 .name = "nicsmc1211",
190 .init = nicsmc1211_init,
191 .shutdown = nicrealtek_shutdown,
192 .map_flash_region = fallback_map,
193 .unmap_flash_region = fallback_unmap,
194 .chip_readb = nicrealtek_chip_readb,
195 .chip_readw = fallback_chip_readw,
196 .chip_readl = fallback_chip_readl,
197 .chip_readn = fallback_chip_readn,
198 .chip_writeb = nicrealtek_chip_writeb,
199 .chip_writew = fallback_chip_writew,
200 .chip_writel = fallback_chip_writel,
201 .chip_writen = fallback_chip_writen,
202 .delay = internal_delay,
203 },
204#endif
205
hailfingerf0a368f2010-06-07 22:37:54 +0000206#if CONFIG_NICNATSEMI == 1
207 {
208 .name = "nicnatsemi",
209 .init = nicnatsemi_init,
210 .shutdown = nicnatsemi_shutdown,
211 .map_flash_region = fallback_map,
212 .unmap_flash_region = fallback_unmap,
213 .chip_readb = nicnatsemi_chip_readb,
214 .chip_readw = fallback_chip_readw,
215 .chip_readl = fallback_chip_readl,
216 .chip_readn = fallback_chip_readn,
217 .chip_writeb = nicnatsemi_chip_writeb,
218 .chip_writew = fallback_chip_writew,
219 .chip_writel = fallback_chip_writel,
220 .chip_writen = fallback_chip_writen,
221 .delay = internal_delay,
222 },
223#endif
hailfinger5aa36982010-05-21 21:54:07 +0000224
hailfinger90c7d542010-05-31 15:27:27 +0000225#if CONFIG_GFXNVIDIA == 1
uweff4576d2009-09-30 18:29:55 +0000226 {
227 .name = "gfxnvidia",
228 .init = gfxnvidia_init,
229 .shutdown = gfxnvidia_shutdown,
230 .map_flash_region = fallback_map,
231 .unmap_flash_region = fallback_unmap,
232 .chip_readb = gfxnvidia_chip_readb,
233 .chip_readw = fallback_chip_readw,
234 .chip_readl = fallback_chip_readl,
235 .chip_readn = fallback_chip_readn,
236 .chip_writeb = gfxnvidia_chip_writeb,
237 .chip_writew = fallback_chip_writew,
238 .chip_writel = fallback_chip_writel,
239 .chip_writen = fallback_chip_writen,
240 .delay = internal_delay,
241 },
242#endif
243
hailfinger90c7d542010-05-31 15:27:27 +0000244#if CONFIG_DRKAISER == 1
ruikda922a12009-05-17 19:39:27 +0000245 {
uwee2f95ef2009-09-02 23:00:46 +0000246 .name = "drkaiser",
247 .init = drkaiser_init,
248 .shutdown = drkaiser_shutdown,
249 .map_flash_region = fallback_map,
250 .unmap_flash_region = fallback_unmap,
251 .chip_readb = drkaiser_chip_readb,
252 .chip_readw = fallback_chip_readw,
253 .chip_readl = fallback_chip_readl,
254 .chip_readn = fallback_chip_readn,
255 .chip_writeb = drkaiser_chip_writeb,
256 .chip_writew = fallback_chip_writew,
257 .chip_writel = fallback_chip_writel,
258 .chip_writen = fallback_chip_writen,
259 .delay = internal_delay,
260 },
hailfinger571a6b32009-09-16 10:09:21 +0000261#endif
uwee2f95ef2009-09-02 23:00:46 +0000262
hailfinger90c7d542010-05-31 15:27:27 +0000263#if CONFIG_SATASII == 1
uwee2f95ef2009-09-02 23:00:46 +0000264 {
hailfinger3548a9a2009-08-12 14:34:35 +0000265 .name = "satasii",
ruikda922a12009-05-17 19:39:27 +0000266 .init = satasii_init,
267 .shutdown = satasii_shutdown,
uwe3e656bd2009-05-17 23:12:17 +0000268 .map_flash_region = fallback_map,
269 .unmap_flash_region = fallback_unmap,
ruikda922a12009-05-17 19:39:27 +0000270 .chip_readb = satasii_chip_readb,
271 .chip_readw = fallback_chip_readw,
272 .chip_readl = fallback_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +0000273 .chip_readn = fallback_chip_readn,
ruikda922a12009-05-17 19:39:27 +0000274 .chip_writeb = satasii_chip_writeb,
275 .chip_writew = fallback_chip_writew,
276 .chip_writel = fallback_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +0000277 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000278 .delay = internal_delay,
ruikda922a12009-05-17 19:39:27 +0000279 },
hailfinger571a6b32009-09-16 10:09:21 +0000280#endif
ruikda922a12009-05-17 19:39:27 +0000281
hailfinger90c7d542010-05-31 15:27:27 +0000282#if CONFIG_ATAHPT == 1
uwe7e627c82010-02-21 21:17:00 +0000283 {
284 .name = "atahpt",
285 .init = atahpt_init,
286 .shutdown = atahpt_shutdown,
287 .map_flash_region = fallback_map,
288 .unmap_flash_region = fallback_unmap,
289 .chip_readb = atahpt_chip_readb,
290 .chip_readw = fallback_chip_readw,
291 .chip_readl = fallback_chip_readl,
292 .chip_readn = fallback_chip_readn,
293 .chip_writeb = atahpt_chip_writeb,
294 .chip_writew = fallback_chip_writew,
295 .chip_writel = fallback_chip_writel,
296 .chip_writen = fallback_chip_writen,
297 .delay = internal_delay,
298 },
299#endif
300
hailfinger90c7d542010-05-31 15:27:27 +0000301#if CONFIG_INTERNAL == 1
hailfinger324a9cc2010-05-26 01:45:41 +0000302#if defined(__i386__) || defined(__x86_64__)
hailfinger26e212b2009-05-31 18:00:57 +0000303 {
hailfinger3548a9a2009-08-12 14:34:35 +0000304 .name = "it87spi",
hailfinger26e212b2009-05-31 18:00:57 +0000305 .init = it87spi_init,
hailfinger571a6b32009-09-16 10:09:21 +0000306 .shutdown = noop_shutdown,
hailfinger6fe23d62009-08-12 11:39:29 +0000307 .map_flash_region = fallback_map,
308 .unmap_flash_region = fallback_unmap,
hailfinger571a6b32009-09-16 10:09:21 +0000309 .chip_readb = noop_chip_readb,
hailfinger9d987ef2009-06-05 18:32:07 +0000310 .chip_readw = fallback_chip_readw,
311 .chip_readl = fallback_chip_readl,
312 .chip_readn = fallback_chip_readn,
hailfinger571a6b32009-09-16 10:09:21 +0000313 .chip_writeb = noop_chip_writeb,
hailfinger9d987ef2009-06-05 18:32:07 +0000314 .chip_writew = fallback_chip_writew,
315 .chip_writel = fallback_chip_writel,
316 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000317 .delay = internal_delay,
hailfinger26e212b2009-05-31 18:00:57 +0000318 },
hailfinger80422e22009-12-13 22:28:00 +0000319#endif
hailfinger324a9cc2010-05-26 01:45:41 +0000320#endif
hailfinger26e212b2009-05-31 18:00:57 +0000321
hailfinger90c7d542010-05-31 15:27:27 +0000322#if CONFIG_FT2232_SPI == 1
hailfingerf31da3d2009-06-16 21:08:06 +0000323 {
hailfinger90c7d542010-05-31 15:27:27 +0000324 .name = "ft2232_spi",
hailfingerf31da3d2009-06-16 21:08:06 +0000325 .init = ft2232_spi_init,
hailfinger571a6b32009-09-16 10:09:21 +0000326 .shutdown = noop_shutdown, /* Missing shutdown */
hailfinger6fe23d62009-08-12 11:39:29 +0000327 .map_flash_region = fallback_map,
328 .unmap_flash_region = fallback_unmap,
hailfinger571a6b32009-09-16 10:09:21 +0000329 .chip_readb = noop_chip_readb,
hailfingerf31da3d2009-06-16 21:08:06 +0000330 .chip_readw = fallback_chip_readw,
331 .chip_readl = fallback_chip_readl,
332 .chip_readn = fallback_chip_readn,
hailfinger571a6b32009-09-16 10:09:21 +0000333 .chip_writeb = noop_chip_writeb,
hailfingerf31da3d2009-06-16 21:08:06 +0000334 .chip_writew = fallback_chip_writew,
335 .chip_writel = fallback_chip_writel,
336 .chip_writen = fallback_chip_writen,
337 .delay = internal_delay,
338 },
hailfingerd9dcfbd2009-08-19 13:27:58 +0000339#endif
hailfinger6fe23d62009-08-12 11:39:29 +0000340
hailfinger90c7d542010-05-31 15:27:27 +0000341#if CONFIG_SERPROG == 1
hailfinger37b4fbf2009-06-23 11:33:43 +0000342 {
hailfinger3548a9a2009-08-12 14:34:35 +0000343 .name = "serprog",
hailfinger37b4fbf2009-06-23 11:33:43 +0000344 .init = serprog_init,
345 .shutdown = serprog_shutdown,
346 .map_flash_region = fallback_map,
347 .unmap_flash_region = fallback_unmap,
348 .chip_readb = serprog_chip_readb,
349 .chip_readw = fallback_chip_readw,
350 .chip_readl = fallback_chip_readl,
351 .chip_readn = serprog_chip_readn,
352 .chip_writeb = serprog_chip_writeb,
353 .chip_writew = fallback_chip_writew,
354 .chip_writel = fallback_chip_writel,
355 .chip_writen = fallback_chip_writen,
356 .delay = serprog_delay,
357 },
hailfinger74d88a72009-08-12 16:17:41 +0000358#endif
hailfingerf31da3d2009-06-16 21:08:06 +0000359
hailfinger90c7d542010-05-31 15:27:27 +0000360#if CONFIG_BUSPIRATE_SPI == 1
hailfinger9c5add72009-11-24 00:20:03 +0000361 {
hailfinger90c7d542010-05-31 15:27:27 +0000362 .name = "buspirate_spi",
hailfinger9c5add72009-11-24 00:20:03 +0000363 .init = buspirate_spi_init,
364 .shutdown = buspirate_spi_shutdown,
365 .map_flash_region = fallback_map,
366 .unmap_flash_region = fallback_unmap,
367 .chip_readb = noop_chip_readb,
368 .chip_readw = fallback_chip_readw,
369 .chip_readl = fallback_chip_readl,
370 .chip_readn = fallback_chip_readn,
371 .chip_writeb = noop_chip_writeb,
372 .chip_writew = fallback_chip_writew,
373 .chip_writel = fallback_chip_writel,
374 .chip_writen = fallback_chip_writen,
375 .delay = internal_delay,
376 },
377#endif
378
hailfinger90c7d542010-05-31 15:27:27 +0000379#if CONFIG_DEDIPROG == 1
hailfingerdfb32a02010-01-19 11:15:48 +0000380 {
381 .name = "dediprog",
382 .init = dediprog_init,
383 .shutdown = dediprog_shutdown,
384 .map_flash_region = fallback_map,
385 .unmap_flash_region = fallback_unmap,
386 .chip_readb = noop_chip_readb,
387 .chip_readw = fallback_chip_readw,
388 .chip_readl = fallback_chip_readl,
389 .chip_readn = fallback_chip_readn,
390 .chip_writeb = noop_chip_writeb,
391 .chip_writew = fallback_chip_writew,
392 .chip_writel = fallback_chip_writel,
393 .chip_writen = fallback_chip_writen,
394 .delay = internal_delay,
395 },
396#endif
397
David Hendricks82fd8ae2010-08-04 14:34:54 -0700398#if CONFIG_RAYER_SPI == 1
399 {
400 .name = "rayer_spi",
401 .init = rayer_spi_init,
402 .shutdown = noop_shutdown,
403 .map_flash_region = fallback_map,
404 .unmap_flash_region = fallback_unmap,
405 .chip_readb = noop_chip_readb,
406 .chip_readw = fallback_chip_readw,
407 .chip_readl = fallback_chip_readl,
408 .chip_readn = fallback_chip_readn,
409 .chip_writeb = noop_chip_writeb,
410 .chip_writew = fallback_chip_writew,
411 .chip_writel = fallback_chip_writel,
412 .chip_writen = fallback_chip_writen,
413 .delay = internal_delay,
414 },
415#endif
416
hailfinger3548a9a2009-08-12 14:34:35 +0000417 {}, /* This entry corresponds to PROGRAMMER_INVALID. */
hailfingerabe249e2009-05-08 17:43:22 +0000418};
stepan927d4e22007-04-04 22:45:58 +0000419
hailfingerdc6f7972010-02-14 01:20:28 +0000420#define SHUTDOWN_MAXFN 4
421static int shutdown_fn_count = 0;
422struct shutdown_func_data {
423 void (*func) (void *data);
424 void *data;
David Hendricks82fd8ae2010-08-04 14:34:54 -0700425} static shutdown_fn[SHUTDOWN_MAXFN];
426/* Initialize to 0 to make sure nobody registers a shutdown function before
427 * programmer init.
428 */
429static int may_register_shutdown = 0;
hailfingerdc6f7972010-02-14 01:20:28 +0000430
431/* Register a function to be executed on programmer shutdown.
432 * The advantage over atexit() is that you can supply a void pointer which will
433 * be used as parameter to the registered function upon programmer shutdown.
434 * This pointer can point to arbitrary data used by said function, e.g. undo
435 * information for GPIO settings etc. If unneeded, set data=NULL.
436 * Please note that the first (void *data) belongs to the function signature of
437 * the function passed as first parameter.
438 */
439int register_shutdown(void (*function) (void *data), void *data)
440{
441 if (shutdown_fn_count >= SHUTDOWN_MAXFN) {
hailfinger63932d42010-06-04 23:20:21 +0000442 msg_perr("Tried to register more than %i shutdown functions.\n",
hailfingerdc6f7972010-02-14 01:20:28 +0000443 SHUTDOWN_MAXFN);
444 return 1;
445 }
David Hendricks82fd8ae2010-08-04 14:34:54 -0700446 if (!may_register_shutdown) {
447 msg_perr("Tried to register a shutdown function before "
448 "programmer init.\n");
449 return 1;
450 }
hailfingerdc6f7972010-02-14 01:20:28 +0000451 shutdown_fn[shutdown_fn_count].func = function;
452 shutdown_fn[shutdown_fn_count].data = data;
453 shutdown_fn_count++;
454
455 return 0;
456}
457
David Hendricks82fd8ae2010-08-04 14:34:54 -0700458int programmer_init(char *param)
uweabe92a52009-05-16 22:36:00 +0000459{
David Hendricks82fd8ae2010-08-04 14:34:54 -0700460 int ret;
461 /* Initialize all programmer specific data. */
462 /* Default to unlimited decode sizes. */
463 max_rom_decode = (const struct decode_sizes) {
464 .parallel = 0xffffffff,
465 .lpc = 0xffffffff,
466 .fwh = 0xffffffff,
467 .spi = 0xffffffff
468 };
469 /* Default to Parallel/LPC/FWH flash devices. If a known host controller
470 * is found, the init routine sets the buses_supported bitfield.
471 */
472 buses_supported = CHIP_BUSTYPE_NONSPI;
473 /* Default to top aligned flash at 4 GB. */
474 flashbase = 0;
475 /* Registering shutdown functions is now allowed. */
476 may_register_shutdown = 1;
477 /* Default to allowing writes. Broken programmers set this to 0. */
478 programmer_may_write = 1;
479
480 programmer_param = param;
481 msg_pdbg("Initializing %s programmer\n",
482 programmer_table[programmer].name);
483 ret = programmer_table[programmer].init();
484 if (programmer_param && strlen(programmer_param)) {
485 msg_perr("Unhandled programmer parameters: %s\n",
486 programmer_param);
487 /* Do not error out here, the init itself was successful. */
488 }
489 return ret;
uweabe92a52009-05-16 22:36:00 +0000490}
491
492int programmer_shutdown(void)
493{
David Hendricks82fd8ae2010-08-04 14:34:54 -0700494 /* Registering shutdown functions is no longer allowed. */
495 may_register_shutdown = 0;
496 while (shutdown_fn_count > 0) {
497 int i = --shutdown_fn_count;
hailfingerdc6f7972010-02-14 01:20:28 +0000498 shutdown_fn[i].func(shutdown_fn[i].data);
David Hendricks82fd8ae2010-08-04 14:34:54 -0700499 }
uweabe92a52009-05-16 22:36:00 +0000500 return programmer_table[programmer].shutdown();
501}
502
503void *programmer_map_flash_region(const char *descr, unsigned long phys_addr,
504 size_t len)
505{
506 return programmer_table[programmer].map_flash_region(descr,
507 phys_addr, len);
508}
509
510void programmer_unmap_flash_region(void *virt_addr, size_t len)
511{
512 programmer_table[programmer].unmap_flash_region(virt_addr, len);
513}
514
515void chip_writeb(uint8_t val, chipaddr addr)
516{
517 programmer_table[programmer].chip_writeb(val, addr);
518}
519
520void chip_writew(uint16_t val, chipaddr addr)
521{
522 programmer_table[programmer].chip_writew(val, addr);
523}
524
525void chip_writel(uint32_t val, chipaddr addr)
526{
527 programmer_table[programmer].chip_writel(val, addr);
528}
529
hailfinger9d987ef2009-06-05 18:32:07 +0000530void chip_writen(uint8_t *buf, chipaddr addr, size_t len)
531{
532 programmer_table[programmer].chip_writen(buf, addr, len);
533}
534
uweabe92a52009-05-16 22:36:00 +0000535uint8_t chip_readb(const chipaddr addr)
536{
537 return programmer_table[programmer].chip_readb(addr);
538}
539
540uint16_t chip_readw(const chipaddr addr)
541{
542 return programmer_table[programmer].chip_readw(addr);
543}
544
545uint32_t chip_readl(const chipaddr addr)
546{
547 return programmer_table[programmer].chip_readl(addr);
548}
549
hailfinger9d987ef2009-06-05 18:32:07 +0000550void chip_readn(uint8_t *buf, chipaddr addr, size_t len)
551{
552 programmer_table[programmer].chip_readn(buf, addr, len);
hailfinger9d987ef2009-06-05 18:32:07 +0000553}
554
hailfingere5829f62009-06-05 17:48:08 +0000555void programmer_delay(int usecs)
556{
557 programmer_table[programmer].delay(usecs);
558}
559
stuge5ff0e6c2009-01-26 00:39:57 +0000560void map_flash_registers(struct flashchip *flash)
stepan15e64bc2007-05-24 08:48:10 +0000561{
stepan15e64bc2007-05-24 08:48:10 +0000562 size_t size = flash->total_size * 1024;
hailfinger8577ad12009-05-11 14:01:17 +0000563 /* Flash registers live 4 MByte below the flash. */
hailfinger0459e1c2009-08-19 13:55:34 +0000564 /* FIXME: This is incorrect for nonstandard flashbase. */
hailfinger82719632009-05-16 21:22:56 +0000565 flash->virtual_registers = (chipaddr)programmer_map_flash_region("flash chip registers", (0xFFFFFFFF - 0x400000 - size + 1), size);
stepan15e64bc2007-05-24 08:48:10 +0000566}
567
hailfinger0f08b7a2009-06-16 08:55:44 +0000568int read_memmapped(struct flashchip *flash, uint8_t *buf, int start, int len)
hailfinger23060112009-05-08 12:49:03 +0000569{
hailfinger0f08b7a2009-06-16 08:55:44 +0000570 chip_readn(buf, flash->virtual_memory + start, len);
hailfinger23060112009-05-08 12:49:03 +0000571
572 return 0;
573}
574
hailfinger7b414742009-06-13 12:04:03 +0000575int min(int a, int b)
576{
577 return (a < b) ? a : b;
578}
579
hailfinger7af83692009-06-15 17:23:36 +0000580int max(int a, int b)
581{
582 return (a > b) ? a : b;
583}
584
hailfingeraec9c962009-10-31 01:53:09 +0000585int bitcount(unsigned long a)
586{
587 int i = 0;
588 for (; a != 0; a >>= 1)
589 if (a & 1)
590 i++;
591 return i;
592}
593
hailfingera916b422009-06-01 02:08:58 +0000594char *strcat_realloc(char *dest, const char *src)
595{
596 dest = realloc(dest, strlen(dest) + strlen(src) + 1);
David Hendricks82fd8ae2010-08-04 14:34:54 -0700597 if (!dest) {
598 msg_gerr("Out of memory!\n");
hailfingera916b422009-06-01 02:08:58 +0000599 return NULL;
David Hendricks82fd8ae2010-08-04 14:34:54 -0700600 }
hailfingera916b422009-06-01 02:08:58 +0000601 strcat(dest, src);
602 return dest;
603}
604
hailfinger6e5a52a2009-11-24 18:27:10 +0000605/* This is a somewhat hacked function similar in some ways to strtok().
David Hendricks82fd8ae2010-08-04 14:34:54 -0700606 * It will look for needle with a subsequent '=' in haystack, return a copy of
607 * needle and remove everything from the first occurrence of needle to the next
608 * delimiter from haystack.
hailfinger6e5a52a2009-11-24 18:27:10 +0000609 */
610char *extract_param(char **haystack, char *needle, char *delim)
611{
David Hendricks82fd8ae2010-08-04 14:34:54 -0700612 char *param_pos, *opt_pos, *rest;
613 char *opt = NULL;
614 int optlen;
hailfingerf4aaccc2010-04-28 15:22:14 +0000615 int needlelen;
hailfinger6e5a52a2009-11-24 18:27:10 +0000616
hailfingerf4aaccc2010-04-28 15:22:14 +0000617 needlelen = strlen(needle);
618 if (!needlelen) {
619 msg_gerr("%s: empty needle! Please report a bug at "
620 "flashrom@flashrom.org\n", __func__);
621 return NULL;
622 }
623 /* No programmer parameters given. */
624 if (*haystack == NULL)
625 return NULL;
hailfinger6e5a52a2009-11-24 18:27:10 +0000626 param_pos = strstr(*haystack, needle);
627 do {
628 if (!param_pos)
629 return NULL;
David Hendricks82fd8ae2010-08-04 14:34:54 -0700630 /* Needle followed by '='? */
631 if (param_pos[needlelen] == '=') {
632
633 /* Beginning of the string? */
634 if (param_pos == *haystack)
635 break;
636 /* After a delimiter? */
637 if (strchr(delim, *(param_pos - 1)))
638 break;
639 }
hailfinger6e5a52a2009-11-24 18:27:10 +0000640 /* Continue searching. */
641 param_pos++;
642 param_pos = strstr(param_pos, needle);
643 } while (1);
David Hendricks82fd8ae2010-08-04 14:34:54 -0700644
hailfinger6e5a52a2009-11-24 18:27:10 +0000645 if (param_pos) {
David Hendricks82fd8ae2010-08-04 14:34:54 -0700646 /* Get the string after needle and '='. */
647 opt_pos = param_pos + needlelen + 1;
648 optlen = strcspn(opt_pos, delim);
649 /* Return an empty string if the parameter was empty. */
650 opt = malloc(optlen + 1);
651 if (!opt) {
snelsone42c3802010-05-07 20:09:04 +0000652 msg_gerr("Out of memory!\n");
hailfinger6e5a52a2009-11-24 18:27:10 +0000653 exit(1);
654 }
David Hendricks82fd8ae2010-08-04 14:34:54 -0700655 strncpy(opt, opt_pos, optlen);
656 opt[optlen] = '\0';
657 rest = opt_pos + optlen;
658 /* Skip all delimiters after the current parameter. */
659 rest += strspn(rest, delim);
660 memmove(param_pos, rest, strlen(rest) + 1);
661 /* We could shrink haystack, but the effort is not worth it. */
hailfinger6e5a52a2009-11-24 18:27:10 +0000662 }
hailfinger6e5a52a2009-11-24 18:27:10 +0000663
David Hendricks82fd8ae2010-08-04 14:34:54 -0700664 return opt;
665}
666
667char *extract_programmer_param(char *param_name)
668{
669 return extract_param(&programmer_param, param_name, ",");
hailfinger6e5a52a2009-11-24 18:27:10 +0000670}
671
hailfinger7af83692009-06-15 17:23:36 +0000672/* start is an offset to the base address of the flash chip */
673int check_erased_range(struct flashchip *flash, int start, int len)
674{
675 int ret;
676 uint8_t *cmpbuf = malloc(len);
677
678 if (!cmpbuf) {
snelsone42c3802010-05-07 20:09:04 +0000679 msg_gerr("Could not allocate memory!\n");
hailfinger7af83692009-06-15 17:23:36 +0000680 exit(1);
681 }
682 memset(cmpbuf, 0xff, len);
683 ret = verify_range(flash, cmpbuf, start, len, "ERASE");
684 free(cmpbuf);
685 return ret;
686}
687
688/**
hailfinger7af3d192009-11-25 17:05:52 +0000689 * @cmpbuf buffer to compare against, cmpbuf[0] is expected to match the
690 flash content at location start
hailfinger7af83692009-06-15 17:23:36 +0000691 * @start offset to the base address of the flash chip
692 * @len length of the verified area
693 * @message string to print in the "FAILED" message
694 * @return 0 for success, -1 for failure
695 */
696int verify_range(struct flashchip *flash, uint8_t *cmpbuf, int start, int len, char *message)
697{
698 int i, j, starthere, lenhere, ret = 0;
hailfinger7af83692009-06-15 17:23:36 +0000699 int page_size = flash->page_size;
700 uint8_t *readbuf = malloc(page_size);
hailfinger5be6c0f2009-07-23 01:42:56 +0000701 int failcount = 0;
hailfinger7af83692009-06-15 17:23:36 +0000702
703 if (!len)
704 goto out_free;
705
hailfingerb0f4d122009-06-24 08:20:45 +0000706 if (!flash->read) {
snelsone42c3802010-05-07 20:09:04 +0000707 msg_cerr("ERROR: flashrom has no read function for this flash chip.\n");
hailfingerb0f4d122009-06-24 08:20:45 +0000708 return 1;
709 }
hailfinger7af83692009-06-15 17:23:36 +0000710 if (!readbuf) {
snelsone42c3802010-05-07 20:09:04 +0000711 msg_gerr("Could not allocate memory!\n");
hailfinger7af83692009-06-15 17:23:36 +0000712 exit(1);
713 }
714
715 if (start + len > flash->total_size * 1024) {
snelsone42c3802010-05-07 20:09:04 +0000716 msg_gerr("Error: %s called with start 0x%x + len 0x%x >"
hailfinger7af83692009-06-15 17:23:36 +0000717 " total_size 0x%x\n", __func__, start, len,
718 flash->total_size * 1024);
719 ret = -1;
720 goto out_free;
721 }
722 if (!message)
723 message = "VERIFY";
724
725 /* Warning: This loop has a very unusual condition and body.
726 * The loop needs to go through each page with at least one affected
727 * byte. The lowest page number is (start / page_size) since that
728 * division rounds down. The highest page number we want is the page
729 * where the last byte of the range lives. That last byte has the
730 * address (start + len - 1), thus the highest page number is
731 * (start + len - 1) / page_size. Since we want to include that last
732 * page as well, the loop condition uses <=.
733 */
734 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
735 /* Byte position of the first byte in the range in this page. */
736 starthere = max(start, i * page_size);
737 /* Length of bytes in the range in this page. */
738 lenhere = min(start + len, (i + 1) * page_size) - starthere;
David Hendricks82fd8ae2010-08-04 14:34:54 -0700739 ret = flash->read(flash, readbuf, starthere, lenhere);
740 if (ret) {
741 msg_gerr("Verification impossible because read failed "
742 "at 0x%x (len 0x%x)\n", starthere, lenhere);
743 break;
744 }
hailfinger7af83692009-06-15 17:23:36 +0000745 for (j = 0; j < lenhere; j++) {
746 if (cmpbuf[starthere - start + j] != readbuf[j]) {
hailfinger5be6c0f2009-07-23 01:42:56 +0000747 /* Only print the first failure. */
748 if (!failcount++)
snelsone42c3802010-05-07 20:09:04 +0000749 msg_cerr("%s FAILED at 0x%08x! "
hailfinger5be6c0f2009-07-23 01:42:56 +0000750 "Expected=0x%02x, Read=0x%02x,",
751 message, starthere + j,
752 cmpbuf[starthere - start + j],
753 readbuf[j]);
hailfinger7af83692009-06-15 17:23:36 +0000754 }
755 }
756 }
hailfinger5be6c0f2009-07-23 01:42:56 +0000757 if (failcount) {
snelsone42c3802010-05-07 20:09:04 +0000758 msg_cerr(" failed byte count from 0x%08x-0x%08x: 0x%x\n",
hailfinger5be6c0f2009-07-23 01:42:56 +0000759 start, start + len - 1, failcount);
760 ret = -1;
761 }
hailfinger7af83692009-06-15 17:23:36 +0000762
763out_free:
764 free(readbuf);
765 return ret;
766}
767
hailfingerb247c7a2010-03-08 00:42:32 +0000768/**
769 * Check if the buffer @have can be programmed to the content of @want without
770 * erasing. This is only possible if all chunks of size @gran are either kept
771 * as-is or changed from an all-ones state to any other state.
772 * The following write granularities (enum @gran) are known:
773 * - 1 bit. Each bit can be cleared individually.
774 * - 1 byte. A byte can be written once. Further writes to an already written
775 * byte cause the contents to be either undefined or to stay unchanged.
776 * - 128 bytes. If less than 128 bytes are written, the rest will be
777 * erased. Each write to a 128-byte region will trigger an automatic erase
778 * before anything is written. Very uncommon behaviour and unsupported by
779 * this function.
780 * - 256 bytes. If less than 256 bytes are written, the contents of the
781 * unwritten bytes are undefined.
782 *
783 * @have buffer with current content
784 * @want buffer with desired content
785 * @len length of the verified area
786 * @gran write granularity (enum, not count)
787 * @return 0 if no erase is needed, 1 otherwise
788 */
789int need_erase(uint8_t *have, uint8_t *want, int len, enum write_granularity gran)
790{
791 int result = 0;
792 int i, j, limit;
793
794 switch (gran) {
795 case write_gran_1bit:
796 for (i = 0; i < len; i++)
797 if ((have[i] & want[i]) != want[i]) {
798 result = 1;
799 break;
800 }
801 break;
802 case write_gran_1byte:
803 for (i = 0; i < len; i++)
804 if ((have[i] != want[i]) && (have[i] != 0xff)) {
805 result = 1;
806 break;
807 }
808 break;
809 case write_gran_256bytes:
810 for (j = 0; j < len / 256; j++) {
811 limit = min (256, len - j * 256);
uwef6f94d42010-03-13 17:28:29 +0000812 /* Are 'have' and 'want' identical? */
hailfingerb247c7a2010-03-08 00:42:32 +0000813 if (!memcmp(have + j * 256, want + j * 256, limit))
814 continue;
815 /* have needs to be in erased state. */
816 for (i = 0; i < limit; i++)
817 if (have[i] != 0xff) {
818 result = 1;
819 break;
820 }
821 if (result)
822 break;
823 }
824 break;
825 }
826 return result;
827}
828
hailfinger0c515352009-11-23 12:55:31 +0000829/* This function generates various test patterns useful for testing controller
830 * and chip communication as well as chip behaviour.
831 *
832 * If a byte can be written multiple times, each time keeping 0-bits at 0
833 * and changing 1-bits to 0 if the new value for that bit is 0, the effect
834 * is essentially an AND operation. That's also the reason why this function
835 * provides the result of AND between various patterns.
836 *
837 * Below is a list of patterns (and their block length).
838 * Pattern 0 is 05 15 25 35 45 55 65 75 85 95 a5 b5 c5 d5 e5 f5 (16 Bytes)
839 * Pattern 1 is 0a 1a 2a 3a 4a 5a 6a 7a 8a 9a aa ba ca da ea fa (16 Bytes)
840 * Pattern 2 is 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f (16 Bytes)
841 * Pattern 3 is a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab ac ad ae af (16 Bytes)
842 * Pattern 4 is 00 10 20 30 40 50 60 70 80 90 a0 b0 c0 d0 e0 f0 (16 Bytes)
843 * Pattern 5 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f (16 Bytes)
844 * Pattern 6 is 00 (1 Byte)
845 * Pattern 7 is ff (1 Byte)
846 * Patterns 0-7 have a big-endian block number in the last 2 bytes of each 256
847 * byte block.
848 *
849 * Pattern 8 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11... (256 B)
850 * Pattern 9 is ff fe fd fc fb fa f9 f8 f7 f6 f5 f4 f3 f2 f1 f0 ef ee... (256 B)
851 * Pattern 10 is 00 00 00 01 00 02 00 03 00 04... (128 kB big-endian counter)
852 * Pattern 11 is ff ff ff fe ff fd ff fc ff fb... (128 kB big-endian downwards)
853 * Pattern 12 is 00 (1 Byte)
854 * Pattern 13 is ff (1 Byte)
855 * Patterns 8-13 have no block number.
856 *
857 * Patterns 0-3 are created to detect and efficiently diagnose communication
858 * slips like missed bits or bytes and their repetitive nature gives good visual
859 * cues to the person inspecting the results. In addition, the following holds:
860 * AND Pattern 0/1 == Pattern 4
861 * AND Pattern 2/3 == Pattern 5
862 * AND Pattern 0/1/2/3 == AND Pattern 4/5 == Pattern 6
863 * A weakness of pattern 0-5 is the inability to detect swaps/copies between
864 * any two 16-byte blocks except for the last 16-byte block in a 256-byte bloc.
865 * They work perfectly for detecting any swaps/aliasing of blocks >= 256 bytes.
866 * 0x5 and 0xa were picked because they are 0101 and 1010 binary.
867 * Patterns 8-9 are best for detecting swaps/aliasing of blocks < 256 bytes.
868 * Besides that, they provide for bit testing of the last two bytes of every
869 * 256 byte block which contains the block number for patterns 0-6.
870 * Patterns 10-11 are special purpose for detecting subblock aliasing with
871 * block sizes >256 bytes (some Dataflash chips etc.)
872 * AND Pattern 8/9 == Pattern 12
873 * AND Pattern 10/11 == Pattern 12
874 * Pattern 13 is the completely erased state.
875 * None of the patterns can detect aliasing at boundaries which are a multiple
876 * of 16 MBytes (but such chips do not exist anyway for Parallel/LPC/FWH/SPI).
877 */
878int generate_testpattern(uint8_t *buf, uint32_t size, int variant)
879{
880 int i;
881
882 if (!buf) {
snelsone42c3802010-05-07 20:09:04 +0000883 msg_gerr("Invalid buffer!\n");
hailfinger0c515352009-11-23 12:55:31 +0000884 return 1;
885 }
886
887 switch (variant) {
888 case 0:
889 for (i = 0; i < size; i++)
890 buf[i] = (i & 0xf) << 4 | 0x5;
891 break;
892 case 1:
893 for (i = 0; i < size; i++)
894 buf[i] = (i & 0xf) << 4 | 0xa;
895 break;
896 case 2:
897 for (i = 0; i < size; i++)
898 buf[i] = 0x50 | (i & 0xf);
899 break;
900 case 3:
901 for (i = 0; i < size; i++)
902 buf[i] = 0xa0 | (i & 0xf);
903 break;
904 case 4:
905 for (i = 0; i < size; i++)
906 buf[i] = (i & 0xf) << 4;
907 break;
908 case 5:
909 for (i = 0; i < size; i++)
910 buf[i] = i & 0xf;
911 break;
912 case 6:
913 memset(buf, 0x00, size);
914 break;
915 case 7:
916 memset(buf, 0xff, size);
917 break;
918 case 8:
919 for (i = 0; i < size; i++)
920 buf[i] = i & 0xff;
921 break;
922 case 9:
923 for (i = 0; i < size; i++)
924 buf[i] = ~(i & 0xff);
925 break;
926 case 10:
927 for (i = 0; i < size % 2; i++) {
928 buf[i * 2] = (i >> 8) & 0xff;
929 buf[i * 2 + 1] = i & 0xff;
930 }
931 if (size & 0x1)
932 buf[i * 2] = (i >> 8) & 0xff;
933 break;
934 case 11:
935 for (i = 0; i < size % 2; i++) {
936 buf[i * 2] = ~((i >> 8) & 0xff);
937 buf[i * 2 + 1] = ~(i & 0xff);
938 }
939 if (size & 0x1)
940 buf[i * 2] = ~((i >> 8) & 0xff);
941 break;
942 case 12:
943 memset(buf, 0x00, size);
944 break;
945 case 13:
946 memset(buf, 0xff, size);
947 break;
948 }
949
950 if ((variant >= 0) && (variant <= 7)) {
951 /* Write block number in the last two bytes of each 256-byte
952 * block, big endian for easier reading of the hexdump.
953 * Note that this wraps around for chips larger than 2^24 bytes
954 * (16 MB).
955 */
956 for (i = 0; i < size / 256; i++) {
957 buf[i * 256 + 254] = (i >> 8) & 0xff;
958 buf[i * 256 + 255] = i & 0xff;
959 }
960 }
961
962 return 0;
963}
964
hailfingeraec9c962009-10-31 01:53:09 +0000965int check_max_decode(enum chipbustype buses, uint32_t size)
966{
967 int limitexceeded = 0;
968 if ((buses & CHIP_BUSTYPE_PARALLEL) &&
969 (max_rom_decode.parallel < size)) {
970 limitexceeded++;
snelsone42c3802010-05-07 20:09:04 +0000971 msg_pdbg("Chip size %u kB is bigger than supported "
hailfingeraec9c962009-10-31 01:53:09 +0000972 "size %u kB of chipset/board/programmer "
973 "for %s interface, "
974 "probe/read/erase/write may fail. ", size / 1024,
975 max_rom_decode.parallel / 1024, "Parallel");
976 }
977 if ((buses & CHIP_BUSTYPE_LPC) && (max_rom_decode.lpc < size)) {
978 limitexceeded++;
snelsone42c3802010-05-07 20:09:04 +0000979 msg_pdbg("Chip size %u kB is bigger than supported "
hailfingeraec9c962009-10-31 01:53:09 +0000980 "size %u kB of chipset/board/programmer "
981 "for %s interface, "
982 "probe/read/erase/write may fail. ", size / 1024,
983 max_rom_decode.lpc / 1024, "LPC");
984 }
985 if ((buses & CHIP_BUSTYPE_FWH) && (max_rom_decode.fwh < size)) {
986 limitexceeded++;
snelsone42c3802010-05-07 20:09:04 +0000987 msg_pdbg("Chip size %u kB is bigger than supported "
hailfingeraec9c962009-10-31 01:53:09 +0000988 "size %u kB of chipset/board/programmer "
989 "for %s interface, "
990 "probe/read/erase/write may fail. ", size / 1024,
991 max_rom_decode.fwh / 1024, "FWH");
992 }
993 if ((buses & CHIP_BUSTYPE_SPI) && (max_rom_decode.spi < size)) {
994 limitexceeded++;
snelsone42c3802010-05-07 20:09:04 +0000995 msg_pdbg("Chip size %u kB is bigger than supported "
hailfingeraec9c962009-10-31 01:53:09 +0000996 "size %u kB of chipset/board/programmer "
997 "for %s interface, "
998 "probe/read/erase/write may fail. ", size / 1024,
999 max_rom_decode.spi / 1024, "SPI");
1000 }
1001 if (!limitexceeded)
1002 return 0;
1003 /* Sometimes chip and programmer have more than one bus in common,
1004 * and the limit is not exceeded on all buses. Tell the user.
1005 */
1006 if (bitcount(buses) > limitexceeded)
hailfinger92cd8e32010-01-07 03:24:05 +00001007 /* FIXME: This message is designed towards CLI users. */
snelsone42c3802010-05-07 20:09:04 +00001008 msg_pdbg("There is at least one common chip/programmer "
hailfingeraec9c962009-10-31 01:53:09 +00001009 "interface which can support a chip of this size. "
1010 "You can try --force at your own risk.\n");
1011 return 1;
1012}
1013
stuge56300c32008-09-03 23:10:05 +00001014struct flashchip *probe_flash(struct flashchip *first_flash, int force)
rminnich8d3ff912003-10-25 17:01:29 +00001015{
stuge56300c32008-09-03 23:10:05 +00001016 struct flashchip *flash;
hailfingeraec9c962009-10-31 01:53:09 +00001017 unsigned long base = 0;
1018 uint32_t size;
1019 enum chipbustype buses_common;
hailfingera916b422009-06-01 02:08:58 +00001020 char *tmp;
rminnich8d3ff912003-10-25 17:01:29 +00001021
stuge56300c32008-09-03 23:10:05 +00001022 for (flash = first_flash; flash && flash->name; flash++) {
stugec1e55fe2008-07-02 17:15:47 +00001023 if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0)
ollie5672ac62004-03-17 22:22:08 +00001024 continue;
hailfinger327d2522010-03-22 23:43:51 +00001025 msg_gdbg("Probing for %s %s, %d KB: ",
stepanb8361b92008-03-17 22:59:40 +00001026 flash->vendor, flash->name, flash->total_size);
stuge98c09aa2008-06-18 02:08:40 +00001027 if (!flash->probe && !force) {
hailfinger327d2522010-03-22 23:43:51 +00001028 msg_gdbg("failed! flashrom has no probe function for "
1029 "this flash chip.\n");
stuge8ce3a3c2008-04-28 14:47:30 +00001030 continue;
1031 }
hailfingeraec9c962009-10-31 01:53:09 +00001032 buses_common = buses_supported & flash->bustype;
1033 if (!buses_common) {
hailfingera916b422009-06-01 02:08:58 +00001034 tmp = flashbuses_to_text(buses_supported);
hailfinger327d2522010-03-22 23:43:51 +00001035 msg_gdbg("skipped.");
1036 msg_gspew(" Host bus type %s ", tmp);
hailfingera916b422009-06-01 02:08:58 +00001037 free(tmp);
1038 tmp = flashbuses_to_text(flash->bustype);
hailfinger327d2522010-03-22 23:43:51 +00001039 msg_gspew("and chip bus type %s are incompatible.",
1040 tmp);
hailfingera916b422009-06-01 02:08:58 +00001041 free(tmp);
hailfinger327d2522010-03-22 23:43:51 +00001042 msg_gdbg("\n");
hailfingera916b422009-06-01 02:08:58 +00001043 continue;
1044 }
stepan782fb172007-04-06 11:58:03 +00001045
ollie5672ac62004-03-17 22:22:08 +00001046 size = flash->total_size * 1024;
hailfingeraec9c962009-10-31 01:53:09 +00001047 check_max_decode(buses_common, size);
stepan782fb172007-04-06 11:58:03 +00001048
hailfinger72d3b982009-05-09 07:27:23 +00001049 base = flashbase ? flashbase : (0xffffffff - size + 1);
hailfinger82719632009-05-16 21:22:56 +00001050 flash->virtual_memory = (chipaddr)programmer_map_flash_region("flash chip", base, size);
rminnich8d3ff912003-10-25 17:01:29 +00001051
stugec1e55fe2008-07-02 17:15:47 +00001052 if (force)
1053 break;
stepanc98b80b2006-03-16 16:57:41 +00001054
stuge56300c32008-09-03 23:10:05 +00001055 if (flash->probe(flash) != 1)
1056 goto notfound;
1057
uwefa98ca12008-10-18 21:14:13 +00001058 if (first_flash == flashchips
1059 || flash->model_id != GENERIC_DEVICE_ID)
stugec1e55fe2008-07-02 17:15:47 +00001060 break;
1061
stuge56300c32008-09-03 23:10:05 +00001062notfound:
hailfinger82719632009-05-16 21:22:56 +00001063 programmer_unmap_flash_region((void *)flash->virtual_memory, size);
rminnich8d3ff912003-10-25 17:01:29 +00001064 }
uwebe4477b2007-08-23 16:08:21 +00001065
stugec1e55fe2008-07-02 17:15:47 +00001066 if (!flash || !flash->name)
1067 return NULL;
1068
snelsone42c3802010-05-07 20:09:04 +00001069 msg_cinfo("%s chip \"%s %s\" (%d KB, %s) at physical address 0x%lx.\n",
hailfingerf4aaccc2010-04-28 15:22:14 +00001070 force ? "Assuming" : "Found",
uwe9e6811e2009-06-28 21:47:57 +00001071 flash->vendor, flash->name, flash->total_size,
1072 flashbuses_to_text(flash->bustype), base);
1073
snelson1ee293c2010-02-19 00:52:10 +00001074 if (flash->printlock)
1075 flash->printlock(flash);
1076
stugec1e55fe2008-07-02 17:15:47 +00001077 return flash;
rminnich8d3ff912003-10-25 17:01:29 +00001078}
1079
David Hendricks456ec8e2010-08-24 15:12:19 -07001080/* Wrapper function for verify_range() to be compatible with do_romentries() of
1081 * layout.c (for -l and -i options).
1082 * verify_range() accepts 5 arguments, and the last argument is printing message
1083 * when error. do_romentries() accepts callback function of 4 arguments so that
1084 * we drop the printing message in this wrapper.
1085 */
1086int verify_range_wrapper(struct flashchip *flash, uint8_t *cmpbuf, const chipaddr start, size_t len) {
1087 return verify_range(flash, &cmpbuf[start], start, len, NULL);
1088}
1089
stepan193c9c22005-12-18 16:41:10 +00001090int verify_flash(struct flashchip *flash, uint8_t *buf)
rminnich8d3ff912003-10-25 17:01:29 +00001091{
hailfingerb0f4d122009-06-24 08:20:45 +00001092 int ret;
rminnich8d3ff912003-10-25 17:01:29 +00001093
snelsone42c3802010-05-07 20:09:04 +00001094 msg_cinfo("Verifying flash... ");
uwef6641642007-05-09 10:17:44 +00001095
David Hendricks456ec8e2010-08-24 15:12:19 -07001096 /* FIXME: eventually, verify_range should support the same
1097 functionality as do_romentries with the verify_range_wrapper */
1098// ret = verify_range(flash, buf, 0, total_size, NULL);
1099
1100 ret = do_romentries(buf, flash, verify_range_wrapper);
uwef6641642007-05-09 10:17:44 +00001101
hailfingerb0f4d122009-06-24 08:20:45 +00001102 if (!ret)
snelsone42c3802010-05-07 20:09:04 +00001103 msg_cinfo("VERIFIED. \n");
stepanc98b80b2006-03-16 16:57:41 +00001104
hailfingerb0f4d122009-06-24 08:20:45 +00001105 return ret;
rminnich8d3ff912003-10-25 17:01:29 +00001106}
1107
David Hendricks82fd8ae2010-08-04 14:34:54 -07001108int write_buf_to_file(unsigned char *buf, unsigned long size, char *filename)
hailfingerd219a232009-01-28 00:27:54 +00001109{
1110 unsigned long numbytes;
1111 FILE *image;
hailfingerde345862009-06-01 22:07:52 +00001112
1113 if (!filename) {
David Hendricks82fd8ae2010-08-04 14:34:54 -07001114 msg_gerr("No filename specified.\n");
hailfingerde345862009-06-01 22:07:52 +00001115 return 1;
1116 }
oxygenebf70d352010-01-25 22:55:33 +00001117 if ((image = fopen(filename, "wb")) == NULL) {
hailfingerd219a232009-01-28 00:27:54 +00001118 perror(filename);
hailfinger23060112009-05-08 12:49:03 +00001119 return 1;
David Hendricks82fd8ae2010-08-04 14:34:54 -07001120 }
hailfingerd219a232009-01-28 00:27:54 +00001121
hailfingerd219a232009-01-28 00:27:54 +00001122 numbytes = fwrite(buf, 1, size, image);
1123 fclose(image);
David Hendricks82fd8ae2010-08-04 14:34:54 -07001124 if (numbytes != size) {
1125 msg_gerr("File %s could not be written completely.\n",
1126 filename);
hailfingerd219a232009-01-28 00:27:54 +00001127 return 1;
David Hendricks82fd8ae2010-08-04 14:34:54 -07001128 }
hailfingerd219a232009-01-28 00:27:54 +00001129 return 0;
1130}
1131
David Hendricks82fd8ae2010-08-04 14:34:54 -07001132int read_flash_to_file(struct flashchip *flash, char *filename)
1133{
1134 unsigned long size = flash->total_size * 1024;
1135 unsigned char *buf = calloc(size, sizeof(char));
1136 int ret = 0;
1137
1138 msg_cinfo("Reading flash... ");
1139 if (!buf) {
1140 msg_gerr("Memory allocation failed!\n");
1141 msg_cinfo("FAILED.\n");
1142 return 1;
1143 }
1144 if (!flash->read) {
1145 msg_cerr("No read function available for this flash chip.\n");
1146 ret = 1;
1147 goto out_free;
1148 }
1149 if (flash->read(flash, buf, 0, size)) {
1150 msg_cerr("Read operation failed!\n");
1151 ret = 1;
1152 goto out_free;
1153 }
1154
1155 ret = write_buf_to_file(buf, flash->total_size * 1024, filename);
1156out_free:
1157 free(buf);
1158 msg_cinfo("%s.\n", ret ? "FAILED" : "done");
1159 return ret;
1160}
1161
hailfinger9fed35d2010-01-19 06:42:46 +00001162/* This function shares a lot of its structure with erase_flash().
1163 * Even if an error is found, the function will keep going and check the rest.
1164 */
David Hendricks82fd8ae2010-08-04 14:34:54 -07001165static int selfcheck_eraseblocks(struct flashchip *flash)
hailfinger45177872010-01-18 08:14:43 +00001166{
hailfinger9fed35d2010-01-19 06:42:46 +00001167 int i, j, k;
1168 int ret = 0;
hailfinger45177872010-01-18 08:14:43 +00001169
1170 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
1171 unsigned int done = 0;
1172 struct block_eraser eraser = flash->block_erasers[k];
1173
1174 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1175 /* Blocks with zero size are bugs in flashchips.c. */
1176 if (eraser.eraseblocks[i].count &&
1177 !eraser.eraseblocks[i].size) {
1178 msg_gerr("ERROR: Flash chip %s erase function "
1179 "%i region %i has size 0. Please report"
1180 " a bug at flashrom@flashrom.org\n",
1181 flash->name, k, i);
hailfinger9fed35d2010-01-19 06:42:46 +00001182 ret = 1;
hailfinger45177872010-01-18 08:14:43 +00001183 }
1184 /* Blocks with zero count are bugs in flashchips.c. */
1185 if (!eraser.eraseblocks[i].count &&
1186 eraser.eraseblocks[i].size) {
1187 msg_gerr("ERROR: Flash chip %s erase function "
1188 "%i region %i has count 0. Please report"
1189 " a bug at flashrom@flashrom.org\n",
1190 flash->name, k, i);
hailfinger9fed35d2010-01-19 06:42:46 +00001191 ret = 1;
hailfinger45177872010-01-18 08:14:43 +00001192 }
1193 done += eraser.eraseblocks[i].count *
1194 eraser.eraseblocks[i].size;
1195 }
hailfinger9fed35d2010-01-19 06:42:46 +00001196 /* Empty eraseblock definition with erase function. */
1197 if (!done && eraser.block_erase)
snelsone42c3802010-05-07 20:09:04 +00001198 msg_gspew("Strange: Empty eraseblock definition with "
hailfinger9fed35d2010-01-19 06:42:46 +00001199 "non-empty erase function. Not an error.\n");
hailfinger45177872010-01-18 08:14:43 +00001200 if (!done)
1201 continue;
1202 if (done != flash->total_size * 1024) {
1203 msg_gerr("ERROR: Flash chip %s erase function %i "
1204 "region walking resulted in 0x%06x bytes total,"
1205 " expected 0x%06x bytes. Please report a bug at"
1206 " flashrom@flashrom.org\n", flash->name, k,
1207 done, flash->total_size * 1024);
hailfinger9fed35d2010-01-19 06:42:46 +00001208 ret = 1;
hailfinger45177872010-01-18 08:14:43 +00001209 }
hailfinger9fed35d2010-01-19 06:42:46 +00001210 if (!eraser.block_erase)
1211 continue;
1212 /* Check if there are identical erase functions for different
1213 * layouts. That would imply "magic" erase functions. The
1214 * easiest way to check this is with function pointers.
1215 */
uwef6f94d42010-03-13 17:28:29 +00001216 for (j = k + 1; j < NUM_ERASEFUNCTIONS; j++) {
hailfinger9fed35d2010-01-19 06:42:46 +00001217 if (eraser.block_erase ==
1218 flash->block_erasers[j].block_erase) {
1219 msg_gerr("ERROR: Flash chip %s erase function "
1220 "%i and %i are identical. Please report"
1221 " a bug at flashrom@flashrom.org\n",
1222 flash->name, k, j);
1223 ret = 1;
1224 }
uwef6f94d42010-03-13 17:28:29 +00001225 }
hailfinger45177872010-01-18 08:14:43 +00001226 }
hailfinger9fed35d2010-01-19 06:42:46 +00001227 return ret;
hailfinger45177872010-01-18 08:14:43 +00001228}
1229
David Hendricks82fd8ae2010-08-04 14:34:54 -07001230static int walk_eraseregions(struct flashchip *flash, int erasefunction,
1231 int (*do_something) (struct flashchip *flash,
1232 unsigned int addr,
1233 unsigned int len))
1234{
1235 int i, j;
1236 unsigned int start = 0;
1237 unsigned int len;
1238 struct block_eraser eraser = flash->block_erasers[erasefunction];
1239 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1240 /* count==0 for all automatically initialized array
1241 * members so the loop below won't be executed for them.
1242 */
1243 len = eraser.eraseblocks[i].size;
1244 for (j = 0; j < eraser.eraseblocks[i].count; j++) {
David Hendricks970da352010-08-24 15:03:01 -07001245 msg_cdbg("0x%06x-0x%06x", start,
David Hendricks82fd8ae2010-08-04 14:34:54 -07001246 start + len - 1);
David Hendricks970da352010-08-24 15:03:01 -07001247
1248 /* Don't erase those region not specified by -i
1249 * if -l is specified. */
1250 if (!in_valid_romentry(start)) {
1251 msg_cdbg(" skipped, ");
1252 start += len;
1253 continue;
1254 } else {
1255 msg_cdbg(", ");
1256 }
1257
David Hendricks82fd8ae2010-08-04 14:34:54 -07001258 if (do_something(flash, start, len))
1259 return 1;
David Hendricks970da352010-08-24 15:03:01 -07001260
David Hendricks456ec8e2010-08-24 15:12:19 -07001261 /* Don't erase those region not specified by -i
1262 * if -l is specified. */
1263 if (!in_valid_romentry(start)) {
1264 msg_cdbg("skip; ");
1265 continue;
1266 }
1267
David Hendricks82fd8ae2010-08-04 14:34:54 -07001268 start += len;
1269 }
1270 }
1271 return 0;
1272}
1273
hailfingerd219a232009-01-28 00:27:54 +00001274int erase_flash(struct flashchip *flash)
1275{
David Hendricks82fd8ae2010-08-04 14:34:54 -07001276 int k, ret = 0, found = 0;
hailfinger7df21362009-09-05 02:30:58 +00001277
snelsone42c3802010-05-07 20:09:04 +00001278 msg_cinfo("Erasing flash chip... ");
hailfinger7df21362009-09-05 02:30:58 +00001279 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
hailfinger7df21362009-09-05 02:30:58 +00001280 struct block_eraser eraser = flash->block_erasers[k];
1281
snelsone42c3802010-05-07 20:09:04 +00001282 msg_cdbg("Looking at blockwise erase function %i... ", k);
hailfinger7df21362009-09-05 02:30:58 +00001283 if (!eraser.block_erase && !eraser.eraseblocks[0].count) {
snelsone42c3802010-05-07 20:09:04 +00001284 msg_cdbg("not defined. "
hailfinger7df21362009-09-05 02:30:58 +00001285 "Looking for another erase function.\n");
1286 continue;
1287 }
1288 if (!eraser.block_erase && eraser.eraseblocks[0].count) {
snelsone42c3802010-05-07 20:09:04 +00001289 msg_cdbg("eraseblock layout is known, but no "
hailfinger7df21362009-09-05 02:30:58 +00001290 "matching block erase function found. "
1291 "Looking for another erase function.\n");
1292 continue;
1293 }
1294 if (eraser.block_erase && !eraser.eraseblocks[0].count) {
snelsone42c3802010-05-07 20:09:04 +00001295 msg_cdbg("block erase function found, but "
hailfinger7df21362009-09-05 02:30:58 +00001296 "eraseblock layout is unknown. "
1297 "Looking for another erase function.\n");
1298 continue;
1299 }
1300 found = 1;
snelsone42c3802010-05-07 20:09:04 +00001301 msg_cdbg("trying... ");
David Hendricks82fd8ae2010-08-04 14:34:54 -07001302 ret = walk_eraseregions(flash, k, eraser.block_erase);
snelsone42c3802010-05-07 20:09:04 +00001303 msg_cdbg("\n");
hailfinger7df21362009-09-05 02:30:58 +00001304 /* If everything is OK, don't try another erase function. */
1305 if (!ret)
1306 break;
1307 }
hailfinger7df21362009-09-05 02:30:58 +00001308 if (!found) {
snelsone42c3802010-05-07 20:09:04 +00001309 msg_cerr("ERROR: flashrom has no erase function for this flash chip.\n");
hailfingerd219a232009-01-28 00:27:54 +00001310 return 1;
1311 }
hailfinger1e9ee0f2009-05-08 17:15:15 +00001312
hailfinger7df21362009-09-05 02:30:58 +00001313 if (ret) {
snelsone42c3802010-05-07 20:09:04 +00001314 msg_cerr("FAILED!\n");
hailfinger7df21362009-09-05 02:30:58 +00001315 } else {
snelsone42c3802010-05-07 20:09:04 +00001316 msg_cinfo("SUCCESS.\n");
hailfinger7df21362009-09-05 02:30:58 +00001317 }
1318 return ret;
hailfingerd219a232009-01-28 00:27:54 +00001319}
1320
uweb34ec9f2009-10-01 18:40:02 +00001321void emergency_help_message(void)
hailfinger0459e1c2009-08-19 13:55:34 +00001322{
snelsone42c3802010-05-07 20:09:04 +00001323 msg_gerr("Your flash chip is in an unknown state.\n"
uweb34ec9f2009-10-01 18:40:02 +00001324 "Get help on IRC at irc.freenode.net (channel #flashrom) or\n"
hailfinger74819ad2010-05-15 15:04:37 +00001325 "mail flashrom@flashrom.org!\n"
1326 "-------------------------------------------------------------"
1327 "------------------\n"
hailfinger0459e1c2009-08-19 13:55:34 +00001328 "DO NOT REBOOT OR POWEROFF!\n");
1329}
1330
hailfingerc77acb52009-12-24 02:15:55 +00001331/* The way to go if you want a delimited list of programmers*/
1332void list_programmers(char *delim)
1333{
1334 enum programmer p;
1335 for (p = 0; p < PROGRAMMER_INVALID; p++) {
snelsone42c3802010-05-07 20:09:04 +00001336 msg_ginfo("%s", programmer_table[p].name);
hailfingerc77acb52009-12-24 02:15:55 +00001337 if (p < PROGRAMMER_INVALID - 1)
snelsone42c3802010-05-07 20:09:04 +00001338 msg_ginfo("%s", delim);
hailfingerc77acb52009-12-24 02:15:55 +00001339 }
snelsone42c3802010-05-07 20:09:04 +00001340 msg_ginfo("\n");
hailfingerc77acb52009-12-24 02:15:55 +00001341}
1342
hailfinger3b471632010-03-27 16:36:40 +00001343void print_sysinfo(void)
1344{
1345#if HAVE_UTSNAME == 1
1346 struct utsname osinfo;
1347 uname(&osinfo);
1348
1349 msg_ginfo(" on %s %s (%s)", osinfo.sysname, osinfo.release,
1350 osinfo.machine);
1351#else
1352 msg_ginfo(" on unknown machine");
1353#endif
1354 msg_ginfo(", built with");
1355#if NEED_PCI == 1
1356#ifdef PCILIB_VERSION
1357 msg_ginfo(" libpci %s,", PCILIB_VERSION);
1358#else
1359 msg_ginfo(" unknown PCI library,");
1360#endif
1361#endif
1362#ifdef __clang__
David Hendricks82fd8ae2010-08-04 14:34:54 -07001363 msg_ginfo(" LLVM Clang");
1364#ifdef __clang_version__
1365 msg_ginfo(" %s,", __clang_version__);
1366#else
1367 msg_ginfo(" unknown version (before r102686),");
1368#endif
hailfinger3b471632010-03-27 16:36:40 +00001369#elif defined(__GNUC__)
1370 msg_ginfo(" GCC");
1371#ifdef __VERSION__
hailfinger324a9cc2010-05-26 01:45:41 +00001372 msg_ginfo(" %s,", __VERSION__);
hailfinger3b471632010-03-27 16:36:40 +00001373#else
hailfinger324a9cc2010-05-26 01:45:41 +00001374 msg_ginfo(" unknown version,");
hailfinger3b471632010-03-27 16:36:40 +00001375#endif
1376#else
hailfinger324a9cc2010-05-26 01:45:41 +00001377 msg_ginfo(" unknown compiler,");
1378#endif
1379#if defined (__FLASHROM_LITTLE_ENDIAN__)
1380 msg_ginfo(" little endian");
1381#else
1382 msg_ginfo(" big endian");
hailfinger3b471632010-03-27 16:36:40 +00001383#endif
1384 msg_ginfo("\n");
1385}
1386
uwefdeca092008-01-21 15:24:22 +00001387void print_version(void)
1388{
hailfinger74819ad2010-05-15 15:04:37 +00001389 msg_ginfo("flashrom v%s", flashrom_version);
hailfinger3b471632010-03-27 16:36:40 +00001390 print_sysinfo();
uwefdeca092008-01-21 15:24:22 +00001391}
1392
hailfinger74819ad2010-05-15 15:04:37 +00001393void print_banner(void)
1394{
1395 msg_ginfo("flashrom is free software, get the source code at "
1396 "http://www.flashrom.org\n");
1397 msg_ginfo("\n");
1398}
1399
hailfingerc77acb52009-12-24 02:15:55 +00001400int selfcheck(void)
1401{
hailfinger45177872010-01-18 08:14:43 +00001402 int ret = 0;
1403 struct flashchip *flash;
1404
1405 /* Safety check. Instead of aborting after the first error, check
1406 * if more errors exist.
1407 */
hailfingerc77acb52009-12-24 02:15:55 +00001408 if (ARRAY_SIZE(programmer_table) - 1 != PROGRAMMER_INVALID) {
snelsone42c3802010-05-07 20:09:04 +00001409 msg_gerr("Programmer table miscompilation!\n");
hailfinger45177872010-01-18 08:14:43 +00001410 ret = 1;
hailfingerc77acb52009-12-24 02:15:55 +00001411 }
1412 if (spi_programmer_count - 1 != SPI_CONTROLLER_INVALID) {
snelsone42c3802010-05-07 20:09:04 +00001413 msg_gerr("SPI programmer table miscompilation!\n");
hailfinger45177872010-01-18 08:14:43 +00001414 ret = 1;
hailfingerc77acb52009-12-24 02:15:55 +00001415 }
hailfinger45177872010-01-18 08:14:43 +00001416 for (flash = flashchips; flash && flash->name; flash++)
1417 if (selfcheck_eraseblocks(flash))
1418 ret = 1;
1419 return ret;
hailfingerc77acb52009-12-24 02:15:55 +00001420}
1421
1422void check_chip_supported(struct flashchip *flash)
1423{
1424 if (TEST_OK_MASK != (flash->tested & TEST_OK_MASK)) {
snelsone42c3802010-05-07 20:09:04 +00001425 msg_cinfo("===\n");
hailfingerc77acb52009-12-24 02:15:55 +00001426 if (flash->tested & TEST_BAD_MASK) {
snelsone42c3802010-05-07 20:09:04 +00001427 msg_cinfo("This flash part has status NOT WORKING for operations:");
hailfingerc77acb52009-12-24 02:15:55 +00001428 if (flash->tested & TEST_BAD_PROBE)
snelsone42c3802010-05-07 20:09:04 +00001429 msg_cinfo(" PROBE");
hailfingerc77acb52009-12-24 02:15:55 +00001430 if (flash->tested & TEST_BAD_READ)
snelsone42c3802010-05-07 20:09:04 +00001431 msg_cinfo(" READ");
hailfingerc77acb52009-12-24 02:15:55 +00001432 if (flash->tested & TEST_BAD_ERASE)
snelsone42c3802010-05-07 20:09:04 +00001433 msg_cinfo(" ERASE");
hailfingerc77acb52009-12-24 02:15:55 +00001434 if (flash->tested & TEST_BAD_WRITE)
snelsone42c3802010-05-07 20:09:04 +00001435 msg_cinfo(" WRITE");
1436 msg_cinfo("\n");
hailfingerc77acb52009-12-24 02:15:55 +00001437 }
1438 if ((!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE)) ||
1439 (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ)) ||
1440 (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE)) ||
1441 (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))) {
snelsone42c3802010-05-07 20:09:04 +00001442 msg_cinfo("This flash part has status UNTESTED for operations:");
hailfingerc77acb52009-12-24 02:15:55 +00001443 if (!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE))
snelsone42c3802010-05-07 20:09:04 +00001444 msg_cinfo(" PROBE");
hailfingerc77acb52009-12-24 02:15:55 +00001445 if (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ))
snelsone42c3802010-05-07 20:09:04 +00001446 msg_cinfo(" READ");
hailfingerc77acb52009-12-24 02:15:55 +00001447 if (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE))
snelsone42c3802010-05-07 20:09:04 +00001448 msg_cinfo(" ERASE");
hailfingerc77acb52009-12-24 02:15:55 +00001449 if (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))
snelsone42c3802010-05-07 20:09:04 +00001450 msg_cinfo(" WRITE");
1451 msg_cinfo("\n");
hailfingerc77acb52009-12-24 02:15:55 +00001452 }
hailfinger92cd8e32010-01-07 03:24:05 +00001453 /* FIXME: This message is designed towards CLI users. */
hailfinger74819ad2010-05-15 15:04:37 +00001454 msg_cinfo("The test status of this chip may have been updated "
1455 "in the latest development\n"
1456 "version of flashrom. If you are running the latest "
1457 "development version,\n"
1458 "please email a report to flashrom@flashrom.org if "
1459 "any of the above operations\n"
1460 "work correctly for you with this flash part. Please "
1461 "include the flashrom\n"
1462 "output with the additional -V option for all "
1463 "operations you tested (-V, -Vr,\n"
1464 "-Vw, -VE), and mention which mainboard or "
1465 "programmer you tested.\n"
1466 "Thanks for your help!\n"
1467 "===\n");
hailfingerc77acb52009-12-24 02:15:55 +00001468 }
1469}
1470
ollie5b621572004-03-20 16:46:10 +00001471int main(int argc, char *argv[])
rminnich8d3ff912003-10-25 17:01:29 +00001472{
David Hendricksf7924d12010-06-10 21:26:44 -07001473 /* FIXME: this should eventually be a build option controlled
1474 via a USE flag */
1475// return cli_classic(argc, argv);
1476 return cli_mfg(argc, argv);
hailfingerc77acb52009-12-24 02:15:55 +00001477}
1478
1479/* This function signature is horrible. We need to design a better interface,
1480 * but right now it allows us to split off the CLI code.
1481 */
1482int doit(struct flashchip *flash, int force, char *filename, int read_it, int write_it, int erase_it, int verify_it)
1483{
1484 uint8_t *buf;
1485 unsigned long numbytes;
1486 FILE *image;
1487 int ret = 0;
1488 unsigned long size;
1489
1490 size = flash->total_size * 1024;
ollie6a600992005-11-26 21:55:36 +00001491 buf = (uint8_t *) calloc(size, sizeof(char));
uwef6641642007-05-09 10:17:44 +00001492
David Hendricks82fd8ae2010-08-04 14:34:54 -07001493 if (!programmer_may_write && (write_it || erase_it)) {
1494 msg_perr("Write/erase is not working yet on your programmer in "
1495 "its current configuration.\n");
1496 /* --force is the wrong approach, but it's the best we can do
1497 * until the generic programmer parameter parser is merged.
1498 */
1499 if (!force) {
1500 msg_perr("Aborting.\n");
1501 programmer_shutdown();
1502 return 1;
1503 } else {
1504 msg_cerr("Continuing anyway.\n");
1505 }
1506 }
1507
ollie0eb62d62004-12-08 20:10:01 +00001508 if (erase_it) {
hailfinger0459e1c2009-08-19 13:55:34 +00001509 if (flash->tested & TEST_BAD_ERASE) {
snelsone42c3802010-05-07 20:09:04 +00001510 msg_cerr("Erase is not working on this chip. ");
hailfinger0459e1c2009-08-19 13:55:34 +00001511 if (!force) {
snelsone42c3802010-05-07 20:09:04 +00001512 msg_cerr("Aborting.\n");
uweff4576d2009-09-30 18:29:55 +00001513 programmer_shutdown();
hailfinger0459e1c2009-08-19 13:55:34 +00001514 return 1;
1515 } else {
snelsone42c3802010-05-07 20:09:04 +00001516 msg_cerr("Continuing anyway.\n");
hailfinger0459e1c2009-08-19 13:55:34 +00001517 }
1518 }
snelson1ee293c2010-02-19 00:52:10 +00001519 if (flash->unlock)
1520 flash->unlock(flash);
1521
hailfinger0459e1c2009-08-19 13:55:34 +00001522 if (erase_flash(flash)) {
1523 emergency_help_message();
uweff4576d2009-09-30 18:29:55 +00001524 programmer_shutdown();
stuge8ce3a3c2008-04-28 14:47:30 +00001525 return 1;
hailfinger0459e1c2009-08-19 13:55:34 +00001526 }
ollie0eb62d62004-12-08 20:10:01 +00001527 } else if (read_it) {
snelson1ee293c2010-02-19 00:52:10 +00001528 if (flash->unlock)
1529 flash->unlock(flash);
1530
David Hendricks82fd8ae2010-08-04 14:34:54 -07001531 if (read_flash_to_file(flash, filename)) {
uweff4576d2009-09-30 18:29:55 +00001532 programmer_shutdown();
stugebbcc2f12009-01-12 21:00:35 +00001533 return 1;
uweff4576d2009-09-30 18:29:55 +00001534 }
ollie5672ac62004-03-17 22:22:08 +00001535 } else {
stepan1da96c02006-11-21 23:48:51 +00001536 struct stat image_stat;
1537
snelson1ee293c2010-02-19 00:52:10 +00001538 if (flash->unlock)
1539 flash->unlock(flash);
1540
hailfinger0459e1c2009-08-19 13:55:34 +00001541 if (flash->tested & TEST_BAD_ERASE) {
snelsone42c3802010-05-07 20:09:04 +00001542 msg_cerr("Erase is not working on this chip "
hailfinger0459e1c2009-08-19 13:55:34 +00001543 "and erase is needed for write. ");
1544 if (!force) {
snelsone42c3802010-05-07 20:09:04 +00001545 msg_cerr("Aborting.\n");
uweff4576d2009-09-30 18:29:55 +00001546 programmer_shutdown();
hailfinger0459e1c2009-08-19 13:55:34 +00001547 return 1;
1548 } else {
snelsone42c3802010-05-07 20:09:04 +00001549 msg_cerr("Continuing anyway.\n");
hailfinger0459e1c2009-08-19 13:55:34 +00001550 }
1551 }
1552 if (flash->tested & TEST_BAD_WRITE) {
snelsone42c3802010-05-07 20:09:04 +00001553 msg_cerr("Write is not working on this chip. ");
hailfinger0459e1c2009-08-19 13:55:34 +00001554 if (!force) {
snelsone42c3802010-05-07 20:09:04 +00001555 msg_cerr("Aborting.\n");
uweff4576d2009-09-30 18:29:55 +00001556 programmer_shutdown();
hailfinger0459e1c2009-08-19 13:55:34 +00001557 return 1;
1558 } else {
snelsone42c3802010-05-07 20:09:04 +00001559 msg_cerr("Continuing anyway.\n");
hailfinger0459e1c2009-08-19 13:55:34 +00001560 }
1561 }
oxygenebf70d352010-01-25 22:55:33 +00001562 if ((image = fopen(filename, "rb")) == NULL) {
ollie5672ac62004-03-17 22:22:08 +00001563 perror(filename);
uweff4576d2009-09-30 18:29:55 +00001564 programmer_shutdown();
ollie5672ac62004-03-17 22:22:08 +00001565 exit(1);
1566 }
stepan1da96c02006-11-21 23:48:51 +00001567 if (fstat(fileno(image), &image_stat) != 0) {
1568 perror(filename);
uweff4576d2009-09-30 18:29:55 +00001569 programmer_shutdown();
stepan1da96c02006-11-21 23:48:51 +00001570 exit(1);
1571 }
uwef6641642007-05-09 10:17:44 +00001572 if (image_stat.st_size != flash->total_size * 1024) {
snelsone42c3802010-05-07 20:09:04 +00001573 msg_gerr("Error: Image size doesn't match\n");
uweff4576d2009-09-30 18:29:55 +00001574 programmer_shutdown();
stepan1da96c02006-11-21 23:48:51 +00001575 exit(1);
1576 }
1577
stugebbcc2f12009-01-12 21:00:35 +00001578 numbytes = fread(buf, 1, size, image);
hailfinger90c7d542010-05-31 15:27:27 +00001579#if CONFIG_INTERNAL == 1
stuge98c09aa2008-06-18 02:08:40 +00001580 show_id(buf, size, force);
hailfinger80422e22009-12-13 22:28:00 +00001581#endif
ollie5672ac62004-03-17 22:22:08 +00001582 fclose(image);
stugebbcc2f12009-01-12 21:00:35 +00001583 if (numbytes != size) {
snelsone42c3802010-05-07 20:09:04 +00001584 msg_gerr("Error: Failed to read file. Got %ld bytes, wanted %ld!\n", numbytes, size);
uweff4576d2009-09-30 18:29:55 +00001585 programmer_shutdown();
stugebbcc2f12009-01-12 21:00:35 +00001586 return 1;
1587 }
ollie5672ac62004-03-17 22:22:08 +00001588 }
1589
ollie6a600992005-11-26 21:55:36 +00001590 // This should be moved into each flash part's code to do it
1591 // cleanly. This does the job.
hailfinger051b3442009-08-19 15:19:18 +00001592 handle_romentries(buf, flash);
uwef6641642007-05-09 10:17:44 +00001593
ollie6a600992005-11-26 21:55:36 +00001594 // ////////////////////////////////////////////////////////////
uwef6641642007-05-09 10:17:44 +00001595
stuge8ce3a3c2008-04-28 14:47:30 +00001596 if (write_it) {
snelsone42c3802010-05-07 20:09:04 +00001597 msg_cinfo("Writing flash chip... ");
stuge8ce3a3c2008-04-28 14:47:30 +00001598 if (!flash->write) {
snelsone42c3802010-05-07 20:09:04 +00001599 msg_cerr("Error: flashrom has no write function for this flash chip.\n");
uweff4576d2009-09-30 18:29:55 +00001600 programmer_shutdown();
stuge8ce3a3c2008-04-28 14:47:30 +00001601 return 1;
1602 }
hailfingerdffbe6b2009-07-24 12:18:54 +00001603 ret = flash->write(flash, buf);
1604 if (ret) {
snelsone42c3802010-05-07 20:09:04 +00001605 msg_cerr("FAILED!\n");
hailfinger0459e1c2009-08-19 13:55:34 +00001606 emergency_help_message();
uweff4576d2009-09-30 18:29:55 +00001607 programmer_shutdown();
hailfingerdffbe6b2009-07-24 12:18:54 +00001608 return 1;
1609 } else {
snelsone42c3802010-05-07 20:09:04 +00001610 msg_cinfo("COMPLETE.\n");
hailfingerdffbe6b2009-07-24 12:18:54 +00001611 }
stuge8ce3a3c2008-04-28 14:47:30 +00001612 }
ollie6a600992005-11-26 21:55:36 +00001613
hailfinger0459e1c2009-08-19 13:55:34 +00001614 if (verify_it) {
1615 /* Work around chips which need some time to calm down. */
1616 if (write_it)
1617 programmer_delay(1000*1000);
hailfingerdffbe6b2009-07-24 12:18:54 +00001618 ret = verify_flash(flash, buf);
hailfingera50d60e2009-11-17 09:57:34 +00001619 /* If we tried to write, and verification now fails, we
hailfinger0459e1c2009-08-19 13:55:34 +00001620 * might have an emergency situation.
1621 */
1622 if (ret && write_it)
1623 emergency_help_message();
1624 }
ollie6a600992005-11-26 21:55:36 +00001625
hailfingerabe249e2009-05-08 17:43:22 +00001626 programmer_shutdown();
1627
stepan83eca252006-01-04 16:42:57 +00001628 return ret;
rminnich8d3ff912003-10-25 17:01:29 +00001629}