blob: 92fe8528ea21d8d91d42883db183dd66c035d66f [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
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000044static romlayout_t rom_entries[MAX_ROMLAYOUT];
Ollie Lho184a4042005-11-26 21:55:36 +000045
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000046#if CONFIG_INTERNAL == 1 /* FIXME: Move the whole block to cbtable.c? */
Ollie Lho184a4042005-11-26 21:55:36 +000047static char *def_name = "DEFAULT";
48
Peter Stuge7ffbc6f2008-06-18 02:08:40 +000049int show_id(uint8_t *bios, int size, int force)
Ollie Lho184a4042005-11-26 21:55:36 +000050{
51 unsigned int *walk;
Carl-Daniel Hailfinger85f8a172008-07-11 00:06:38 +000052 unsigned int mb_part_offset, mb_vendor_offset;
53 char *mb_part, *mb_vendor;
54
55 mainboard_vendor = def_name;
56 mainboard_part = def_name;
Ollie Lho184a4042005-11-26 21:55:36 +000057
Uwe Hermanna7e05482007-05-09 10:17:44 +000058 walk = (unsigned int *)(bios + size - 0x10);
59 walk--;
Ollie Lho184a4042005-11-26 21:55:36 +000060
Uwe Hermanna7e05482007-05-09 10:17:44 +000061 if ((*walk) == 0 || ((*walk) & 0x3ff) != 0) {
Uwe Hermann6c8866c2008-07-03 19:26:44 +000062 /* We might have an NVIDIA chipset BIOS which stores the ID
63 * information at a different location.
Ollie Lho184a4042005-11-26 21:55:36 +000064 */
Uwe Hermanna7e05482007-05-09 10:17:44 +000065 walk = (unsigned int *)(bios + size - 0x80);
66 walk--;
Ollie Lho184a4042005-11-26 21:55:36 +000067 }
Uwe Hermanna7e05482007-05-09 10:17:44 +000068
Carl-Daniel Hailfingerecab4fc2008-07-03 14:40:06 +000069 /*
70 * Check if coreboot last image size is 0 or not a multiple of 1k or
71 * bigger than the chip or if the pointers to vendor ID or mainboard ID
72 * are outside the image of if the start of ID strings are nonsensical
73 * (nonprintable and not \0).
74 */
Carl-Daniel Hailfinger85f8a172008-07-11 00:06:38 +000075 mb_part_offset = *(walk - 1);
76 mb_vendor_offset = *(walk - 2);
77 if ((*walk) == 0 || ((*walk) & 0x3ff) != 0 || (*walk) > size ||
78 mb_part_offset > size || mb_vendor_offset > size) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000079 msg_pinfo("Flash image seems to be a legacy BIOS. Disabling checks.\n");
Carl-Daniel Hailfinger85f8a172008-07-11 00:06:38 +000080 return 0;
81 }
Uwe Hermann394131e2008-10-18 21:14:13 +000082
Carl-Daniel Hailfinger85f8a172008-07-11 00:06:38 +000083 mb_part = (char *)(bios + size - mb_part_offset);
84 mb_vendor = (char *)(bios + size - mb_vendor_offset);
85 if (!isprint((unsigned char)*mb_part) ||
86 !isprint((unsigned char)*mb_vendor)) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000087 msg_pinfo("Flash image seems to have garbage in the ID location."
Uwe Hermann394131e2008-10-18 21:14:13 +000088 " Disabling checks.\n");
Ollie Lho184a4042005-11-26 21:55:36 +000089 return 0;
90 }
Uwe Hermanna7e05482007-05-09 10:17:44 +000091
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000092 msg_pdbg("coreboot last image size "
Uwe Hermanna502dce2007-10-17 23:55:15 +000093 "(not ROM size) is %d bytes.\n", *walk);
Uwe Hermanna7e05482007-05-09 10:17:44 +000094
Carl-Daniel Hailfinger85f8a172008-07-11 00:06:38 +000095 mainboard_part = strdup(mb_part);
96 mainboard_vendor = strdup(mb_vendor);
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000097 msg_pdbg("Manufacturer: %s\n", mainboard_vendor);
98 msg_pdbg("Mainboard ID: %s\n", mainboard_part);
Stefan Reinauer3a431602005-12-18 18:40:46 +000099
100 /*
Stefan Reinauere3f3e2e2008-01-18 15:33:10 +0000101 * If lb_vendor is not set, the coreboot table was
Uwe Hermann6c8866c2008-07-03 19:26:44 +0000102 * not found. Nor was -m VENDOR:PART specified.
Stefan Reinauer3a431602005-12-18 18:40:46 +0000103 */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000104 if (!lb_vendor || !lb_part) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000105 msg_pinfo("Note: If the following flash access fails, "
Uwe Hermann6c8866c2008-07-03 19:26:44 +0000106 "try -m <vendor>:<mainboard>.\n");
Stefan Reinauer3a431602005-12-18 18:40:46 +0000107 return 0;
108 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000109
Stefan Reinauere3705282005-12-18 16:41:10 +0000110 /* These comparisons are case insensitive to make things
111 * a little less user^Werror prone.
112 */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000113 if (!strcasecmp(mainboard_vendor, lb_vendor) &&
114 !strcasecmp(mainboard_part, lb_part)) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000115 msg_pdbg("This firmware image matches this mainboard.\n");
Ollie Lho184a4042005-11-26 21:55:36 +0000116 } else {
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000117 if (force_boardmismatch) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000118 msg_pinfo("WARNING: This firmware image does not "
Uwe Hermannac309342007-10-10 17:42:20 +0000119 "seem to fit to this machine - forcing it.\n");
Ollie Lho184a4042005-11-26 21:55:36 +0000120 } else {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000121 msg_pinfo("ERROR: Your firmware image (%s:%s) does not "
Uwe Hermanna7e05482007-05-09 10:17:44 +0000122 "appear to\n be correct for the detected "
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000123 "mainboard (%s:%s)\n\nOverride with -p internal:"
124 "boardmismatch=force if you are absolutely sure "
125 "that\nyou are using a correct "
Uwe Hermanna7e05482007-05-09 10:17:44 +0000126 "image for this mainboard or override\nthe detected "
Uwe Hermannac309342007-10-10 17:42:20 +0000127 "values with --mainboard <vendor>:<mainboard>.\n\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000128 mainboard_vendor, mainboard_part, lb_vendor,
129 lb_part);
Ollie Lho184a4042005-11-26 21:55:36 +0000130 exit(1);
131 }
132 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000133
Ollie Lho184a4042005-11-26 21:55:36 +0000134 return 0;
135}
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000136#endif
Ollie Lho184a4042005-11-26 21:55:36 +0000137
Patrick Georgia9095a92010-09-30 17:03:32 +0000138#ifndef __LIBPAYLOAD__
Uwe Hermanna7e05482007-05-09 10:17:44 +0000139int read_romlayout(char *name)
Ollie Lho184a4042005-11-26 21:55:36 +0000140{
141 FILE *romlayout;
142 char tempstr[256];
143 int i;
144
Uwe Hermanna7e05482007-05-09 10:17:44 +0000145 romlayout = fopen(name, "r");
146
147 if (!romlayout) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000148 msg_gerr("ERROR: Could not open ROM layout (%s).\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000149 name);
Ollie Lho184a4042005-11-26 21:55:36 +0000150 return -1;
151 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000152
153 while (!feof(romlayout)) {
Ollie Lho184a4042005-11-26 21:55:36 +0000154 char *tstr1, *tstr2;
Carl-Daniel Hailfingerda53ada2010-12-04 11:56:52 +0000155
156 if (romimages >= MAX_ROMLAYOUT) {
157 msg_gerr("Maximum number of ROM images (%i) in layout "
158 "file reached before end of layout file.\n",
159 MAX_ROMLAYOUT);
160 msg_gerr("Ignoring the rest of the layout file.\n");
161 break;
162 }
Peter Stuge1fec0f32009-01-12 21:00:35 +0000163 if (2 != fscanf(romlayout, "%s %s\n", tempstr, rom_entries[romimages].name))
164 continue;
Ollie Lho184a4042005-11-26 21:55:36 +0000165#if 0
166 // fscanf does not like arbitrary comments like that :( later
Uwe Hermanna7e05482007-05-09 10:17:44 +0000167 if (tempstr[0] == '#') {
Ollie Lho184a4042005-11-26 21:55:36 +0000168 continue;
169 }
170#endif
Uwe Hermanna7e05482007-05-09 10:17:44 +0000171 tstr1 = strtok(tempstr, ":");
172 tstr2 = strtok(NULL, ":");
Uwe Hermann58783e32008-12-22 16:42:59 +0000173 if (!tstr1 || !tstr2) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000174 msg_gerr("Error parsing layout file.\n");
Uwe Hermann58783e32008-12-22 16:42:59 +0000175 fclose(romlayout);
176 return 1;
177 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000178 rom_entries[romimages].start = strtol(tstr1, (char **)NULL, 16);
179 rom_entries[romimages].end = strtol(tstr2, (char **)NULL, 16);
180 rom_entries[romimages].included = 0;
Ollie Lho184a4042005-11-26 21:55:36 +0000181 romimages++;
182 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000183
184 for (i = 0; i < romimages; i++) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000185 msg_gdbg("romlayout %08x - %08x named %s\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000186 rom_entries[i].start,
187 rom_entries[i].end, rom_entries[i].name);
Ollie Lho184a4042005-11-26 21:55:36 +0000188 }
189
190 fclose(romlayout);
Uwe Hermannffec5f32007-08-23 16:08:21 +0000191
Uwe Hermanna7e05482007-05-09 10:17:44 +0000192 return 0;
Ollie Lho184a4042005-11-26 21:55:36 +0000193}
Patrick Georgia9095a92010-09-30 17:03:32 +0000194#endif
Ollie Lho184a4042005-11-26 21:55:36 +0000195
196int find_romentry(char *name)
197{
198 int i;
199
Uwe Hermanna7e05482007-05-09 10:17:44 +0000200 if (!romimages)
201 return -1;
Ollie Lho184a4042005-11-26 21:55:36 +0000202
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000203 msg_ginfo("Looking for \"%s\"... ", name);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000204
205 for (i = 0; i < romimages; i++) {
206 if (!strcmp(rom_entries[i].name, name)) {
207 rom_entries[i].included = 1;
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000208 msg_ginfo("found.\n");
Ollie Lho184a4042005-11-26 21:55:36 +0000209 return i;
210 }
211 }
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000212 msg_ginfo("not found.\n"); // Not found. Error.
Uwe Hermannffec5f32007-08-23 16:08:21 +0000213
Ollie Lho184a4042005-11-26 21:55:36 +0000214 return -1;
215}
216
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000217int find_next_included_romentry(unsigned int start)
Ollie Lho184a4042005-11-26 21:55:36 +0000218{
219 int i;
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000220 unsigned int best_start = UINT_MAX;
221 int best_entry = -1;
Ollie Lho184a4042005-11-26 21:55:36 +0000222
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000223 /* First come, first serve for overlapping regions. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000224 for (i = 0; i < romimages; i++) {
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000225 if (!rom_entries[i].included)
Ollie Lho184a4042005-11-26 21:55:36 +0000226 continue;
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000227 /* Already past the current entry? */
228 if (start > rom_entries[i].end)
229 continue;
230 /* Inside the current entry? */
231 if (start >= rom_entries[i].start)
232 return i;
233 /* Entry begins after start. */
234 if (best_start > rom_entries[i].start) {
235 best_start = rom_entries[i].start;
236 best_entry = i;
237 }
Ollie Lho184a4042005-11-26 21:55:36 +0000238 }
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000239 return best_entry;
240}
Ollie Lho184a4042005-11-26 21:55:36 +0000241
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000242int handle_romentries(struct flashchip *flash, uint8_t *oldcontents, uint8_t *newcontents)
243{
244 unsigned int start = 0;
245 int entry;
246 unsigned int size = flash->total_size * 1024;
247
248 /* If no layout file was specified or the layout file was empty, assume
249 * that the user wants to flash the complete new image.
250 */
251 if (!romimages)
252 return 0;
253 /* Non-included romentries are ignored.
254 * The union of all included romentries is used from the new image.
255 */
256 while (start < size) {
257 entry = find_next_included_romentry(start);
258 /* No more romentries for remaining region? */
259 if (entry < 0) {
260 memcpy(newcontents + start, oldcontents + start,
261 size - start);
262 break;
263 }
264 if (rom_entries[entry].start > start)
265 memcpy(newcontents + start, oldcontents + start,
266 rom_entries[entry].start - start);
267 /* Skip to location after current romentry. */
268 start = rom_entries[entry].end + 1;
269 /* Catch overflow. */
270 if (!start)
271 break;
272 }
273
Ollie Lho184a4042005-11-26 21:55:36 +0000274 return 0;
275}