blob: 30f7c13fb8fea9d775e7af9592fb9723fe89ca08 [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.
Vadim Bendebury6f72d692011-09-21 16:12:39 -070014 */
15
Aaron Durbin1936f6c2015-07-03 17:04:21 -050016#include <assert.h>
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +030017#include <stddef.h>
Vadim Bendebury6f72d692011-09-21 16:12:39 -070018#include <stdint.h>
Stefan Reinauer6a001132017-07-13 02:20:27 +020019#include <compiler.h>
Vadim Bendebury6f72d692011-09-21 16:12:39 -070020#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>
Aaron Durbin2daadf82015-05-01 16:48:54 -050026#include <rules.h>
Kyösti Mälkki5a5c8862014-01-26 14:41:54 +020027#include <smp/node.h>
Vadim Bendebury6f72d692011-09-21 16:12:39 -070028
Julius Werner69d20c42016-02-08 19:48:11 -080029#define MAX_TIMESTAMPS 84
Vadim Bendebury6f72d692011-09-21 16:12:39 -070030
Julius Werner85b1aad2016-08-19 15:17:42 -070031/* When changing this number, adjust TIMESTAMP() size ASSERT() in memlayout.h */
Julius Werner69d20c42016-02-08 19:48:11 -080032#define MAX_BSS_TIMESTAMP_CACHE 16
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +030033
Stefan Reinauer6a001132017-07-13 02:20:27 +020034struct __packed timestamp_cache {
Aaron Durbinbd1499d2015-07-10 01:51:14 -050035 uint32_t cache_state;
Aaron Durbin1936f6c2015-07-03 17:04:21 -050036 struct timestamp_table table;
37 /* The struct timestamp_table has a 0 length array as its last field.
38 * The following 'entries' array serves as the storage space for the
Julius Werner69d20c42016-02-08 19:48:11 -080039 * cache when allocated in the BSS. */
40 struct timestamp_entry entries[MAX_BSS_TIMESTAMP_CACHE];
Aaron Durbin1936f6c2015-07-03 17:04:21 -050041};
Vadim Bendebury6f72d692011-09-21 16:12:39 -070042
Julius Werner8c093772016-02-09 16:09:15 -080043DECLARE_OPTIONAL_REGION(timestamp);
44
45#if defined(__PRE_RAM__)
46#define USE_TIMESTAMP_REGION (_timestamp_size > 0)
Aaron Durbin1936f6c2015-07-03 17:04:21 -050047#else
48#define USE_TIMESTAMP_REGION 0
49#endif
50
51/* The cache location will sit in BSS when in ramstage. */
52#define TIMESTAMP_CACHE_IN_BSS ENV_RAMSTAGE
53
Furquan Shaikhe85de022016-08-02 11:19:53 -070054#define HAS_CBMEM (ENV_ROMSTAGE || ENV_RAMSTAGE || ENV_POSTCAR)
Aaron Durbin1936f6c2015-07-03 17:04:21 -050055
56/* Storage of cache entries during ramstage prior to cbmem coming online. */
57static struct timestamp_cache timestamp_cache;
58
59enum {
60 TIMESTAMP_CACHE_UNINITIALIZED = 0,
61 TIMESTAMP_CACHE_INITIALIZED,
62 TIMESTAMP_CACHE_NOT_NEEDED,
63};
64
65static void timestamp_cache_init(struct timestamp_cache *ts_cache,
66 uint64_t base)
67{
68 ts_cache->table.num_entries = 0;
Julius Werner69d20c42016-02-08 19:48:11 -080069 ts_cache->table.max_entries = MAX_BSS_TIMESTAMP_CACHE;
Aaron Durbin1936f6c2015-07-03 17:04:21 -050070 ts_cache->table.base_time = base;
71 ts_cache->cache_state = TIMESTAMP_CACHE_INITIALIZED;
Julius Werner69d20c42016-02-08 19:48:11 -080072
73 if (USE_TIMESTAMP_REGION)
74 ts_cache->table.max_entries = (_timestamp_size -
75 offsetof(struct timestamp_cache, entries))
76 / sizeof(struct timestamp_entry);
Aaron Durbin1936f6c2015-07-03 17:04:21 -050077}
78
79static struct timestamp_cache *timestamp_cache_get(void)
80{
81 struct timestamp_cache *ts_cache = NULL;
82
83 if (TIMESTAMP_CACHE_IN_BSS) {
84 ts_cache = &timestamp_cache;
85 } else if (USE_TIMESTAMP_REGION) {
86 if (_timestamp_size < sizeof(*ts_cache))
87 BUG();
88 ts_cache = car_get_var_ptr((void *)_timestamp);
89 }
90
Aaron Durbin1936f6c2015-07-03 17:04:21 -050091 return ts_cache;
92}
93
94static struct timestamp_table *timestamp_alloc_cbmem_table(void)
Vadim Bendebury6f72d692011-09-21 16:12:39 -070095{
Lee Leahyb2d834a2017-03-08 16:52:22 -080096 struct timestamp_table *tst;
Vadim Bendebury6f72d692011-09-21 16:12:39 -070097
98 tst = cbmem_add(CBMEM_ID_TIMESTAMP,
99 sizeof(struct timestamp_table) +
100 MAX_TIMESTAMPS * sizeof(struct timestamp_entry));
101
Kyösti Mälkkie0344172015-05-26 06:23:02 +0300102 if (!tst)
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500103 return NULL;
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700104
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500105 tst->base_time = 0;
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700106 tst->max_entries = MAX_TIMESTAMPS;
107 tst->num_entries = 0;
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300108
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500109 return tst;
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700110}
111
Aaron Durbin2daadf82015-05-01 16:48:54 -0500112/* Determine if one should proceed into timestamp code. This is for protecting
113 * systems that have multiple processors running in romstage -- namely AMD
114 * based x86 platforms. */
115static int timestamp_should_run(void)
116{
117 /* Only check boot_cpu() in other stages than ramstage on x86. */
118 if ((!ENV_RAMSTAGE && IS_ENABLED(CONFIG_ARCH_X86)) && !boot_cpu())
119 return 0;
120
121 return 1;
122}
123
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500124static struct timestamp_table *timestamp_table_get(void)
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700125{
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500126 MAYBE_STATIC struct timestamp_table *ts_table = NULL;
127 struct timestamp_cache *ts_cache;
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300128
Aaron Durbin2daadf82015-05-01 16:48:54 -0500129 if (!timestamp_should_run())
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500130 return NULL;
Kyösti Mälkkif56ff902013-09-08 13:10:28 +0300131
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500132 if (ts_table != NULL)
133 return ts_table;
134
135 ts_cache = timestamp_cache_get();
136
137 if (ts_cache == NULL) {
138 if (HAS_CBMEM)
139 ts_table = cbmem_find(CBMEM_ID_TIMESTAMP);
140 return ts_table;
141 }
142
143 /* Cache is required. */
144 if (ts_cache->cache_state != TIMESTAMP_CACHE_NOT_NEEDED)
145 return &ts_cache->table;
146
147 /* Cache shouldn't be used but there's no backing store. */
148 if (!HAS_CBMEM)
149 return NULL;
150
151 ts_table = cbmem_find(CBMEM_ID_TIMESTAMP);
152
153 return ts_table;
154}
155
156static void timestamp_add_table_entry(struct timestamp_table *ts_table,
157 enum timestamp_id id, uint64_t ts_time)
158{
159 struct timestamp_entry *tse;
160
Ben Gardnerf5fd4c92015-11-20 13:25:25 -0600161 if (ts_table->num_entries >= ts_table->max_entries)
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300162 return;
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700163
164 tse = &ts_table->entries[ts_table->num_entries++];
165 tse->entry_id = id;
Stefan Reinauer3a6550d2013-08-01 13:31:44 -0700166 tse->entry_stamp = ts_time - ts_table->base_time;
Ben Gardnerf5fd4c92015-11-20 13:25:25 -0600167
168 if (ts_table->num_entries == ts_table->max_entries)
169 printk(BIOS_ERR, "ERROR: Timestamp table full\n");
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700170}
171
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500172void timestamp_add(enum timestamp_id id, uint64_t ts_time)
173{
174 struct timestamp_table *ts_table;
175
176 ts_table = timestamp_table_get();
177
178 if (!ts_table) {
179 printk(BIOS_ERR, "ERROR: No timestamp table found\n");
180 return;
181 }
182
183 timestamp_add_table_entry(ts_table, id, ts_time);
184}
185
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700186void timestamp_add_now(enum timestamp_id id)
187{
Stefan Reinauer3a6550d2013-08-01 13:31:44 -0700188 timestamp_add(id, timestamp_get());
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700189}
Stefan Reinauer4221a192012-10-15 15:23:20 -0700190
Stefan Reinauer3a6550d2013-08-01 13:31:44 -0700191void timestamp_init(uint64_t base)
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300192{
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500193 struct timestamp_cache *ts_cache;
194
Aaron Durbin2daadf82015-05-01 16:48:54 -0500195 if (!timestamp_should_run())
Kyösti Mälkkif56ff902013-09-08 13:10:28 +0300196 return;
197
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500198 ts_cache = timestamp_cache_get();
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300199
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500200 if (!ts_cache) {
201 printk(BIOS_ERR, "ERROR: No timestamp cache to init\n");
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300202 return;
203 }
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300204
Aaron Durbinbd1499d2015-07-10 01:51:14 -0500205 /* In the EARLY_CBMEM_INIT case timestamps could have already been
206 * recovered. In those circumstances honor the cache which sits in BSS
207 * as it has already been initialized. */
Aaron Durbin2a983bd2015-07-11 13:36:01 -0500208 if (ENV_RAMSTAGE && IS_ENABLED(CONFIG_EARLY_CBMEM_INIT) &&
Aaron Durbinbd1499d2015-07-10 01:51:14 -0500209 ts_cache->cache_state != TIMESTAMP_CACHE_UNINITIALIZED)
210 return;
211
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500212 timestamp_cache_init(ts_cache, base);
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300213}
214
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500215static void timestamp_sync_cache_to_cbmem(int is_recovery)
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300216{
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500217 uint32_t i;
218 struct timestamp_cache *ts_cache;
219 struct timestamp_table *ts_cache_table;
220 struct timestamp_table *ts_cbmem_table = NULL;
221
Aaron Durbin2daadf82015-05-01 16:48:54 -0500222 if (!timestamp_should_run())
Kyösti Mälkkif56ff902013-09-08 13:10:28 +0300223 return;
224
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500225 ts_cache = timestamp_cache_get();
226
227 /* No timestamp cache found */
228 if (ts_cache == NULL) {
229 printk(BIOS_ERR, "ERROR: No timestamp cache found\n");
230 return;
231 }
232
233 ts_cache_table = &ts_cache->table;
234
235 /* cbmem is being recovered. */
236 if (is_recovery) {
237 /* x86 resume path expects timestamps to be reset. */
238 if (IS_ENABLED(CONFIG_ARCH_ROMSTAGE_X86_32) && ENV_ROMSTAGE)
239 ts_cbmem_table = timestamp_alloc_cbmem_table();
240 else {
241 /* Find existing table in cbmem. */
242 ts_cbmem_table = cbmem_find(CBMEM_ID_TIMESTAMP);
243 /* No existing timestamp table. */
244 if (ts_cbmem_table == NULL)
245 ts_cbmem_table = timestamp_alloc_cbmem_table();
246 }
247 } else
248 /* First time sync. Add new table. */
249 ts_cbmem_table = timestamp_alloc_cbmem_table();
250
251 if (ts_cbmem_table == NULL) {
252 printk(BIOS_ERR, "ERROR: No timestamp table allocated\n");
253 return;
254 }
255
256 /*
257 * There's no need to worry about the base_time fields being out of
Julius Werner8c093772016-02-09 16:09:15 -0800258 * sync because only the following configurations are used/supported:
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500259 *
Julius Werner8c093772016-02-09 16:09:15 -0800260 * 1. Timestamps get initialized before ramstage, which implies
261 * CONFIG_EARLY_CBMEM_INIT and CBMEM initialization in romstage.
262 * This requires the board to define a TIMESTAMP() region in its
263 * memlayout.ld (default on x86). The base_time from timestamp_init()
264 * (usually called from bootblock.c on most non-x86 boards) persists
265 * in that region until it gets synced to CBMEM in romstage.
266 * In ramstage, the BSS cache's base_time will be 0 until the second
267 * sync, which will adjust the timestamps in there to the correct
268 * base_time (from CBMEM) with the timestamp_add_table_entry() below.
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500269 *
Julius Werner8c093772016-02-09 16:09:15 -0800270 * 2. Timestamps only get initialized in ramstage *and*
271 * CONFIG_LATE_CBMEM_INIT is set. main() will call timestamp_init()
272 * very early (before any timestamps get logged) to set a base_time
273 * in the BSS cache, which will later get synced over to CBMEM.
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500274 *
Julius Werner8c093772016-02-09 16:09:15 -0800275 * If you try to initialize timestamps before ramstage but don't define
276 * a TIMESTAMP region, all operations will fail (safely), and coreboot
277 * will behave as if timestamps only get initialized in ramstage.
278 *
279 * If CONFIG_EARLY_CBMEM_INIT is set but timestamps only get
280 * initialized in ramstage, the base_time from timestamp_init() will
281 * get ignored and all timestamps will be 0-based.
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500282 */
283 for (i = 0; i < ts_cache_table->num_entries; i++) {
284 struct timestamp_entry *tse = &ts_cache_table->entries[i];
285 timestamp_add_table_entry(ts_cbmem_table, tse->entry_id,
286 tse->entry_stamp);
287 }
288
289 /* Freshly added cbmem table has base_time 0. Inherit cache base_time */
290 if (ts_cbmem_table->base_time == 0)
291 ts_cbmem_table->base_time = ts_cache_table->base_time;
292
Aaron Durbinc49014e2015-08-30 21:19:55 -0500293 /* Seed the timestamp tick frequency in ramstage. */
294 if (ENV_RAMSTAGE)
295 ts_cbmem_table->tick_freq_mhz = timestamp_tick_freq_mhz();
296
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500297 /* Cache no longer required. */
298 ts_cache_table->num_entries = 0;
299 ts_cache->cache_state = TIMESTAMP_CACHE_NOT_NEEDED;
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300300}
Kyösti Mälkkicbf5bdf2013-09-10 00:07:21 +0300301
Kyösti Mälkki806ea08b2017-07-15 20:42:20 +0300302void timestamp_rescale_table(uint16_t N, uint16_t M)
303{
304 uint32_t i;
305 struct timestamp_table *ts_table;
306
307 if (!timestamp_should_run())
308 return;
309
310 if (N == 0 || M == 0)
311 return;
312
313 ts_table = timestamp_table_get();
314
315 /* No timestamp table found */
316 if (ts_table == NULL) {
317 printk(BIOS_ERR, "ERROR: No timestamp table found\n");
318 return;
319 }
320
321 ts_table->base_time /= M;
322 ts_table->base_time *= N;
323 for (i = 0; i < ts_table->num_entries; i++) {
324 struct timestamp_entry *tse = &ts_table->entries[i];
325 tse->entry_stamp /= M;
326 tse->entry_stamp *= N;
327 }
328}
329
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500330ROMSTAGE_CBMEM_INIT_HOOK(timestamp_sync_cache_to_cbmem)
331RAMSTAGE_CBMEM_INIT_HOOK(timestamp_sync_cache_to_cbmem)
Aaron Durbin9e80e272015-05-01 16:48:54 -0500332
333/* Provide default timestamp implementation using monotonic timer. */
334uint64_t __attribute__((weak)) timestamp_get(void)
335{
336 struct mono_time t1, t2;
337
Aaron Durbin7aafe532015-05-07 11:32:30 -0500338 if (!IS_ENABLED(CONFIG_HAVE_MONOTONIC_TIMER))
339 return 0;
340
Aaron Durbin9e80e272015-05-01 16:48:54 -0500341 mono_time_set_usecs(&t1, 0);
342 timer_monotonic_get(&t2);
343
344 return mono_time_diff_microseconds(&t1, &t2);
345}
Aaron Durbinc49014e2015-08-30 21:19:55 -0500346
347/* Like timestamp_get() above this matches up with microsecond granularity. */
348int __attribute__((weak)) timestamp_tick_freq_mhz(void)
349{
350 return 1;
351}