blob: be33b0ad429018bc450c8e1b4f946564828694f8 [file] [log] [blame]
Vadim Bendebury6f72d692011-09-21 16:12:39 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010017 * Foundation, Inc.
Vadim Bendebury6f72d692011-09-21 16:12:39 -070018 */
19
20#ifndef __TIMESTAMP_H__
21#define __TIMESTAMP_H__
22
Stefan Reinauer3a6550d2013-08-01 13:31:44 -070023#include <stdint.h>
24
Vadim Bendebury6f72d692011-09-21 16:12:39 -070025struct timestamp_entry {
26 uint32_t entry_id;
27 uint64_t entry_stamp;
28} __attribute__((packed));
29
30struct timestamp_table {
31 uint64_t base_time;
Aaron Durbinc49014e2015-08-30 21:19:55 -050032 uint16_t max_entries;
33 uint16_t tick_freq_mhz;
Vadim Bendebury6f72d692011-09-21 16:12:39 -070034 uint32_t num_entries;
35 struct timestamp_entry entries[0]; /* Variable number of entries */
36} __attribute__((packed));
37
38enum timestamp_id {
Stefan Reinauerbf729ba2011-11-04 12:31:58 -070039 TS_START_ROMSTAGE = 1,
40 TS_BEFORE_INITRAM = 2,
41 TS_AFTER_INITRAM = 3,
42 TS_END_ROMSTAGE = 4,
Aaron Durbin22919ce2013-03-01 17:07:51 -060043 TS_START_VBOOT = 5,
44 TS_END_VBOOT = 6,
Stefan Reinauerbf729ba2011-11-04 12:31:58 -070045 TS_START_COPYRAM = 8,
46 TS_END_COPYRAM = 9,
47 TS_START_RAMSTAGE = 10,
Furquan Shaikh42e23a62014-10-14 15:18:38 -070048 TS_START_BOOTBLOCK = 11,
49 TS_END_BOOTBLOCK = 12,
Julius Wernera7d92442014-12-02 20:51:19 -080050 TS_START_COPYROM = 13,
51 TS_END_COPYROM = 14,
52 TS_START_ULZMA = 15,
53 TS_END_ULZMA = 16,
Stefan Reinauerbf729ba2011-11-04 12:31:58 -070054 TS_DEVICE_ENUMERATE = 30,
55 TS_DEVICE_CONFIGURE = 40,
56 TS_DEVICE_ENABLE = 50,
57 TS_DEVICE_INITIALIZE = 60,
58 TS_DEVICE_DONE = 70,
Stefan Reinauerbb11e602012-05-10 12:15:18 -070059 TS_CBMEM_POST = 75,
Stefan Reinauerbf729ba2011-11-04 12:31:58 -070060 TS_WRITE_TABLES = 80,
61 TS_LOAD_PAYLOAD = 90,
Duncan Lauriecde78012011-10-19 15:32:39 -070062 TS_ACPI_WAKE_JUMP = 98,
63 TS_SELFBOOT_JUMP = 99,
Julius Wernera7d92442014-12-02 20:51:19 -080064
65 /* 500+ reserved for vendorcode extensions (500-600: google/chromeos) */
66 TS_START_COPYVER = 501,
67 TS_END_COPYVER = 502,
68 TS_START_TPMINIT = 503,
69 TS_END_TPMINIT = 504,
70 TS_START_VERIFY_SLOT = 505,
71 TS_END_VERIFY_SLOT = 506,
72 TS_START_HASH_BODY = 507,
73 TS_DONE_LOADING = 508,
74 TS_DONE_HASHING = 509,
75 TS_END_HASH_BODY = 510,
76
Lee Leahyb8179082015-02-24 11:30:38 -080077 /* 950+ reserved for vendorcode extensions (950-999: intel/fsp) */
78 TS_FSP_MEMORY_INIT_START = 950,
79 TS_FSP_MEMORY_INIT_END = 951,
80 TS_FSP_TEMP_RAM_EXIT_START = 952,
81 TS_FSP_TEMP_RAM_EXIT_END = 953,
82 TS_FSP_SILICON_INIT_START = 954,
83 TS_FSP_SILICON_INIT_END = 955,
84 TS_FSP_BEFORE_ENUMERATE = 956,
85 TS_FSP_AFTER_ENUMERATE = 957,
86 TS_FSP_BEFORE_FINALIZE = 958,
87 TS_FSP_AFTER_FINALIZE = 959,
88
Julius Wernera7d92442014-12-02 20:51:19 -080089 /* 1000+ reserved for payloads (1000-1200: ChromeOS depthcharge) */
Vadim Bendebury6f72d692011-09-21 16:12:39 -070090};
91
Kyösti Mälkki26447932013-10-11 21:14:59 +030092#if CONFIG_COLLECT_TIMESTAMPS && (CONFIG_EARLY_CBMEM_INIT || !defined(__PRE_RAM__))
Aaron Durbin1936f6c2015-07-03 17:04:21 -050093/*
94 * timestamp_init() needs to be called once for each of these cases:
95 * 1. __PRE_RAM__ (bootblock, romstage, verstage, etc) and
96 * 2. !__PRE_RAM__ (ramstage)
97 * The latter is taken care of by the generic coreboot infrastructure so
98 * it's up to the chipset/arch to call timestamp_init() in *one* of
99 * the __PRE_RAM__ stages. If multiple calls are made timestamps will be lost.
100 */
Stefan Reinauer3a6550d2013-08-01 13:31:44 -0700101void timestamp_init(uint64_t base);
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500102/*
103 * Add a new timestamp. Depending on cbmem is available or not, this timestamp
104 * will be stored to cbmem / timestamp cache.
105 */
Stefan Reinauer3a6550d2013-08-01 13:31:44 -0700106void timestamp_add(enum timestamp_id id, uint64_t ts_time);
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500107/* Calls timestamp_add with current timestamp. */
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700108void timestamp_add_now(enum timestamp_id id);
Stefan Reinauerbf729ba2011-11-04 12:31:58 -0700109#else
110#define timestamp_init(base)
111#define timestamp_add(id, time)
112#define timestamp_add_now(id)
113#endif
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700114
Stefan Reinauer3a6550d2013-08-01 13:31:44 -0700115/* Implemented by the architecture code */
116uint64_t timestamp_get(void);
117uint64_t get_initial_timestamp(void);
Aaron Durbinc49014e2015-08-30 21:19:55 -0500118/* Returns timestamp tick frequency in MHz. */
119int timestamp_tick_freq_mhz(void);
Stefan Reinauer3a6550d2013-08-01 13:31:44 -0700120
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700121#endif