trivial patch for abuild: allow powerpc-elf-gcc, too.
[coreboot.git] / util / flashrom / layout.c
1 /*
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
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <ctype.h>
25 #include <stdint.h>
26 #include "flash.h"
27
28 char *mainboard_vendor = NULL;
29 char *mainboard_part = NULL;
30 int romimages = 0;
31
32 #define MAX_ROMLAYOUT   16
33
34 typedef struct {
35         unsigned int start;
36         unsigned int end;
37         unsigned int included;
38         char name[256];
39 } romlayout_t;
40
41 romlayout_t rom_entries[MAX_ROMLAYOUT];
42
43 static char *def_name = "DEFAULT";
44
45 int show_id(uint8_t *bios, int size, int force)
46 {
47         unsigned int *walk;
48         unsigned int mb_part_offset, mb_vendor_offset;
49         char *mb_part, *mb_vendor;
50
51         mainboard_vendor = def_name;
52         mainboard_part = def_name;
53
54         walk = (unsigned int *)(bios + size - 0x10);
55         walk--;
56
57         if ((*walk) == 0 || ((*walk) & 0x3ff) != 0) {
58                 /* We might have an NVIDIA chipset BIOS which stores the ID
59                  * information at a different location.
60                  */
61                 walk = (unsigned int *)(bios + size - 0x80);
62                 walk--;
63         }
64
65         /*
66          * Check if coreboot last image size is 0 or not a multiple of 1k or
67          * bigger than the chip or if the pointers to vendor ID or mainboard ID
68          * are outside the image of if the start of ID strings are nonsensical
69          * (nonprintable and not \0).
70          */
71         mb_part_offset = *(walk - 1);
72         mb_vendor_offset = *(walk - 2);
73         if ((*walk) == 0 || ((*walk) & 0x3ff) != 0 || (*walk) > size ||
74             mb_part_offset > size || mb_vendor_offset > size) {
75                 printf("Flash image seems to be a legacy BIOS. Disabling checks.\n");
76                 return 0;
77         }
78
79         mb_part = (char *)(bios + size - mb_part_offset);
80         mb_vendor = (char *)(bios + size - mb_vendor_offset);
81         if (!isprint((unsigned char)*mb_part) ||
82             !isprint((unsigned char)*mb_vendor)) {
83                 printf("Flash image seems to have garbage in the ID location."
84                        " Disabling checks.\n");
85                 return 0;
86         }
87
88         printf_debug("coreboot last image size "
89                      "(not ROM size) is %d bytes.\n", *walk);
90
91         mainboard_part = strdup(mb_part);
92         mainboard_vendor = strdup(mb_vendor);
93         printf_debug("Manufacturer: %s\n", mainboard_vendor);
94         printf_debug("Mainboard ID: %s\n", mainboard_part);
95
96         /*
97          * If lb_vendor is not set, the coreboot table was
98          * not found. Nor was -m VENDOR:PART specified.
99          */
100         if (!lb_vendor || !lb_part) {
101                 printf("Note: If the following flash access fails, "
102                        "try -m <vendor>:<mainboard>.\n");
103                 return 0;
104         }
105
106         /* These comparisons are case insensitive to make things
107          * a little less user^Werror prone. 
108          */
109         if (!strcasecmp(mainboard_vendor, lb_vendor) &&
110             !strcasecmp(mainboard_part, lb_part)) {
111                 printf_debug("This firmware image matches "
112                              "this motherboard.\n");
113         } else {
114                 if (force) {
115                         printf("WARNING: This firmware image does not "
116                                "seem to fit to this machine - forcing it.\n");
117                 } else {
118                         printf("ERROR: Your firmware image (%s:%s) does not "
119                                "appear to\n       be correct for the detected "
120                                "mainboard (%s:%s)\n\nOverride with --force if you "
121                                "are absolutely sure that you\nare using a correct "
122                                "image for this mainboard or override\nthe detected "
123                                "values with --mainboard <vendor>:<mainboard>.\n\n",
124                                mainboard_vendor, mainboard_part, lb_vendor,
125                                lb_part);
126                         exit(1);
127                 }
128         }
129
130         return 0;
131 }
132
133 int read_romlayout(char *name)
134 {
135         FILE *romlayout;
136         char tempstr[256];
137         int i;
138
139         romlayout = fopen(name, "r");
140
141         if (!romlayout) {
142                 fprintf(stderr, "ERROR: Could not open ROM layout (%s).\n",
143                         name);
144                 return -1;
145         }
146
147         while (!feof(romlayout)) {
148                 char *tstr1, *tstr2;
149                 if (2 != fscanf(romlayout, "%s %s\n", tempstr, rom_entries[romimages].name))
150                         continue;
151 #if 0
152                 // fscanf does not like arbitrary comments like that :( later
153                 if (tempstr[0] == '#') {
154                         continue;
155                 }
156 #endif
157                 tstr1 = strtok(tempstr, ":");
158                 tstr2 = strtok(NULL, ":");
159                 if (!tstr1 || !tstr2) {
160                         fprintf(stderr, "Error parsing layout file.\n");
161                         fclose(romlayout);
162                         return 1;
163                 }
164                 rom_entries[romimages].start = strtol(tstr1, (char **)NULL, 16);
165                 rom_entries[romimages].end = strtol(tstr2, (char **)NULL, 16);
166                 rom_entries[romimages].included = 0;
167                 romimages++;
168         }
169
170         for (i = 0; i < romimages; i++) {
171                 printf_debug("romlayout %08x - %08x named %s\n",
172                              rom_entries[i].start,
173                              rom_entries[i].end, rom_entries[i].name);
174         }
175
176         fclose(romlayout);
177
178         return 0;
179 }
180
181 int find_romentry(char *name)
182 {
183         int i;
184
185         if (!romimages)
186                 return -1;
187
188         printf("Looking for \"%s\"... ", name);
189
190         for (i = 0; i < romimages; i++) {
191                 if (!strcmp(rom_entries[i].name, name)) {
192                         rom_entries[i].included = 1;
193                         printf("found.\n");
194                         return i;
195                 }
196         }
197         printf("not found.\n"); // Not found. Error.
198
199         return -1;
200 }
201
202 int handle_romentries(uint8_t *buffer, uint8_t *content)
203 {
204         int i;
205
206         // This function does not safe flash write cycles.
207         // 
208         // Also it does not cope with overlapping rom layout
209         // sections. 
210         // example:
211         // 00000000:00008fff gfxrom
212         // 00009000:0003ffff normal
213         // 00040000:0007ffff fallback
214         // 00000000:0007ffff all
215         //
216         // If you'd specify -i all the included flag of all other
217         // sections is still 0, so no changes will be made to the
218         // flash. Same thing if you specify -i normal -i all only 
219         // normal will be updated and the rest will be kept.
220
221         for (i = 0; i < romimages; i++) {
222
223                 if (rom_entries[i].included)
224                         continue;
225
226                 memcpy(buffer + rom_entries[i].start,
227                        content + rom_entries[i].start,
228                        rom_entries[i].end - rom_entries[i].start);
229         }
230
231         return 0;
232 }