2 * This file is part of the coreboot project.
4 * Copyright (C) 2013 Google, Inc.
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.
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.
22 /* Only declare main() when in ramstage. */
24 #include <main_decl.h>
28 * The boot state machine provides a mechanism for calls to be made through-
29 * out the main boot process. The boot process is separated into discrete
30 * states. Upon a state's entry and exit and callbacks can be made. For
48 * Below is the current flow from top to bottom:
66 * BS_OS_RESUME_CHECK -------- BS_OS_RESUME
68 * BS_WRITE_TABLES os handoff
76 * Brief description of states:
77 * BS_PRE_DEVICE - before any device tree actions take place
78 * BS_DEV_INIT_CHIPS - init all chips in device tree
79 * BS_DEV_ENUMERATE - device tree probing
80 * BS_DEV_RESOURCES - device tree resource allocation and assignment
81 * BS_DEV_ENABLE - device tree enabling/disabling of devices
82 * BS_DEV_INIT - device tree device initialization
83 * BS_POST_DEVICE - all device tree actions performed
84 * BS_OS_RESUME_CHECK - check for OS resume
85 * BS_OS_RESUME - resume to OS
86 * BS_WRITE_TABLES - write coreboot tables
87 * BS_PAYLOAD_LOAD - Load payload into memory
88 * BS_PAYLOAD_BOOT - Boot to payload
106 /* The boot_state_sequence_t describes when a callback is to be made. It is
107 * called either before a state is entered or when a state is exited. */
111 } boot_state_sequence_t
;
113 struct boot_state_callback
{
115 void (*callback
)(void *arg
);
116 /* For use internal to the boot state machine. */
117 struct boot_state_callback
*next
;
118 #if CONFIG(DEBUG_BOOT_STATE)
119 const char *location
;
123 #if CONFIG(DEBUG_BOOT_STATE)
124 #define BOOT_STATE_CALLBACK_LOC __FILE__ ":" STRINGIFY(__LINE__)
125 #define BOOT_STATE_CALLBACK_INIT_DEBUG .location = BOOT_STATE_CALLBACK_LOC,
126 #define INIT_BOOT_STATE_CALLBACK_DEBUG(bscb_) \
128 bscb_->location = BOOT_STATE_CALLBACK_LOC; \
131 #define BOOT_STATE_CALLBACK_INIT_DEBUG
132 #define INIT_BOOT_STATE_CALLBACK_DEBUG(bscb_)
135 #define BOOT_STATE_CALLBACK_INIT(func_, arg_) \
140 BOOT_STATE_CALLBACK_INIT_DEBUG \
143 #define BOOT_STATE_CALLBACK(name_, func_, arg_) \
144 struct boot_state_callback name_ = BOOT_STATE_CALLBACK_INIT(func_, arg_)
146 /* Initialize an allocated boot_state_callback. */
147 #define INIT_BOOT_STATE_CALLBACK(bscb_, func_, arg_) \
149 INIT_BOOT_STATE_CALLBACK_DEBUG(bscb_) \
150 bscb_->callback = func_; \
154 /* The following 2 functions schedule a callback to be called on entry/exit
155 * to a given state. Note that there are no ordering guarantees between the
156 * individual callbacks on a given state. 0 is returned on success < 0 on
158 int boot_state_sched_on_entry(struct boot_state_callback
*bscb
,
160 int boot_state_sched_on_exit(struct boot_state_callback
*bscb
,
162 /* Schedule an array of entries of size num. */
163 struct boot_state_init_entry
;
164 void boot_state_sched_entries(struct boot_state_init_entry
*entries
,
167 /* Block/Unblock the (state, seq) pair from transitioning. Returns 0 on
168 * success < 0 when the phase of the (state,seq) has already ran. */
169 int boot_state_block(boot_state_t state
, boot_state_sequence_t seq
);
170 int boot_state_unblock(boot_state_t state
, boot_state_sequence_t seq
);
171 /* Block/Unblock current state phase from transitioning. */
172 void boot_state_current_block(void);
173 void boot_state_current_unblock(void);
175 /* In order to schedule boot state callbacks at compile-time specify the
176 * entries in an array using the BOOT_STATE_INIT_ENTRIES and
177 * BOOT_STATE_INIT_ENTRY macros below. */
178 struct boot_state_init_entry
{
180 boot_state_sequence_t when
;
181 struct boot_state_callback bscb
;
185 #define BOOT_STATE_INIT_ATTR __attribute__((used, section(".bs_init")))
187 #define BOOT_STATE_INIT_ATTR __attribute__((unused))
190 #define BOOT_STATE_INIT_ENTRY(state_, when_, func_, arg_) \
191 static struct boot_state_init_entry func_ ##_## state_ ##_## when_ = \
195 .bscb = BOOT_STATE_CALLBACK_INIT(func_, arg_), \
197 static struct boot_state_init_entry * \
198 bsie_ ## func_ ##_## state_ ##_## when_ BOOT_STATE_INIT_ATTR = \
199 &func_ ##_## state_ ##_## when_;
201 /* Hook per arch when coreboot is exiting to payload or ACPI OS resume. It's
202 * the very last thing done before the transition. */
203 void arch_bootstate_coreboot_exit(void);
205 #endif /* BOOTSTATE_H */