blob: 5f06ca762a179d2324efc0140482fedf8bd79ebb [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.
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
Eric Biederman8ca8d762003-04-22 19:02:15 +000018 */
19
20
21/*
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000022 * C Bootstrap code for the coreboot
Eric Biederman8ca8d762003-04-22 19:02:15 +000023 */
24
Julius Werner85620db2013-11-13 18:22:15 -080025#include <arch/exception.h>
Aaron Durbin7e35efa2013-04-24 15:14:01 -050026#include <bootstate.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000027#include <console/console.h>
Duncan Lauriecb73a842013-06-10 10:41:04 -070028#include <console/post_codes.h>
Aaron Durbinb0d8f5e2015-04-06 16:12:58 -050029#include <cbmem.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000030#include <version.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000031#include <device/device.h>
32#include <device/pci.h>
Eric Biederman9b4336c2003-07-19 04:28:22 +000033#include <delay.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000034#include <stdlib.h>
Stefan Reinauerde3206a2010-02-22 06:09:43 +000035#include <reset.h>
Stefan Reinauer7e9771c2009-04-22 08:17:38 +000036#include <boot/tables.h>
Aaron Durbin04654a22015-03-17 11:43:44 -050037#include <program_loading.h>
Ronald G. Minnich9764d4c2012-06-12 16:29:32 -070038#include <lib.h>
Stefan Reinauer08670622009-06-30 15:17:49 +000039#if CONFIG_HAVE_ACPI_RESUME
Rudolf Mareka572f832009-04-13 17:57:44 +000040#include <arch/acpi.h>
Stefan Reinauer3935b192009-04-14 06:38:15 +000041#endif
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -050042#include <timer.h>
Stefan Reinauerbf729ba2011-11-04 12:31:58 -070043#include <timestamp.h>
Aaron Durbin4409a5e2013-05-06 12:20:52 -050044#include <thread.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000045
Aaron Durbin7e35efa2013-04-24 15:14:01 -050046#if BOOT_STATE_DEBUG
47#define BS_DEBUG_LVL BIOS_DEBUG
48#else
49#define BS_DEBUG_LVL BIOS_NEVER
50#endif
Rudolf Mareka572f832009-04-13 17:57:44 +000051
Aaron Durbin7e35efa2013-04-24 15:14:01 -050052static boot_state_t bs_pre_device(void *arg);
53static boot_state_t bs_dev_init_chips(void *arg);
54static boot_state_t bs_dev_enumerate(void *arg);
55static boot_state_t bs_dev_resources(void *arg);
David Hendrickscca68592013-06-20 14:08:27 -070056static boot_state_t bs_dev_enable(void *arg);
Aaron Durbin7e35efa2013-04-24 15:14:01 -050057static boot_state_t bs_dev_init(void *arg);
58static boot_state_t bs_post_device(void *arg);
Aaron Durbin0a6c20a2013-04-24 22:33:08 -050059static boot_state_t bs_os_resume_check(void *arg);
Aaron Durbin7e35efa2013-04-24 15:14:01 -050060static boot_state_t bs_os_resume(void *arg);
61static boot_state_t bs_write_tables(void *arg);
62static boot_state_t bs_payload_load(void *arg);
63static boot_state_t bs_payload_boot(void *arg);
64
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -050065/*
66 * Typically a state will take 4 time samples:
67 * 1. Before state entry callbacks
68 * 2. After state entry callbacks / Before state function.
69 * 3. After state function / Before state exit callbacks.
70 * 4. After state exit callbacks.
71 */
72#define MAX_TIME_SAMPLES 4
73struct boot_state_times {
74 int num_samples;
75 struct mono_time samples[MAX_TIME_SAMPLES];
76};
77
Aaron Durbin0748d302013-05-06 10:50:19 -050078/* The prologue (BS_ON_ENTRY) and epilogue (BS_ON_EXIT) of a state can be
79 * blocked from transitioning to the next (state,seq) pair. When the blockers
80 * field is 0 a transition may occur. */
81struct boot_phase {
82 struct boot_state_callback *callbacks;
83 int blockers;
84};
85
Aaron Durbin7e35efa2013-04-24 15:14:01 -050086struct boot_state {
87 const char *name;
88 boot_state_t id;
Duncan Lauriecb73a842013-06-10 10:41:04 -070089 u8 post_code;
Aaron Durbin0748d302013-05-06 10:50:19 -050090 struct boot_phase phases[2];
Aaron Durbin7e35efa2013-04-24 15:14:01 -050091 boot_state_t (*run_state)(void *arg);
92 void *arg;
Aaron Durbin8fc41e12013-04-29 23:22:01 -050093 int complete : 1;
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -050094#if CONFIG_HAVE_MONOTONIC_TIMER
95 struct boot_state_times times;
96#endif
Aaron Durbin7e35efa2013-04-24 15:14:01 -050097};
98
Aaron Durbin15c671e2013-05-06 10:52:24 -050099#define BS_INIT(state_, run_func_) \
Aaron Durbin8fc41e12013-04-29 23:22:01 -0500100 { \
101 .name = #state_, \
102 .id = state_, \
Duncan Lauriecb73a842013-06-10 10:41:04 -0700103 .post_code = POST_ ## state_, \
Aaron Durbin0748d302013-05-06 10:50:19 -0500104 .phases = { { NULL, 0 }, { NULL, 0 } }, \
Aaron Durbin8fc41e12013-04-29 23:22:01 -0500105 .run_state = run_func_, \
106 .arg = NULL, \
107 .complete = 0, \
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500108 }
109#define BS_INIT_ENTRY(state_, run_func_) \
Aaron Durbin15c671e2013-05-06 10:52:24 -0500110 [state_] = BS_INIT(state_, run_func_)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500111
112static struct boot_state boot_states[] = {
113 BS_INIT_ENTRY(BS_PRE_DEVICE, bs_pre_device),
114 BS_INIT_ENTRY(BS_DEV_INIT_CHIPS, bs_dev_init_chips),
115 BS_INIT_ENTRY(BS_DEV_ENUMERATE, bs_dev_enumerate),
116 BS_INIT_ENTRY(BS_DEV_RESOURCES, bs_dev_resources),
David Hendrickscca68592013-06-20 14:08:27 -0700117 BS_INIT_ENTRY(BS_DEV_ENABLE, bs_dev_enable),
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500118 BS_INIT_ENTRY(BS_DEV_INIT, bs_dev_init),
119 BS_INIT_ENTRY(BS_POST_DEVICE, bs_post_device),
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500120 BS_INIT_ENTRY(BS_OS_RESUME_CHECK, bs_os_resume_check),
Aaron Durbin15c671e2013-05-06 10:52:24 -0500121 BS_INIT_ENTRY(BS_OS_RESUME, bs_os_resume),
122 BS_INIT_ENTRY(BS_WRITE_TABLES, bs_write_tables),
123 BS_INIT_ENTRY(BS_PAYLOAD_LOAD, bs_payload_load),
124 BS_INIT_ENTRY(BS_PAYLOAD_BOOT, bs_payload_boot),
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500125};
126
127static boot_state_t bs_pre_device(void *arg)
128{
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500129 return BS_DEV_INIT_CHIPS;
130}
131
132static boot_state_t bs_dev_init_chips(void *arg)
133{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300134 timestamp_add_now(TS_DEVICE_ENUMERATE);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500135
136 /* Initialize chips early, they might disable unused devices. */
137 dev_initialize_chips();
138
139 return BS_DEV_ENUMERATE;
140}
141
142static boot_state_t bs_dev_enumerate(void *arg)
143{
144 /* Find the devices we don't have hard coded knowledge about. */
145 dev_enumerate();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500146
147 return BS_DEV_RESOURCES;
148}
149
150static boot_state_t bs_dev_resources(void *arg)
151{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300152 timestamp_add_now(TS_DEVICE_CONFIGURE);
Duncan Lauriecb73a842013-06-10 10:41:04 -0700153
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500154 /* Now compute and assign the bus resources. */
155 dev_configure();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500156
157 return BS_DEV_ENABLE;
158}
159
David Hendrickscca68592013-06-20 14:08:27 -0700160static boot_state_t bs_dev_enable(void *arg)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500161{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300162 timestamp_add_now(TS_DEVICE_ENABLE);
Duncan Lauriecb73a842013-06-10 10:41:04 -0700163
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500164 /* Now actually enable devices on the bus */
165 dev_enable();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500166
167 return BS_DEV_INIT;
168}
169
170static boot_state_t bs_dev_init(void *arg)
171{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300172 timestamp_add_now(TS_DEVICE_INITIALIZE);
Duncan Lauriecb73a842013-06-10 10:41:04 -0700173
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500174 /* And of course initialize devices on the bus */
175 dev_initialize();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500176
177 return BS_POST_DEVICE;
178}
179
180static boot_state_t bs_post_device(void *arg)
181{
Marc Jones2a58ecd2013-10-29 17:32:00 -0600182 dev_finalize();
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300183 timestamp_add_now(TS_DEVICE_DONE);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500184
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500185 return BS_OS_RESUME_CHECK;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500186}
187
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500188static boot_state_t bs_os_resume_check(void *arg)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500189{
190#if CONFIG_HAVE_ACPI_RESUME
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500191 void *wake_vector;
192
193 wake_vector = acpi_find_wakeup_vector();
194
195 if (wake_vector != NULL) {
196 boot_states[BS_OS_RESUME].arg = wake_vector;
197 return BS_OS_RESUME;
198 }
Kyösti Mälkki7b14f082014-10-16 20:58:47 +0300199
200 acpi_prepare_resume_backup();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500201#endif
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500202 timestamp_add_now(TS_CBMEM_POST);
203
204 return BS_WRITE_TABLES;
205}
206
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500207static boot_state_t bs_os_resume(void *wake_vector)
208{
209#if CONFIG_HAVE_ACPI_RESUME
210 acpi_resume(wake_vector);
211#endif
212 return BS_WRITE_TABLES;
213}
214
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500215static boot_state_t bs_write_tables(void *arg)
216{
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500217 timestamp_add_now(TS_WRITE_TABLES);
218
219 /* Now that we have collected all of our information
220 * write our configuration tables.
221 */
222 write_tables();
223
Marc Jones2a58ecd2013-10-29 17:32:00 -0600224 dev_finalize_chips();
225
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500226 return BS_PAYLOAD_LOAD;
227}
228
229static boot_state_t bs_payload_load(void *arg)
230{
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500231 timestamp_add_now(TS_LOAD_PAYLOAD);
232
Aaron Durbinebf2ed42015-03-20 10:20:15 -0500233 payload_load();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500234
235 return BS_PAYLOAD_BOOT;
236}
237
Aaron Durbinbdf913a2014-02-24 14:56:34 -0600238static boot_state_t bs_payload_boot(void *arg)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500239{
Aaron Durbinebf2ed42015-03-20 10:20:15 -0500240 payload_run();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500241
242 printk(BIOS_EMERG, "Boot failed");
243 /* Returning from this state will fail because the following signals
244 * return to a completed state. */
245 return BS_PAYLOAD_BOOT;
246}
247
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500248#if CONFIG_HAVE_MONOTONIC_TIMER
249static void bs_sample_time(struct boot_state *state)
250{
251 struct mono_time *mt;
252
253 mt = &state->times.samples[state->times.num_samples];
254 timer_monotonic_get(mt);
255 state->times.num_samples++;
256}
257
258static void bs_report_time(struct boot_state *state)
259{
Aaron Durbinad5a9092014-09-24 09:48:47 -0500260 long entry_time;
261 long run_time;
262 long exit_time;
263 struct mono_time *samples = &state->times.samples[0];
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500264
Aaron Durbinad5a9092014-09-24 09:48:47 -0500265 entry_time = mono_time_diff_microseconds(&samples[0], &samples[1]);
266 run_time = mono_time_diff_microseconds(&samples[1], &samples[2]);
267 exit_time = mono_time_diff_microseconds(&samples[2], &samples[3]);
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500268
269 printk(BIOS_DEBUG, "BS: %s times (us): entry %ld run %ld exit %ld\n",
Aaron Durbinad5a9092014-09-24 09:48:47 -0500270 state->name, entry_time, run_time, exit_time);
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500271}
272#else
273static inline void bs_sample_time(struct boot_state *state) {}
274static inline void bs_report_time(struct boot_state *state) {}
275#endif
276
Aaron Durbin8fc41e12013-04-29 23:22:01 -0500277#if CONFIG_TIMER_QUEUE
278static void bs_run_timers(int drain)
279{
280 /* Drain all timer callbacks until none are left, if directed.
281 * Otherwise run the timers only once. */
282 do {
283 if (!timers_run())
284 break;
285 } while (drain);
286}
287#else
288static void bs_run_timers(int drain) {}
289#endif
290
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500291static void bs_call_callbacks(struct boot_state *state,
292 boot_state_sequence_t seq)
293{
Aaron Durbin0748d302013-05-06 10:50:19 -0500294 struct boot_phase *phase = &state->phases[seq];
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500295
Aaron Durbin0748d302013-05-06 10:50:19 -0500296 while (1) {
297 if (phase->callbacks != NULL) {
298 struct boot_state_callback *bscb;
299
300 /* Remove the first callback. */
301 bscb = phase->callbacks;
302 phase->callbacks = bscb->next;
303 bscb->next = NULL;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500304
305#if BOOT_STATE_DEBUG
Aaron Durbin0748d302013-05-06 10:50:19 -0500306 printk(BS_DEBUG_LVL, "BS: callback (%p) @ %s.\n",
307 bscb, bscb->location);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500308#endif
Aaron Durbin0748d302013-05-06 10:50:19 -0500309 bscb->callback(bscb->arg);
310
311 continue;
312 }
313
314 /* All callbacks are complete and there are no blockers for
315 * this state. Therefore, this part of the state is complete. */
316 if (!phase->blockers)
317 break;
318
319 /* Something is blocking this state from transitioning. As
320 * there are no more callbacks a pending timer needs to be
321 * ran to unblock the state. */
322 bs_run_timers(0);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500323 }
324}
325
Aaron Durbin0748d302013-05-06 10:50:19 -0500326/* Keep track of the current state. */
327static struct state_tracker {
328 boot_state_t state_id;
329 boot_state_sequence_t seq;
330} current_phase = {
331 .state_id = BS_PRE_DEVICE,
332 .seq = BS_ON_ENTRY,
333};
334
335static void bs_walk_state_machine(void)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500336{
337
338 while (1) {
339 struct boot_state *state;
Aaron Durbin0748d302013-05-06 10:50:19 -0500340 boot_state_t next_id;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500341
Aaron Durbin0748d302013-05-06 10:50:19 -0500342 state = &boot_states[current_phase.state_id];
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500343
344 if (state->complete) {
345 printk(BIOS_EMERG, "BS: %s state already executed.\n",
346 state->name);
347 break;
348 }
349
350 printk(BS_DEBUG_LVL, "BS: Entering %s state.\n", state->name);
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500351
Aaron Durbin15c671e2013-05-06 10:52:24 -0500352 bs_run_timers(0);
Aaron Durbin8fc41e12013-04-29 23:22:01 -0500353
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500354 bs_sample_time(state);
355
Aaron Durbin0748d302013-05-06 10:50:19 -0500356 bs_call_callbacks(state, current_phase.seq);
357 /* Update the current sequence so that any calls to block the
358 * current state from the run_state() function will place a
359 * block on the correct phase. */
360 current_phase.seq = BS_ON_EXIT;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500361
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500362 bs_sample_time(state);
363
Duncan Lauriecb73a842013-06-10 10:41:04 -0700364 post_code(state->post_code);
365
Aaron Durbin0748d302013-05-06 10:50:19 -0500366 next_id = state->run_state(state->arg);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500367
368 printk(BS_DEBUG_LVL, "BS: Exiting %s state.\n", state->name);
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500369
370 bs_sample_time(state);
371
Aaron Durbin0748d302013-05-06 10:50:19 -0500372 bs_call_callbacks(state, current_phase.seq);
373
374 /* 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,
387 struct boot_state_callback *bscb,
388 boot_state_sequence_t seq)
389{
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,
405 boot_state_t state_id)
406{
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,
413 boot_state_t state_id)
414{
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{
Aaron Durbinb0d8f5e2015-04-06 16:12:58 -0500437 /*
438 * CBMEM needs to be recovered in the EARLY_CBMEM_INIT case because
439 * timestamps, APCI, etc rely on the cbmem infrastructure being
440 * around. Explicitly recover it.
441 */
442 if (IS_ENABLED(CONFIG_EARLY_CBMEM_INIT))
443 cbmem_initialize();
444
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300445 /* Record current time, try to locate timestamps in CBMEM. */
Stefan Reinauer3a6550d2013-08-01 13:31:44 -0700446 timestamp_init(timestamp_get());
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300447
448 timestamp_add_now(TS_START_RAMSTAGE);
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000449 post_code(POST_ENTRY_RAMSTAGE);
Li-Ta Lo6a8745ae2004-05-13 20:39:07 +0000450
Stefan Reinauer3b314022009-10-26 17:04:28 +0000451 /* console_init() MUST PRECEDE ALL printk()! */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000452 console_init();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000453
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000454 post_code(POST_CONSOLE_READY);
arch import user (historical)54d6b082005-07-06 17:17:41 +0000455
Kyösti Mälkkidb8693b2014-06-19 23:29:07 +0300456 /* Handoff sleep type from romstage. */
457#if CONFIG_HAVE_ACPI_RESUME
458 acpi_is_wakeup();
459#endif
460
Julius Werner85620db2013-11-13 18:22:15 -0800461 exception_init();
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500462 threads_initialize();
463
Aaron Durbina4feddf2013-04-24 16:12:52 -0500464 /* Schedule the static boot state entries. */
465 boot_state_schedule_static_entries();
466
Eric Biederman7003ba42004-10-16 06:20:29 +0000467 /* FIXME: Is there a better way to handle this? */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000468 init_timer();
Eric Biederman8ca8d762003-04-22 19:02:15 +0000469
Aaron Durbin0748d302013-05-06 10:50:19 -0500470 bs_walk_state_machine();
471
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500472 die("Boot state machine failure.\n");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000473}
474
Aaron Durbin0748d302013-05-06 10:50:19 -0500475
476int boot_state_block(boot_state_t state, boot_state_sequence_t seq)
477{
478 struct boot_phase *bp;
479
480 /* Blocking a previously ran state is not appropriate. */
481 if (current_phase.state_id > state ||
482 (current_phase.state_id == state && current_phase.seq > seq) ) {
483 printk(BIOS_WARNING,
484 "BS: Completed state (%d, %d) block attempted.\n",
485 state, seq);
486 return -1;
487 }
488
489 bp = &boot_states[state].phases[seq];
490 bp->blockers++;
491
492 return 0;
493}
494
495int boot_state_unblock(boot_state_t state, boot_state_sequence_t seq)
496{
497 struct boot_phase *bp;
498
499 /* Blocking a previously ran state is not appropriate. */
500 if (current_phase.state_id > state ||
501 (current_phase.state_id == state && current_phase.seq > seq) ) {
502 printk(BIOS_WARNING,
503 "BS: Completed state (%d, %d) unblock attempted.\n",
504 state, seq);
505 return -1;
506 }
507
508 bp = &boot_states[state].phases[seq];
509
510 if (bp->blockers == 0) {
511 printk(BIOS_WARNING,
512 "BS: Unblock attempted on non-blocked state (%d, %d).\n",
513 state, seq);
514 return -1;
515 }
516
517 bp->blockers--;
518
519 return 0;
520}
521
522void boot_state_current_block(void)
523{
524 boot_state_block(current_phase.state_id, current_phase.seq);
525}
526
527void boot_state_current_unblock(void)
528{
529 boot_state_unblock(current_phase.state_id, current_phase.seq);
530}