blob: 1bd3152ced71ba616ed3030db1b26d9678357b09 [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 Hailfingercb6ad162010-11-02 03:12:51 +000024#include <limits.h>
Uwe Hermann0846f892007-08-23 13:34:59 +000025#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000026#include "programmer.h"
Ollie Lho184a4042005-11-26 21:55:36 +000027
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000028static int romimages = 0;
Ollie Lho184a4042005-11-26 21:55:36 +000029
David Hendricks444cefc2010-10-29 20:17:41 +000030#define MAX_ROMLAYOUT 32
Ollie Lho184a4042005-11-26 21:55:36 +000031
32typedef struct {
33 unsigned int start;
34 unsigned int end;
35 unsigned int included;
36 char name[256];
37} romlayout_t;
38
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +000039/* include_args lists arguments specified at the command line with -i. They
40 * must be processed at some point so that desired regions are marked as
41 * "included" in the rom_entries list.
42 */
43static char *include_args[MAX_ROMLAYOUT];
44static int num_include_args = 0; /* the number of valid entries. */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000045static romlayout_t rom_entries[MAX_ROMLAYOUT];
Ollie Lho184a4042005-11-26 21:55:36 +000046
Patrick Georgia9095a92010-09-30 17:03:32 +000047#ifndef __LIBPAYLOAD__
Uwe Hermanna7e05482007-05-09 10:17:44 +000048int read_romlayout(char *name)
Ollie Lho184a4042005-11-26 21:55:36 +000049{
50 FILE *romlayout;
51 char tempstr[256];
52 int i;
53
Uwe Hermanna7e05482007-05-09 10:17:44 +000054 romlayout = fopen(name, "r");
55
56 if (!romlayout) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000057 msg_gerr("ERROR: Could not open ROM layout (%s).\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +000058 name);
Ollie Lho184a4042005-11-26 21:55:36 +000059 return -1;
60 }
Uwe Hermanna7e05482007-05-09 10:17:44 +000061
62 while (!feof(romlayout)) {
Ollie Lho184a4042005-11-26 21:55:36 +000063 char *tstr1, *tstr2;
Carl-Daniel Hailfingerda53ada2010-12-04 11:56:52 +000064
65 if (romimages >= MAX_ROMLAYOUT) {
66 msg_gerr("Maximum number of ROM images (%i) in layout "
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +000067 "file reached.\n", MAX_ROMLAYOUT);
68 return 1;
Carl-Daniel Hailfingerda53ada2010-12-04 11:56:52 +000069 }
Peter Stuge1fec0f32009-01-12 21:00:35 +000070 if (2 != fscanf(romlayout, "%s %s\n", tempstr, rom_entries[romimages].name))
71 continue;
Ollie Lho184a4042005-11-26 21:55:36 +000072#if 0
73 // fscanf does not like arbitrary comments like that :( later
Uwe Hermanna7e05482007-05-09 10:17:44 +000074 if (tempstr[0] == '#') {
Ollie Lho184a4042005-11-26 21:55:36 +000075 continue;
76 }
77#endif
Uwe Hermanna7e05482007-05-09 10:17:44 +000078 tstr1 = strtok(tempstr, ":");
79 tstr2 = strtok(NULL, ":");
Uwe Hermann58783e32008-12-22 16:42:59 +000080 if (!tstr1 || !tstr2) {
Stefan Taunereb582572012-09-21 12:52:50 +000081 msg_gerr("Error parsing layout file. Offending string: \"%s\"\n", tempstr);
Uwe Hermann58783e32008-12-22 16:42:59 +000082 fclose(romlayout);
83 return 1;
84 }
Uwe Hermanna7e05482007-05-09 10:17:44 +000085 rom_entries[romimages].start = strtol(tstr1, (char **)NULL, 16);
86 rom_entries[romimages].end = strtol(tstr2, (char **)NULL, 16);
87 rom_entries[romimages].included = 0;
Ollie Lho184a4042005-11-26 21:55:36 +000088 romimages++;
89 }
Uwe Hermanna7e05482007-05-09 10:17:44 +000090
91 for (i = 0; i < romimages; i++) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000092 msg_gdbg("romlayout %08x - %08x named %s\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +000093 rom_entries[i].start,
94 rom_entries[i].end, rom_entries[i].name);
Ollie Lho184a4042005-11-26 21:55:36 +000095 }
96
97 fclose(romlayout);
Uwe Hermannffec5f32007-08-23 16:08:21 +000098
Uwe Hermanna7e05482007-05-09 10:17:44 +000099 return 0;
Ollie Lho184a4042005-11-26 21:55:36 +0000100}
Patrick Georgia9095a92010-09-30 17:03:32 +0000101#endif
Ollie Lho184a4042005-11-26 21:55:36 +0000102
Stefan Tauner23bb6d52012-04-15 14:09:16 +0000103/* returns the index of the entry (or a negative value if it is not found) */
104int find_include_arg(const char *const name)
105{
106 unsigned int i;
107 for (i = 0; i < num_include_args; i++) {
108 if (!strcmp(include_args[i], name))
109 return i;
110 }
111 return -1;
112}
113
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000114/* register an include argument (-i) for later processing */
115int register_include_arg(char *name)
116{
117 if (num_include_args >= MAX_ROMLAYOUT) {
118 msg_gerr("Too many regions included (%i).\n", num_include_args);
119 return 1;
120 }
121
122 if (name == NULL) {
123 msg_gerr("<NULL> is a bad region name.\n");
124 return 1;
125 }
126
Stefan Tauner23bb6d52012-04-15 14:09:16 +0000127 if (find_include_arg(name) != -1) {
128 msg_gerr("Duplicate region name: \"%s\".\n", name);
129 return 1;
130 }
131
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000132 include_args[num_include_args] = name;
133 num_include_args++;
134 return 0;
135}
136
137/* returns the index of the entry (or a negative value if it is not found) */
138static int find_romentry(char *name)
Ollie Lho184a4042005-11-26 21:55:36 +0000139{
140 int i;
141
Uwe Hermanna7e05482007-05-09 10:17:44 +0000142 if (!romimages)
143 return -1;
Ollie Lho184a4042005-11-26 21:55:36 +0000144
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000145 msg_gspew("Looking for region \"%s\"... ", name);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000146 for (i = 0; i < romimages; i++) {
147 if (!strcmp(rom_entries[i].name, name)) {
148 rom_entries[i].included = 1;
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000149 msg_gspew("found.\n");
Ollie Lho184a4042005-11-26 21:55:36 +0000150 return i;
151 }
152 }
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000153 msg_gspew("not found.\n");
Ollie Lho184a4042005-11-26 21:55:36 +0000154 return -1;
155}
156
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000157/* process -i arguments
158 * returns 0 to indicate success, >0 to indicate failure
159 */
160int process_include_args(void)
161{
162 int i;
163 unsigned int found = 0;
164
165 if (num_include_args == 0)
166 return 0;
167
Stefan Tauner23bb6d52012-04-15 14:09:16 +0000168 /* User has specified an area, but no layout file is loaded. */
169 if (!romimages) {
170 msg_gerr("Region requested (with -i \"%s\"), "
171 "but no layout data is available.\n",
172 include_args[0]);
173 return 1;
174 }
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000175
Stefan Tauner23bb6d52012-04-15 14:09:16 +0000176 for (i = 0; i < num_include_args; i++) {
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000177 if (find_romentry(include_args[i]) < 0) {
Stefan Tauner23bb6d52012-04-15 14:09:16 +0000178 msg_gerr("Invalid region specified: \"%s\".\n",
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000179 include_args[i]);
180 return 1;
181 }
182 found++;
183 }
184
185 msg_ginfo("Using region%s: \"%s\"", num_include_args > 1 ? "s" : "",
186 include_args[0]);
187 for (i = 1; i < num_include_args; i++)
188 msg_ginfo(", \"%s\"", include_args[i]);
189 msg_ginfo(".\n");
190 return 0;
191}
192
Stefan Tauner104b0d92011-12-25 09:07:59 +0000193romlayout_t *get_next_included_romentry(unsigned int start)
Ollie Lho184a4042005-11-26 21:55:36 +0000194{
195 int i;
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000196 unsigned int best_start = UINT_MAX;
Stefan Tauner104b0d92011-12-25 09:07:59 +0000197 romlayout_t *best_entry = NULL;
198 romlayout_t *cur;
Ollie Lho184a4042005-11-26 21:55:36 +0000199
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000200 /* First come, first serve for overlapping regions. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000201 for (i = 0; i < romimages; i++) {
Stefan Tauner104b0d92011-12-25 09:07:59 +0000202 cur = &rom_entries[i];
203 if (!cur->included)
Ollie Lho184a4042005-11-26 21:55:36 +0000204 continue;
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000205 /* Already past the current entry? */
Stefan Tauner104b0d92011-12-25 09:07:59 +0000206 if (start > cur->end)
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000207 continue;
208 /* Inside the current entry? */
Stefan Tauner104b0d92011-12-25 09:07:59 +0000209 if (start >= cur->start)
210 return cur;
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000211 /* Entry begins after start. */
Stefan Tauner104b0d92011-12-25 09:07:59 +0000212 if (best_start > cur->start) {
213 best_start = cur->start;
214 best_entry = cur;
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000215 }
Ollie Lho184a4042005-11-26 21:55:36 +0000216 }
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000217 return best_entry;
218}
Ollie Lho184a4042005-11-26 21:55:36 +0000219
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000220int handle_romentries(const struct flashctx *flash, uint8_t *oldcontents, uint8_t *newcontents)
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000221{
222 unsigned int start = 0;
Stefan Tauner104b0d92011-12-25 09:07:59 +0000223 romlayout_t *entry;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000224 unsigned int size = flash->chip->total_size * 1024;
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000225
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000226 /* If no regions were specified for inclusion, assume
227 * that the user wants to write the complete new image.
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000228 */
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000229 if (num_include_args == 0)
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000230 return 0;
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000231
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000232 /* Non-included romentries are ignored.
233 * The union of all included romentries is used from the new image.
234 */
235 while (start < size) {
Stefan Tauner104b0d92011-12-25 09:07:59 +0000236 entry = get_next_included_romentry(start);
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000237 /* No more romentries for remaining region? */
Stefan Tauner104b0d92011-12-25 09:07:59 +0000238 if (!entry) {
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000239 memcpy(newcontents + start, oldcontents + start,
240 size - start);
241 break;
242 }
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000243 /* For non-included region, copy from old content. */
Stefan Tauner104b0d92011-12-25 09:07:59 +0000244 if (entry->start > start)
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000245 memcpy(newcontents + start, oldcontents + start,
Stefan Tauner104b0d92011-12-25 09:07:59 +0000246 entry->start - start);
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000247 /* Skip to location after current romentry. */
Stefan Tauner104b0d92011-12-25 09:07:59 +0000248 start = entry->end + 1;
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +0000249 /* Catch overflow. */
250 if (!start)
251 break;
252 }
Ollie Lho184a4042005-11-26 21:55:36 +0000253 return 0;
254}