blob: 1f7f01aea8934fdad54aa2b3fbf3db60a566f0f9 [file] [log] [blame]
Uwe Hermann75f51072008-03-04 16:29:54 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2005-2008 coresystems GmbH
5 * (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH)
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
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.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000021#include <stdio.h>
Ollie Lho184a4042005-11-26 21:55:36 +000022#include <stdlib.h>
23#include <string.h>
Carl-Daniel Hailfingerecab4fc2008-07-03 14:40:06 +000024#include <ctype.h>
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +000025#include <limits.h>
Uwe Hermann0846f892007-08-23 13:34:59 +000026#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000027#include "programmer.h"
Ollie Lho184a4042005-11-26 21:55:36 +000028
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000029#if CONFIG_INTERNAL == 1
Uwe Hermanna7e05482007-05-09 10:17:44 +000030char *mainboard_vendor = NULL;
31char *mainboard_part = NULL;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000032#endif
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000033static int romimages = 0;
Ollie Lho184a4042005-11-26 21:55:36 +000034
David Hendricks444cefc2010-10-29 20:17:41 +000035#define MAX_ROMLAYOUT 32
Ollie Lho184a4042005-11-26 21:55:36 +000036
37typedef struct {
38 unsigned int start;
39 unsigned int end;
40 unsigned int included;
41 char name[256];
42} romlayout_t;
43
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +000044/* include_args lists arguments specified at the command line with -i. They
45 * must be processed at some point so that desired regions are marked as
46 * "included" in the rom_entries list.
47 */
48static char *include_args[MAX_ROMLAYOUT];
49static int num_include_args = 0; /* the number of valid entries. */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000050static romlayout_t rom_entries[MAX_ROMLAYOUT];
Ollie Lho184a4042005-11-26 21:55:36 +000051
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000052#if CONFIG_INTERNAL == 1 /* FIXME: Move the whole block to cbtable.c? */
Ollie Lho184a4042005-11-26 21:55:36 +000053static char *def_name = "DEFAULT";
54
Peter Stuge7ffbc6f2008-06-18 02:08:40 +000055int show_id(uint8_t *bios, int size, int force)
Ollie Lho184a4042005-11-26 21:55:36 +000056{
57 unsigned int *walk;
Carl-Daniel Hailfinger85f8a172008-07-11 00:06:38 +000058 unsigned int mb_part_offset, mb_vendor_offset;
59 char *mb_part, *mb_vendor;
60
61 mainboard_vendor = def_name;
62 mainboard_part = def_name;
Ollie Lho184a4042005-11-26 21:55:36 +000063
Uwe Hermanna7e05482007-05-09 10:17:44 +000064 walk = (unsigned int *)(bios + size - 0x10);
65 walk--;
Ollie Lho184a4042005-11-26 21:55:36 +000066
Uwe Hermanna7e05482007-05-09 10:17:44 +000067 if ((*walk) == 0 || ((*walk) & 0x3ff) != 0) {
Uwe Hermann6c8866c2008-07-03 19:26:44 +000068 /* We might have an NVIDIA chipset BIOS which stores the ID
69 * information at a different location.
Ollie Lho184a4042005-11-26 21:55:36 +000070 */
Uwe Hermanna7e05482007-05-09 10:17:44 +000071 walk = (unsigned int *)(bios + size - 0x80);
72 walk--;
Ollie Lho184a4042005-11-26 21:55:36 +000073 }
Uwe Hermanna7e05482007-05-09 10:17:44 +000074
Carl-Daniel Hailfingerecab4fc2008-07-03 14:40:06 +000075 /*
76 * Check if coreboot last image size is 0 or not a multiple of 1k or
77 * bigger than the chip or if the pointers to vendor ID or mainboard ID
78 * are outside the image of if the start of ID strings are nonsensical
79 * (nonprintable and not \0).
80 */
Carl-Daniel Hailfinger85f8a172008-07-11 00:06:38 +000081 mb_part_offset = *(walk - 1);
82 mb_vendor_offset = *(walk - 2);
83 if ((*walk) == 0 || ((*walk) & 0x3ff) != 0 || (*walk) > size ||
84 mb_part_offset > size || mb_vendor_offset > size) {
Stefan Taunerfaf01fb2011-05-18 01:31:53 +000085 msg_pinfo("Flash image seems to be a legacy BIOS. "
86 "Disabling coreboot-related checks.\n");
Carl-Daniel Hailfinger85f8a172008-07-11 00:06:38 +000087 return 0;
88 }
Uwe Hermann394131e2008-10-18 21:14:13 +000089
Carl-Daniel Hailfinger85f8a172008-07-11 00:06:38 +000090 mb_part = (char *)(bios + size - mb_part_offset);
91 mb_vendor = (char *)(bios + size - mb_vendor_offset);
92 if (!isprint((unsigned char)*mb_part) ||
93 !isprint((unsigned char)*mb_vendor)) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000094 msg_pinfo("Flash image seems to have garbage in the ID location."
Uwe Hermann394131e2008-10-18 21:14:13 +000095 " Disabling checks.\n");
Ollie Lho184a4042005-11-26 21:55:36 +000096 return 0;
97 }
Uwe Hermanna7e05482007-05-09 10:17:44 +000098
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000099 msg_pdbg("coreboot last image size "
Uwe Hermanna502dce2007-10-17 23:55:15 +0000100 "(not ROM size) is %d bytes.\n", *walk);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000101
Carl-Daniel Hailfinger85f8a172008-07-11 00:06:38 +0000102 mainboard_part = strdup(mb_part);
103 mainboard_vendor = strdup(mb_vendor);
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000104 msg_pdbg("Manufacturer: %s\n", mainboard_vendor);
105 msg_pdbg("Mainboard ID: %s\n", mainboard_part);
Stefan Reinauer3a431602005-12-18 18:40:46 +0000106
107 /*
Stefan Reinauere3f3e2e2008-01-18 15:33:10 +0000108 * If lb_vendor is not set, the coreboot table was
Uwe Hermann6c8866c2008-07-03 19:26:44 +0000109 * not found. Nor was -m VENDOR:PART specified.
Stefan Reinauer3a431602005-12-18 18:40:46 +0000110 */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000111 if (!lb_vendor || !lb_part) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000112 msg_pinfo("Note: If the following flash access fails, "
Uwe Hermann6c8866c2008-07-03 19:26:44 +0000113 "try -m <vendor>:<mainboard>.\n");
Stefan Reinauer3a431602005-12-18 18:40:46 +0000114 return 0;
115 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000116
Stefan Reinauere3705282005-12-18 16:41:10 +0000117 /* These comparisons are case insensitive to make things
118 * a little less user^Werror prone.
119 */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000120 if (!strcasecmp(mainboard_vendor, lb_vendor) &&
121 !strcasecmp(mainboard_part, lb_part)) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000122 msg_pdbg("This firmware image matches this mainboard.\n");
Ollie Lho184a4042005-11-26 21:55:36 +0000123 } else {
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000124 if (force_boardmismatch) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000125 msg_pinfo("WARNING: This firmware image does not "
Uwe Hermannac309342007-10-10 17:42:20 +0000126 "seem to fit to this machine - forcing it.\n");
Ollie Lho184a4042005-11-26 21:55:36 +0000127 } else {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000128 msg_pinfo("ERROR: Your firmware image (%s:%s) does not "
Uwe Hermanna7e05482007-05-09 10:17:44 +0000129 "appear to\n be correct for the detected "
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000130 "mainboard (%s:%s)\n\nOverride with -p internal:"
131 "boardmismatch=force if you are absolutely sure "
132 "that\nyou are using a correct "
Uwe Hermanna7e05482007-05-09 10:17:44 +0000133 "image for this mainboard or override\nthe detected "
Uwe Hermannac309342007-10-10 17:42:20 +0000134 "values with --mainboard <vendor>:<mainboard>.\n\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000135 mainboard_vendor, mainboard_part, lb_vendor,
136 lb_part);
Ollie Lho184a4042005-11-26 21:55:36 +0000137 exit(1);
138 }
139 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000140
Ollie Lho184a4042005-11-26 21:55:36 +0000141 return 0;
142}
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000143#endif
Ollie Lho184a4042005-11-26 21:55:36 +0000144
Patrick Georgia9095a92010-09-30 17:03:32 +0000145#ifndef __LIBPAYLOAD__
Uwe Hermanna7e05482007-05-09 10:17:44 +0000146int read_romlayout(char *name)
Ollie Lho184a4042005-11-26 21:55:36 +0000147{
148 FILE *romlayout;
149 char tempstr[256];
150 int i;
151
Uwe Hermanna7e05482007-05-09 10:17:44 +0000152 romlayout = fopen(name, "r");
153
154 if (!romlayout) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000155 msg_gerr("ERROR: Could not open ROM layout (%s).\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000156 name);
Ollie Lho184a4042005-11-26 21:55:36 +0000157 return -1;
158 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000159
160 while (!feof(romlayout)) {
Ollie Lho184a4042005-11-26 21:55:36 +0000161 char *tstr1, *tstr2;
Carl-Daniel Hailfingerda53ada2010-12-04 11:56:52 +0000162
163 if (romimages >= MAX_ROMLAYOUT) {
164 msg_gerr("Maximum number of ROM images (%i) in layout "
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000165 "file reached.\n", MAX_ROMLAYOUT);
166 return 1;
Carl-Daniel Hailfingerda53ada2010-12-04 11:56:52 +0000167 }
Peter Stuge1fec0f32009-01-12 21:00:35 +0000168 if (2 != fscanf(romlayout, "%s %s\n", tempstr, rom_entries[romimages].name))
169 continue;
Ollie Lho184a4042005-11-26 21:55:36 +0000170#if 0
171 // fscanf does not like arbitrary comments like that :( later
Uwe Hermanna7e05482007-05-09 10:17:44 +0000172 if (tempstr[0] == '#') {
Ollie Lho184a4042005-11-26 21:55:36 +0000173 continue;
174 }
175#endif
Uwe Hermanna7e05482007-05-09 10:17:44 +0000176 tstr1 = strtok(tempstr, ":");
177 tstr2 = strtok(NULL, ":");
Uwe Hermann58783e32008-12-22 16:42:59 +0000178 if (!tstr1 || !tstr2) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000179 msg_gerr("Error parsing layout file.\n");
Uwe Hermann58783e32008-12-22 16:42:59 +0000180 fclose(romlayout);
181 return 1;
182 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000183 rom_entries[romimages].start = strtol(tstr1, (char **)NULL, 16);
184 rom_entries[romimages].end = strtol(tstr2, (char **)NULL, 16);
185 rom_entries[romimages].included = 0;
Ollie Lho184a4042005-11-26 21:55:36 +0000186 romimages++;
187 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000188
189 for (i = 0; i < romimages; i++) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000190 msg_gdbg("romlayout %08x - %08x named %s\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000191 rom_entries[i].start,
192 rom_entries[i].end, rom_entries[i].name);
Ollie Lho184a4042005-11-26 21:55:36 +0000193 }
194
195 fclose(romlayout);
Uwe Hermannffec5f32007-08-23 16:08:21 +0000196
Uwe Hermanna7e05482007-05-09 10:17:44 +0000197 return 0;
Ollie Lho184a4042005-11-26 21:55:36 +0000198}
Patrick Georgia9095a92010-09-30 17:03:32 +0000199#endif
Ollie Lho184a4042005-11-26 21:55:36 +0000200
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000201/* register an include argument (-i) for later processing */
202int register_include_arg(char *name)
203{
204 if (num_include_args >= MAX_ROMLAYOUT) {
205 msg_gerr("Too many regions included (%i).\n", num_include_args);
206 return 1;
207 }
208
209 if (name == NULL) {
210 msg_gerr("<NULL> is a bad region name.\n");
211 return 1;
212 }
213
214 include_args[num_include_args] = name;
215 num_include_args++;
216 return 0;
217}
218
219/* returns the index of the entry (or a negative value if it is not found) */
220static int find_romentry(char *name)
Ollie Lho184a4042005-11-26 21:55:36 +0000221{
222 int i;
223
Uwe Hermanna7e05482007-05-09 10:17:44 +0000224 if (!romimages)
225 return -1;
Ollie Lho184a4042005-11-26 21:55:36 +0000226
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000227 msg_gspew("Looking for region \"%s\"... ", name);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000228 for (i = 0; i < romimages; i++) {
229 if (!strcmp(rom_entries[i].name, name)) {
230 rom_entries[i].included = 1;
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000231 msg_gspew("found.\n");
Ollie Lho184a4042005-11-26 21:55:36 +0000232 return i;
233 }
234 }
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000235 msg_gspew("not found.\n");
Ollie Lho184a4042005-11-26 21:55:36 +0000236 return -1;
237}
238
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000239/* process -i arguments
240 * returns 0 to indicate success, >0 to indicate failure
241 */
242int process_include_args(void)
243{
244 int i;
245 unsigned int found = 0;
246
247 if (num_include_args == 0)
248 return 0;
249
250 for (i = 0; i < num_include_args; i++) {
251 /* User has specified an area, but no layout file is loaded. */
252 if (!romimages) {
253 msg_gerr("Region requested (with -i \"%s\"), "
254 "but no layout data is available.\n",
255 include_args[i]);
256 return 1;
257 }
258
259 if (find_romentry(include_args[i]) < 0) {
260 msg_gerr("Invalid region specified: \"%s\"\n",
261 include_args[i]);
262 return 1;
263 }
264 found++;
265 }
266
267 msg_ginfo("Using region%s: \"%s\"", num_include_args > 1 ? "s" : "",
268 include_args[0]);
269 for (i = 1; i < num_include_args; i++)
270 msg_ginfo(", \"%s\"", include_args[i]);
271 msg_ginfo(".\n");
272 return 0;
273}
274
Stefan Tauner104b0d92011-12-25 09:07:59 +0000275romlayout_t *get_next_included_romentry(unsigned int start)
Ollie Lho184a4042005-11-26 21:55:36 +0000276{
277 int i;
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000278 unsigned int best_start = UINT_MAX;
Stefan Tauner104b0d92011-12-25 09:07:59 +0000279 romlayout_t *best_entry = NULL;
280 romlayout_t *cur;
Ollie Lho184a4042005-11-26 21:55:36 +0000281
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000282 /* First come, first serve for overlapping regions. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000283 for (i = 0; i < romimages; i++) {
Stefan Tauner104b0d92011-12-25 09:07:59 +0000284 cur = &rom_entries[i];
285 if (!cur->included)
Ollie Lho184a4042005-11-26 21:55:36 +0000286 continue;
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000287 /* Already past the current entry? */
Stefan Tauner104b0d92011-12-25 09:07:59 +0000288 if (start > cur->end)
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000289 continue;
290 /* Inside the current entry? */
Stefan Tauner104b0d92011-12-25 09:07:59 +0000291 if (start >= cur->start)
292 return cur;
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000293 /* Entry begins after start. */
Stefan Tauner104b0d92011-12-25 09:07:59 +0000294 if (best_start > cur->start) {
295 best_start = cur->start;
296 best_entry = cur;
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000297 }
Ollie Lho184a4042005-11-26 21:55:36 +0000298 }
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000299 return best_entry;
300}
Ollie Lho184a4042005-11-26 21:55:36 +0000301
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000302int handle_romentries(struct flashctx *flash, uint8_t *oldcontents, uint8_t *newcontents)
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000303{
304 unsigned int start = 0;
Stefan Tauner104b0d92011-12-25 09:07:59 +0000305 romlayout_t *entry;
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000306 unsigned int size = flash->total_size * 1024;
307
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000308 /* If no regions were specified for inclusion, assume
309 * that the user wants to write the complete new image.
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000310 */
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000311 if (num_include_args == 0)
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000312 return 0;
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000313
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000314 /* Non-included romentries are ignored.
315 * The union of all included romentries is used from the new image.
316 */
317 while (start < size) {
Stefan Tauner104b0d92011-12-25 09:07:59 +0000318 entry = get_next_included_romentry(start);
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000319 /* No more romentries for remaining region? */
Stefan Tauner104b0d92011-12-25 09:07:59 +0000320 if (!entry) {
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000321 memcpy(newcontents + start, oldcontents + start,
322 size - start);
323 break;
324 }
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000325 /* For non-included region, copy from old content. */
Stefan Tauner104b0d92011-12-25 09:07:59 +0000326 if (entry->start > start)
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000327 memcpy(newcontents + start, oldcontents + start,
Stefan Tauner104b0d92011-12-25 09:07:59 +0000328 entry->start - start);
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000329 /* Skip to location after current romentry. */
Stefan Tauner104b0d92011-12-25 09:07:59 +0000330 start = entry->end + 1;
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000331 /* Catch overflow. */
332 if (!start)
333 break;
334 }
Ollie Lho184a4042005-11-26 21:55:36 +0000335 return 0;
336}