blob: 501591f114154f29070db32cb370ab8c1bc0de15 [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
Aaron Durbin7e35efa2013-04-24 15:14:01 -050025#include <bootstate.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000026#include <console/console.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>
Peter Stuge483b7bb2009-04-14 07:40:01 +000034#include <cbfs.h>
Ronald G. Minnich9764d4c2012-06-12 16:29:32 -070035#include <lib.h>
Stefan Reinauer08670622009-06-30 15:17:49 +000036#if CONFIG_HAVE_ACPI_RESUME
Rudolf Mareka572f832009-04-13 17:57:44 +000037#include <arch/acpi.h>
Stefan Reinauer3935b192009-04-14 06:38:15 +000038#endif
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -050039#include <timer.h>
Stefan Reinauerbf729ba2011-11-04 12:31:58 -070040#include <timestamp.h>
Aaron Durbin4409a5e2013-05-06 12:20:52 -050041#include <thread.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000042
Aaron Durbin7e35efa2013-04-24 15:14:01 -050043#if BOOT_STATE_DEBUG
44#define BS_DEBUG_LVL BIOS_DEBUG
45#else
46#define BS_DEBUG_LVL BIOS_NEVER
47#endif
Rudolf Mareka572f832009-04-13 17:57:44 +000048
Aaron Durbin7e35efa2013-04-24 15:14:01 -050049static boot_state_t bs_pre_device(void *arg);
50static boot_state_t bs_dev_init_chips(void *arg);
51static boot_state_t bs_dev_enumerate(void *arg);
52static boot_state_t bs_dev_resources(void *arg);
David Hendrickscca68592013-06-20 14:08:27 -070053static boot_state_t bs_dev_enable(void *arg);
Aaron Durbin7e35efa2013-04-24 15:14:01 -050054static boot_state_t bs_dev_init(void *arg);
55static boot_state_t bs_post_device(void *arg);
Aaron Durbin0a6c20a2013-04-24 22:33:08 -050056static boot_state_t bs_os_resume_check(void *arg);
Aaron Durbin7e35efa2013-04-24 15:14:01 -050057static boot_state_t bs_os_resume(void *arg);
58static boot_state_t bs_write_tables(void *arg);
59static boot_state_t bs_payload_load(void *arg);
60static boot_state_t bs_payload_boot(void *arg);
61
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -050062/*
63 * Typically a state will take 4 time samples:
64 * 1. Before state entry callbacks
65 * 2. After state entry callbacks / Before state function.
66 * 3. After state function / Before state exit callbacks.
67 * 4. After state exit callbacks.
68 */
69#define MAX_TIME_SAMPLES 4
70struct boot_state_times {
71 int num_samples;
72 struct mono_time samples[MAX_TIME_SAMPLES];
73};
74
Aaron Durbin0748d302013-05-06 10:50:19 -050075/* The prologue (BS_ON_ENTRY) and epilogue (BS_ON_EXIT) of a state can be
76 * blocked from transitioning to the next (state,seq) pair. When the blockers
77 * field is 0 a transition may occur. */
78struct boot_phase {
79 struct boot_state_callback *callbacks;
80 int blockers;
81};
82
Aaron Durbin7e35efa2013-04-24 15:14:01 -050083struct boot_state {
84 const char *name;
85 boot_state_t id;
Aaron Durbin0748d302013-05-06 10:50:19 -050086 struct boot_phase phases[2];
Aaron Durbin7e35efa2013-04-24 15:14:01 -050087 boot_state_t (*run_state)(void *arg);
88 void *arg;
Aaron Durbin8fc41e12013-04-29 23:22:01 -050089 int complete : 1;
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -050090#if CONFIG_HAVE_MONOTONIC_TIMER
91 struct boot_state_times times;
92#endif
Aaron Durbin7e35efa2013-04-24 15:14:01 -050093};
94
Aaron Durbin15c671e2013-05-06 10:52:24 -050095#define BS_INIT(state_, run_func_) \
Aaron Durbin8fc41e12013-04-29 23:22:01 -050096 { \
97 .name = #state_, \
98 .id = state_, \
Aaron Durbin0748d302013-05-06 10:50:19 -050099 .phases = { { NULL, 0 }, { NULL, 0 } }, \
Aaron Durbin8fc41e12013-04-29 23:22:01 -0500100 .run_state = run_func_, \
101 .arg = NULL, \
102 .complete = 0, \
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500103 }
104#define BS_INIT_ENTRY(state_, run_func_) \
Aaron Durbin15c671e2013-05-06 10:52:24 -0500105 [state_] = BS_INIT(state_, run_func_)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500106
107static struct boot_state boot_states[] = {
108 BS_INIT_ENTRY(BS_PRE_DEVICE, bs_pre_device),
109 BS_INIT_ENTRY(BS_DEV_INIT_CHIPS, bs_dev_init_chips),
110 BS_INIT_ENTRY(BS_DEV_ENUMERATE, bs_dev_enumerate),
111 BS_INIT_ENTRY(BS_DEV_RESOURCES, bs_dev_resources),
David Hendrickscca68592013-06-20 14:08:27 -0700112 BS_INIT_ENTRY(BS_DEV_ENABLE, bs_dev_enable),
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500113 BS_INIT_ENTRY(BS_DEV_INIT, bs_dev_init),
114 BS_INIT_ENTRY(BS_POST_DEVICE, bs_post_device),
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500115 BS_INIT_ENTRY(BS_OS_RESUME_CHECK, bs_os_resume_check),
Aaron Durbin15c671e2013-05-06 10:52:24 -0500116 BS_INIT_ENTRY(BS_OS_RESUME, bs_os_resume),
117 BS_INIT_ENTRY(BS_WRITE_TABLES, bs_write_tables),
118 BS_INIT_ENTRY(BS_PAYLOAD_LOAD, bs_payload_load),
119 BS_INIT_ENTRY(BS_PAYLOAD_BOOT, bs_payload_boot),
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500120};
121
122static boot_state_t bs_pre_device(void *arg)
123{
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500124 return BS_DEV_INIT_CHIPS;
125}
126
127static boot_state_t bs_dev_init_chips(void *arg)
128{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300129 timestamp_add_now(TS_DEVICE_ENUMERATE);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500130
131 /* Initialize chips early, they might disable unused devices. */
132 dev_initialize_chips();
133
134 return BS_DEV_ENUMERATE;
135}
136
137static boot_state_t bs_dev_enumerate(void *arg)
138{
139 /* Find the devices we don't have hard coded knowledge about. */
140 dev_enumerate();
141 post_code(POST_DEVICE_ENUMERATION_COMPLETE);
142
143 return BS_DEV_RESOURCES;
144}
145
146static boot_state_t bs_dev_resources(void *arg)
147{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300148 timestamp_add_now(TS_DEVICE_CONFIGURE);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500149 /* Now compute and assign the bus resources. */
150 dev_configure();
151 post_code(POST_DEVICE_CONFIGURATION_COMPLETE);
152
153 return BS_DEV_ENABLE;
154}
155
David Hendrickscca68592013-06-20 14:08:27 -0700156static boot_state_t bs_dev_enable(void *arg)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500157{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300158 timestamp_add_now(TS_DEVICE_ENABLE);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500159 /* Now actually enable devices on the bus */
160 dev_enable();
161 post_code(POST_DEVICES_ENABLED);
162
163 return BS_DEV_INIT;
164}
165
166static boot_state_t bs_dev_init(void *arg)
167{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300168 timestamp_add_now(TS_DEVICE_INITIALIZE);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500169 /* And of course initialize devices on the bus */
170 dev_initialize();
171 post_code(POST_DEVICES_INITIALIZED);
172
173 return BS_POST_DEVICE;
174}
175
176static boot_state_t bs_post_device(void *arg)
177{
Marc Jones2a58ecd2013-10-29 17:32:00 -0600178 dev_finalize();
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300179 timestamp_add_now(TS_DEVICE_DONE);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500180
Kyösti Mälkkicbf5bdf2013-09-10 00:07:21 +0300181 timestamp_reinit();
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500182
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500183 return BS_OS_RESUME_CHECK;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500184}
185
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500186static boot_state_t bs_os_resume_check(void *arg)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500187{
188#if CONFIG_HAVE_ACPI_RESUME
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500189 void *wake_vector;
190
191 wake_vector = acpi_find_wakeup_vector();
192
193 if (wake_vector != NULL) {
194 boot_states[BS_OS_RESUME].arg = wake_vector;
195 return BS_OS_RESUME;
196 }
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500197 post_code(0x8a);
198#endif
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500199 timestamp_add_now(TS_CBMEM_POST);
200
201 return BS_WRITE_TABLES;
202}
203
Aaron Durbin0a6c20a2013-04-24 22:33:08 -0500204static boot_state_t bs_os_resume(void *wake_vector)
205{
206#if CONFIG_HAVE_ACPI_RESUME
207 acpi_resume(wake_vector);
208#endif
209 return BS_WRITE_TABLES;
210}
211
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500212static boot_state_t bs_write_tables(void *arg)
213{
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500214 timestamp_add_now(TS_WRITE_TABLES);
215
216 /* Now that we have collected all of our information
217 * write our configuration tables.
218 */
219 write_tables();
220
Marc Jones2a58ecd2013-10-29 17:32:00 -0600221 dev_finalize_chips();
222
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500223 return BS_PAYLOAD_LOAD;
224}
225
226static boot_state_t bs_payload_load(void *arg)
227{
228 void *payload;
Aaron Durbin001de1a2013-04-24 22:59:45 -0500229 void *entry;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500230
231 timestamp_add_now(TS_LOAD_PAYLOAD);
232
233 payload = cbfs_load_payload(CBFS_DEFAULT_MEDIA,
234 CONFIG_CBFS_PREFIX "/payload");
235 if (! payload)
236 die("Could not find a payload\n");
237
Aaron Durbin001de1a2013-04-24 22:59:45 -0500238 entry = selfload(get_lb_mem(), payload);
239
240 if (! entry)
241 die("Could not load payload\n");
242
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500243 /* Pass the payload to the next state. */
Aaron Durbin001de1a2013-04-24 22:59:45 -0500244 boot_states[BS_PAYLOAD_BOOT].arg = entry;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500245
246 return BS_PAYLOAD_BOOT;
247}
248
Aaron Durbin001de1a2013-04-24 22:59:45 -0500249static boot_state_t bs_payload_boot(void *entry)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500250{
Aaron Durbin001de1a2013-04-24 22:59:45 -0500251 selfboot(entry);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500252
253 printk(BIOS_EMERG, "Boot failed");
254 /* Returning from this state will fail because the following signals
255 * return to a completed state. */
256 return BS_PAYLOAD_BOOT;
257}
258
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500259#if CONFIG_HAVE_MONOTONIC_TIMER
260static void bs_sample_time(struct boot_state *state)
261{
262 struct mono_time *mt;
263
264 mt = &state->times.samples[state->times.num_samples];
265 timer_monotonic_get(mt);
266 state->times.num_samples++;
267}
268
269static void bs_report_time(struct boot_state *state)
270{
271 struct rela_time entry_time;
272 struct rela_time run_time;
273 struct rela_time exit_time;
274 struct boot_state_times *times;
275
276 times = &state->times;
277 entry_time = mono_time_diff(&times->samples[0], &times->samples[1]);
278 run_time = mono_time_diff(&times->samples[1], &times->samples[2]);
279 exit_time = mono_time_diff(&times->samples[2], &times->samples[3]);
280
281 printk(BIOS_DEBUG, "BS: %s times (us): entry %ld run %ld exit %ld\n",
282 state->name,
283 rela_time_in_microseconds(&entry_time),
284 rela_time_in_microseconds(&run_time),
285 rela_time_in_microseconds(&exit_time));
286}
287#else
288static inline void bs_sample_time(struct boot_state *state) {}
289static inline void bs_report_time(struct boot_state *state) {}
290#endif
291
Aaron Durbin8fc41e12013-04-29 23:22:01 -0500292#if CONFIG_TIMER_QUEUE
293static void bs_run_timers(int drain)
294{
295 /* Drain all timer callbacks until none are left, if directed.
296 * Otherwise run the timers only once. */
297 do {
298 if (!timers_run())
299 break;
300 } while (drain);
301}
302#else
303static void bs_run_timers(int drain) {}
304#endif
305
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500306static void bs_call_callbacks(struct boot_state *state,
307 boot_state_sequence_t seq)
308{
Aaron Durbin0748d302013-05-06 10:50:19 -0500309 struct boot_phase *phase = &state->phases[seq];
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500310
Aaron Durbin0748d302013-05-06 10:50:19 -0500311 while (1) {
312 if (phase->callbacks != NULL) {
313 struct boot_state_callback *bscb;
314
315 /* Remove the first callback. */
316 bscb = phase->callbacks;
317 phase->callbacks = bscb->next;
318 bscb->next = NULL;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500319
320#if BOOT_STATE_DEBUG
Aaron Durbin0748d302013-05-06 10:50:19 -0500321 printk(BS_DEBUG_LVL, "BS: callback (%p) @ %s.\n",
322 bscb, bscb->location);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500323#endif
Aaron Durbin0748d302013-05-06 10:50:19 -0500324 bscb->callback(bscb->arg);
325
326 continue;
327 }
328
329 /* All callbacks are complete and there are no blockers for
330 * this state. Therefore, this part of the state is complete. */
331 if (!phase->blockers)
332 break;
333
334 /* Something is blocking this state from transitioning. As
335 * there are no more callbacks a pending timer needs to be
336 * ran to unblock the state. */
337 bs_run_timers(0);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500338 }
339}
340
Aaron Durbin0748d302013-05-06 10:50:19 -0500341/* Keep track of the current state. */
342static struct state_tracker {
343 boot_state_t state_id;
344 boot_state_sequence_t seq;
345} current_phase = {
346 .state_id = BS_PRE_DEVICE,
347 .seq = BS_ON_ENTRY,
348};
349
350static void bs_walk_state_machine(void)
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500351{
352
353 while (1) {
354 struct boot_state *state;
Aaron Durbin0748d302013-05-06 10:50:19 -0500355 boot_state_t next_id;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500356
Aaron Durbin0748d302013-05-06 10:50:19 -0500357 state = &boot_states[current_phase.state_id];
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500358
359 if (state->complete) {
360 printk(BIOS_EMERG, "BS: %s state already executed.\n",
361 state->name);
362 break;
363 }
364
365 printk(BS_DEBUG_LVL, "BS: Entering %s state.\n", state->name);
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500366
Aaron Durbin15c671e2013-05-06 10:52:24 -0500367 bs_run_timers(0);
Aaron Durbin8fc41e12013-04-29 23:22:01 -0500368
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500369 bs_sample_time(state);
370
Aaron Durbin0748d302013-05-06 10:50:19 -0500371 bs_call_callbacks(state, current_phase.seq);
372 /* Update the current sequence so that any calls to block the
373 * current state from the run_state() function will place a
374 * block on the correct phase. */
375 current_phase.seq = BS_ON_EXIT;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500376
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500377 bs_sample_time(state);
378
Aaron Durbin0748d302013-05-06 10:50:19 -0500379 next_id = state->run_state(state->arg);
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500380
381 printk(BS_DEBUG_LVL, "BS: Exiting %s state.\n", state->name);
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500382
383 bs_sample_time(state);
384
Aaron Durbin0748d302013-05-06 10:50:19 -0500385 bs_call_callbacks(state, current_phase.seq);
386
387 /* Update the current phase with new state id and sequence. */
388 current_phase.state_id = next_id;
389 current_phase.seq = BS_ON_ENTRY;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500390
Aaron Durbin6b0fb0d2013-04-26 20:54:16 -0500391 bs_sample_time(state);
392
393 bs_report_time(state);
394
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500395 state->complete = 1;
396 }
397}
398
399static int boot_state_sched_callback(struct boot_state *state,
400 struct boot_state_callback *bscb,
401 boot_state_sequence_t seq)
402{
403 if (state->complete) {
404 printk(BIOS_WARNING,
405 "Tried to schedule callback on completed state %s.\n",
406 state->name);
407
408 return -1;
409 }
410
Aaron Durbin0748d302013-05-06 10:50:19 -0500411 bscb->next = state->phases[seq].callbacks;
412 state->phases[seq].callbacks = bscb;
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500413
414 return 0;
415}
416
417int boot_state_sched_on_entry(struct boot_state_callback *bscb,
418 boot_state_t state_id)
419{
420 struct boot_state *state = &boot_states[state_id];
421
422 return boot_state_sched_callback(state, bscb, BS_ON_ENTRY);
423}
424
425int boot_state_sched_on_exit(struct boot_state_callback *bscb,
426 boot_state_t state_id)
427{
428 struct boot_state *state = &boot_states[state_id];
429
430 return boot_state_sched_callback(state, bscb, BS_ON_EXIT);
431}
Maciej Pijankaea921852009-10-27 14:29:29 +0000432
Aaron Durbina4feddf2013-04-24 16:12:52 -0500433static void boot_state_schedule_static_entries(void)
434{
435 extern struct boot_state_init_entry _bs_init_begin;
436 extern struct boot_state_init_entry _bs_init_end;
437 struct boot_state_init_entry *cur;
438
439 cur = &_bs_init_begin;
440
441 while (cur != &_bs_init_end) {
442 if (cur->when == BS_ON_ENTRY)
443 boot_state_sched_on_entry(&cur->bscb, cur->state);
444 else
445 boot_state_sched_on_exit(&cur->bscb, cur->state);
446 cur++;
447 }
448}
449
Stefan Reinauer6adef082013-05-09 16:30:06 -0700450void main(void)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000451{
Kyösti Mälkkib766b1c2013-09-07 17:26:08 +0300452 /* Record current time, try to locate timestamps in CBMEM. */
453 timestamp_init(rdtsc());
454
455 timestamp_add_now(TS_START_RAMSTAGE);
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000456 post_code(POST_ENTRY_RAMSTAGE);
Li-Ta Lo6a8745ae2004-05-13 20:39:07 +0000457
Stefan Reinauer3b314022009-10-26 17:04:28 +0000458 /* console_init() MUST PRECEDE ALL printk()! */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000459 console_init();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000460
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000461 post_code(POST_CONSOLE_READY);
arch import user (historical)54d6b082005-07-06 17:17:41 +0000462
Stefan Reinauer2a3c1062013-05-06 16:49:56 -0700463 printk(BIOS_NOTICE, "coreboot-%s%s %s booting...\n",
464 coreboot_version, coreboot_extra_version, coreboot_build);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000465
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000466 post_code(POST_CONSOLE_BOOT_MSG);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000467
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500468 threads_initialize();
469
Aaron Durbina4feddf2013-04-24 16:12:52 -0500470 /* Schedule the static boot state entries. */
471 boot_state_schedule_static_entries();
472
Eric Biederman7003ba42004-10-16 06:20:29 +0000473 /* FIXME: Is there a better way to handle this? */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000474 init_timer();
Eric Biederman8ca8d762003-04-22 19:02:15 +0000475
Aaron Durbin0748d302013-05-06 10:50:19 -0500476 bs_walk_state_machine();
477
Aaron Durbin7e35efa2013-04-24 15:14:01 -0500478 die("Boot state machine failure.\n");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000479}
480
Aaron Durbin0748d302013-05-06 10:50:19 -0500481
482int boot_state_block(boot_state_t state, boot_state_sequence_t seq)
483{
484 struct boot_phase *bp;
485
486 /* Blocking a previously ran state is not appropriate. */
487 if (current_phase.state_id > state ||
488 (current_phase.state_id == state && current_phase.seq > seq) ) {
489 printk(BIOS_WARNING,
490 "BS: Completed state (%d, %d) block attempted.\n",
491 state, seq);
492 return -1;
493 }
494
495 bp = &boot_states[state].phases[seq];
496 bp->blockers++;
497
498 return 0;
499}
500
501int boot_state_unblock(boot_state_t state, boot_state_sequence_t seq)
502{
503 struct boot_phase *bp;
504
505 /* Blocking a previously ran state is not appropriate. */
506 if (current_phase.state_id > state ||
507 (current_phase.state_id == state && current_phase.seq > seq) ) {
508 printk(BIOS_WARNING,
509 "BS: Completed state (%d, %d) unblock attempted.\n",
510 state, seq);
511 return -1;
512 }
513
514 bp = &boot_states[state].phases[seq];
515
516 if (bp->blockers == 0) {
517 printk(BIOS_WARNING,
518 "BS: Unblock attempted on non-blocked state (%d, %d).\n",
519 state, seq);
520 return -1;
521 }
522
523 bp->blockers--;
524
525 return 0;
526}
527
528void boot_state_current_block(void)
529{
530 boot_state_block(current_phase.state_id, current_phase.seq);
531}
532
533void boot_state_current_unblock(void)
534{
535 boot_state_unblock(current_phase.state_id, current_phase.seq);
536}