blob: 699838a2606cf14297d41ce05f4077d60f4f5edf [file] [log] [blame]
Aaron Durbincddcc802013-02-08 17:15:53 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 ChromeOS Authors
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
18 */
19#ifndef ROMSTAGE_HANDOFF_H
20#define ROMSTAGE_HANDOFF_H
21
22#include <stdint.h>
Aaron Durbinf2b20d82013-02-11 21:07:18 -060023#include <string.h>
24#include <cbmem.h>
Aaron Durbincddcc802013-02-08 17:15:53 -060025
Martin Roth0cb07e32013-07-09 21:46:01 -060026/* It is the chipset's responsibility for maintaining the integrity of this
Aaron Durbincddcc802013-02-08 17:15:53 -060027 * structure in CBMEM. For instance, if chipset code adds this structure
28 * using the CBMEM_ID_ROMSTAGE_INFO id it needs to ensure it doesn't clobber
29 * fields it doesn't own. */
30struct romstage_handoff {
Martin Roth0cb07e32013-07-09 21:46:01 -060031 /* Indicate if the current boot is an S3 resume. If
Aaron Durbin159f2ef2013-02-12 00:50:47 -060032 * CONFIG_RELOCTABLE_RAMSTAGE is enabled the chipset code is
33 * responsible for initializing this variable. Otherwise, ramstage
34 * will be re-loaded from cbfs (which can be slower since it lives
35 * in flash). */
Aaron Durbinc00457d2013-02-11 21:15:12 -060036 uint32_t s3_resume;
Aaron Durbin159f2ef2013-02-12 00:50:47 -060037 /* The ramstage_entry_point is cached in the stag loading path. This
38 * cached value can only be utilized when the chipset code properly
39 * fills in the s3_resume field above. */
40 uint32_t ramstage_entry_point;
Aaron Durbincddcc802013-02-08 17:15:53 -060041};
42
Aaron Durbinf2b20d82013-02-11 21:07:18 -060043#if defined(__PRE_RAM__)
44/* The romstage_handoff_find_or_add() function provides the necessary logic
Martin Roth0cb07e32013-07-09 21:46:01 -060045 * for initializing the romstage_handoff structure in cbmem. Different components
Aaron Durbinf2b20d82013-02-11 21:07:18 -060046 * of the romstage may be responsible for setting up different fields. Therefore
47 * that same logic flow should be used for allocating and initializing the
48 * structure. A newly allocated structure will be memset to 0. */
49static inline struct romstage_handoff *romstage_handoff_find_or_add(void)
50{
51 struct romstage_handoff *handoff;
52
53 /* cbmem_add() first does a find and uses the old location before the
54 * real add. However, it is important to know when the structure is not
55 * found so it can be initialized to 0. */
56 handoff = cbmem_find(CBMEM_ID_ROMSTAGE_INFO);
57
58 if (handoff == NULL) {
59 handoff = cbmem_add(CBMEM_ID_ROMSTAGE_INFO, sizeof(*handoff));
60 if (handoff != NULL)
61 memset(handoff, 0, sizeof(*handoff));
62 }
63
64 return handoff;
65}
66#endif
67
Aaron Durbincddcc802013-02-08 17:15:53 -060068#endif /* ROMSTAGE_HANDOFF_H */
69