blob: 7c210ba0f2b7b596b7bb26ad46302249344a60b7 [file] [log] [blame]
Vadim Bendebury6d18fd02012-09-27 19:24:07 -07001/*
2 * This file is part of the coreboot project.
3 *
Stefan Reinauera9c83612013-07-16 17:47:35 -07004 * Copyright 2012 Google Inc.
Timothy Pearsonbea71402015-09-05 18:07:17 -05005 * Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
Vadim Bendebury6d18fd02012-09-27 19:24:07 -07006 *
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.
Vadim Bendebury6d18fd02012-09-27 19:24:07 -070015 */
16
Nico Huber8e4bb9282013-05-26 18:17:54 +020017#include <inttypes.h>
Vadim Bendebury6d18fd02012-09-27 19:24:07 -070018#include <stdio.h>
19#include <stdlib.h>
20#include <string.h>
Stefan Reinauer1e0e5562013-01-02 15:43:56 -080021#include <unistd.h>
Stefan Reinauer8c594772013-04-19 14:22:29 -070022#include <inttypes.h>
Stefan Reinauer1e0e5562013-01-02 15:43:56 -080023#include <getopt.h>
Julius Werner337de4c2014-06-16 23:02:03 -070024#include <dirent.h>
Stefan Reinauer05cbce62013-01-03 14:30:33 -080025#include <errno.h>
26#include <fcntl.h>
Stefan Reinauera9c83612013-07-16 17:47:35 -070027#include <ctype.h>
Stefan Reinauer7f681502013-06-19 15:39:09 -070028#include <arpa/inet.h>
Stefan Reinauer05cbce62013-01-03 14:30:33 -080029#include <sys/types.h>
30#include <sys/stat.h>
31#include <sys/mman.h>
Stefan Reinauerd37ab452012-12-18 16:23:28 -080032#include <libgen.h>
33#include <assert.h>
Aaron Durbindc9f5cd2015-09-08 13:34:43 -050034#include <commonlib/cbmem_id.h>
35#include <commonlib/timestamp_serialized.h>
36#include <commonlib/coreboot_tables.h>
Vadim Bendebury6d18fd02012-09-27 19:24:07 -070037
Patrick Georgid00f1802015-07-13 16:53:50 +020038#ifdef __OpenBSD__
39#include <sys/param.h>
40#include <sys/sysctl.h>
41#endif
42
Stefan Reinauer05cbce62013-01-03 14:30:33 -080043#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
44#define MAP_BYTES (1024*1024)
Vadim Bendebury6d18fd02012-09-27 19:24:07 -070045
Julius Werner337de4c2014-06-16 23:02:03 -070046typedef uint8_t u8;
Vadim Bendebury6d18fd02012-09-27 19:24:07 -070047typedef uint16_t u16;
48typedef uint32_t u32;
49typedef uint64_t u64;
50
Stefan Reinauera9c83612013-07-16 17:47:35 -070051#define CBMEM_VERSION "1.1"
Stefan Reinauer1e0e5562013-01-02 15:43:56 -080052
Stefan Reinauer05cbce62013-01-03 14:30:33 -080053/* verbose output? */
54static int verbose = 0;
55#define debug(x...) if(verbose) printf(x)
56
57/* File handle used to access /dev/mem */
Julius Werner337de4c2014-06-16 23:02:03 -070058static int mem_fd;
Vadim Bendebury6d18fd02012-09-27 19:24:07 -070059
Aaron Durbin09c0c112015-09-30 12:33:01 -050060static uint64_t lbtable_address;
61static size_t lbtable_size;
Timothy Pearsondf699d52015-05-16 14:55:54 -050062
Vadim Bendebury6d18fd02012-09-27 19:24:07 -070063/*
64 * calculate ip checksum (16 bit quantities) on a passed in buffer. In case
65 * the buffer length is odd last byte is excluded from the calculation
66 */
67static u16 ipchcksum(const void *addr, unsigned size)
68{
69 const u16 *p = addr;
70 unsigned i, n = size / 2; /* don't expect odd sized blocks */
71 u32 sum = 0;
72
73 for (i = 0; i < n; i++)
74 sum += p[i];
75
76 sum = (sum >> 16) + (sum & 0xffff);
77 sum += (sum >> 16);
78 sum = ~sum & 0xffff;
79 return (u16) sum;
80}
81
82/*
Stefan Reinauer05cbce62013-01-03 14:30:33 -080083 * Functions to map / unmap physical memory into virtual address space. These
84 * functions always maps 1MB at a time and can only map one area at once.
Vadim Bendebury6d18fd02012-09-27 19:24:07 -070085 */
Stefan Reinauer05cbce62013-01-03 14:30:33 -080086static void *mapped_virtual;
Aaron Durbinab180d82014-03-31 11:59:58 -050087static size_t mapped_size;
88
89static inline size_t size_to_mib(size_t sz)
90{
91 return sz >> 20;
92}
93
94static void unmap_memory(void)
95{
96 if (mapped_virtual == NULL) {
97 fprintf(stderr, "Error unmapping memory\n");
98 return;
99 }
Timothy Pearsondf699d52015-05-16 14:55:54 -0500100 if (size_to_mib(mapped_size) == 0) {
101 debug("Unmapping %zuMB of virtual memory at %p.\n",
102 size_to_mib(mapped_size), mapped_virtual);
Timothy Pearsonbea71402015-09-05 18:07:17 -0500103 } else {
Timothy Pearsondf699d52015-05-16 14:55:54 -0500104 debug("Unmapping %zuMB of virtual memory at %p.\n",
105 size_to_mib(mapped_size), mapped_virtual);
106 }
Aaron Durbinab180d82014-03-31 11:59:58 -0500107 munmap(mapped_virtual, mapped_size);
108 mapped_virtual = NULL;
109 mapped_size = 0;
110}
111
Timothy Pearsonbea71402015-09-05 18:07:17 -0500112static void *map_memory_size(u64 physical, size_t size, uint8_t abort_on_failure)
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700113{
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800114 void *v;
115 off_t p;
Stefan Reinauer7f681502013-06-19 15:39:09 -0700116 u64 page = getpagesize();
Aaron Durbinab180d82014-03-31 11:59:58 -0500117 size_t padding;
118
119 if (mapped_virtual != NULL)
120 unmap_memory();
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800121
122 /* Mapped memory must be aligned to page size */
123 p = physical & ~(page - 1);
Aaron Durbinab180d82014-03-31 11:59:58 -0500124 padding = physical & (page-1);
125 size += padding;
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800126
Timothy Pearsondf699d52015-05-16 14:55:54 -0500127 if (size_to_mib(size) == 0) {
128 debug("Mapping %zuB of physical memory at 0x%jx (requested 0x%jx).\n",
129 size, (intmax_t)p, (intmax_t)physical);
Timothy Pearsonbea71402015-09-05 18:07:17 -0500130 } else {
Timothy Pearsondf699d52015-05-16 14:55:54 -0500131 debug("Mapping %zuMB of physical memory at 0x%jx (requested 0x%jx).\n",
132 size_to_mib(size), (intmax_t)p, (intmax_t)physical);
133 }
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800134
Julius Werner337de4c2014-06-16 23:02:03 -0700135 v = mmap(NULL, size, PROT_READ, MAP_SHARED, mem_fd, p);
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800136
137 if (v == MAP_FAILED) {
Timothy Pearsondf699d52015-05-16 14:55:54 -0500138 /* The mapped area may have overrun the upper cbmem boundary when trying to
139 * align to the page size. Try growing down instead of up...
140 */
141 p -= page;
142 padding += page;
143 size &= ~(page - 1);
144 size = size + (page - 1);
145 v = mmap(NULL, size, PROT_READ, MAP_SHARED, mem_fd, p);
146 debug(" ... failed. Mapping %zuB of physical memory at 0x%jx.\n",
147 size, (intmax_t)p);
148 }
149
150 if (v == MAP_FAILED) {
Timothy Pearsonbea71402015-09-05 18:07:17 -0500151 if (abort_on_failure) {
152 fprintf(stderr, "Failed to mmap /dev/mem: %s\n",
153 strerror(errno));
154 exit(1);
155 } else {
156 return 0;
157 }
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700158 }
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800159
160 /* Remember what we actually mapped ... */
161 mapped_virtual = v;
Aaron Durbinab180d82014-03-31 11:59:58 -0500162 mapped_size = size;
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800163
164 /* ... but return address to the physical memory that was requested */
Stefan Reinauera9c83612013-07-16 17:47:35 -0700165 if (padding)
Aaron Durbinab180d82014-03-31 11:59:58 -0500166 debug(" ... padding virtual address with 0x%zx bytes.\n",
Stefan Reinauera9c83612013-07-16 17:47:35 -0700167 padding);
168 v += padding;
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800169
170 return v;
171}
172
Aaron Durbin09c0c112015-09-30 12:33:01 -0500173static void *map_lbtable(void)
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800174{
Aaron Durbin09c0c112015-09-30 12:33:01 -0500175 if (lbtable_address == 0 || lbtable_size == 0) {
176 fprintf(stderr, "No coreboot table area found!\n");
177 return NULL;
178 }
179
180 return map_memory_size(lbtable_address, lbtable_size, 1);
181}
182
183static void unmap_lbtable(void)
184{
185 unmap_memory();
186}
187
188/* Find the first cbmem entry filling in the details. */
189static int find_cbmem_entry(uint32_t id, uint64_t *addr, size_t *size)
190{
191 uint8_t *table;
192 size_t offset;
193 int ret = -1;
194
195 table = map_lbtable();
196
197 if (table == NULL)
198 return -1;
199
200 offset = 0;
201
202 while (offset < lbtable_size) {
203 struct lb_record *lbr;
204 struct lb_cbmem_entry *lbe;
205
206 lbr = (void *)(table + offset);
207 offset += lbr->size;
208
209 if (lbr->tag != LB_TAG_CBMEM_ENTRY)
210 continue;
211
212 lbe = (void *)lbr;
213 if (lbe->id != id)
214 continue;
215
216 *addr = lbe->address;
217 *size = lbe->entry_size;
218 ret = 0;
219 break;
220 }
221
222 unmap_lbtable();
223 return ret;
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700224}
225
226/*
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800227 * Try finding the timestamp table and coreboot cbmem console starting from the
228 * passed in memory offset. Could be called recursively in case a forwarding
229 * entry is found.
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700230 *
231 * Returns pointer to a memory buffer containg the timestamp table or zero if
232 * none found.
233 */
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800234
235static struct lb_cbmem_ref timestamps;
236static struct lb_cbmem_ref console;
Stefan Reinauerc0199072013-01-07 16:26:10 -0800237static struct lb_memory_range cbmem;
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800238
Stefan Reinauer8c594772013-04-19 14:22:29 -0700239/* This is a work-around for a nasty problem introduced by initially having
240 * pointer sized entries in the lb_cbmem_ref structures. This caused problems
241 * on 64bit x86 systems because coreboot is 32bit on those systems.
242 * When the problem was found, it was corrected, but there are a lot of
243 * systems out there with a firmware that does not produce the right
244 * lb_cbmem_ref structure. Hence we try to autocorrect this issue here.
245 */
246static struct lb_cbmem_ref parse_cbmem_ref(struct lb_cbmem_ref *cbmem_ref)
247{
248 struct lb_cbmem_ref ret;
249
250 ret = *cbmem_ref;
251
252 if (cbmem_ref->size < sizeof(*cbmem_ref))
253 ret.cbmem_addr = (uint32_t)ret.cbmem_addr;
254
Stefan Reinauera9c83612013-07-16 17:47:35 -0700255 debug(" cbmem_addr = %" PRIx64 "\n", ret.cbmem_addr);
256
Stefan Reinauer8c594772013-04-19 14:22:29 -0700257 return ret;
258}
259
Timothy Pearsonbea71402015-09-05 18:07:17 -0500260static int parse_cbtable(u64 address, size_t table_size, uint8_t abort_on_failure)
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700261{
Timothy Pearsonbea71402015-09-05 18:07:17 -0500262 int i, found, ret = 0;
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800263 void *buf;
264
Aaron Durbinb58f9e32014-10-07 14:56:35 -0500265 debug("Looking for coreboot table at %" PRIx64 " %zd bytes.\n",
266 address, table_size);
Timothy Pearsonbea71402015-09-05 18:07:17 -0500267 buf = map_memory_size(address, table_size, abort_on_failure);
268 if (!buf)
269 return -2;
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700270
271 /* look at every 16 bytes within 4K of the base */
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800272
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700273 for (i = 0; i < 0x1000; i += 0x10) {
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800274 struct lb_header *lbh;
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700275 struct lb_record* lbr_p;
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800276 void *lbtable;
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700277 int j;
278
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800279 lbh = (struct lb_header *)(buf + i);
280 if (memcmp(lbh->signature, "LBIO", sizeof(lbh->signature)) ||
281 !lbh->header_bytes ||
282 ipchcksum(lbh, sizeof(*lbh))) {
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700283 continue;
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700284 }
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800285 lbtable = buf + i + lbh->header_bytes;
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700286
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800287 if (ipchcksum(lbtable, lbh->table_bytes) !=
288 lbh->table_checksum) {
289 debug("Signature found, but wrong checksum.\n");
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700290 continue;
291 }
292
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800293 found = 1;
294 debug("Found!\n");
295
Aaron Durbin09c0c112015-09-30 12:33:01 -0500296 /* Keep reference to lbtable. */
297 lbtable_address = address;
298 lbtable_address += ((uint8_t *)lbtable - (uint8_t *)lbh);
299 lbtable_size = lbh->table_bytes;
300
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800301 for (j = 0; j < lbh->table_bytes; j += lbr_p->size) {
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800302 lbr_p = (struct lb_record*) ((char *)lbtable + j);
303 debug(" coreboot table entry 0x%02x\n", lbr_p->tag);
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700304 switch (lbr_p->tag) {
Stefan Reinauerc0199072013-01-07 16:26:10 -0800305 case LB_TAG_MEMORY: {
306 int i = 0;
307 debug(" Found memory map.\n");
308 struct lb_memory *memory =
309 (struct lb_memory *)lbr_p;
Paul Menzel747c07f2014-10-17 13:46:12 +0200310 while ((char *)&memory->map[i] < ((char *)lbr_p
Stefan Reinauerc0199072013-01-07 16:26:10 -0800311 + lbr_p->size)) {
312 if (memory->map[i].type == LB_MEM_TABLE) {
313 debug(" LB_MEM_TABLE found.\n");
314 /* The last one found is CBMEM */
315 cbmem = memory->map[i];
316 }
317 i++;
318 }
319 continue;
320 }
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700321 case LB_TAG_TIMESTAMPS: {
Stefan Reinauerd7144dc2013-01-07 15:25:37 -0800322 debug(" Found timestamp table.\n");
Stefan Reinauer8c594772013-04-19 14:22:29 -0700323 timestamps = parse_cbmem_ref((struct lb_cbmem_ref *) lbr_p);
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800324 continue;
325 }
326 case LB_TAG_CBMEM_CONSOLE: {
Stefan Reinauerd7144dc2013-01-07 15:25:37 -0800327 debug(" Found cbmem console.\n");
Stefan Reinauer8c594772013-04-19 14:22:29 -0700328 console = parse_cbmem_ref((struct lb_cbmem_ref *) lbr_p);
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800329 continue;
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700330 }
331 case LB_TAG_FORWARD: {
332 /*
333 * This is a forwarding entry - repeat the
334 * search at the new address.
335 */
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800336 struct lb_forward lbf_p =
337 *(struct lb_forward *) lbr_p;
Stefan Reinauerd7144dc2013-01-07 15:25:37 -0800338 debug(" Found forwarding entry.\n");
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800339 unmap_memory();
Timothy Pearsonbea71402015-09-05 18:07:17 -0500340 ret = parse_cbtable(lbf_p.forward, table_size, 0);
341 if (ret == -2) {
342 /* try again with a smaller memory mapping request */
343 ret = parse_cbtable(lbf_p.forward, table_size / 2, 1);
344 if (ret == -2)
345 exit(1);
346 else
347 return ret;
348 } else {
349 return ret;
350 }
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700351 }
352 default:
353 break;
354 }
355
356 }
357 }
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800358 unmap_memory();
359
360 return found;
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700361}
362
Patrick Georgid00f1802015-07-13 16:53:50 +0200363#if defined(linux) && (defined(__i386__) || defined(__x86_64__))
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700364/*
365 * read CPU frequency from a sysfs file, return an frequency in Kilohertz as
366 * an int or exit on any error.
367 */
Aaron Durbinc49014e2015-08-30 21:19:55 -0500368static unsigned long arch_tick_frequency(void)
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700369{
370 FILE *cpuf;
371 char freqs[100];
372 int size;
373 char *endp;
374 u64 rv;
375
376 const char* freq_file =
377 "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq";
378
379 cpuf = fopen(freq_file, "r");
380 if (!cpuf) {
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800381 fprintf(stderr, "Could not open %s: %s\n",
382 freq_file, strerror(errno));
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700383 exit(1);
384 }
385
386 memset(freqs, 0, sizeof(freqs));
387 size = fread(freqs, 1, sizeof(freqs), cpuf);
388 if (!size || (size == sizeof(freqs))) {
389 fprintf(stderr, "Wrong number of bytes(%d) read from %s\n",
390 size, freq_file);
391 exit(1);
392 }
393 fclose(cpuf);
394 rv = strtoull(freqs, &endp, 10);
395
396 if (*endp == '\0' || *endp == '\n')
397 return rv;
398 fprintf(stderr, "Wrong formatted value ^%s^ read from %s\n",
399 freqs, freq_file);
400 exit(1);
401}
Patrick Georgid00f1802015-07-13 16:53:50 +0200402#elif defined(__OpenBSD__) && (defined(__i386__) || defined(__x86_64__))
Aaron Durbinc49014e2015-08-30 21:19:55 -0500403static unsigned long arch_tick_frequency(void)
Patrick Georgid00f1802015-07-13 16:53:50 +0200404{
405 int mib[2] = { CTL_HW, HW_CPUSPEED };
406 static int value = 0;
407 size_t value_len = sizeof(value);
408
Aaron Durbinc49014e2015-08-30 21:19:55 -0500409 /* Return 1 MHz when sysctl fails. */
Patrick Georgid00f1802015-07-13 16:53:50 +0200410 if ((value == 0) && (sysctl(mib, 2, &value, &value_len, NULL, 0) == -1))
Aaron Durbinc49014e2015-08-30 21:19:55 -0500411 return 1;
Patrick Georgid00f1802015-07-13 16:53:50 +0200412
Aaron Durbinc49014e2015-08-30 21:19:55 -0500413 return value;
Patrick Georgid00f1802015-07-13 16:53:50 +0200414}
Stefan Reinauerd8ef9e92013-07-31 15:44:37 -0700415#else
Aaron Durbinc49014e2015-08-30 21:19:55 -0500416static unsigned long arch_tick_frequency(void)
Stefan Reinauerd8ef9e92013-07-31 15:44:37 -0700417{
Aaron Durbinc49014e2015-08-30 21:19:55 -0500418 /* 1 MHz = 1us. */
419 return 1;
Stefan Reinauerd8ef9e92013-07-31 15:44:37 -0700420}
421#endif
422
Aaron Durbinc49014e2015-08-30 21:19:55 -0500423static unsigned long tick_freq_mhz;
424
425static void timestamp_set_tick_freq(unsigned long table_tick_freq_mhz)
426{
427 tick_freq_mhz = table_tick_freq_mhz;
428
429 /* Honor table frequency. */
430 if (tick_freq_mhz)
431 return;
432
433 tick_freq_mhz = arch_tick_frequency();
434
435 if (!tick_freq_mhz) {
436 fprintf(stderr, "Cannot determine timestamp tick frequency.\n");
437 exit(1);
438 }
439}
440
441u64 arch_convert_raw_ts_entry(u64 ts)
442{
443 return ts / tick_freq_mhz;
444}
445
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700446/*
447 * Print an integer in 'normalized' form - with commas separating every three
Julius Wernera7d92442014-12-02 20:51:19 -0800448 * decimal orders.
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700449 */
Julius Wernera7d92442014-12-02 20:51:19 -0800450static void print_norm(u64 v)
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700451{
Julius Wernera7d92442014-12-02 20:51:19 -0800452 if (v >= 1000) {
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700453 /* print the higher order sections first */
Julius Wernera7d92442014-12-02 20:51:19 -0800454 print_norm(v / 1000);
455 printf(",%3.3u", (u32)(v % 1000));
456 } else {
457 printf("%u", (u32)(v % 1000));
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700458 }
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700459}
460
Stefan Reinauer0db924d2013-08-09 11:06:11 -0700461enum additional_timestamp_id {
462 // Depthcharge entry IDs start at 1000.
463 TS_DC_START = 1000,
464
465 TS_RO_PARAMS_INIT = 1001,
466 TS_RO_VB_INIT = 1002,
467 TS_RO_VB_SELECT_FIRMWARE = 1003,
468 TS_RO_VB_SELECT_AND_LOAD_KERNEL = 1004,
469
470 TS_RW_VB_SELECT_AND_LOAD_KERNEL = 1010,
471
472 TS_VB_SELECT_AND_LOAD_KERNEL = 1020,
473
Shawn Nematbakhsh5ece96a2015-10-27 13:53:02 -0700474 TS_VB_EC_VBOOT_DONE = 1030,
475
Stefan Reinauer0db924d2013-08-09 11:06:11 -0700476 TS_CROSSYSTEM_DATA = 1100,
477 TS_START_KERNEL = 1101
478};
479
480static const struct timestamp_id_to_name {
481 u32 id;
482 const char *name;
483} timestamp_ids[] = {
Aaron Durbin31540fb2015-07-11 12:44:10 -0500484 /* Marker to report base_time. */
485 { 0, "1st timestamp" },
Stefan Reinauer0db924d2013-08-09 11:06:11 -0700486 { TS_START_ROMSTAGE, "start of rom stage" },
487 { TS_BEFORE_INITRAM, "before ram initialization" },
488 { TS_AFTER_INITRAM, "after ram initialization" },
489 { TS_END_ROMSTAGE, "end of romstage" },
490 { TS_START_VBOOT, "start of verified boot" },
491 { TS_END_VBOOT, "end of verified boot" },
Julius Wernera7d92442014-12-02 20:51:19 -0800492 { TS_START_COPYRAM, "starting to load ramstage" },
493 { TS_END_COPYRAM, "finished loading ramstage" },
Stefan Reinauer0db924d2013-08-09 11:06:11 -0700494 { TS_START_RAMSTAGE, "start of ramstage" },
Julius Wernera7d92442014-12-02 20:51:19 -0800495 { TS_START_BOOTBLOCK, "start of bootblock" },
496 { TS_END_BOOTBLOCK, "end of bootblock" },
497 { TS_START_COPYROM, "starting to load romstage" },
498 { TS_END_COPYROM, "finished loading romstage" },
499 { TS_START_ULZMA, "starting LZMA decompress (ignore for x86)" },
500 { TS_END_ULZMA, "finished LZMA decompress (ignore for x86)" },
Stefan Reinauer0db924d2013-08-09 11:06:11 -0700501 { TS_DEVICE_ENUMERATE, "device enumeration" },
502 { TS_DEVICE_CONFIGURE, "device configuration" },
503 { TS_DEVICE_ENABLE, "device enable" },
504 { TS_DEVICE_INITIALIZE, "device initialization" },
505 { TS_DEVICE_DONE, "device setup done" },
506 { TS_CBMEM_POST, "cbmem post" },
507 { TS_WRITE_TABLES, "write tables" },
508 { TS_LOAD_PAYLOAD, "load payload" },
509 { TS_ACPI_WAKE_JUMP, "ACPI wake jump" },
510 { TS_SELFBOOT_JUMP, "selfboot jump" },
Julius Wernera7d92442014-12-02 20:51:19 -0800511
512 { TS_START_COPYVER, "starting to load verstage" },
513 { TS_END_COPYVER, "finished loading verstage" },
514 { TS_START_TPMINIT, "starting to initialize TPM" },
515 { TS_END_TPMINIT, "finished TPM initialization" },
516 { TS_START_VERIFY_SLOT, "starting to verify keyblock/preamble (RSA)" },
517 { TS_END_VERIFY_SLOT, "finished verifying keyblock/preamble (RSA)" },
518 { TS_START_HASH_BODY, "starting to verify body (load+SHA2+RSA) " },
519 { TS_DONE_LOADING, "finished loading body (ignore for x86)" },
520 { TS_DONE_HASHING, "finished calculating body hash (SHA2)" },
521 { TS_END_HASH_BODY, "finished verifying body signature (RSA)" },
522
Stefan Reinauer0db924d2013-08-09 11:06:11 -0700523 { TS_DC_START, "depthcharge start" },
524 { TS_RO_PARAMS_INIT, "RO parameter init" },
525 { TS_RO_VB_INIT, "RO vboot init" },
526 { TS_RO_VB_SELECT_FIRMWARE, "RO vboot select firmware" },
527 { TS_RO_VB_SELECT_AND_LOAD_KERNEL, "RO vboot select&load kernel" },
528 { TS_RW_VB_SELECT_AND_LOAD_KERNEL, "RW vboot select&load kernel" },
529 { TS_VB_SELECT_AND_LOAD_KERNEL, "vboot select&load kernel" },
Shawn Nematbakhsh5ece96a2015-10-27 13:53:02 -0700530 { TS_VB_EC_VBOOT_DONE, "finished EC verification" },
Stefan Reinauer0db924d2013-08-09 11:06:11 -0700531 { TS_CROSSYSTEM_DATA, "crossystem data" },
Lee Leahyb8179082015-02-24 11:30:38 -0800532 { TS_START_KERNEL, "start kernel" },
533
534 /* FSP related timestamps */
535 { TS_FSP_MEMORY_INIT_START, "calling FspMemoryInit" },
536 { TS_FSP_MEMORY_INIT_END, "returning from FspMemoryInit" },
537 { TS_FSP_TEMP_RAM_EXIT_START, "calling FspTempRamExit" },
538 { TS_FSP_TEMP_RAM_EXIT_END, "returning from FspTempRamExit" },
539 { TS_FSP_SILICON_INIT_START, "calling FspSiliconInit" },
540 { TS_FSP_SILICON_INIT_END, "returning from FspSiliconInit" },
541 { TS_FSP_BEFORE_ENUMERATE, "calling FspNotify(AfterPciEnumeration)" },
542 { TS_FSP_AFTER_ENUMERATE,
543 "returning from FspNotify(AfterPciEnumeration)" },
544 { TS_FSP_BEFORE_FINALIZE, "calling FspNotify(ReadyToBoot)" },
545 { TS_FSP_AFTER_FINALIZE, "returning from FspNotify(ReadyToBoot)" }
Stefan Reinauer0db924d2013-08-09 11:06:11 -0700546};
547
Aaron Durbinfbff3012015-08-30 22:00:12 -0500548static const char *timestamp_name(uint32_t id)
Stefan Reinauer0db924d2013-08-09 11:06:11 -0700549{
550 int i;
Aaron Durbinfbff3012015-08-30 22:00:12 -0500551
552 for (i = 0; i < ARRAY_SIZE(timestamp_ids); i++) {
553 if (timestamp_ids[i].id == id)
554 return timestamp_ids[i].name;
555 }
556 return "<unknown>";
557}
558
559static uint64_t timestamp_print_parseable_entry(uint32_t id, uint64_t stamp,
560 uint64_t prev_stamp)
561{
Stefan Reinauer0db924d2013-08-09 11:06:11 -0700562 const char *name;
Aaron Durbin799bf782015-08-06 13:52:08 -0500563 uint64_t step_time;
Stefan Reinauer0db924d2013-08-09 11:06:11 -0700564
Aaron Durbinfbff3012015-08-30 22:00:12 -0500565 name = timestamp_name(id);
566
567 step_time = arch_convert_raw_ts_entry(stamp - prev_stamp);
568
569 /* ID<tab>absolute time<tab>relative time<tab>description */
570 printf("%d\t", id);
571 printf("%llu\t", (long long)arch_convert_raw_ts_entry(stamp));
572 printf("%llu\t", (long long)step_time);
573 printf("%s\n", name);
574
575 return step_time;
576}
577
578uint64_t timestamp_print_entry(uint32_t id, uint64_t stamp, uint64_t prev_stamp)
579{
580 const char *name;
581 uint64_t step_time;
582
583 name = timestamp_name(id);
Stefan Reinauer0db924d2013-08-09 11:06:11 -0700584
585 printf("%4d:", id);
Julius Wernera7d92442014-12-02 20:51:19 -0800586 printf("%-50s", name);
587 print_norm(arch_convert_raw_ts_entry(stamp));
Aaron Durbin799bf782015-08-06 13:52:08 -0500588 step_time = arch_convert_raw_ts_entry(stamp - prev_stamp);
Stefan Reinauer0db924d2013-08-09 11:06:11 -0700589 if (prev_stamp) {
590 printf(" (");
Aaron Durbin799bf782015-08-06 13:52:08 -0500591 print_norm(step_time);
Stefan Reinauer0db924d2013-08-09 11:06:11 -0700592 printf(")");
593 }
594 printf("\n");
Aaron Durbin799bf782015-08-06 13:52:08 -0500595
596 return step_time;
Stefan Reinauer0db924d2013-08-09 11:06:11 -0700597}
598
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700599/* dump the timestamp table */
Aaron Durbinfbff3012015-08-30 22:00:12 -0500600static void dump_timestamps(int mach_readable)
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700601{
602 int i;
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800603 struct timestamp_table *tst_p;
Aaron Durbinb58f9e32014-10-07 14:56:35 -0500604 size_t size;
Aaron Durbin31540fb2015-07-11 12:44:10 -0500605 uint64_t prev_stamp;
Aaron Durbin799bf782015-08-06 13:52:08 -0500606 uint64_t total_time;
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800607
608 if (timestamps.tag != LB_TAG_TIMESTAMPS) {
609 fprintf(stderr, "No timestamps found in coreboot table.\n");
610 return;
611 }
612
Aaron Durbinb58f9e32014-10-07 14:56:35 -0500613 size = sizeof(*tst_p);
Timothy Pearsonbea71402015-09-05 18:07:17 -0500614 tst_p = map_memory_size((unsigned long)timestamps.cbmem_addr, size, 1);
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700615
Aaron Durbinc49014e2015-08-30 21:19:55 -0500616 timestamp_set_tick_freq(tst_p->tick_freq_mhz);
617
Aaron Durbinfbff3012015-08-30 22:00:12 -0500618 if (!mach_readable)
619 printf("%d entries total:\n\n", tst_p->num_entries);
Aaron Durbinb58f9e32014-10-07 14:56:35 -0500620 size += tst_p->num_entries * sizeof(tst_p->entries[0]);
621
622 unmap_memory();
Timothy Pearsonbea71402015-09-05 18:07:17 -0500623 tst_p = map_memory_size((unsigned long)timestamps.cbmem_addr, size, 1);
Aaron Durbinb58f9e32014-10-07 14:56:35 -0500624
Aaron Durbin31540fb2015-07-11 12:44:10 -0500625 /* Report the base time within the table. */
626 prev_stamp = 0;
Aaron Durbinfbff3012015-08-30 22:00:12 -0500627 if (mach_readable)
628 timestamp_print_parseable_entry(0, tst_p->base_time,
629 prev_stamp);
630 else
631 timestamp_print_entry(0, tst_p->base_time, prev_stamp);
Aaron Durbin31540fb2015-07-11 12:44:10 -0500632 prev_stamp = tst_p->base_time;
633
Aaron Durbin799bf782015-08-06 13:52:08 -0500634 total_time = 0;
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700635 for (i = 0; i < tst_p->num_entries; i++) {
Aaron Durbin31540fb2015-07-11 12:44:10 -0500636 uint64_t stamp;
637 const struct timestamp_entry *tse = &tst_p->entries[i];
638
639 /* Make all timestamps absolute. */
640 stamp = tse->entry_stamp + tst_p->base_time;
Aaron Durbinfbff3012015-08-30 22:00:12 -0500641 if (mach_readable)
642 total_time +=
643 timestamp_print_parseable_entry(tse->entry_id,
644 stamp, prev_stamp);
645 else
646 total_time += timestamp_print_entry(tse->entry_id,
Aaron Durbin799bf782015-08-06 13:52:08 -0500647 stamp, prev_stamp);
Aaron Durbin31540fb2015-07-11 12:44:10 -0500648 prev_stamp = stamp;
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700649 }
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800650
Aaron Durbinfbff3012015-08-30 22:00:12 -0500651 if (!mach_readable) {
652 printf("\nTotal Time: ");
653 print_norm(total_time);
654 printf("\n");
655 }
Aaron Durbin799bf782015-08-06 13:52:08 -0500656
Stefan Reinauer05cbce62013-01-03 14:30:33 -0800657 unmap_memory();
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700658}
659
Stefan Reinauer19f87562013-01-07 13:37:12 -0800660/* dump the cbmem console */
661static void dump_console(void)
662{
663 void *console_p;
664 char *console_c;
665 uint32_t size;
Vladimir Serbinenkof4a0d012013-03-30 12:15:12 +0100666 uint32_t cursor;
Stefan Reinauer19f87562013-01-07 13:37:12 -0800667
668 if (console.tag != LB_TAG_CBMEM_CONSOLE) {
669 fprintf(stderr, "No console found in coreboot table.\n");
670 return;
671 }
672
Aaron Durbinb58f9e32014-10-07 14:56:35 -0500673 console_p = map_memory_size((unsigned long)console.cbmem_addr,
Timothy Pearsonbea71402015-09-05 18:07:17 -0500674 2 * sizeof(uint32_t), 1);
Stefan Reinauer19f87562013-01-07 13:37:12 -0800675 /* The in-memory format of the console area is:
676 * u32 size
677 * u32 cursor
678 * char console[size]
679 * Hence we have to add 8 to get to the actual console string.
680 */
Gabe Black06b13a32013-08-09 00:40:06 -0700681 size = ((uint32_t *)console_p)[0];
682 cursor = ((uint32_t *)console_p)[1];
Vladimir Serbinenkof4a0d012013-03-30 12:15:12 +0100683 /* Cursor continues to go on even after no more data fits in
684 * the buffer but the data is dropped in this case.
685 */
686 if (size > cursor)
687 size = cursor;
Aaron Durbine740f482015-06-17 16:22:00 +0200688 console_c = calloc(1, size + 1);
Aaron Durbinb58f9e32014-10-07 14:56:35 -0500689 unmap_memory();
Stefan Reinauer19f87562013-01-07 13:37:12 -0800690 if (!console_c) {
691 fprintf(stderr, "Not enough memory for console.\n");
692 exit(1);
693 }
694
Aaron Durbinab180d82014-03-31 11:59:58 -0500695 console_p = map_memory_size((unsigned long)console.cbmem_addr,
Timothy Pearsonbea71402015-09-05 18:07:17 -0500696 size + sizeof(size) + sizeof(cursor), 1);
Stefan Reinauer19f87562013-01-07 13:37:12 -0800697 memcpy(console_c, console_p + 8, size);
Stefan Reinauer19f87562013-01-07 13:37:12 -0800698
Vladimir Serbinenkof4a0d012013-03-30 12:15:12 +0100699 printf("%s\n", console_c);
700 if (size < cursor)
701 printf("%d %s lost\n", cursor - size,
702 (cursor - size) == 1 ? "byte":"bytes");
Stefan Reinauer19f87562013-01-07 13:37:12 -0800703
704 free(console_c);
705
706 unmap_memory();
707}
708
Stefan Reinauera9c83612013-07-16 17:47:35 -0700709static void hexdump(unsigned long memory, int length)
710{
711 int i;
712 uint8_t *m;
713 int all_zero = 0;
714
Timothy Pearsonbea71402015-09-05 18:07:17 -0500715 m = map_memory_size((intptr_t)memory, length, 1);
Stefan Reinauera9c83612013-07-16 17:47:35 -0700716
717 if (length > MAP_BYTES) {
718 printf("Truncating hex dump from %d to %d bytes\n\n",
719 length, MAP_BYTES);
720 length = MAP_BYTES;
721 }
722
723 for (i = 0; i < length; i += 16) {
724 int j;
725
726 all_zero++;
727 for (j = 0; j < 16; j++) {
728 if(m[i+j] != 0) {
729 all_zero = 0;
730 break;
731 }
732 }
733
734 if (all_zero < 2) {
735 printf("%08lx:", memory + i);
736 for (j = 0; j < 16; j++)
737 printf(" %02x", m[i+j]);
738 printf(" ");
739 for (j = 0; j < 16; j++)
740 printf("%c", isprint(m[i+j]) ? m[i+j] : '.');
741 printf("\n");
742 } else if (all_zero == 2) {
743 printf("...\n");
744 }
745 }
746
747 unmap_memory();
748}
749
750static void dump_cbmem_hex(void)
751{
752 if (cbmem.type != LB_MEM_TABLE) {
753 fprintf(stderr, "No coreboot CBMEM area found!\n");
754 return;
755 }
756
757 hexdump(unpack_lb64(cbmem.start), unpack_lb64(cbmem.size));
758}
759
Pratik Prajapatic29e57d2015-09-03 12:58:44 -0700760void rawdump(uint64_t base, uint64_t size)
761{
762 int i;
763 uint8_t *m;
764
765 m = map_memory_size((intptr_t)base, size, 1);
766 if (!m) {
767 fprintf(stderr, "Failed to map memory");
768 return;
769 }
770
771 for (i = 0 ; i < size; i++)
772 printf("%c", m[i]);
773 unmap_memory();
774}
775
776static void dump_cbmem_raw(unsigned int id)
777{
778 uint8_t *table;
779 size_t offset;
780 uint64_t base = 0;
781 uint64_t size = 0;
782
783 table = map_lbtable();
784
785 if (table == NULL)
786 return;
787
788 offset = 0;
789
790 while (offset < lbtable_size) {
791 struct lb_record *lbr;
792 struct lb_cbmem_entry *lbe;
793
794 lbr = (void *)(table + offset);
795 offset += lbr->size;
796
797 if (lbr->tag != LB_TAG_CBMEM_ENTRY)
798 continue;
799
800 lbe = (void *)lbr;
801 if (lbe->id == id) {
802 debug("found id for raw dump %0x", lbe->id);
803 base = lbe->address;
804 size = lbe->entry_size;
805 break;
806 }
807 }
808
809 unmap_lbtable();
810
811 if (!base)
812 fprintf(stderr, "id %0x not found in cbtable\n", id);
813 else
814 rawdump(base, size);
815}
816
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600817struct cbmem_id_to_name {
818 uint32_t id;
819 const char *name;
820};
Vadim Bendebury8b143c52014-05-14 10:12:55 -0700821static const struct cbmem_id_to_name cbmem_ids[] = { CBMEM_ID_TO_NAME_TABLE };
Stefan Reinauerc0199072013-01-07 16:26:10 -0800822
Stefan Reinauera9c83612013-07-16 17:47:35 -0700823void cbmem_print_entry(int n, uint32_t id, uint64_t base, uint64_t size)
824{
825 int i;
826 const char *name;
827
828 name = NULL;
829 for (i = 0; i < ARRAY_SIZE(cbmem_ids); i++) {
830 if (cbmem_ids[i].id == id) {
831 name = cbmem_ids[i].name;
832 break;
833 }
834 }
835
836 printf("%2d. ", n);
837 if (name == NULL)
838 printf("%08x ", id);
839 else
Pratik Prajapatic29e57d2015-09-03 12:58:44 -0700840 printf("%s\t%08x", name, id);
Stefan Reinauera9c83612013-07-16 17:47:35 -0700841 printf(" %08" PRIx64 " ", base);
842 printf(" %08" PRIx64 "\n", size);
843}
844
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800845static void dump_cbmem_toc(void)
Stefan Reinauerc0199072013-01-07 16:26:10 -0800846{
Aaron Durbin09c0c112015-09-30 12:33:01 -0500847 int i;
848 uint8_t *table;
849 size_t offset;
Stefan Reinauerc0199072013-01-07 16:26:10 -0800850
Aaron Durbin09c0c112015-09-30 12:33:01 -0500851 table = map_lbtable();
852
853 if (table == NULL)
Stefan Reinauerc0199072013-01-07 16:26:10 -0800854 return;
Aaron Durbin09c0c112015-09-30 12:33:01 -0500855
856 printf("CBMEM table of contents:\n");
Pratik Prajapatic29e57d2015-09-03 12:58:44 -0700857 printf(" NAME ID START LENGTH\n");
Aaron Durbin09c0c112015-09-30 12:33:01 -0500858
859 i = 0;
860 offset = 0;
861
862 while (offset < lbtable_size) {
863 struct lb_record *lbr;
864 struct lb_cbmem_entry *lbe;
865
866 lbr = (void *)(table + offset);
867 offset += lbr->size;
868
869 if (lbr->tag != LB_TAG_CBMEM_ENTRY)
870 continue;
871
872 lbe = (void *)lbr;
873 cbmem_print_entry(i, lbe->id, lbe->address, lbe->entry_size);
874 i++;
Stefan Reinauerc0199072013-01-07 16:26:10 -0800875 }
876
Aaron Durbin09c0c112015-09-30 12:33:01 -0500877 unmap_lbtable();
Stefan Reinauerc0199072013-01-07 16:26:10 -0800878}
Stefan Reinauer19f87562013-01-07 13:37:12 -0800879
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800880#define COVERAGE_MAGIC 0x584d4153
881struct file {
882 uint32_t magic;
883 uint32_t next;
884 uint32_t filename;
885 uint32_t data;
886 int offset;
887 int len;
888};
889
890static int mkpath(char *path, mode_t mode)
891{
892 assert (path && *path);
893 char *p;
894 for (p = strchr(path+1, '/'); p; p = strchr(p + 1, '/')) {
895 *p = '\0';
896 if (mkdir(path, mode) == -1) {
897 if (errno != EEXIST) {
898 *p = '/';
899 return -1;
900 }
901 }
902 *p = '/';
903 }
904 return 0;
905}
906
907static void dump_coverage(void)
908{
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800909 uint64_t start;
Aaron Durbin09c0c112015-09-30 12:33:01 -0500910 size_t size;
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800911 void *coverage;
912 unsigned long phys_offset;
913#define phys_to_virt(x) ((void *)(unsigned long)(x) + phys_offset)
914
Aaron Durbin09c0c112015-09-30 12:33:01 -0500915 if (find_cbmem_entry(CBMEM_ID_COVERAGE, &start, &size)) {
916 fprintf(stderr, "No coverage information found\n");
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800917 return;
918 }
919
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800920 /* Map coverage area */
Aaron Durbin09c0c112015-09-30 12:33:01 -0500921 coverage = map_memory_size(start, size, 1);
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800922 phys_offset = (unsigned long)coverage - (unsigned long)start;
923
924 printf("Dumping coverage data...\n");
925
926 struct file *file = (struct file *)coverage;
927 while (file && file->magic == COVERAGE_MAGIC) {
928 FILE *f;
929 char *filename;
930
931 debug(" -> %s\n", (char *)phys_to_virt(file->filename));
932 filename = strdup((char *)phys_to_virt(file->filename));
933 if (mkpath(filename, 0755) == -1) {
934 perror("Directory for coverage data could "
935 "not be created");
936 exit(1);
937 }
938 f = fopen(filename, "wb");
939 if (!f) {
940 printf("Could not open %s: %s\n",
941 filename, strerror(errno));
942 exit(1);
943 }
944 if (fwrite((void *)phys_to_virt(file->data),
945 file->len, 1, f) != 1) {
946 printf("Could not write to %s: %s\n",
947 filename, strerror(errno));
948 exit(1);
949 }
950 fclose(f);
951 free(filename);
952
953 if (file->next)
954 file = (struct file *)phys_to_virt(file->next);
955 else
956 file = NULL;
957 }
958 unmap_memory();
959}
960
961static void print_version(void)
Stefan Reinauer1e0e5562013-01-02 15:43:56 -0800962{
963 printf("cbmem v%s -- ", CBMEM_VERSION);
964 printf("Copyright (C) 2012 The ChromiumOS Authors. All rights reserved.\n\n");
965 printf(
966 "This program is free software: you can redistribute it and/or modify\n"
967 "it under the terms of the GNU General Public License as published by\n"
968 "the Free Software Foundation, version 2 of the License.\n\n"
969 "This program is distributed in the hope that it will be useful,\n"
970 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
971 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
972 "GNU General Public License for more details.\n\n"
973 "You should have received a copy of the GNU General Public License\n"
974 "along with this program. If not, see <http://www.gnu.org/licenses/>.\n\n");
975}
976
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800977static void print_usage(const char *name)
Stefan Reinauer1e0e5562013-01-02 15:43:56 -0800978{
Aaron Durbinfbff3012015-08-30 22:00:12 -0500979 printf("usage: %s [-cCltTxVvh?]\n", name);
Stefan Reinauer1e0e5562013-01-02 15:43:56 -0800980 printf("\n"
Stefan Reinauer19f87562013-01-07 13:37:12 -0800981 " -c | --console: print cbmem console\n"
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800982 " -C | --coverage: dump coverage information\n"
Stefan Reinauerc0199072013-01-07 16:26:10 -0800983 " -l | --list: print cbmem table of contents\n"
Stefan Reinauera9c83612013-07-16 17:47:35 -0700984 " -x | --hexdump: print hexdump of cbmem area\n"
Pratik Prajapatic29e57d2015-09-03 12:58:44 -0700985 " -r | --rawdump ID: print rawdump of specific ID (in hex) of cbtable\n"
Stefan Reinauer19f87562013-01-07 13:37:12 -0800986 " -t | --timestamps: print timestamp information\n"
Aaron Durbinfbff3012015-08-30 22:00:12 -0500987 " -T | --parseable-timestamps: print parseable timestamps\n"
Stefan Reinauer19f87562013-01-07 13:37:12 -0800988 " -V | --verbose: verbose (debugging) output\n"
Stefan Reinauer1e0e5562013-01-02 15:43:56 -0800989 " -v | --version: print the version\n"
990 " -h | --help: print this help\n"
991 "\n");
992 exit(1);
993}
Vadim Bendebury6d18fd02012-09-27 19:24:07 -0700994
Julius Werner337de4c2014-06-16 23:02:03 -0700995#ifdef __arm__
996static void dt_update_cells(const char *name, int *addr_cells_ptr,
997 int *size_cells_ptr)
998{
999 if (*addr_cells_ptr >= 0 && *size_cells_ptr >= 0)
1000 return;
1001
1002 int buffer;
1003 size_t nlen = strlen(name);
1004 char *prop = alloca(nlen + sizeof("/#address-cells"));
1005 strcpy(prop, name);
1006
1007 if (*addr_cells_ptr < 0) {
1008 strcpy(prop + nlen, "/#address-cells");
1009 int fd = open(prop, O_RDONLY);
1010 if (fd < 0 && errno != ENOENT) {
1011 perror(prop);
1012 } else if (fd >= 0) {
1013 if (read(fd, &buffer, sizeof(int)) < 0)
1014 perror(prop);
1015 else
1016 *addr_cells_ptr = ntohl(buffer);
1017 close(fd);
1018 }
1019 }
1020
1021 if (*size_cells_ptr < 0) {
1022 strcpy(prop + nlen, "/#size-cells");
1023 int fd = open(prop, O_RDONLY);
1024 if (fd < 0 && errno != ENOENT) {
1025 perror(prop);
1026 } else if (fd >= 0) {
1027 if (read(fd, &buffer, sizeof(int)) < 0)
1028 perror(prop);
1029 else
1030 *size_cells_ptr = ntohl(buffer);
1031 close(fd);
1032 }
1033 }
1034}
1035
1036static char *dt_find_compat(const char *parent, const char *compat,
1037 int *addr_cells_ptr, int *size_cells_ptr)
1038{
1039 char *ret = NULL;
1040 struct dirent *entry;
1041 DIR *dir;
1042
1043 if (!(dir = opendir(parent))) {
1044 perror(parent);
1045 return NULL;
1046 }
1047
1048 /* Loop through all files in the directory (DT node). */
1049 while ((entry = readdir(dir))) {
1050 /* We only care about compatible props or subnodes. */
1051 if (entry->d_name[0] == '.' || !((entry->d_type & DT_DIR) ||
1052 !strcmp(entry->d_name, "compatible")))
1053 continue;
1054
1055 /* Assemble the file name (on the stack, for speed). */
1056 size_t plen = strlen(parent);
1057 char *name = alloca(plen + strlen(entry->d_name) + 2);
1058
1059 strcpy(name, parent);
1060 name[plen] = '/';
1061 strcpy(name + plen + 1, entry->d_name);
1062
1063 /* If it's a subnode, recurse. */
1064 if (entry->d_type & DT_DIR) {
1065 ret = dt_find_compat(name, compat, addr_cells_ptr,
1066 size_cells_ptr);
1067
1068 /* There is only one matching node to find, abort. */
1069 if (ret) {
1070 /* Gather cells values on the way up. */
1071 dt_update_cells(parent, addr_cells_ptr,
1072 size_cells_ptr);
1073 break;
1074 }
1075 continue;
1076 }
1077
1078 /* If it's a compatible string, see if it's the right one. */
1079 int fd = open(name, O_RDONLY);
1080 int clen = strlen(compat);
1081 char *buffer = alloca(clen + 1);
1082
1083 if (fd < 0) {
1084 perror(name);
1085 continue;
1086 }
1087
1088 if (read(fd, buffer, clen + 1) < 0) {
1089 perror(name);
1090 close(fd);
1091 continue;
1092 }
1093 close(fd);
1094
1095 if (!strcmp(compat, buffer)) {
1096 /* Initialize these to "unset" for the way up. */
1097 *addr_cells_ptr = *size_cells_ptr = -1;
1098
1099 /* Can't leave string on the stack or we'll lose it! */
1100 ret = strdup(parent);
1101 break;
1102 }
1103 }
1104
1105 closedir(dir);
1106 return ret;
1107}
1108#endif /* __arm__ */
1109
Vadim Bendebury6d18fd02012-09-27 19:24:07 -07001110int main(int argc, char** argv)
1111{
Stefan Reinauer19f87562013-01-07 13:37:12 -08001112 int print_defaults = 1;
1113 int print_console = 0;
Stefan Reinauerd37ab452012-12-18 16:23:28 -08001114 int print_coverage = 0;
Stefan Reinauerc0199072013-01-07 16:26:10 -08001115 int print_list = 0;
Stefan Reinauera9c83612013-07-16 17:47:35 -07001116 int print_hexdump = 0;
Pratik Prajapatic29e57d2015-09-03 12:58:44 -07001117 int print_rawdump = 0;
Stefan Reinauer19f87562013-01-07 13:37:12 -08001118 int print_timestamps = 0;
Aaron Durbinfbff3012015-08-30 22:00:12 -05001119 int machine_readable_timestamps = 0;
Pratik Prajapatic29e57d2015-09-03 12:58:44 -07001120 unsigned int rawdump_id = 0;
Stefan Reinauer05cbce62013-01-03 14:30:33 -08001121
Stefan Reinauer1e0e5562013-01-02 15:43:56 -08001122 int opt, option_index = 0;
1123 static struct option long_options[] = {
Stefan Reinauer19f87562013-01-07 13:37:12 -08001124 {"console", 0, 0, 'c'},
Stefan Reinauerd37ab452012-12-18 16:23:28 -08001125 {"coverage", 0, 0, 'C'},
Stefan Reinauerc0199072013-01-07 16:26:10 -08001126 {"list", 0, 0, 'l'},
Stefan Reinauer19f87562013-01-07 13:37:12 -08001127 {"timestamps", 0, 0, 't'},
Aaron Durbinfbff3012015-08-30 22:00:12 -05001128 {"parseable-timestamps", 0, 0, 'T'},
Stefan Reinauera9c83612013-07-16 17:47:35 -07001129 {"hexdump", 0, 0, 'x'},
Pratik Prajapatic29e57d2015-09-03 12:58:44 -07001130 {"rawdump", required_argument, 0, 'r'},
Stefan Reinauer05cbce62013-01-03 14:30:33 -08001131 {"verbose", 0, 0, 'V'},
Stefan Reinauer1e0e5562013-01-02 15:43:56 -08001132 {"version", 0, 0, 'v'},
1133 {"help", 0, 0, 'h'},
1134 {0, 0, 0, 0}
1135 };
Pratik Prajapatic29e57d2015-09-03 12:58:44 -07001136 while ((opt = getopt_long(argc, argv, "cCltTxVvh?r:",
Stefan Reinauer1e0e5562013-01-02 15:43:56 -08001137 long_options, &option_index)) != EOF) {
1138 switch (opt) {
Stefan Reinauer19f87562013-01-07 13:37:12 -08001139 case 'c':
1140 print_console = 1;
1141 print_defaults = 0;
1142 break;
Stefan Reinauerd37ab452012-12-18 16:23:28 -08001143 case 'C':
1144 print_coverage = 1;
1145 print_defaults = 0;
1146 break;
Stefan Reinauerc0199072013-01-07 16:26:10 -08001147 case 'l':
1148 print_list = 1;
1149 print_defaults = 0;
1150 break;
Stefan Reinauera9c83612013-07-16 17:47:35 -07001151 case 'x':
1152 print_hexdump = 1;
1153 print_defaults = 0;
1154 break;
Pratik Prajapatic29e57d2015-09-03 12:58:44 -07001155 case 'r':
1156 print_rawdump = 1;
1157 print_defaults = 0;
1158 rawdump_id = strtoul(optarg, NULL, 16);
1159 break;
Stefan Reinauer19f87562013-01-07 13:37:12 -08001160 case 't':
1161 print_timestamps = 1;
1162 print_defaults = 0;
1163 break;
Aaron Durbinfbff3012015-08-30 22:00:12 -05001164 case 'T':
1165 print_timestamps = 1;
1166 machine_readable_timestamps = 1;
1167 print_defaults = 0;
1168 break;
Stefan Reinauer05cbce62013-01-03 14:30:33 -08001169 case 'V':
1170 verbose = 1;
1171 break;
Stefan Reinauer1e0e5562013-01-02 15:43:56 -08001172 case 'v':
1173 print_version();
1174 exit(0);
1175 break;
1176 case 'h':
1177 case '?':
1178 default:
1179 print_usage(argv[0]);
1180 exit(0);
1181 break;
1182 }
1183 }
Vadim Bendebury6d18fd02012-09-27 19:24:07 -07001184
Julius Werner337de4c2014-06-16 23:02:03 -07001185 mem_fd = open("/dev/mem", O_RDONLY, 0);
1186 if (mem_fd < 0) {
Stefan Reinauer05cbce62013-01-03 14:30:33 -08001187 fprintf(stderr, "Failed to gain memory access: %s\n",
1188 strerror(errno));
Vadim Bendebury6d18fd02012-09-27 19:24:07 -07001189 return 1;
1190 }
1191
Stefan Reinauer7f681502013-06-19 15:39:09 -07001192#ifdef __arm__
Julius Werner337de4c2014-06-16 23:02:03 -07001193 int addr_cells, size_cells;
1194 char *coreboot_node = dt_find_compat("/proc/device-tree", "coreboot",
1195 &addr_cells, &size_cells);
Stefan Reinauer7f681502013-06-19 15:39:09 -07001196
Julius Werner337de4c2014-06-16 23:02:03 -07001197 if (!coreboot_node) {
1198 fprintf(stderr, "Could not find 'coreboot' compatible node!\n");
Stefan Reinauer7f681502013-06-19 15:39:09 -07001199 return 1;
1200 }
1201
Julius Werner337de4c2014-06-16 23:02:03 -07001202 if (addr_cells < 0) {
1203 fprintf(stderr, "Warning: no #address-cells node in tree!\n");
1204 addr_cells = 1;
1205 }
1206
1207 int nlen = strlen(coreboot_node);
1208 char *reg = alloca(nlen + sizeof("/reg"));
1209
1210 strcpy(reg, coreboot_node);
1211 strcpy(reg + nlen, "/reg");
1212 free(coreboot_node);
1213
1214 int fd = open(reg, O_RDONLY);
1215 if (fd < 0) {
1216 perror(reg);
Stefan Reinauer7f681502013-06-19 15:39:09 -07001217 return 1;
1218 }
Stefan Reinauer7f681502013-06-19 15:39:09 -07001219
Julius Werner337de4c2014-06-16 23:02:03 -07001220 int i;
Aaron Durbinb58f9e32014-10-07 14:56:35 -05001221 size_t size_to_read = addr_cells * 4 + size_cells * 4;
1222 u8 *dtbuffer = alloca(size_to_read);
1223 if (read(fd, dtbuffer, size_to_read) < 0) {
Julius Werner337de4c2014-06-16 23:02:03 -07001224 perror(reg);
1225 return 1;
1226 }
1227 close(fd);
1228
1229 /* No variable-length byte swap function anywhere in C... how sad. */
1230 u64 baseaddr = 0;
1231 for (i = 0; i < addr_cells * 4; i++) {
1232 baseaddr <<= 8;
Aaron Durbinb58f9e32014-10-07 14:56:35 -05001233 baseaddr |= *dtbuffer;
1234 dtbuffer++;
1235 }
1236 u64 cb_table_size = 0;
1237 for (i = 0; i < size_cells * 4; i++) {
1238 cb_table_size <<= 8;
1239 cb_table_size |= *dtbuffer;
1240 dtbuffer++;
Julius Werner337de4c2014-06-16 23:02:03 -07001241 }
1242
Timothy Pearsonbea71402015-09-05 18:07:17 -05001243 parse_cbtable(baseaddr, cb_table_size, 1);
Stefan Reinauer7f681502013-06-19 15:39:09 -07001244#else
1245 int j;
1246 static const int possible_base_addresses[] = { 0, 0xf0000 };
1247
Stefan Reinauer05cbce62013-01-03 14:30:33 -08001248 /* Find and parse coreboot table */
Vadim Bendebury6d18fd02012-09-27 19:24:07 -07001249 for (j = 0; j < ARRAY_SIZE(possible_base_addresses); j++) {
Timothy Pearsonbea71402015-09-05 18:07:17 -05001250 if (parse_cbtable(possible_base_addresses[j], MAP_BYTES, 1))
Vadim Bendebury6d18fd02012-09-27 19:24:07 -07001251 break;
Vadim Bendebury6d18fd02012-09-27 19:24:07 -07001252 }
Stefan Reinauer7f681502013-06-19 15:39:09 -07001253#endif
Vadim Bendebury6d18fd02012-09-27 19:24:07 -07001254
Stefan Reinauer19f87562013-01-07 13:37:12 -08001255 if (print_console)
1256 dump_console();
1257
Stefan Reinauerd37ab452012-12-18 16:23:28 -08001258 if (print_coverage)
1259 dump_coverage();
1260
Stefan Reinauerc0199072013-01-07 16:26:10 -08001261 if (print_list)
1262 dump_cbmem_toc();
1263
Stefan Reinauera9c83612013-07-16 17:47:35 -07001264 if (print_hexdump)
1265 dump_cbmem_hex();
1266
Pratik Prajapatic29e57d2015-09-03 12:58:44 -07001267 if (print_rawdump)
1268 dump_cbmem_raw(rawdump_id);
1269
Stefan Reinauer19f87562013-01-07 13:37:12 -08001270 if (print_defaults || print_timestamps)
Aaron Durbinfbff3012015-08-30 22:00:12 -05001271 dump_timestamps(machine_readable_timestamps);
Stefan Reinauer05cbce62013-01-03 14:30:33 -08001272
Julius Werner337de4c2014-06-16 23:02:03 -07001273 close(mem_fd);
Vadim Bendebury6d18fd02012-09-27 19:24:07 -07001274 return 0;
1275}