blob: 4aba2cea501a2792aca40ae66c1e4a77c43fd252 [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.
Aaron Durbincddcc802013-02-08 17:15:53 -060014 */
15#ifndef ROMSTAGE_HANDOFF_H
16#define ROMSTAGE_HANDOFF_H
17
18#include <stdint.h>
Aaron Durbinf2b20d82013-02-11 21:07:18 -060019#include <string.h>
20#include <cbmem.h>
Aaron Durbincddcc802013-02-08 17:15:53 -060021
Martin Roth0cb07e32013-07-09 21:46:01 -060022/* It is the chipset's responsibility for maintaining the integrity of this
Aaron Durbincddcc802013-02-08 17:15:53 -060023 * structure in CBMEM. For instance, if chipset code adds this structure
24 * using the CBMEM_ID_ROMSTAGE_INFO id it needs to ensure it doesn't clobber
25 * fields it doesn't own. */
26struct romstage_handoff {
Martin Roth0cb07e32013-07-09 21:46:01 -060027 /* Indicate if the current boot is an S3 resume. If
Aaron Durbin159f2ef2013-02-12 00:50:47 -060028 * CONFIG_RELOCTABLE_RAMSTAGE is enabled the chipset code is
29 * responsible for initializing this variable. Otherwise, ramstage
30 * will be re-loaded from cbfs (which can be slower since it lives
31 * in flash). */
Duncan Laurie24f94762015-02-25 11:37:32 -080032 uint8_t s3_resume;
33 uint8_t reboot_required;
34 uint8_t reserved[2];
Aaron Durbincddcc802013-02-08 17:15:53 -060035};
36
Aaron Durbinf2b20d82013-02-11 21:07:18 -060037/* The romstage_handoff_find_or_add() function provides the necessary logic
Martin Roth0cb07e32013-07-09 21:46:01 -060038 * for initializing the romstage_handoff structure in cbmem. Different components
Aaron Durbinf2b20d82013-02-11 21:07:18 -060039 * of the romstage may be responsible for setting up different fields. Therefore
40 * that same logic flow should be used for allocating and initializing the
41 * structure. A newly allocated structure will be memset to 0. */
42static inline struct romstage_handoff *romstage_handoff_find_or_add(void)
43{
44 struct romstage_handoff *handoff;
45
46 /* cbmem_add() first does a find and uses the old location before the
47 * real add. However, it is important to know when the structure is not
48 * found so it can be initialized to 0. */
49 handoff = cbmem_find(CBMEM_ID_ROMSTAGE_INFO);
50
51 if (handoff == NULL) {
52 handoff = cbmem_add(CBMEM_ID_ROMSTAGE_INFO, sizeof(*handoff));
53 if (handoff != NULL)
54 memset(handoff, 0, sizeof(*handoff));
55 }
56
57 return handoff;
58}
Aaron Durbinf2b20d82013-02-11 21:07:18 -060059
Aaron Durbincddcc802013-02-08 17:15:53 -060060#endif /* ROMSTAGE_HANDOFF_H */