blob: f41e0ea3644a8bfabc43b17e2973a295653ac22a [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
Ollie Lho184a4042005-11-26 21:55:36 +000021#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
Carl-Daniel Hailfingerecab4fc2008-07-03 14:40:06 +000024#include <ctype.h>
Ollie Lho184a4042005-11-26 21:55:36 +000025#include <stdint.h>
Uwe Hermann0846f892007-08-23 13:34:59 +000026#include "flash.h"
Ollie Lho184a4042005-11-26 21:55:36 +000027
Uwe Hermanna7e05482007-05-09 10:17:44 +000028char *mainboard_vendor = NULL;
29char *mainboard_part = NULL;
30int romimages = 0;
Ollie Lho184a4042005-11-26 21:55:36 +000031
Ollie Lho184a4042005-11-26 21:55:36 +000032#define MAX_ROMLAYOUT 16
33
34typedef struct {
35 unsigned int start;
36 unsigned int end;
37 unsigned int included;
38 char name[256];
39} romlayout_t;
40
41romlayout_t rom_entries[MAX_ROMLAYOUT];
42
43static char *def_name = "DEFAULT";
44
Peter Stuge7ffbc6f2008-06-18 02:08:40 +000045int show_id(uint8_t *bios, int size, int force)
Ollie Lho184a4042005-11-26 21:55:36 +000046{
47 unsigned int *walk;
48
Uwe Hermanna7e05482007-05-09 10:17:44 +000049 walk = (unsigned int *)(bios + size - 0x10);
50 walk--;
Ollie Lho184a4042005-11-26 21:55:36 +000051
Uwe Hermanna7e05482007-05-09 10:17:44 +000052 if ((*walk) == 0 || ((*walk) & 0x3ff) != 0) {
Ollie Lho184a4042005-11-26 21:55:36 +000053 /* We might have an Nvidia chipset bios
54 * which stores the id information at a
55 * different location.
56 */
Uwe Hermanna7e05482007-05-09 10:17:44 +000057 walk = (unsigned int *)(bios + size - 0x80);
58 walk--;
Ollie Lho184a4042005-11-26 21:55:36 +000059 }
Uwe Hermanna7e05482007-05-09 10:17:44 +000060
Carl-Daniel Hailfingerecab4fc2008-07-03 14:40:06 +000061 /*
62 * Check if coreboot last image size is 0 or not a multiple of 1k or
63 * bigger than the chip or if the pointers to vendor ID or mainboard ID
64 * are outside the image of if the start of ID strings are nonsensical
65 * (nonprintable and not \0).
66 */
67 if ((*walk) == 0 || ((*walk) & 0x3ff) != 0 || *walk > size ||
68 *(walk - 1) > size || *(walk - 2) > size ||
69 (!isprint((const char *)(bios + size - *(walk - 1))) &&
70 ((const char *)(bios + size - *(walk - 1)))) ||
71 (!isprint((const char *)(bios + size - *(walk - 2))) &&
72 ((const char *)(bios + size - *(walk - 2))))) {
Uwe Hermannac309342007-10-10 17:42:20 +000073 printf("Flash image seems to be a legacy BIOS. Disabling checks.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +000074 mainboard_vendor = def_name;
75 mainboard_part = def_name;
Ollie Lho184a4042005-11-26 21:55:36 +000076 return 0;
77 }
Uwe Hermanna7e05482007-05-09 10:17:44 +000078
Stefan Reinauere3f3e2e2008-01-18 15:33:10 +000079 printf_debug("coreboot last image size "
Uwe Hermanna502dce2007-10-17 23:55:15 +000080 "(not ROM size) is %d bytes.\n", *walk);
Uwe Hermanna7e05482007-05-09 10:17:44 +000081
82 walk--;
83 mainboard_part = strdup((const char *)(bios + size - *walk));
84 walk--;
85 mainboard_vendor = strdup((const char *)(bios + size - *walk));
Uwe Hermanna502dce2007-10-17 23:55:15 +000086 printf_debug("Manufacturer: %s\n", mainboard_vendor);
87 printf_debug("Mainboard ID: %s\n", mainboard_part);
Stefan Reinauer3a431602005-12-18 18:40:46 +000088
89 /*
Stefan Reinauere3f3e2e2008-01-18 15:33:10 +000090 * If lb_vendor is not set, the coreboot table was
Stefan Reinauer3a431602005-12-18 18:40:46 +000091 * not found. Nor was -mVENDOR:PART specified
92 */
93
Uwe Hermanna7e05482007-05-09 10:17:44 +000094 if (!lb_vendor || !lb_part) {
Stefan Reinauer3a431602005-12-18 18:40:46 +000095 printf("Note: If the following flash access fails, "
Uwe Hermanna502dce2007-10-17 23:55:15 +000096 "you might need to specify -m <vendor>:<mainboard>.\n");
Stefan Reinauer3a431602005-12-18 18:40:46 +000097 return 0;
98 }
Uwe Hermanna7e05482007-05-09 10:17:44 +000099
Stefan Reinauere3705282005-12-18 16:41:10 +0000100 /* These comparisons are case insensitive to make things
101 * a little less user^Werror prone.
102 */
Stefan Reinauer3a431602005-12-18 18:40:46 +0000103
Uwe Hermanna7e05482007-05-09 10:17:44 +0000104 if (!strcasecmp(mainboard_vendor, lb_vendor) &&
105 !strcasecmp(mainboard_part, lb_part)) {
Stefan Reinauer3a431602005-12-18 18:40:46 +0000106 printf_debug("This firmware image matches "
Uwe Hermannac309342007-10-10 17:42:20 +0000107 "this motherboard.\n");
Ollie Lho184a4042005-11-26 21:55:36 +0000108 } else {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000109 if (force) {
Ollie Lho184a4042005-11-26 21:55:36 +0000110 printf("WARNING: This firmware image does not "
Uwe Hermannac309342007-10-10 17:42:20 +0000111 "seem to fit to this machine - forcing it.\n");
Ollie Lho184a4042005-11-26 21:55:36 +0000112 } else {
Stefan Reinauer3a431602005-12-18 18:40:46 +0000113 printf("ERROR: Your firmware image (%s:%s) does not "
Uwe Hermanna7e05482007-05-09 10:17:44 +0000114 "appear to\n be correct for the detected "
115 "mainboard (%s:%s)\n\nOverride with --force if you "
116 "are absolutely sure that you\nare using a correct "
117 "image for this mainboard or override\nthe detected "
Uwe Hermannac309342007-10-10 17:42:20 +0000118 "values with --mainboard <vendor>:<mainboard>.\n\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000119 mainboard_vendor, mainboard_part, lb_vendor,
120 lb_part);
Ollie Lho184a4042005-11-26 21:55:36 +0000121 exit(1);
122 }
123 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000124
Ollie Lho184a4042005-11-26 21:55:36 +0000125 return 0;
126}
127
Uwe Hermanna7e05482007-05-09 10:17:44 +0000128int read_romlayout(char *name)
Ollie Lho184a4042005-11-26 21:55:36 +0000129{
130 FILE *romlayout;
131 char tempstr[256];
132 int i;
133
Uwe Hermanna7e05482007-05-09 10:17:44 +0000134 romlayout = fopen(name, "r");
135
136 if (!romlayout) {
Uwe Hermanna502dce2007-10-17 23:55:15 +0000137 fprintf(stderr, "ERROR: Could not open ROM layout (%s).\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000138 name);
Ollie Lho184a4042005-11-26 21:55:36 +0000139 return -1;
140 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000141
142 while (!feof(romlayout)) {
Ollie Lho184a4042005-11-26 21:55:36 +0000143 char *tstr1, *tstr2;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000144 fscanf(romlayout, "%s %s\n", tempstr,
145 rom_entries[romimages].name);
Ollie Lho184a4042005-11-26 21:55:36 +0000146#if 0
147 // fscanf does not like arbitrary comments like that :( later
Uwe Hermanna7e05482007-05-09 10:17:44 +0000148 if (tempstr[0] == '#') {
Ollie Lho184a4042005-11-26 21:55:36 +0000149 continue;
150 }
151#endif
Uwe Hermanna7e05482007-05-09 10:17:44 +0000152 tstr1 = strtok(tempstr, ":");
153 tstr2 = strtok(NULL, ":");
154 rom_entries[romimages].start = strtol(tstr1, (char **)NULL, 16);
155 rom_entries[romimages].end = strtol(tstr2, (char **)NULL, 16);
156 rom_entries[romimages].included = 0;
Ollie Lho184a4042005-11-26 21:55:36 +0000157 romimages++;
158 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000159
160 for (i = 0; i < romimages; i++) {
161 printf_debug("romlayout %08x - %08x named %s\n",
162 rom_entries[i].start,
163 rom_entries[i].end, rom_entries[i].name);
Ollie Lho184a4042005-11-26 21:55:36 +0000164 }
165
166 fclose(romlayout);
Uwe Hermannffec5f32007-08-23 16:08:21 +0000167
Uwe Hermanna7e05482007-05-09 10:17:44 +0000168 return 0;
Ollie Lho184a4042005-11-26 21:55:36 +0000169}
170
171int find_romentry(char *name)
172{
173 int i;
174
Uwe Hermanna7e05482007-05-09 10:17:44 +0000175 if (!romimages)
176 return -1;
Ollie Lho184a4042005-11-26 21:55:36 +0000177
178 printf("Looking for \"%s\"... ", name);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000179
180 for (i = 0; i < romimages; i++) {
181 if (!strcmp(rom_entries[i].name, name)) {
182 rom_entries[i].included = 1;
Uwe Hermannac309342007-10-10 17:42:20 +0000183 printf("found.\n");
Ollie Lho184a4042005-11-26 21:55:36 +0000184 return i;
185 }
186 }
Uwe Hermanna502dce2007-10-17 23:55:15 +0000187 printf("not found.\n"); // Not found. Error.
Uwe Hermannffec5f32007-08-23 16:08:21 +0000188
Ollie Lho184a4042005-11-26 21:55:36 +0000189 return -1;
190}
191
192int handle_romentries(uint8_t *buffer, uint8_t *content)
193{
194 int i;
195
196 // This function does not safe flash write cycles.
197 //
198 // Also it does not cope with overlapping rom layout
199 // sections.
200 // example:
201 // 00000000:00008fff gfxrom
202 // 00009000:0003ffff normal
203 // 00040000:0007ffff fallback
204 // 00000000:0007ffff all
205 //
206 // If you'd specify -i all the included flag of all other
207 // sections is still 0, so no changes will be made to the
208 // flash. Same thing if you specify -i normal -i all only
209 // normal will be updated and the rest will be kept.
210
Uwe Hermanna7e05482007-05-09 10:17:44 +0000211 for (i = 0; i < romimages; i++) {
212
213 if (rom_entries[i].included)
Ollie Lho184a4042005-11-26 21:55:36 +0000214 continue;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000215
216 memcpy(buffer + rom_entries[i].start,
217 content + rom_entries[i].start,
218 rom_entries[i].end - rom_entries[i].start);
Ollie Lho184a4042005-11-26 21:55:36 +0000219 }
220
221 return 0;
222}