blob: f84b9d5bc7e8151c5744fc32d8fb33b0969f9f96 [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.
Mario Scheithauera39aede2017-11-06 16:47:27 +01005 * Copyright (C) 2017 Siemens AG
Vadim Bendebury6f72d692011-09-21 16:12:39 -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 Bendebury6f72d692011-09-21 16:12:39 -070015 */
16
Aaron Durbin1936f6c2015-07-03 17:04:21 -050017#include <assert.h>
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +030018#include <stddef.h>
Vadim Bendebury6f72d692011-09-21 16:12:39 -070019#include <stdint.h>
20#include <console/console.h>
21#include <cbmem.h>
Aaron Durbin1936f6c2015-07-03 17:04:21 -050022#include <symbols.h>
Aaron Durbin2daadf82015-05-01 16:48:54 -050023#include <timer.h>
Vadim Bendebury6f72d692011-09-21 16:12:39 -070024#include <timestamp.h>
Stefan Reinauerfd4f4132013-06-19 12:25:44 -070025#include <arch/early_variables.h>
Kyösti Mälkki5a5c8862014-01-26 14:41:54 +020026#include <smp/node.h>
Vadim Bendebury6f72d692011-09-21 16:12:39 -070027
Raul E Rangelb3e02202018-05-11 11:08:08 -060028#define MAX_TIMESTAMPS 192
Vadim Bendebury6f72d692011-09-21 16:12:39 -070029
Julius Werner85b1aad2016-08-19 15:17:42 -070030/* When changing this number, adjust TIMESTAMP() size ASSERT() in memlayout.h */
Julius Werner69d20c42016-02-08 19:48:11 -080031#define MAX_BSS_TIMESTAMP_CACHE 16
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +030032
Stefan Reinauer6a001132017-07-13 02:20:27 +020033struct __packed timestamp_cache {
Aaron Durbinbd1499d2015-07-10 01:51:14 -050034 uint32_t cache_state;
Aaron Durbin1936f6c2015-07-03 17:04:21 -050035 struct timestamp_table table;
36 /* The struct timestamp_table has a 0 length array as its last field.
37 * The following 'entries' array serves as the storage space for the
Julius Werner69d20c42016-02-08 19:48:11 -080038 * cache when allocated in the BSS. */
39 struct timestamp_entry entries[MAX_BSS_TIMESTAMP_CACHE];
Aaron Durbin1936f6c2015-07-03 17:04:21 -050040};
Vadim Bendebury6f72d692011-09-21 16:12:39 -070041
Julius Werner8c093772016-02-09 16:09:15 -080042DECLARE_OPTIONAL_REGION(timestamp);
43
44#if defined(__PRE_RAM__)
45#define USE_TIMESTAMP_REGION (_timestamp_size > 0)
Aaron Durbin1936f6c2015-07-03 17:04:21 -050046#else
47#define USE_TIMESTAMP_REGION 0
48#endif
49
50/* The cache location will sit in BSS when in ramstage. */
51#define TIMESTAMP_CACHE_IN_BSS ENV_RAMSTAGE
52
Furquan Shaikhe85de022016-08-02 11:19:53 -070053#define HAS_CBMEM (ENV_ROMSTAGE || ENV_RAMSTAGE || ENV_POSTCAR)
Aaron Durbin1936f6c2015-07-03 17:04:21 -050054
55/* Storage of cache entries during ramstage prior to cbmem coming online. */
56static struct timestamp_cache timestamp_cache;
57
58enum {
59 TIMESTAMP_CACHE_UNINITIALIZED = 0,
60 TIMESTAMP_CACHE_INITIALIZED,
61 TIMESTAMP_CACHE_NOT_NEEDED,
62};
63
64static void timestamp_cache_init(struct timestamp_cache *ts_cache,
65 uint64_t base)
66{
67 ts_cache->table.num_entries = 0;
Julius Werner69d20c42016-02-08 19:48:11 -080068 ts_cache->table.max_entries = MAX_BSS_TIMESTAMP_CACHE;
Aaron Durbin1936f6c2015-07-03 17:04:21 -050069 ts_cache->table.base_time = base;
70 ts_cache->cache_state = TIMESTAMP_CACHE_INITIALIZED;
Julius Werner69d20c42016-02-08 19:48:11 -080071
72 if (USE_TIMESTAMP_REGION)
73 ts_cache->table.max_entries = (_timestamp_size -
74 offsetof(struct timestamp_cache, entries))
75 / sizeof(struct timestamp_entry);
Aaron Durbin1936f6c2015-07-03 17:04:21 -050076}
77
78static struct timestamp_cache *timestamp_cache_get(void)
79{
80 struct timestamp_cache *ts_cache = NULL;
81
82 if (TIMESTAMP_CACHE_IN_BSS) {
83 ts_cache = &timestamp_cache;
84 } else if (USE_TIMESTAMP_REGION) {
85 if (_timestamp_size < sizeof(*ts_cache))
86 BUG();
87 ts_cache = car_get_var_ptr((void *)_timestamp);
88 }
89
Aaron Durbin1936f6c2015-07-03 17:04:21 -050090 return ts_cache;
91}
92
93static struct timestamp_table *timestamp_alloc_cbmem_table(void)
Vadim Bendebury6f72d692011-09-21 16:12:39 -070094{
Lee Leahyb2d834a2017-03-08 16:52:22 -080095 struct timestamp_table *tst;
Vadim Bendebury6f72d692011-09-21 16:12:39 -070096
97 tst = cbmem_add(CBMEM_ID_TIMESTAMP,
98 sizeof(struct timestamp_table) +
99 MAX_TIMESTAMPS * sizeof(struct timestamp_entry));
100
Kyösti Mälkkie0344172015-05-26 06:23:02 +0300101 if (!tst)
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500102 return NULL;
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700103
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500104 tst->base_time = 0;
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700105 tst->max_entries = MAX_TIMESTAMPS;
106 tst->num_entries = 0;
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300107
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500108 return tst;
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700109}
110
Aaron Durbin2daadf82015-05-01 16:48:54 -0500111/* Determine if one should proceed into timestamp code. This is for protecting
112 * systems that have multiple processors running in romstage -- namely AMD
113 * based x86 platforms. */
114static int timestamp_should_run(void)
115{
116 /* Only check boot_cpu() in other stages than ramstage on x86. */
117 if ((!ENV_RAMSTAGE && IS_ENABLED(CONFIG_ARCH_X86)) && !boot_cpu())
118 return 0;
119
120 return 1;
121}
122
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500123static struct timestamp_table *timestamp_table_get(void)
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700124{
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500125 MAYBE_STATIC struct timestamp_table *ts_table = NULL;
126 struct timestamp_cache *ts_cache;
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300127
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500128 if (ts_table != NULL)
129 return ts_table;
130
131 ts_cache = timestamp_cache_get();
132
133 if (ts_cache == NULL) {
134 if (HAS_CBMEM)
135 ts_table = cbmem_find(CBMEM_ID_TIMESTAMP);
136 return ts_table;
137 }
138
139 /* Cache is required. */
140 if (ts_cache->cache_state != TIMESTAMP_CACHE_NOT_NEEDED)
141 return &ts_cache->table;
142
143 /* Cache shouldn't be used but there's no backing store. */
144 if (!HAS_CBMEM)
145 return NULL;
146
147 ts_table = cbmem_find(CBMEM_ID_TIMESTAMP);
148
149 return ts_table;
150}
151
Martin Rothb22bbe22018-03-07 15:32:16 -0700152static const char *timestamp_name(enum timestamp_id id)
153{
154 int i;
155
156 for (i = 0; i < ARRAY_SIZE(timestamp_ids); i++) {
157 if (timestamp_ids[i].id == id)
158 return timestamp_ids[i].name;
159 }
160
161 return "Unknown timestamp ID";
162}
163
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500164static void timestamp_add_table_entry(struct timestamp_table *ts_table,
165 enum timestamp_id id, uint64_t ts_time)
166{
167 struct timestamp_entry *tse;
168
Ben Gardnerf5fd4c92015-11-20 13:25:25 -0600169 if (ts_table->num_entries >= ts_table->max_entries)
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300170 return;
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700171
172 tse = &ts_table->entries[ts_table->num_entries++];
173 tse->entry_id = id;
Stefan Reinauer3a6550d2013-08-01 13:31:44 -0700174 tse->entry_stamp = ts_time - ts_table->base_time;
Ben Gardnerf5fd4c92015-11-20 13:25:25 -0600175
Martin Rothb22bbe22018-03-07 15:32:16 -0700176 if (IS_ENABLED(CONFIG_TIMESTAMPS_ON_CONSOLE))
177 printk(BIOS_SPEW, "Timestamp - %s: %" PRIu64 "\n",
178 timestamp_name(id), ts_time);
179
Ben Gardnerf5fd4c92015-11-20 13:25:25 -0600180 if (ts_table->num_entries == ts_table->max_entries)
181 printk(BIOS_ERR, "ERROR: Timestamp table full\n");
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700182}
183
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500184void timestamp_add(enum timestamp_id id, uint64_t ts_time)
185{
186 struct timestamp_table *ts_table;
187
Kyösti Mälkki187e4c42019-02-20 17:38:45 +0200188 if (!timestamp_should_run())
189 return;
190
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500191 ts_table = timestamp_table_get();
192
193 if (!ts_table) {
194 printk(BIOS_ERR, "ERROR: No timestamp table found\n");
195 return;
196 }
197
198 timestamp_add_table_entry(ts_table, id, ts_time);
199}
200
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700201void timestamp_add_now(enum timestamp_id id)
202{
Stefan Reinauer3a6550d2013-08-01 13:31:44 -0700203 timestamp_add(id, timestamp_get());
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700204}
Stefan Reinauer4221a192012-10-15 15:23:20 -0700205
Stefan Reinauer3a6550d2013-08-01 13:31:44 -0700206void timestamp_init(uint64_t base)
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300207{
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500208 struct timestamp_cache *ts_cache;
209
Aaron Durbin2daadf82015-05-01 16:48:54 -0500210 if (!timestamp_should_run())
Kyösti Mälkkif56ff902013-09-08 13:10:28 +0300211 return;
212
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500213 ts_cache = timestamp_cache_get();
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300214
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500215 if (!ts_cache) {
216 printk(BIOS_ERR, "ERROR: No timestamp cache to init\n");
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300217 return;
218 }
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300219
Kyösti Mälkki513a1a82018-06-03 12:29:50 +0300220 /* Timestamps could have already been recovered.
221 * In those circumstances honor the cache which sits in BSS
Aaron Durbinbd1499d2015-07-10 01:51:14 -0500222 * as it has already been initialized. */
Kyösti Mälkki513a1a82018-06-03 12:29:50 +0300223 if (ENV_RAMSTAGE &&
Aaron Durbinbd1499d2015-07-10 01:51:14 -0500224 ts_cache->cache_state != TIMESTAMP_CACHE_UNINITIALIZED)
225 return;
226
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500227 timestamp_cache_init(ts_cache, base);
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300228}
229
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500230static void timestamp_sync_cache_to_cbmem(int is_recovery)
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300231{
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500232 uint32_t i;
233 struct timestamp_cache *ts_cache;
234 struct timestamp_table *ts_cache_table;
235 struct timestamp_table *ts_cbmem_table = NULL;
236
Aaron Durbin2daadf82015-05-01 16:48:54 -0500237 if (!timestamp_should_run())
Kyösti Mälkkif56ff902013-09-08 13:10:28 +0300238 return;
239
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500240 ts_cache = timestamp_cache_get();
241
242 /* No timestamp cache found */
243 if (ts_cache == NULL) {
244 printk(BIOS_ERR, "ERROR: No timestamp cache found\n");
245 return;
246 }
247
248 ts_cache_table = &ts_cache->table;
249
250 /* cbmem is being recovered. */
251 if (is_recovery) {
252 /* x86 resume path expects timestamps to be reset. */
253 if (IS_ENABLED(CONFIG_ARCH_ROMSTAGE_X86_32) && ENV_ROMSTAGE)
254 ts_cbmem_table = timestamp_alloc_cbmem_table();
255 else {
256 /* Find existing table in cbmem. */
257 ts_cbmem_table = cbmem_find(CBMEM_ID_TIMESTAMP);
258 /* No existing timestamp table. */
259 if (ts_cbmem_table == NULL)
260 ts_cbmem_table = timestamp_alloc_cbmem_table();
261 }
262 } else
263 /* First time sync. Add new table. */
264 ts_cbmem_table = timestamp_alloc_cbmem_table();
265
266 if (ts_cbmem_table == NULL) {
267 printk(BIOS_ERR, "ERROR: No timestamp table allocated\n");
268 return;
269 }
270
271 /*
272 * There's no need to worry about the base_time fields being out of
Kyösti Mälkki513a1a82018-06-03 12:29:50 +0300273 * sync because only the following configuration is used/supported:
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500274 *
Kyösti Mälkki513a1a82018-06-03 12:29:50 +0300275 * Timestamps get initialized before ramstage, which implies
276 * CBMEM initialization in romstage.
Julius Werner8c093772016-02-09 16:09:15 -0800277 * This requires the board to define a TIMESTAMP() region in its
278 * memlayout.ld (default on x86). The base_time from timestamp_init()
279 * (usually called from bootblock.c on most non-x86 boards) persists
280 * in that region until it gets synced to CBMEM in romstage.
281 * In ramstage, the BSS cache's base_time will be 0 until the second
282 * sync, which will adjust the timestamps in there to the correct
283 * base_time (from CBMEM) with the timestamp_add_table_entry() below.
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500284 *
Julius Werner8c093772016-02-09 16:09:15 -0800285 * If you try to initialize timestamps before ramstage but don't define
286 * a TIMESTAMP region, all operations will fail (safely), and coreboot
287 * will behave as if timestamps only get initialized in ramstage.
288 *
Kyösti Mälkki513a1a82018-06-03 12:29:50 +0300289 * If timestamps only get initialized in ramstage, the base_time from
290 * timestamp_init() will get ignored and all timestamps will be 0-based.
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500291 */
292 for (i = 0; i < ts_cache_table->num_entries; i++) {
293 struct timestamp_entry *tse = &ts_cache_table->entries[i];
294 timestamp_add_table_entry(ts_cbmem_table, tse->entry_id,
295 tse->entry_stamp);
296 }
297
298 /* Freshly added cbmem table has base_time 0. Inherit cache base_time */
299 if (ts_cbmem_table->base_time == 0)
300 ts_cbmem_table->base_time = ts_cache_table->base_time;
301
Aaron Durbinc49014e2015-08-30 21:19:55 -0500302 /* Seed the timestamp tick frequency in ramstage. */
303 if (ENV_RAMSTAGE)
304 ts_cbmem_table->tick_freq_mhz = timestamp_tick_freq_mhz();
305
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500306 /* Cache no longer required. */
307 ts_cache_table->num_entries = 0;
308 ts_cache->cache_state = TIMESTAMP_CACHE_NOT_NEEDED;
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300309}
Kyösti Mälkkicbf5bdf2013-09-10 00:07:21 +0300310
Kyösti Mälkki806ea08b2017-07-15 20:42:20 +0300311void timestamp_rescale_table(uint16_t N, uint16_t M)
312{
313 uint32_t i;
314 struct timestamp_table *ts_table;
315
316 if (!timestamp_should_run())
317 return;
318
319 if (N == 0 || M == 0)
320 return;
321
322 ts_table = timestamp_table_get();
323
324 /* No timestamp table found */
325 if (ts_table == NULL) {
326 printk(BIOS_ERR, "ERROR: No timestamp table found\n");
327 return;
328 }
329
330 ts_table->base_time /= M;
331 ts_table->base_time *= N;
332 for (i = 0; i < ts_table->num_entries; i++) {
333 struct timestamp_entry *tse = &ts_table->entries[i];
334 tse->entry_stamp /= M;
335 tse->entry_stamp *= N;
336 }
337}
338
Werner Zeh35cceb82017-09-12 07:42:54 +0200339/*
340 * Get the time in microseconds since boot (or more precise: since timestamp
341 * table was initialized).
342 */
343uint32_t get_us_since_boot(void)
344{
345 struct timestamp_table *ts = timestamp_table_get();
346
347 if (ts == NULL || ts->tick_freq_mhz == 0)
348 return 0;
349 return (timestamp_get() - ts->base_time) / ts->tick_freq_mhz;
350}
351
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500352ROMSTAGE_CBMEM_INIT_HOOK(timestamp_sync_cache_to_cbmem)
353RAMSTAGE_CBMEM_INIT_HOOK(timestamp_sync_cache_to_cbmem)
Aaron Durbin9e80e272015-05-01 16:48:54 -0500354
355/* Provide default timestamp implementation using monotonic timer. */
Aaron Durbin64031672018-04-21 14:45:32 -0600356uint64_t __weak timestamp_get(void)
Aaron Durbin9e80e272015-05-01 16:48:54 -0500357{
358 struct mono_time t1, t2;
359
Aaron Durbin7aafe532015-05-07 11:32:30 -0500360 if (!IS_ENABLED(CONFIG_HAVE_MONOTONIC_TIMER))
361 return 0;
362
Aaron Durbin9e80e272015-05-01 16:48:54 -0500363 mono_time_set_usecs(&t1, 0);
364 timer_monotonic_get(&t2);
365
366 return mono_time_diff_microseconds(&t1, &t2);
367}
Aaron Durbinc49014e2015-08-30 21:19:55 -0500368
369/* Like timestamp_get() above this matches up with microsecond granularity. */
Aaron Durbin64031672018-04-21 14:45:32 -0600370int __weak timestamp_tick_freq_mhz(void)
Aaron Durbinc49014e2015-08-30 21:19:55 -0500371{
372 return 1;
373}