Stefan Reinauer | 5380d51 | 2007-05-24 09:08:36 +0000 | [diff] [blame] | 1 | /* |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 2 | * This file is part of the flashrom project. |
Stefan Reinauer | 5380d51 | 2007-05-24 09:08:36 +0000 | [diff] [blame] | 3 | * |
| 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 Reinauer | 2d853bb | 2009-03-17 14:39:25 +0000 | [diff] [blame] | 7 | * Copyright (C) 2006-2009 coresystems GmbH |
Stefan Reinauer | 5380d51 | 2007-05-24 09:08:36 +0000 | [diff] [blame] | 8 | * (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH) |
Carl-Daniel Hailfinger | baaffe0 | 2010-02-02 11:09:03 +0000 | [diff] [blame] | 9 | * Copyright (C) 2010 Carl-Daniel Hailfinger |
Stefan Reinauer | 5380d51 | 2007-05-24 09:08:36 +0000 | [diff] [blame] | 10 | * |
| 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 Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 22 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Stefan Reinauer | 5380d51 | 2007-05-24 09:08:36 +0000 | [diff] [blame] | 23 | */ |
| 24 | |
Carl-Daniel Hailfinger | 831e8f4 | 2010-05-30 22:24:40 +0000 | [diff] [blame] | 25 | #include <unistd.h> |
| 26 | #include <stdio.h> |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 27 | #include <stdlib.h> |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 28 | #include <sys/types.h> |
| 29 | #include <string.h> |
Adam Kaufman | 064b1f2 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 30 | #include "flash.h" |
Stefan Reinauer | 2fbe624 | 2008-01-18 16:17:44 +0000 | [diff] [blame] | 31 | #include "coreboot_tables.h" |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 32 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 33 | char *lb_part = NULL, *lb_vendor = NULL; |
Carl-Daniel Hailfinger | bc25f94 | 2009-07-30 13:30:17 +0000 | [diff] [blame] | 34 | int partvendor_from_cbtable = 0; |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 35 | |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 36 | void lb_vendor_dev_from_string(char *boardstring) |
| 37 | { |
| 38 | char *tempstr2 = NULL; |
| 39 | strtok(boardstring, ":"); |
| 40 | tempstr2 = strtok(NULL, ":"); |
| 41 | if (tempstr2) { |
| 42 | lb_vendor = boardstring; |
| 43 | lb_part = tempstr2; |
| 44 | } else { |
| 45 | lb_vendor = NULL; |
| 46 | lb_part = boardstring; |
| 47 | } |
| 48 | } |
| 49 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 50 | static unsigned long compute_checksum(void *addr, unsigned long length) |
| 51 | { |
| 52 | uint8_t *ptr; |
| 53 | volatile union { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 54 | uint8_t byte[2]; |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 55 | uint16_t word; |
Michael Karcher | e7f3209 | 2010-01-12 15:36:24 +0000 | [diff] [blame] | 56 | } chksum; |
Uwe Hermann | ac30934 | 2007-10-10 17:42:20 +0000 | [diff] [blame] | 57 | unsigned long sum; |
| 58 | unsigned long i; |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 59 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 60 | /* In the most straight forward way possible, |
| 61 | * compute an ip style checksum. |
| 62 | */ |
| 63 | sum = 0; |
| 64 | ptr = addr; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 65 | for (i = 0; i < length; i++) { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 66 | unsigned long value; |
| 67 | value = ptr[i]; |
Uwe Hermann | ac30934 | 2007-10-10 17:42:20 +0000 | [diff] [blame] | 68 | if (i & 1) { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 69 | value <<= 8; |
Uwe Hermann | ac30934 | 2007-10-10 17:42:20 +0000 | [diff] [blame] | 70 | } |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 71 | /* Add the new value */ |
| 72 | sum += value; |
| 73 | /* Wrap around the carry */ |
Uwe Hermann | ac30934 | 2007-10-10 17:42:20 +0000 | [diff] [blame] | 74 | if (sum > 0xFFFF) { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 75 | sum = (sum + (sum >> 16)) & 0xFFFF; |
Uwe Hermann | ac30934 | 2007-10-10 17:42:20 +0000 | [diff] [blame] | 76 | } |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 77 | } |
Michael Karcher | e7f3209 | 2010-01-12 15:36:24 +0000 | [diff] [blame] | 78 | chksum.byte[0] = sum & 0xff; |
| 79 | chksum.byte[1] = (sum >> 8) & 0xff; |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 80 | |
Michael Karcher | e7f3209 | 2010-01-12 15:36:24 +0000 | [diff] [blame] | 81 | return (~chksum.word) & 0xFFFF; |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | #define for_each_lbrec(head, rec) \ |
| 85 | for(rec = (struct lb_record *)(((char *)head) + sizeof(*head)); \ |
| 86 | (((char *)rec) < (((char *)head) + sizeof(*head) + head->table_bytes)) && \ |
| 87 | (rec->size >= 1) && \ |
| 88 | ((((char *)rec) + rec->size) <= (((char *)head) + sizeof(*head) + head->table_bytes)); \ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 89 | rec = (struct lb_record *)(((char *)rec) + rec->size)) |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 90 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 91 | static int count_lb_records(struct lb_header *head) |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 92 | { |
| 93 | struct lb_record *rec; |
| 94 | int count; |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 95 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 96 | count = 0; |
| 97 | for_each_lbrec(head, rec) { |
| 98 | count++; |
| 99 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 100 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 101 | return count; |
| 102 | } |
| 103 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 104 | static struct lb_header *find_lb_table(void *base, unsigned long start, |
| 105 | unsigned long end) |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 106 | { |
| 107 | unsigned long addr; |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 108 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 109 | /* For now be stupid.... */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 110 | for (addr = start; addr < end; addr += 16) { |
| 111 | struct lb_header *head = |
| 112 | (struct lb_header *)(((char *)base) + addr); |
| 113 | struct lb_record *recs = |
| 114 | (struct lb_record *)(((char *)base) + addr + sizeof(*head)); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 115 | if (memcmp(head->signature, "LBIO", 4) != 0) |
| 116 | continue; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 117 | msg_pdbg("Found candidate at: %08lx-%08lx\n", |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 118 | addr, addr + head->table_bytes); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 119 | if (head->header_bytes != sizeof(*head)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 120 | msg_perr("Header bytes of %d are incorrect.\n", |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 121 | head->header_bytes); |
| 122 | continue; |
| 123 | } |
| 124 | if (count_lb_records(head) != head->table_entries) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 125 | msg_perr("Bad record count: %d.\n", |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 126 | head->table_entries); |
| 127 | continue; |
| 128 | } |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 129 | if (compute_checksum((uint8_t *) head, sizeof(*head)) != 0) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 130 | msg_perr("Bad header checksum.\n"); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 131 | continue; |
| 132 | } |
| 133 | if (compute_checksum(recs, head->table_bytes) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 134 | != head->table_checksum) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 135 | msg_perr("Bad table checksum: %04x.\n", |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 136 | head->table_checksum); |
| 137 | continue; |
| 138 | } |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 139 | msg_pdbg("Found coreboot table at 0x%08lx.\n", addr); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 140 | return head; |
| 141 | |
| 142 | }; |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 143 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 144 | return 0; |
| 145 | } |
| 146 | |
| 147 | static void find_mainboard(struct lb_record *ptr, unsigned long addr) |
| 148 | { |
| 149 | struct lb_mainboard *rec; |
| 150 | int max_size; |
| 151 | char vendor[256], part[256]; |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 152 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 153 | rec = (struct lb_mainboard *)ptr; |
| 154 | max_size = rec->size - sizeof(*rec); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 155 | msg_pdbg("Vendor ID: %.*s, part ID: %.*s\n", |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 156 | max_size - rec->vendor_idx, |
| 157 | rec->strings + rec->vendor_idx, |
| 158 | max_size - rec->part_number_idx, |
| 159 | rec->strings + rec->part_number_idx); |
| 160 | snprintf(vendor, 255, "%.*s", max_size - rec->vendor_idx, |
| 161 | rec->strings + rec->vendor_idx); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 162 | snprintf(part, 255, "%.*s", max_size - rec->part_number_idx, |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 163 | rec->strings + rec->part_number_idx); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 164 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 165 | if (lb_part) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 166 | msg_pdbg("Overwritten by command line, vendor ID: %s, part ID: %s.\n", lb_vendor, lb_part); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 167 | } else { |
Carl-Daniel Hailfinger | bc25f94 | 2009-07-30 13:30:17 +0000 | [diff] [blame] | 168 | partvendor_from_cbtable = 1; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 169 | lb_part = strdup(part); |
| 170 | lb_vendor = strdup(vendor); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 171 | } |
| 172 | } |
| 173 | |
| 174 | static struct lb_record *next_record(struct lb_record *rec) |
| 175 | { |
| 176 | return (struct lb_record *)(((char *)rec) + rec->size); |
| 177 | } |
| 178 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 179 | static void search_lb_records(struct lb_record *rec, struct lb_record *last, |
| 180 | unsigned long addr) |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 181 | { |
| 182 | struct lb_record *next; |
| 183 | int count; |
| 184 | count = 0; |
| 185 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 186 | for (next = next_record(rec); (rec < last) && (next <= last); |
| 187 | rec = next, addr += rec->size) { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 188 | next = next_record(rec); |
| 189 | count++; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 190 | if (rec->tag == LB_TAG_MAINBOARD) { |
| 191 | find_mainboard(rec, addr); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 192 | break; |
| 193 | } |
| 194 | } |
| 195 | } |
| 196 | |
Stefan Reinauer | 2d853bb | 2009-03-17 14:39:25 +0000 | [diff] [blame] | 197 | #define BYTES_TO_MAP (1024*1024) |
Stefan Reinauer | e3f3e2e | 2008-01-18 15:33:10 +0000 | [diff] [blame] | 198 | int coreboot_init(void) |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 199 | { |
Stefan Reinauer | 2d853bb | 2009-03-17 14:39:25 +0000 | [diff] [blame] | 200 | uint8_t *table_area; |
Stefan Reinauer | f79edb9 | 2009-01-26 01:23:31 +0000 | [diff] [blame] | 201 | unsigned long addr, start; |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 202 | struct lb_header *lb_table; |
| 203 | struct lb_record *rec, *last; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 204 | |
Stefan Reinauer | f79edb9 | 2009-01-26 01:23:31 +0000 | [diff] [blame] | 205 | #ifdef __DARWIN__ |
| 206 | /* This is a hack. DirectIO fails to map physical address 0x00000000. |
| 207 | * Why? |
| 208 | */ |
| 209 | start = 0x400; |
| 210 | #else |
| 211 | start = 0x0; |
| 212 | #endif |
Carl-Daniel Hailfinger | baaffe0 | 2010-02-02 11:09:03 +0000 | [diff] [blame] | 213 | table_area = physmap_try_ro("low megabyte", start, BYTES_TO_MAP - start); |
| 214 | if (!table_area) { |
| 215 | msg_perr("Failed getting access to coreboot low tables.\n"); |
| 216 | return -1; |
| 217 | } |
Stefan Reinauer | f79edb9 | 2009-01-26 01:23:31 +0000 | [diff] [blame] | 218 | |
Stefan Reinauer | 2d853bb | 2009-03-17 14:39:25 +0000 | [diff] [blame] | 219 | lb_table = find_lb_table(table_area, 0x00000, 0x1000); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 220 | if (!lb_table) |
Carl-Daniel Hailfinger | baaffe0 | 2010-02-02 11:09:03 +0000 | [diff] [blame] | 221 | lb_table = find_lb_table(table_area, 0xf0000 - start, BYTES_TO_MAP - start); |
Stefan Reinauer | 2d853bb | 2009-03-17 14:39:25 +0000 | [diff] [blame] | 222 | if (lb_table) { |
| 223 | struct lb_forward *forward = (struct lb_forward *) |
| 224 | (((char *)lb_table) + lb_table->header_bytes); |
| 225 | if (forward->tag == LB_TAG_FORWARD) { |
| 226 | start = forward->forward; |
Uwe Hermann | 7b2969b | 2009-04-15 10:52:49 +0000 | [diff] [blame] | 227 | start &= ~(getpagesize() - 1); |
Stefan Reinauer | 2d853bb | 2009-03-17 14:39:25 +0000 | [diff] [blame] | 228 | physunmap(table_area, BYTES_TO_MAP); |
Carl-Daniel Hailfinger | baaffe0 | 2010-02-02 11:09:03 +0000 | [diff] [blame] | 229 | table_area = physmap_try_ro("high tables", start, BYTES_TO_MAP); |
| 230 | if (!table_area) { |
| 231 | msg_perr("Failed getting access to coreboot " |
| 232 | "high tables.\n"); |
| 233 | return -1; |
| 234 | } |
Stefan Reinauer | 2d853bb | 2009-03-17 14:39:25 +0000 | [diff] [blame] | 235 | lb_table = find_lb_table(table_area, 0x00000, 0x1000); |
| 236 | } |
| 237 | } |
| 238 | |
Peter Stuge | 2dc3aaa | 2009-01-26 00:15:56 +0000 | [diff] [blame] | 239 | if (!lb_table) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 240 | msg_pinfo("No coreboot table found.\n"); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 241 | return -1; |
| 242 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 243 | |
Stefan Reinauer | 2d853bb | 2009-03-17 14:39:25 +0000 | [diff] [blame] | 244 | addr = ((char *)lb_table) - ((char *)table_area) + start; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 245 | msg_pinfo("coreboot table found at 0x%lx.\n", |
Stefan Reinauer | 2d853bb | 2009-03-17 14:39:25 +0000 | [diff] [blame] | 246 | (unsigned long)lb_table - (unsigned long)table_area + start); |
Peter Stuge | 2dc3aaa | 2009-01-26 00:15:56 +0000 | [diff] [blame] | 247 | rec = (struct lb_record *)(((char *)lb_table) + lb_table->header_bytes); |
| 248 | last = (struct lb_record *)(((char *)rec) + lb_table->table_bytes); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 249 | msg_pdbg("coreboot header(%d) checksum: %04x table(%d) checksum: %04x entries: %d\n", |
Peter Stuge | 2dc3aaa | 2009-01-26 00:15:56 +0000 | [diff] [blame] | 250 | lb_table->header_bytes, lb_table->header_checksum, |
| 251 | lb_table->table_bytes, lb_table->table_checksum, |
| 252 | lb_table->table_entries); |
| 253 | search_lb_records(rec, last, addr + lb_table->header_bytes); |
| 254 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 255 | return 0; |
| 256 | } |