blob: 9aa9e84c849a41d7bb55217972a8ea45c300cf21 [file] [log] [blame]
Stefan Reinauer5380d512007-05-24 09:08:36 +00001/*
Uwe Hermannd1107642007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
Stefan Reinauer5380d512007-05-24 09:08:36 +00003 *
4 * Copyright (C) 2002 Steven James <pyro@linuxlabs.com>
5 * Copyright (C) 2002 Linux Networx
6 * (Written by Eric Biederman <ebiederman@lnxi.com> for Linux Networx)
Stefan Reinauer2d853bb2009-03-17 14:39:25 +00007 * Copyright (C) 2006-2009 coresystems GmbH
Stefan Reinauer5380d512007-05-24 09:08:36 +00008 * (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH)
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +00009 * Copyright (C) 2010 Carl-Daniel Hailfinger
Stefan Reinauer5380d512007-05-24 09:08:36 +000010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; version 2 of the License.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
Uwe Hermannd1107642007-08-29 17:52:32 +000022 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Stefan Reinauer5380d512007-05-24 09:08:36 +000023 */
24
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000025#include <unistd.h>
26#include <stdio.h>
Ollie Lho184a4042005-11-26 21:55:36 +000027#include <stdlib.h>
Ollie Lho184a4042005-11-26 21:55:36 +000028#include <sys/types.h>
29#include <string.h>
Adam Kaufman064b1f22007-02-06 19:47:50 +000030#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000031#include "programmer.h"
Stefan Reinauer2fbe6242008-01-18 16:17:44 +000032#include "coreboot_tables.h"
Ollie Lho184a4042005-11-26 21:55:36 +000033
Uwe Hermanna7e05482007-05-09 10:17:44 +000034char *lb_part = NULL, *lb_vendor = NULL;
Carl-Daniel Hailfingerbc25f942009-07-30 13:30:17 +000035int partvendor_from_cbtable = 0;
Ollie Lho184a4042005-11-26 21:55:36 +000036
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000037void lb_vendor_dev_from_string(char *boardstring)
38{
39 char *tempstr2 = NULL;
40 strtok(boardstring, ":");
41 tempstr2 = strtok(NULL, ":");
42 if (tempstr2) {
43 lb_vendor = boardstring;
44 lb_part = tempstr2;
45 } else {
46 lb_vendor = NULL;
47 lb_part = boardstring;
48 }
49}
50
Ollie Lho184a4042005-11-26 21:55:36 +000051static unsigned long compute_checksum(void *addr, unsigned long length)
52{
53 uint8_t *ptr;
54 volatile union {
Uwe Hermanna7e05482007-05-09 10:17:44 +000055 uint8_t byte[2];
Ollie Lho184a4042005-11-26 21:55:36 +000056 uint16_t word;
Michael Karchere7f32092010-01-12 15:36:24 +000057 } chksum;
Uwe Hermannac309342007-10-10 17:42:20 +000058 unsigned long sum;
59 unsigned long i;
Uwe Hermannffec5f32007-08-23 16:08:21 +000060
Ollie Lho184a4042005-11-26 21:55:36 +000061 /* In the most straight forward way possible,
62 * compute an ip style checksum.
63 */
64 sum = 0;
65 ptr = addr;
Uwe Hermanna7e05482007-05-09 10:17:44 +000066 for (i = 0; i < length; i++) {
Ollie Lho184a4042005-11-26 21:55:36 +000067 unsigned long value;
68 value = ptr[i];
Uwe Hermannac309342007-10-10 17:42:20 +000069 if (i & 1) {
Ollie Lho184a4042005-11-26 21:55:36 +000070 value <<= 8;
Uwe Hermannac309342007-10-10 17:42:20 +000071 }
Ollie Lho184a4042005-11-26 21:55:36 +000072 /* Add the new value */
73 sum += value;
74 /* Wrap around the carry */
Uwe Hermannac309342007-10-10 17:42:20 +000075 if (sum > 0xFFFF) {
Ollie Lho184a4042005-11-26 21:55:36 +000076 sum = (sum + (sum >> 16)) & 0xFFFF;
Uwe Hermannac309342007-10-10 17:42:20 +000077 }
Ollie Lho184a4042005-11-26 21:55:36 +000078 }
Michael Karchere7f32092010-01-12 15:36:24 +000079 chksum.byte[0] = sum & 0xff;
80 chksum.byte[1] = (sum >> 8) & 0xff;
Uwe Hermannffec5f32007-08-23 16:08:21 +000081
Michael Karchere7f32092010-01-12 15:36:24 +000082 return (~chksum.word) & 0xFFFF;
Ollie Lho184a4042005-11-26 21:55:36 +000083}
84
85#define for_each_lbrec(head, rec) \
86 for(rec = (struct lb_record *)(((char *)head) + sizeof(*head)); \
87 (((char *)rec) < (((char *)head) + sizeof(*head) + head->table_bytes)) && \
88 (rec->size >= 1) && \
89 ((((char *)rec) + rec->size) <= (((char *)head) + sizeof(*head) + head->table_bytes)); \
Uwe Hermanna7e05482007-05-09 10:17:44 +000090 rec = (struct lb_record *)(((char *)rec) + rec->size))
Ollie Lho184a4042005-11-26 21:55:36 +000091
Uwe Hermanna7e05482007-05-09 10:17:44 +000092static int count_lb_records(struct lb_header *head)
Ollie Lho184a4042005-11-26 21:55:36 +000093{
94 struct lb_record *rec;
95 int count;
Uwe Hermannffec5f32007-08-23 16:08:21 +000096
Ollie Lho184a4042005-11-26 21:55:36 +000097 count = 0;
98 for_each_lbrec(head, rec) {
99 count++;
100 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000101
Ollie Lho184a4042005-11-26 21:55:36 +0000102 return count;
103}
104
Uwe Hermanna7e05482007-05-09 10:17:44 +0000105static struct lb_header *find_lb_table(void *base, unsigned long start,
106 unsigned long end)
Ollie Lho184a4042005-11-26 21:55:36 +0000107{
108 unsigned long addr;
Uwe Hermannffec5f32007-08-23 16:08:21 +0000109
Ollie Lho184a4042005-11-26 21:55:36 +0000110 /* For now be stupid.... */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000111 for (addr = start; addr < end; addr += 16) {
112 struct lb_header *head =
113 (struct lb_header *)(((char *)base) + addr);
114 struct lb_record *recs =
115 (struct lb_record *)(((char *)base) + addr + sizeof(*head));
Ollie Lho184a4042005-11-26 21:55:36 +0000116 if (memcmp(head->signature, "LBIO", 4) != 0)
117 continue;
Sean Nelson316a29f2010-05-07 20:09:04 +0000118 msg_pdbg("Found candidate at: %08lx-%08lx\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000119 addr, addr + head->table_bytes);
Ollie Lho184a4042005-11-26 21:55:36 +0000120 if (head->header_bytes != sizeof(*head)) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000121 msg_perr("Header bytes of %d are incorrect.\n",
Ollie Lho184a4042005-11-26 21:55:36 +0000122 head->header_bytes);
123 continue;
124 }
125 if (count_lb_records(head) != head->table_entries) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000126 msg_perr("Bad record count: %d.\n",
Ollie Lho184a4042005-11-26 21:55:36 +0000127 head->table_entries);
128 continue;
129 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000130 if (compute_checksum((uint8_t *) head, sizeof(*head)) != 0) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000131 msg_perr("Bad header checksum.\n");
Ollie Lho184a4042005-11-26 21:55:36 +0000132 continue;
133 }
134 if (compute_checksum(recs, head->table_bytes)
Uwe Hermanna7e05482007-05-09 10:17:44 +0000135 != head->table_checksum) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000136 msg_perr("Bad table checksum: %04x.\n",
Ollie Lho184a4042005-11-26 21:55:36 +0000137 head->table_checksum);
138 continue;
139 }
Sean Nelson316a29f2010-05-07 20:09:04 +0000140 msg_pdbg("Found coreboot table at 0x%08lx.\n", addr);
Ollie Lho184a4042005-11-26 21:55:36 +0000141 return head;
142
143 };
Uwe Hermannffec5f32007-08-23 16:08:21 +0000144
Ollie Lho184a4042005-11-26 21:55:36 +0000145 return 0;
146}
147
148static void find_mainboard(struct lb_record *ptr, unsigned long addr)
149{
150 struct lb_mainboard *rec;
151 int max_size;
152 char vendor[256], part[256];
Uwe Hermannffec5f32007-08-23 16:08:21 +0000153
Ollie Lho184a4042005-11-26 21:55:36 +0000154 rec = (struct lb_mainboard *)ptr;
155 max_size = rec->size - sizeof(*rec);
Sean Nelson316a29f2010-05-07 20:09:04 +0000156 msg_pdbg("Vendor ID: %.*s, part ID: %.*s\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000157 max_size - rec->vendor_idx,
158 rec->strings + rec->vendor_idx,
159 max_size - rec->part_number_idx,
160 rec->strings + rec->part_number_idx);
161 snprintf(vendor, 255, "%.*s", max_size - rec->vendor_idx,
162 rec->strings + rec->vendor_idx);
Ollie Lho184a4042005-11-26 21:55:36 +0000163 snprintf(part, 255, "%.*s", max_size - rec->part_number_idx,
Uwe Hermanna7e05482007-05-09 10:17:44 +0000164 rec->strings + rec->part_number_idx);
Ollie Lho184a4042005-11-26 21:55:36 +0000165
Uwe Hermanna7e05482007-05-09 10:17:44 +0000166 if (lb_part) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000167 msg_pdbg("Overwritten by command line, vendor ID: %s, part ID: %s.\n", lb_vendor, lb_part);
Ollie Lho184a4042005-11-26 21:55:36 +0000168 } else {
Carl-Daniel Hailfingerbc25f942009-07-30 13:30:17 +0000169 partvendor_from_cbtable = 1;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000170 lb_part = strdup(part);
171 lb_vendor = strdup(vendor);
Ollie Lho184a4042005-11-26 21:55:36 +0000172 }
173}
174
175static struct lb_record *next_record(struct lb_record *rec)
176{
177 return (struct lb_record *)(((char *)rec) + rec->size);
178}
179
Uwe Hermanna7e05482007-05-09 10:17:44 +0000180static void search_lb_records(struct lb_record *rec, struct lb_record *last,
181 unsigned long addr)
Ollie Lho184a4042005-11-26 21:55:36 +0000182{
183 struct lb_record *next;
184 int count;
185 count = 0;
186
Uwe Hermanna7e05482007-05-09 10:17:44 +0000187 for (next = next_record(rec); (rec < last) && (next <= last);
188 rec = next, addr += rec->size) {
Ollie Lho184a4042005-11-26 21:55:36 +0000189 next = next_record(rec);
190 count++;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000191 if (rec->tag == LB_TAG_MAINBOARD) {
192 find_mainboard(rec, addr);
Ollie Lho184a4042005-11-26 21:55:36 +0000193 break;
194 }
195 }
196}
197
Stefan Reinauer2d853bb2009-03-17 14:39:25 +0000198#define BYTES_TO_MAP (1024*1024)
Stefan Reinauere3f3e2e2008-01-18 15:33:10 +0000199int coreboot_init(void)
Ollie Lho184a4042005-11-26 21:55:36 +0000200{
Stefan Reinauer2d853bb2009-03-17 14:39:25 +0000201 uint8_t *table_area;
Stefan Reinauerf79edb92009-01-26 01:23:31 +0000202 unsigned long addr, start;
Ollie Lho184a4042005-11-26 21:55:36 +0000203 struct lb_header *lb_table;
204 struct lb_record *rec, *last;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000205
Stefan Reinauerf79edb92009-01-26 01:23:31 +0000206#ifdef __DARWIN__
207 /* This is a hack. DirectIO fails to map physical address 0x00000000.
208 * Why?
209 */
210 start = 0x400;
211#else
212 start = 0x0;
213#endif
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000214 table_area = physmap_try_ro("low megabyte", start, BYTES_TO_MAP - start);
Patrick Georgied7a9642010-09-25 22:53:44 +0000215 if (ERROR_PTR == table_area) {
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000216 msg_perr("Failed getting access to coreboot low tables.\n");
217 return -1;
218 }
Stefan Reinauerf79edb92009-01-26 01:23:31 +0000219
Stefan Reinauer2d853bb2009-03-17 14:39:25 +0000220 lb_table = find_lb_table(table_area, 0x00000, 0x1000);
Ollie Lho184a4042005-11-26 21:55:36 +0000221 if (!lb_table)
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000222 lb_table = find_lb_table(table_area, 0xf0000 - start, BYTES_TO_MAP - start);
Stefan Reinauer2d853bb2009-03-17 14:39:25 +0000223 if (lb_table) {
224 struct lb_forward *forward = (struct lb_forward *)
225 (((char *)lb_table) + lb_table->header_bytes);
226 if (forward->tag == LB_TAG_FORWARD) {
227 start = forward->forward;
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000228 start &= ~(getpagesize() - 1);
Stefan Reinauer2d853bb2009-03-17 14:39:25 +0000229 physunmap(table_area, BYTES_TO_MAP);
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000230 table_area = physmap_try_ro("high tables", start, BYTES_TO_MAP);
Patrick Georgied7a9642010-09-25 22:53:44 +0000231 if (ERROR_PTR == table_area) {
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000232 msg_perr("Failed getting access to coreboot "
233 "high tables.\n");
234 return -1;
235 }
Stefan Reinauer2d853bb2009-03-17 14:39:25 +0000236 lb_table = find_lb_table(table_area, 0x00000, 0x1000);
237 }
238 }
239
Peter Stuge2dc3aaa2009-01-26 00:15:56 +0000240 if (!lb_table) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000241 msg_pinfo("No coreboot table found.\n");
Ollie Lho184a4042005-11-26 21:55:36 +0000242 return -1;
243 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000244
Stefan Reinauer2d853bb2009-03-17 14:39:25 +0000245 addr = ((char *)lb_table) - ((char *)table_area) + start;
Sean Nelson316a29f2010-05-07 20:09:04 +0000246 msg_pinfo("coreboot table found at 0x%lx.\n",
Stefan Reinauer2d853bb2009-03-17 14:39:25 +0000247 (unsigned long)lb_table - (unsigned long)table_area + start);
Peter Stuge2dc3aaa2009-01-26 00:15:56 +0000248 rec = (struct lb_record *)(((char *)lb_table) + lb_table->header_bytes);
249 last = (struct lb_record *)(((char *)rec) + lb_table->table_bytes);
Sean Nelson316a29f2010-05-07 20:09:04 +0000250 msg_pdbg("coreboot header(%d) checksum: %04x table(%d) checksum: %04x entries: %d\n",
Peter Stuge2dc3aaa2009-01-26 00:15:56 +0000251 lb_table->header_bytes, lb_table->header_checksum,
252 lb_table->table_bytes, lb_table->table_checksum,
253 lb_table->table_entries);
254 search_lb_records(rec, last, addr + lb_table->header_bytes);
255
Ollie Lho184a4042005-11-26 21:55:36 +0000256 return 0;
257}