blob: 493ff2dcdec4d644f10cbdecbc1b1c3f795ac413 [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>
Aaron Durbinb0d8f5e2015-04-06 16:12:58 -050026#include <cbmem.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000027#include <version.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000028#include <device/device.h>
29#include <device/pci.h>
Eric Biederman9b4336c2003-07-19 04:28:22 +000030#include <delay.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000031#include <stdlib.h>
Stefan Reinauerde3206a2010-02-22 06:09:43 +000032#include <reset.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];
66};
67
Aaron Durbin0748d302013-05-06 10:50:19 -050068/* The prologue (BS_ON_ENTRY) and epilogue (BS_ON_EXIT) of a state can be
69 * blocked from transitioning to the next (state,seq) pair. When the blockers
70 * field is 0 a transition may occur. */
71struct boot_phase {
72 struct boot_state_callback *callbacks;
73 int blockers;
74};
75
Aaron Durbin7e35efa2013-04-24 15:14:01 -050076struct boot_state {
77 const char *name;
78 boot_state_t id;
Duncan Lauriecb73a842013-06-10 10:41:04 -070079 u8 post_code;
Aaron Durbin0748d302013-05-06 10:50:19 -050080 struct boot_phase phases[2];
Aaron Durbin7e35efa2013-04-24 15:14:01 -050081 boot_state_t (*run_state)(void *arg);
82 void *arg;
Aaron Durbin8fc41e12013-04-29 23:22:01 -050083 int complete : 1;
Julius Wernercd49cce2019-03-05 16:53:33 -080084#if CONFIG(HAVE_MONOTONIC_TIMER)
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -050085 struct boot_state_times times;
86#endif
Aaron Durbin7e35efa2013-04-24 15:14:01 -050087};
88
Aaron Durbin15c671e2013-05-06 10:52:24 -050089#define BS_INIT(state_, run_func_) \
Aaron Durbin8fc41e12013-04-29 23:22:01 -050090 { \
91 .name = #state_, \
92 .id = state_, \
Duncan Lauriecb73a842013-06-10 10:41:04 -070093 .post_code = POST_ ## state_, \
Aaron Durbin0748d302013-05-06 10:50:19 -050094 .phases = { { NULL, 0 }, { NULL, 0 } }, \
Aaron Durbin8fc41e12013-04-29 23:22:01 -050095 .run_state = run_func_, \
96 .arg = NULL, \
97 .complete = 0, \
Aaron Durbin7e35efa2013-04-24 15:14:01 -050098 }
99#define BS_INIT_ENTRY(state_, run_func_) \
Aaron Durbin15c671e2013-05-06 10:52:24 -0500100 [state_] = BS_INIT(state_, run_func_)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500101
102static struct boot_state boot_states[] = {
103 BS_INIT_ENTRY(BS_PRE_DEVICE, bs_pre_device),
104 BS_INIT_ENTRY(BS_DEV_INIT_CHIPS, bs_dev_init_chips),
105 BS_INIT_ENTRY(BS_DEV_ENUMERATE, bs_dev_enumerate),
106 BS_INIT_ENTRY(BS_DEV_RESOURCES, bs_dev_resources),
David Hendrickscca68592013-06-20 14:08:27 -0700107 BS_INIT_ENTRY(BS_DEV_ENABLE, bs_dev_enable),
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500108 BS_INIT_ENTRY(BS_DEV_INIT, bs_dev_init),
109 BS_INIT_ENTRY(BS_POST_DEVICE, bs_post_device),
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500110 BS_INIT_ENTRY(BS_OS_RESUME_CHECK, bs_os_resume_check),
Aaron Durbin15c671e2013-05-06 10:52:24 -0500111 BS_INIT_ENTRY(BS_OS_RESUME, bs_os_resume),
112 BS_INIT_ENTRY(BS_WRITE_TABLES, bs_write_tables),
113 BS_INIT_ENTRY(BS_PAYLOAD_LOAD, bs_payload_load),
114 BS_INIT_ENTRY(BS_PAYLOAD_BOOT, bs_payload_boot),
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500115};
116
Aaron Durbin64031672018-04-21 14:45:32 -0600117void __weak arch_bootstate_coreboot_exit(void) { }
Aaron Durbin16bd2672016-12-07 11:58:20 -0600118
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500119static boot_state_t bs_pre_device(void *arg)
120{
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500121 return BS_DEV_INIT_CHIPS;
122}
123
124static boot_state_t bs_dev_init_chips(void *arg)
125{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300126 timestamp_add_now(TS_DEVICE_ENUMERATE);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500127
128 /* Initialize chips early, they might disable unused devices. */
129 dev_initialize_chips();
130
131 return BS_DEV_ENUMERATE;
132}
133
134static boot_state_t bs_dev_enumerate(void *arg)
135{
136 /* Find the devices we don't have hard coded knowledge about. */
137 dev_enumerate();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500138
139 return BS_DEV_RESOURCES;
140}
141
142static boot_state_t bs_dev_resources(void *arg)
143{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300144 timestamp_add_now(TS_DEVICE_CONFIGURE);
Duncan Lauriecb73a842013-06-10 10:41:04 -0700145
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500146 /* Now compute and assign the bus resources. */
147 dev_configure();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500148
149 return BS_DEV_ENABLE;
150}
151
David Hendrickscca68592013-06-20 14:08:27 -0700152static boot_state_t bs_dev_enable(void *arg)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500153{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300154 timestamp_add_now(TS_DEVICE_ENABLE);
Duncan Lauriecb73a842013-06-10 10:41:04 -0700155
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500156 /* Now actually enable devices on the bus */
157 dev_enable();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500158
159 return BS_DEV_INIT;
160}
161
162static boot_state_t bs_dev_init(void *arg)
163{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300164 timestamp_add_now(TS_DEVICE_INITIALIZE);
Duncan Lauriecb73a842013-06-10 10:41:04 -0700165
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500166 /* And of course initialize devices on the bus */
167 dev_initialize();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500168
169 return BS_POST_DEVICE;
170}
171
172static boot_state_t bs_post_device(void *arg)
173{
Marc Jones2a58ecd2013-10-29 17:32:00 -0600174 dev_finalize();
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300175 timestamp_add_now(TS_DEVICE_DONE);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500176
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500177 return BS_OS_RESUME_CHECK;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500178}
179
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500180static boot_state_t bs_os_resume_check(void *arg)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500181{
Julius Wernercd49cce2019-03-05 16:53:33 -0800182#if CONFIG(HAVE_ACPI_RESUME)
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500183 void *wake_vector;
184
185 wake_vector = acpi_find_wakeup_vector();
186
187 if (wake_vector != NULL) {
188 boot_states[BS_OS_RESUME].arg = wake_vector;
189 return BS_OS_RESUME;
190 }
Kyösti Mälkki7b14f082014-10-16 20:58:47 +0300191
192 acpi_prepare_resume_backup();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500193#endif
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500194 timestamp_add_now(TS_CBMEM_POST);
195
196 return BS_WRITE_TABLES;
197}
198
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500199static boot_state_t bs_os_resume(void *wake_vector)
200{
Julius Wernercd49cce2019-03-05 16:53:33 -0800201#if CONFIG(HAVE_ACPI_RESUME)
Aaron Durbin16bd2672016-12-07 11:58:20 -0600202 arch_bootstate_coreboot_exit();
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500203 acpi_resume(wake_vector);
204#endif
205 return BS_WRITE_TABLES;
206}
207
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500208static boot_state_t bs_write_tables(void *arg)
209{
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500210 timestamp_add_now(TS_WRITE_TABLES);
211
212 /* Now that we have collected all of our information
213 * write our configuration tables.
214 */
215 write_tables();
216
Paul Menzel00563bf2016-12-05 23:06:37 +0100217 timestamp_add_now(TS_FINALIZE_CHIPS);
Marc Jones2a58ecd2013-10-29 17:32:00 -0600218 dev_finalize_chips();
219
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500220 return BS_PAYLOAD_LOAD;
221}
222
223static boot_state_t bs_payload_load(void *arg)
224{
Aaron Durbinebf2ed42015-03-20 10:20:15 -0500225 payload_load();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500226
227 return BS_PAYLOAD_BOOT;
228}
229
Aaron Durbinbdf913a2014-02-24 14:56:34 -0600230static boot_state_t bs_payload_boot(void *arg)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500231{
Aaron Durbin16bd2672016-12-07 11:58:20 -0600232 arch_bootstate_coreboot_exit();
Aaron Durbinebf2ed42015-03-20 10:20:15 -0500233 payload_run();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500234
Jonathan Neuschäfer0a54fb52016-05-27 09:05:02 +0200235 printk(BIOS_EMERG, "Boot failed\n");
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500236 /* Returning from this state will fail because the following signals
237 * return to a completed state. */
238 return BS_PAYLOAD_BOOT;
239}
240
Julius Wernercd49cce2019-03-05 16:53:33 -0800241#if CONFIG(HAVE_MONOTONIC_TIMER)
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500242static void bs_sample_time(struct boot_state *state)
243{
244 struct mono_time *mt;
245
246 mt = &state->times.samples[state->times.num_samples];
247 timer_monotonic_get(mt);
248 state->times.num_samples++;
249}
250
251static void bs_report_time(struct boot_state *state)
252{
Aaron Durbinad5a9092014-09-24 09:48:47 -0500253 long entry_time;
254 long run_time;
255 long exit_time;
256 struct mono_time *samples = &state->times.samples[0];
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500257
Aaron Durbinad5a9092014-09-24 09:48:47 -0500258 entry_time = mono_time_diff_microseconds(&samples[0], &samples[1]);
259 run_time = mono_time_diff_microseconds(&samples[1], &samples[2]);
260 exit_time = mono_time_diff_microseconds(&samples[2], &samples[3]);
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500261
262 printk(BIOS_DEBUG, "BS: %s times (us): entry %ld run %ld exit %ld\n",
Aaron Durbinad5a9092014-09-24 09:48:47 -0500263 state->name, entry_time, run_time, exit_time);
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500264}
265#else
266static inline void bs_sample_time(struct boot_state *state) {}
267static inline void bs_report_time(struct boot_state *state) {}
268#endif
269
Julius Wernercd49cce2019-03-05 16:53:33 -0800270#if CONFIG(TIMER_QUEUE)
Aaron Durbin8fc41e12013-04-29 23:22:01 -0500271static void bs_run_timers(int drain)
272{
273 /* Drain all timer callbacks until none are left, if directed.
274 * Otherwise run the timers only once. */
275 do {
276 if (!timers_run())
277 break;
278 } while (drain);
279}
280#else
281static void bs_run_timers(int drain) {}
282#endif
283
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500284static void bs_call_callbacks(struct boot_state *state,
Lee Leahye20a3192017-03-09 16:21:34 -0800285 boot_state_sequence_t seq)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500286{
Aaron Durbin0748d302013-05-06 10:50:19 -0500287 struct boot_phase *phase = &state->phases[seq];
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500288
Aaron Durbin0748d302013-05-06 10:50:19 -0500289 while (1) {
290 if (phase->callbacks != NULL) {
291 struct boot_state_callback *bscb;
292
293 /* Remove the first callback. */
294 bscb = phase->callbacks;
295 phase->callbacks = bscb->next;
296 bscb->next = NULL;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500297
Julius Wernercd49cce2019-03-05 16:53:33 -0800298#if CONFIG(DEBUG_BOOT_STATE)
Lee Leahy10605352016-02-14 17:01:40 -0800299 printk(BIOS_DEBUG, "BS: callback (%p) @ %s.\n",
300 bscb, bscb->location);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500301#endif
Aaron Durbin0748d302013-05-06 10:50:19 -0500302 bscb->callback(bscb->arg);
Aaron Durbin0748d302013-05-06 10:50:19 -0500303 continue;
304 }
305
306 /* All callbacks are complete and there are no blockers for
307 * this state. Therefore, this part of the state is complete. */
308 if (!phase->blockers)
309 break;
310
311 /* Something is blocking this state from transitioning. As
312 * there are no more callbacks a pending timer needs to be
313 * ran to unblock the state. */
314 bs_run_timers(0);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500315 }
316}
317
Aaron Durbin0748d302013-05-06 10:50:19 -0500318/* Keep track of the current state. */
319static struct state_tracker {
320 boot_state_t state_id;
321 boot_state_sequence_t seq;
322} current_phase = {
323 .state_id = BS_PRE_DEVICE,
324 .seq = BS_ON_ENTRY,
325};
326
327static void bs_walk_state_machine(void)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500328{
329
330 while (1) {
331 struct boot_state *state;
Aaron Durbin0748d302013-05-06 10:50:19 -0500332 boot_state_t next_id;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500333
Aaron Durbin0748d302013-05-06 10:50:19 -0500334 state = &boot_states[current_phase.state_id];
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500335
336 if (state->complete) {
337 printk(BIOS_EMERG, "BS: %s state already executed.\n",
338 state->name);
339 break;
340 }
341
Julius Wernercd49cce2019-03-05 16:53:33 -0800342 if (CONFIG(DEBUG_BOOT_STATE))
Lee Leahy10605352016-02-14 17:01:40 -0800343 printk(BIOS_DEBUG, "BS: Entering %s state.\n",
344 state->name);
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500345
Aaron Durbin15c671e2013-05-06 10:52:24 -0500346 bs_run_timers(0);
Aaron Durbin8fc41e12013-04-29 23:22:01 -0500347
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500348 bs_sample_time(state);
349
Aaron Durbin0748d302013-05-06 10:50:19 -0500350 bs_call_callbacks(state, current_phase.seq);
351 /* Update the current sequence so that any calls to block the
352 * current state from the run_state() function will place a
353 * block on the correct phase. */
354 current_phase.seq = BS_ON_EXIT;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500355
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500356 bs_sample_time(state);
357
Duncan Lauriecb73a842013-06-10 10:41:04 -0700358 post_code(state->post_code);
359
Aaron Durbin0748d302013-05-06 10:50:19 -0500360 next_id = state->run_state(state->arg);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500361
Julius Wernercd49cce2019-03-05 16:53:33 -0800362 if (CONFIG(DEBUG_BOOT_STATE))
Lee Leahy10605352016-02-14 17:01:40 -0800363 printk(BIOS_DEBUG, "BS: Exiting %s state.\n",
364 state->name);
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500365
366 bs_sample_time(state);
367
Aaron Durbin0748d302013-05-06 10:50:19 -0500368 bs_call_callbacks(state, current_phase.seq);
369
Julius Wernercd49cce2019-03-05 16:53:33 -0800370 if (CONFIG(DEBUG_BOOT_STATE))
Lee Leahy10605352016-02-14 17:01:40 -0800371 printk(BIOS_DEBUG,
372 "----------------------------------------\n");
373
Aaron Durbin0748d302013-05-06 10:50:19 -0500374 /* Update the current phase with new state id and sequence. */
375 current_phase.state_id = next_id;
376 current_phase.seq = BS_ON_ENTRY;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500377
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500378 bs_sample_time(state);
379
380 bs_report_time(state);
381
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500382 state->complete = 1;
383 }
384}
385
386static int boot_state_sched_callback(struct boot_state *state,
Lee Leahye20a3192017-03-09 16:21:34 -0800387 struct boot_state_callback *bscb,
388 boot_state_sequence_t seq)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500389{
390 if (state->complete) {
391 printk(BIOS_WARNING,
392 "Tried to schedule callback on completed state %s.\n",
393 state->name);
394
395 return -1;
396 }
397
Aaron Durbin0748d302013-05-06 10:50:19 -0500398 bscb->next = state->phases[seq].callbacks;
399 state->phases[seq].callbacks = bscb;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500400
401 return 0;
402}
403
404int boot_state_sched_on_entry(struct boot_state_callback *bscb,
Lee Leahye20a3192017-03-09 16:21:34 -0800405 boot_state_t state_id)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500406{
407 struct boot_state *state = &boot_states[state_id];
408
409 return boot_state_sched_callback(state, bscb, BS_ON_ENTRY);
410}
411
412int boot_state_sched_on_exit(struct boot_state_callback *bscb,
Lee Leahye20a3192017-03-09 16:21:34 -0800413 boot_state_t state_id)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500414{
415 struct boot_state *state = &boot_states[state_id];
416
417 return boot_state_sched_callback(state, bscb, BS_ON_EXIT);
418}
Maciej Pijankaea921852009-10-27 14:29:29 +0000419
Aaron Durbina4feddf2013-04-24 16:12:52 -0500420static void boot_state_schedule_static_entries(void)
421{
Aaron Durbin9ef9d852015-03-16 17:30:09 -0500422 extern struct boot_state_init_entry *_bs_init_begin[];
423 struct boot_state_init_entry **slot;
Aaron Durbina4feddf2013-04-24 16:12:52 -0500424
Aaron Durbin9ef9d852015-03-16 17:30:09 -0500425 for (slot = &_bs_init_begin[0]; *slot != NULL; slot++) {
426 struct boot_state_init_entry *cur = *slot;
Aaron Durbina4feddf2013-04-24 16:12:52 -0500427
Aaron Durbina4feddf2013-04-24 16:12:52 -0500428 if (cur->when == BS_ON_ENTRY)
429 boot_state_sched_on_entry(&cur->bscb, cur->state);
430 else
431 boot_state_sched_on_exit(&cur->bscb, cur->state);
Aaron Durbina4feddf2013-04-24 16:12:52 -0500432 }
433}
434
Stefan Reinauer6adef082013-05-09 16:30:06 -0700435void main(void)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000436{
Nico Hubere0ed9022016-10-07 12:58:17 +0200437 /*
438 * We can generally jump between C and Ada code back and forth
439 * without trouble. But since we don't have an Ada main() we
440 * have to do some Ada package initializations that GNAT would
441 * do there. This has to be done before calling any Ada code.
442 *
443 * The package initializations should not have any dependen-
444 * cies on C code. So we can call them here early, and don't
445 * have to worry at which point we can start to use Ada.
446 */
447 ramstage_adainit();
448
Duncan Lauriea5181512015-06-04 08:42:48 -0700449 /* TODO: Understand why this is here and move to arch/platform code. */
450 /* For MMIO UART this needs to be called before any other printk. */
Julius Wernercd49cce2019-03-05 16:53:33 -0800451 if (CONFIG(ARCH_X86))
Duncan Lauriea5181512015-06-04 08:42:48 -0700452 init_timer();
453
Aaron Durbinbe347972015-04-21 11:57:18 -0500454 /* console_init() MUST PRECEDE ALL printk()! Additionally, ensure
455 * it is the very first thing done in ramstage.*/
456 console_init();
457
458 post_code(POST_CONSOLE_READY);
459
Aaron Durbinb0d8f5e2015-04-06 16:12:58 -0500460 /*
Subrata Banik91160e12019-01-29 17:16:15 +0530461 * CBMEM needs to be recovered because timestamps, ACPI, etc rely on
Kyösti Mälkki513a1a82018-06-03 12:29:50 +0300462 * the cbmem infrastructure being around. Explicitly recover it.
Aaron Durbinb0d8f5e2015-04-06 16:12:58 -0500463 */
Kyösti Mälkki513a1a82018-06-03 12:29:50 +0300464 cbmem_initialize();
Aaron Durbinb0d8f5e2015-04-06 16:12:58 -0500465
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300466 /* Record current time, try to locate timestamps in CBMEM. */
Stefan Reinauer3a6550d2013-08-01 13:31:44 -0700467 timestamp_init(timestamp_get());
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300468
469 timestamp_add_now(TS_START_RAMSTAGE);
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000470 post_code(POST_ENTRY_RAMSTAGE);
Li-Ta Lo6a8745ae2004-05-13 20:39:07 +0000471
Kyösti Mälkkidb8693b2014-06-19 23:29:07 +0300472 /* Handoff sleep type from romstage. */
Julius Wernercd49cce2019-03-05 16:53:33 -0800473#if CONFIG(HAVE_ACPI_RESUME)
Kyösti Mälkkidb8693b2014-06-19 23:29:07 +0300474 acpi_is_wakeup();
475#endif
476
Julius Werner85620db2013-11-13 18:22:15 -0800477 exception_init();
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500478 threads_initialize();
479
Aaron Durbina4feddf2013-04-24 16:12:52 -0500480 /* Schedule the static boot state entries. */
481 boot_state_schedule_static_entries();
482
Aaron Durbin0748d302013-05-06 10:50:19 -0500483 bs_walk_state_machine();
484
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500485 die("Boot state machine failure.\n");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000486}
487
Aaron Durbin0748d302013-05-06 10:50:19 -0500488
489int boot_state_block(boot_state_t state, boot_state_sequence_t seq)
490{
491 struct boot_phase *bp;
492
493 /* Blocking a previously ran state is not appropriate. */
494 if (current_phase.state_id > state ||
Lee Leahyd638ef42017-03-07 09:47:22 -0800495 (current_phase.state_id == state && current_phase.seq > seq)) {
Aaron Durbin0748d302013-05-06 10:50:19 -0500496 printk(BIOS_WARNING,
497 "BS: Completed state (%d, %d) block attempted.\n",
498 state, seq);
499 return -1;
500 }
501
502 bp = &boot_states[state].phases[seq];
503 bp->blockers++;
504
505 return 0;
506}
507
508int boot_state_unblock(boot_state_t state, boot_state_sequence_t seq)
509{
510 struct boot_phase *bp;
511
512 /* Blocking a previously ran state is not appropriate. */
513 if (current_phase.state_id > state ||
Lee Leahyd638ef42017-03-07 09:47:22 -0800514 (current_phase.state_id == state && current_phase.seq > seq)) {
Aaron Durbin0748d302013-05-06 10:50:19 -0500515 printk(BIOS_WARNING,
516 "BS: Completed state (%d, %d) unblock attempted.\n",
517 state, seq);
518 return -1;
519 }
520
521 bp = &boot_states[state].phases[seq];
522
523 if (bp->blockers == 0) {
524 printk(BIOS_WARNING,
525 "BS: Unblock attempted on non-blocked state (%d, %d).\n",
526 state, seq);
527 return -1;
528 }
529
530 bp->blockers--;
531
532 return 0;
533}
534
535void boot_state_current_block(void)
536{
537 boot_state_block(current_phase.state_id, current_phase.seq);
538}
539
540void boot_state_current_unblock(void)
541{
542 boot_state_unblock(current_phase.state_id, current_phase.seq);
543}