blob: 66c1d9ade5c01d4d2395c27638123bb9e7b207bf [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
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
18 */
19
20#ifndef __TIMESTAMP_H__
21#define __TIMESTAMP_H__
22
Vadim Bendebury6f72d692011-09-21 16:12:39 -070023struct timestamp_entry {
24 uint32_t entry_id;
25 uint64_t entry_stamp;
26} __attribute__((packed));
27
28struct timestamp_table {
29 uint64_t base_time;
30 uint32_t max_entries;
31 uint32_t num_entries;
32 struct timestamp_entry entries[0]; /* Variable number of entries */
33} __attribute__((packed));
34
35enum timestamp_id {
Stefan Reinauerbf729ba2011-11-04 12:31:58 -070036 TS_START_ROMSTAGE = 1,
37 TS_BEFORE_INITRAM = 2,
38 TS_AFTER_INITRAM = 3,
39 TS_END_ROMSTAGE = 4,
Aaron Durbin22919ce2013-03-01 17:07:51 -060040 TS_START_VBOOT = 5,
41 TS_END_VBOOT = 6,
Stefan Reinauerbf729ba2011-11-04 12:31:58 -070042 TS_START_COPYRAM = 8,
43 TS_END_COPYRAM = 9,
44 TS_START_RAMSTAGE = 10,
45 TS_DEVICE_ENUMERATE = 30,
Martin Rotha6427162014-04-25 14:12:13 -060046 TS_FSP_BEFORE_ENUMERATE,
47 TS_FSP_AFTER_ENUMERATE,
Stefan Reinauerbf729ba2011-11-04 12:31:58 -070048 TS_DEVICE_CONFIGURE = 40,
49 TS_DEVICE_ENABLE = 50,
50 TS_DEVICE_INITIALIZE = 60,
51 TS_DEVICE_DONE = 70,
Stefan Reinauerbb11e602012-05-10 12:15:18 -070052 TS_CBMEM_POST = 75,
Stefan Reinauerbf729ba2011-11-04 12:31:58 -070053 TS_WRITE_TABLES = 80,
Martin Rotha6427162014-04-25 14:12:13 -060054 TS_FSP_BEFORE_FINALIZE,
55 TS_FSP_AFTER_FINALIZE,
Stefan Reinauerbf729ba2011-11-04 12:31:58 -070056 TS_LOAD_PAYLOAD = 90,
Duncan Lauriecde78012011-10-19 15:32:39 -070057 TS_ACPI_WAKE_JUMP = 98,
58 TS_SELFBOOT_JUMP = 99,
Vadim Bendebury6f72d692011-09-21 16:12:39 -070059};
60
Kyösti Mälkki26447932013-10-11 21:14:59 +030061#if CONFIG_COLLECT_TIMESTAMPS && (CONFIG_EARLY_CBMEM_INIT || !defined(__PRE_RAM__))
Vadim Bendebury0a1c2d62012-09-27 18:42:57 -070062#include <cpu/x86/tsc.h>
Vadim Bendebury6f72d692011-09-21 16:12:39 -070063void timestamp_init(tsc_t base);
64void timestamp_add(enum timestamp_id id, tsc_t ts_time);
65void timestamp_add_now(enum timestamp_id id);
Kyösti Mälkkicbf5bdf2013-09-10 00:07:21 +030066void timestamp_reinit(void);
Kyösti Mälkkie28bd4a2013-09-07 11:38:56 +030067tsc_t get_initial_timestamp(void);
Stefan Reinauerbf729ba2011-11-04 12:31:58 -070068#else
69#define timestamp_init(base)
70#define timestamp_add(id, time)
71#define timestamp_add_now(id)
Kyösti Mälkkicbf5bdf2013-09-10 00:07:21 +030072#define timestamp_reinit()
Stefan Reinauerbf729ba2011-11-04 12:31:58 -070073#endif
Vadim Bendebury6f72d692011-09-21 16:12:39 -070074
75#endif