ACPI: Allocate GNVS early in ramstage
We need this to happen prior to SMM module loader. If there is some debugging output it's better they do not appear in the middle of CPU bringup. Change-Id: I45b4b5c0c5bf8bee258a465d1e364bfe98190e44 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48697 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
61bc2191c3
commit
e0183d6540
4 changed files with 35 additions and 9 deletions
|
|
@ -12,9 +12,10 @@ void acpi_inject_nvsa(void);
|
|||
void gnvs_assign_chromeos(void);
|
||||
|
||||
/* Platform code must implement these. */
|
||||
struct global_nvs;
|
||||
size_t gnvs_size_of_array(void);
|
||||
uint32_t *gnvs_cbmc_ptr(void);
|
||||
void *gnvs_chromeos_ptr(void);
|
||||
uint32_t *gnvs_cbmc_ptr(struct global_nvs *gnvs);
|
||||
void *gnvs_chromeos_ptr(struct global_nvs *gnvs);
|
||||
|
||||
/*
|
||||
* Creates acpi gnvs and adds it to the DSDT table.
|
||||
|
|
@ -28,7 +29,6 @@ void southbridge_inject_dsdt(const struct device *device);
|
|||
* Defined as weak in common acpi as gnvs structure definition is
|
||||
* chipset specific.
|
||||
*/
|
||||
struct global_nvs;
|
||||
|
||||
void acpi_create_gnvs(struct global_nvs *gnvs);
|
||||
void acpi_init_gnvs(struct global_nvs *gnvs);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue