blob: 3fcf8829f33ce0b1bd83391a10493bca6cd97796 [file] [log] [blame]
Eric Biederman8ca8d762003-04-22 19:02:15 +00001/*
Aaron Durbin7e35efa2013-04-24 15:14:01 -05002 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 Google, Inc.
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.
Eric Biederman8ca8d762003-04-22 19:02:15 +000014 */
15
16
17/*
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000018 * C Bootstrap code for the coreboot
Eric Biederman8ca8d762003-04-22 19:02:15 +000019 */
20
Nico Hubere0ed9022016-10-07 12:58:17 +020021#include <adainit.h>
Julius Werner85620db2013-11-13 18:22:15 -080022#include <arch/exception.h>
Aaron Durbin7e35efa2013-04-24 15:14:01 -050023#include <bootstate.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000024#include <console/console.h>
Duncan Lauriecb73a842013-06-10 10:41:04 -070025#include <console/post_codes.h>
Kyösti Mälkki463ad512019-11-01 09:12:34 +020026#include <commonlib/helpers.h>
Aaron Durbinb0d8f5e2015-04-06 16:12:58 -050027#include <cbmem.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000028#include <version.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000029#include <device/device.h>
30#include <device/pci.h>
Eric Biederman9b4336c2003-07-19 04:28:22 +000031#include <delay.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000032#include <stdlib.h>
Stefan Reinauer7e9771c2009-04-22 08:17:38 +000033#include <boot/tables.h>
Aaron Durbin04654a22015-03-17 11:43:44 -050034#include <program_loading.h>
Julius Wernercd49cce2019-03-05 16:53:33 -080035#if CONFIG(HAVE_ACPI_RESUME)
Rudolf Mareka572f832009-04-13 17:57:44 +000036#include <arch/acpi.h>
Stefan Reinauer3935b192009-04-14 06:38:15 +000037#endif
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -050038#include <timer.h>
Stefan Reinauerbf729ba2011-11-04 12:31:58 -070039#include <timestamp.h>
Aaron Durbin4409a5e2013-05-06 12:20:52 -050040#include <thread.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000041
Aaron Durbin7e35efa2013-04-24 15:14:01 -050042static boot_state_t bs_pre_device(void *arg);
43static boot_state_t bs_dev_init_chips(void *arg);
44static boot_state_t bs_dev_enumerate(void *arg);
45static boot_state_t bs_dev_resources(void *arg);
David Hendrickscca68592013-06-20 14:08:27 -070046static boot_state_t bs_dev_enable(void *arg);
Aaron Durbin7e35efa2013-04-24 15:14:01 -050047static boot_state_t bs_dev_init(void *arg);
48static boot_state_t bs_post_device(void *arg);
Aaron Durbin0a6c20a2013-04-24 22:33:08 -050049static boot_state_t bs_os_resume_check(void *arg);
Aaron Durbin7e35efa2013-04-24 15:14:01 -050050static boot_state_t bs_os_resume(void *arg);
51static boot_state_t bs_write_tables(void *arg);
52static boot_state_t bs_payload_load(void *arg);
53static boot_state_t bs_payload_boot(void *arg);
54
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -050055/*
56 * Typically a state will take 4 time samples:
57 * 1. Before state entry callbacks
58 * 2. After state entry callbacks / Before state function.
59 * 3. After state function / Before state exit callbacks.
60 * 4. After state exit callbacks.
61 */
62#define MAX_TIME_SAMPLES 4
63struct boot_state_times {
64 int num_samples;
65 struct mono_time samples[MAX_TIME_SAMPLES];
Kyösti Mälkki45ddb432019-11-02 14:12:18 +020066 long console_usecs[MAX_TIME_SAMPLES];
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -050067};
68
Aaron Durbin0748d302013-05-06 10:50:19 -050069/* The prologue (BS_ON_ENTRY) and epilogue (BS_ON_EXIT) of a state can be
70 * blocked from transitioning to the next (state,seq) pair. When the blockers
71 * field is 0 a transition may occur. */
72struct boot_phase {
73 struct boot_state_callback *callbacks;
74 int blockers;
75};
76
Aaron Durbin7e35efa2013-04-24 15:14:01 -050077struct boot_state {
78 const char *name;
79 boot_state_t id;
Duncan Lauriecb73a842013-06-10 10:41:04 -070080 u8 post_code;
Aaron Durbin0748d302013-05-06 10:50:19 -050081 struct boot_phase phases[2];
Aaron Durbin7e35efa2013-04-24 15:14:01 -050082 boot_state_t (*run_state)(void *arg);
83 void *arg;
Aaron Durbin8fc41e12013-04-29 23:22:01 -050084 int complete : 1;
Julius Wernercd49cce2019-03-05 16:53:33 -080085#if CONFIG(HAVE_MONOTONIC_TIMER)
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -050086 struct boot_state_times times;
87#endif
Aaron Durbin7e35efa2013-04-24 15:14:01 -050088};
89
Aaron Durbin15c671e2013-05-06 10:52:24 -050090#define BS_INIT(state_, run_func_) \
Aaron Durbin8fc41e12013-04-29 23:22:01 -050091 { \
92 .name = #state_, \
93 .id = state_, \
Duncan Lauriecb73a842013-06-10 10:41:04 -070094 .post_code = POST_ ## state_, \
Aaron Durbin0748d302013-05-06 10:50:19 -050095 .phases = { { NULL, 0 }, { NULL, 0 } }, \
Aaron Durbin8fc41e12013-04-29 23:22:01 -050096 .run_state = run_func_, \
97 .arg = NULL, \
98 .complete = 0, \
Aaron Durbin7e35efa2013-04-24 15:14:01 -050099 }
100#define BS_INIT_ENTRY(state_, run_func_) \
Aaron Durbin15c671e2013-05-06 10:52:24 -0500101 [state_] = BS_INIT(state_, run_func_)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500102
103static struct boot_state boot_states[] = {
104 BS_INIT_ENTRY(BS_PRE_DEVICE, bs_pre_device),
105 BS_INIT_ENTRY(BS_DEV_INIT_CHIPS, bs_dev_init_chips),
106 BS_INIT_ENTRY(BS_DEV_ENUMERATE, bs_dev_enumerate),
107 BS_INIT_ENTRY(BS_DEV_RESOURCES, bs_dev_resources),
David Hendrickscca68592013-06-20 14:08:27 -0700108 BS_INIT_ENTRY(BS_DEV_ENABLE, bs_dev_enable),
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500109 BS_INIT_ENTRY(BS_DEV_INIT, bs_dev_init),
110 BS_INIT_ENTRY(BS_POST_DEVICE, bs_post_device),
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500111 BS_INIT_ENTRY(BS_OS_RESUME_CHECK, bs_os_resume_check),
Aaron Durbin15c671e2013-05-06 10:52:24 -0500112 BS_INIT_ENTRY(BS_OS_RESUME, bs_os_resume),
113 BS_INIT_ENTRY(BS_WRITE_TABLES, bs_write_tables),
114 BS_INIT_ENTRY(BS_PAYLOAD_LOAD, bs_payload_load),
115 BS_INIT_ENTRY(BS_PAYLOAD_BOOT, bs_payload_boot),
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500116};
117
Aaron Durbin64031672018-04-21 14:45:32 -0600118void __weak arch_bootstate_coreboot_exit(void) { }
Aaron Durbin16bd2672016-12-07 11:58:20 -0600119
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500120static boot_state_t bs_pre_device(void *arg)
121{
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500122 return BS_DEV_INIT_CHIPS;
123}
124
125static boot_state_t bs_dev_init_chips(void *arg)
126{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300127 timestamp_add_now(TS_DEVICE_ENUMERATE);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500128
129 /* Initialize chips early, they might disable unused devices. */
130 dev_initialize_chips();
131
132 return BS_DEV_ENUMERATE;
133}
134
135static boot_state_t bs_dev_enumerate(void *arg)
136{
137 /* Find the devices we don't have hard coded knowledge about. */
138 dev_enumerate();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500139
140 return BS_DEV_RESOURCES;
141}
142
143static boot_state_t bs_dev_resources(void *arg)
144{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300145 timestamp_add_now(TS_DEVICE_CONFIGURE);
Duncan Lauriecb73a842013-06-10 10:41:04 -0700146
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500147 /* Now compute and assign the bus resources. */
148 dev_configure();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500149
150 return BS_DEV_ENABLE;
151}
152
David Hendrickscca68592013-06-20 14:08:27 -0700153static boot_state_t bs_dev_enable(void *arg)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500154{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300155 timestamp_add_now(TS_DEVICE_ENABLE);
Duncan Lauriecb73a842013-06-10 10:41:04 -0700156
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500157 /* Now actually enable devices on the bus */
158 dev_enable();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500159
160 return BS_DEV_INIT;
161}
162
163static boot_state_t bs_dev_init(void *arg)
164{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300165 timestamp_add_now(TS_DEVICE_INITIALIZE);
Duncan Lauriecb73a842013-06-10 10:41:04 -0700166
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500167 /* And of course initialize devices on the bus */
168 dev_initialize();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500169
170 return BS_POST_DEVICE;
171}
172
173static boot_state_t bs_post_device(void *arg)
174{
Marc Jones2a58ecd2013-10-29 17:32:00 -0600175 dev_finalize();
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300176 timestamp_add_now(TS_DEVICE_DONE);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500177
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500178 return BS_OS_RESUME_CHECK;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500179}
180
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500181static boot_state_t bs_os_resume_check(void *arg)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500182{
Julius Wernercd49cce2019-03-05 16:53:33 -0800183#if CONFIG(HAVE_ACPI_RESUME)
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500184 void *wake_vector;
185
186 wake_vector = acpi_find_wakeup_vector();
187
188 if (wake_vector != NULL) {
189 boot_states[BS_OS_RESUME].arg = wake_vector;
190 return BS_OS_RESUME;
191 }
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500192#endif
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500193 timestamp_add_now(TS_CBMEM_POST);
194
195 return BS_WRITE_TABLES;
196}
197
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500198static boot_state_t bs_os_resume(void *wake_vector)
199{
Julius Wernercd49cce2019-03-05 16:53:33 -0800200#if CONFIG(HAVE_ACPI_RESUME)
Aaron Durbin16bd2672016-12-07 11:58:20 -0600201 arch_bootstate_coreboot_exit();
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500202 acpi_resume(wake_vector);
203#endif
204 return BS_WRITE_TABLES;
205}
206
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500207static boot_state_t bs_write_tables(void *arg)
208{
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500209 timestamp_add_now(TS_WRITE_TABLES);
210
211 /* Now that we have collected all of our information
212 * write our configuration tables.
213 */
214 write_tables();
215
Paul Menzel00563bf2016-12-05 23:06:37 +0100216 timestamp_add_now(TS_FINALIZE_CHIPS);
Marc Jones2a58ecd2013-10-29 17:32:00 -0600217 dev_finalize_chips();
218
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500219 return BS_PAYLOAD_LOAD;
220}
221
222static boot_state_t bs_payload_load(void *arg)
223{
Aaron Durbinebf2ed42015-03-20 10:20:15 -0500224 payload_load();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500225
226 return BS_PAYLOAD_BOOT;
227}
228
Aaron Durbinbdf913a2014-02-24 14:56:34 -0600229static boot_state_t bs_payload_boot(void *arg)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500230{
Aaron Durbin16bd2672016-12-07 11:58:20 -0600231 arch_bootstate_coreboot_exit();
Aaron Durbinebf2ed42015-03-20 10:20:15 -0500232 payload_run();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500233
Jonathan Neuschäfer0a54fb52016-05-27 09:05:02 +0200234 printk(BIOS_EMERG, "Boot failed\n");
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500235 /* Returning from this state will fail because the following signals
236 * return to a completed state. */
237 return BS_PAYLOAD_BOOT;
238}
239
Julius Wernercd49cce2019-03-05 16:53:33 -0800240#if CONFIG(HAVE_MONOTONIC_TIMER)
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500241static void bs_sample_time(struct boot_state *state)
242{
243 struct mono_time *mt;
244
Kyösti Mälkki45ddb432019-11-02 14:12:18 +0200245 long console_usecs = console_time_get_and_reset();
246 state->times.console_usecs[state->times.num_samples] = console_usecs;
247
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500248 mt = &state->times.samples[state->times.num_samples];
249 timer_monotonic_get(mt);
250 state->times.num_samples++;
251}
252
253static void bs_report_time(struct boot_state *state)
254{
Aaron Durbinad5a9092014-09-24 09:48:47 -0500255 long entry_time;
256 long run_time;
257 long exit_time;
258 struct mono_time *samples = &state->times.samples[0];
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500259
Aaron Durbinad5a9092014-09-24 09:48:47 -0500260 entry_time = mono_time_diff_microseconds(&samples[0], &samples[1]);
261 run_time = mono_time_diff_microseconds(&samples[1], &samples[2]);
262 exit_time = mono_time_diff_microseconds(&samples[2], &samples[3]);
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500263
Kyösti Mälkki45ddb432019-11-02 14:12:18 +0200264 entry_time -= state->times.console_usecs[1];
265 run_time -= state->times.console_usecs[2];
266 exit_time -= state->times.console_usecs[3];
267
Kyösti Mälkki463ad512019-11-01 09:12:34 +0200268 /* Report with millisecond precision to reduce log diffs. */
269 entry_time = DIV_ROUND_CLOSEST(entry_time, USECS_PER_MSEC);
270 run_time = DIV_ROUND_CLOSEST(run_time, USECS_PER_MSEC);
271 exit_time = DIV_ROUND_CLOSEST(exit_time, USECS_PER_MSEC);
272
273 printk(BIOS_DEBUG, "BS: %s times (ms): entry %ld run %ld exit %ld\n",
Aaron Durbinad5a9092014-09-24 09:48:47 -0500274 state->name, entry_time, run_time, exit_time);
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500275}
276#else
277static inline void bs_sample_time(struct boot_state *state) {}
278static inline void bs_report_time(struct boot_state *state) {}
279#endif
280
Julius Wernercd49cce2019-03-05 16:53:33 -0800281#if CONFIG(TIMER_QUEUE)
Aaron Durbin8fc41e12013-04-29 23:22:01 -0500282static void bs_run_timers(int drain)
283{
284 /* Drain all timer callbacks until none are left, if directed.
285 * Otherwise run the timers only once. */
286 do {
287 if (!timers_run())
288 break;
289 } while (drain);
290}
291#else
292static void bs_run_timers(int drain) {}
293#endif
294
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500295static void bs_call_callbacks(struct boot_state *state,
Lee Leahye20a3192017-03-09 16:21:34 -0800296 boot_state_sequence_t seq)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500297{
Aaron Durbin0748d302013-05-06 10:50:19 -0500298 struct boot_phase *phase = &state->phases[seq];
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500299
Aaron Durbin0748d302013-05-06 10:50:19 -0500300 while (1) {
301 if (phase->callbacks != NULL) {
302 struct boot_state_callback *bscb;
303
304 /* Remove the first callback. */
305 bscb = phase->callbacks;
306 phase->callbacks = bscb->next;
307 bscb->next = NULL;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500308
Julius Wernercd49cce2019-03-05 16:53:33 -0800309#if CONFIG(DEBUG_BOOT_STATE)
Lee Leahy10605352016-02-14 17:01:40 -0800310 printk(BIOS_DEBUG, "BS: callback (%p) @ %s.\n",
311 bscb, bscb->location);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500312#endif
Aaron Durbin0748d302013-05-06 10:50:19 -0500313 bscb->callback(bscb->arg);
Aaron Durbin0748d302013-05-06 10:50:19 -0500314 continue;
315 }
316
317 /* All callbacks are complete and there are no blockers for
318 * this state. Therefore, this part of the state is complete. */
319 if (!phase->blockers)
320 break;
321
322 /* Something is blocking this state from transitioning. As
323 * there are no more callbacks a pending timer needs to be
324 * ran to unblock the state. */
325 bs_run_timers(0);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500326 }
327}
328
Aaron Durbin0748d302013-05-06 10:50:19 -0500329/* Keep track of the current state. */
330static struct state_tracker {
331 boot_state_t state_id;
332 boot_state_sequence_t seq;
333} current_phase = {
334 .state_id = BS_PRE_DEVICE,
335 .seq = BS_ON_ENTRY,
336};
337
338static void bs_walk_state_machine(void)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500339{
340
341 while (1) {
342 struct boot_state *state;
Aaron Durbin0748d302013-05-06 10:50:19 -0500343 boot_state_t next_id;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500344
Aaron Durbin0748d302013-05-06 10:50:19 -0500345 state = &boot_states[current_phase.state_id];
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500346
347 if (state->complete) {
348 printk(BIOS_EMERG, "BS: %s state already executed.\n",
349 state->name);
350 break;
351 }
352
Julius Wernercd49cce2019-03-05 16:53:33 -0800353 if (CONFIG(DEBUG_BOOT_STATE))
Lee Leahy10605352016-02-14 17:01:40 -0800354 printk(BIOS_DEBUG, "BS: Entering %s state.\n",
355 state->name);
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500356
Aaron Durbin15c671e2013-05-06 10:52:24 -0500357 bs_run_timers(0);
Aaron Durbin8fc41e12013-04-29 23:22:01 -0500358
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500359 bs_sample_time(state);
360
Aaron Durbin0748d302013-05-06 10:50:19 -0500361 bs_call_callbacks(state, current_phase.seq);
362 /* Update the current sequence so that any calls to block the
363 * current state from the run_state() function will place a
364 * block on the correct phase. */
365 current_phase.seq = BS_ON_EXIT;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500366
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500367 bs_sample_time(state);
368
Duncan Lauriecb73a842013-06-10 10:41:04 -0700369 post_code(state->post_code);
370
Aaron Durbin0748d302013-05-06 10:50:19 -0500371 next_id = state->run_state(state->arg);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500372
Julius Wernercd49cce2019-03-05 16:53:33 -0800373 if (CONFIG(DEBUG_BOOT_STATE))
Lee Leahy10605352016-02-14 17:01:40 -0800374 printk(BIOS_DEBUG, "BS: Exiting %s state.\n",
375 state->name);
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500376
377 bs_sample_time(state);
378
Aaron Durbin0748d302013-05-06 10:50:19 -0500379 bs_call_callbacks(state, current_phase.seq);
380
Julius Wernercd49cce2019-03-05 16:53:33 -0800381 if (CONFIG(DEBUG_BOOT_STATE))
Lee Leahy10605352016-02-14 17:01:40 -0800382 printk(BIOS_DEBUG,
383 "----------------------------------------\n");
384
Aaron Durbin0748d302013-05-06 10:50:19 -0500385 /* Update the current phase with new state id and sequence. */
386 current_phase.state_id = next_id;
387 current_phase.seq = BS_ON_ENTRY;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500388
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500389 bs_sample_time(state);
390
391 bs_report_time(state);
392
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500393 state->complete = 1;
394 }
395}
396
397static int boot_state_sched_callback(struct boot_state *state,
Lee Leahye20a3192017-03-09 16:21:34 -0800398 struct boot_state_callback *bscb,
399 boot_state_sequence_t seq)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500400{
401 if (state->complete) {
402 printk(BIOS_WARNING,
403 "Tried to schedule callback on completed state %s.\n",
404 state->name);
405
406 return -1;
407 }
408
Aaron Durbin0748d302013-05-06 10:50:19 -0500409 bscb->next = state->phases[seq].callbacks;
410 state->phases[seq].callbacks = bscb;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500411
412 return 0;
413}
414
415int boot_state_sched_on_entry(struct boot_state_callback *bscb,
Lee Leahye20a3192017-03-09 16:21:34 -0800416 boot_state_t state_id)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500417{
418 struct boot_state *state = &boot_states[state_id];
419
420 return boot_state_sched_callback(state, bscb, BS_ON_ENTRY);
421}
422
423int boot_state_sched_on_exit(struct boot_state_callback *bscb,
Lee Leahye20a3192017-03-09 16:21:34 -0800424 boot_state_t state_id)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500425{
426 struct boot_state *state = &boot_states[state_id];
427
428 return boot_state_sched_callback(state, bscb, BS_ON_EXIT);
429}
Maciej Pijankaea921852009-10-27 14:29:29 +0000430
Aaron Durbina4feddf2013-04-24 16:12:52 -0500431static void boot_state_schedule_static_entries(void)
432{
Aaron Durbin9ef9d852015-03-16 17:30:09 -0500433 extern struct boot_state_init_entry *_bs_init_begin[];
434 struct boot_state_init_entry **slot;
Aaron Durbina4feddf2013-04-24 16:12:52 -0500435
Aaron Durbin9ef9d852015-03-16 17:30:09 -0500436 for (slot = &_bs_init_begin[0]; *slot != NULL; slot++) {
437 struct boot_state_init_entry *cur = *slot;
Aaron Durbina4feddf2013-04-24 16:12:52 -0500438
Aaron Durbina4feddf2013-04-24 16:12:52 -0500439 if (cur->when == BS_ON_ENTRY)
440 boot_state_sched_on_entry(&cur->bscb, cur->state);
441 else
442 boot_state_sched_on_exit(&cur->bscb, cur->state);
Aaron Durbina4feddf2013-04-24 16:12:52 -0500443 }
444}
445
Stefan Reinauer6adef082013-05-09 16:30:06 -0700446void main(void)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000447{
Nico Hubere0ed9022016-10-07 12:58:17 +0200448 /*
449 * We can generally jump between C and Ada code back and forth
450 * without trouble. But since we don't have an Ada main() we
451 * have to do some Ada package initializations that GNAT would
452 * do there. This has to be done before calling any Ada code.
453 *
454 * The package initializations should not have any dependen-
455 * cies on C code. So we can call them here early, and don't
456 * have to worry at which point we can start to use Ada.
457 */
458 ramstage_adainit();
459
Duncan Lauriea5181512015-06-04 08:42:48 -0700460 /* TODO: Understand why this is here and move to arch/platform code. */
461 /* For MMIO UART this needs to be called before any other printk. */
Julius Wernercd49cce2019-03-05 16:53:33 -0800462 if (CONFIG(ARCH_X86))
Duncan Lauriea5181512015-06-04 08:42:48 -0700463 init_timer();
464
Aaron Durbinbe347972015-04-21 11:57:18 -0500465 /* console_init() MUST PRECEDE ALL printk()! Additionally, ensure
466 * it is the very first thing done in ramstage.*/
467 console_init();
Aaron Durbinbe347972015-04-21 11:57:18 -0500468 post_code(POST_CONSOLE_READY);
469
Asami Doi38a12862019-08-22 11:15:12 +0900470 exception_init();
471
Aaron Durbinb0d8f5e2015-04-06 16:12:58 -0500472 /*
Subrata Banik91160e12019-01-29 17:16:15 +0530473 * CBMEM needs to be recovered because timestamps, ACPI, etc rely on
Kyösti Mälkki513a1a82018-06-03 12:29:50 +0300474 * the cbmem infrastructure being around. Explicitly recover it.
Aaron Durbinb0d8f5e2015-04-06 16:12:58 -0500475 */
Kyösti Mälkki513a1a82018-06-03 12:29:50 +0300476 cbmem_initialize();
Aaron Durbinb0d8f5e2015-04-06 16:12:58 -0500477
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300478 timestamp_add_now(TS_START_RAMSTAGE);
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000479 post_code(POST_ENTRY_RAMSTAGE);
Li-Ta Lo6a8745ae2004-05-13 20:39:07 +0000480
Kyösti Mälkkidb8693b2014-06-19 23:29:07 +0300481 /* Handoff sleep type from romstage. */
Julius Wernercd49cce2019-03-05 16:53:33 -0800482#if CONFIG(HAVE_ACPI_RESUME)
Kyösti Mälkkidb8693b2014-06-19 23:29:07 +0300483 acpi_is_wakeup();
484#endif
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500485 threads_initialize();
486
Aaron Durbina4feddf2013-04-24 16:12:52 -0500487 /* Schedule the static boot state entries. */
488 boot_state_schedule_static_entries();
489
Aaron Durbin0748d302013-05-06 10:50:19 -0500490 bs_walk_state_machine();
491
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500492 die("Boot state machine failure.\n");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000493}
494
Aaron Durbin0748d302013-05-06 10:50:19 -0500495
496int boot_state_block(boot_state_t state, boot_state_sequence_t seq)
497{
498 struct boot_phase *bp;
499
500 /* Blocking a previously ran state is not appropriate. */
501 if (current_phase.state_id > state ||
Lee Leahyd638ef42017-03-07 09:47:22 -0800502 (current_phase.state_id == state && current_phase.seq > seq)) {
Aaron Durbin0748d302013-05-06 10:50:19 -0500503 printk(BIOS_WARNING,
504 "BS: Completed state (%d, %d) block attempted.\n",
505 state, seq);
506 return -1;
507 }
508
509 bp = &boot_states[state].phases[seq];
510 bp->blockers++;
511
512 return 0;
513}
514
515int boot_state_unblock(boot_state_t state, boot_state_sequence_t seq)
516{
517 struct boot_phase *bp;
518
519 /* Blocking a previously ran state is not appropriate. */
520 if (current_phase.state_id > state ||
Lee Leahyd638ef42017-03-07 09:47:22 -0800521 (current_phase.state_id == state && current_phase.seq > seq)) {
Aaron Durbin0748d302013-05-06 10:50:19 -0500522 printk(BIOS_WARNING,
523 "BS: Completed state (%d, %d) unblock attempted.\n",
524 state, seq);
525 return -1;
526 }
527
528 bp = &boot_states[state].phases[seq];
529
530 if (bp->blockers == 0) {
531 printk(BIOS_WARNING,
532 "BS: Unblock attempted on non-blocked state (%d, %d).\n",
533 state, seq);
534 return -1;
535 }
536
537 bp->blockers--;
538
539 return 0;
540}
541
542void boot_state_current_block(void)
543{
544 boot_state_block(current_phase.state_id, current_phase.seq);
545}
546
547void boot_state_current_unblock(void)
548{
549 boot_state_unblock(current_phase.state_id, current_phase.seq);
550}