ACPI: Drop typedef global_nvs_t
Bring all GNVS related initialisation function to global scope to force identical signatures. Followup work is likely to remove some as duplicates. Change-Id: Id4299c41d79c228f3d35bc7cb9bf427ce1e82ba1 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42489 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
committed by
Patrick Georgi
parent
bc1cb38ce1
commit
0c1dd9c841
@@ -2,6 +2,7 @@
|
||||
|
||||
#include <types.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <device/device.h>
|
||||
#include <vendorcode/google/chromeos/gnvs.h>
|
||||
#include <southbridge/intel/lynxpoint/pch.h>
|
||||
@@ -9,7 +10,7 @@
|
||||
|
||||
#include "thermal.h"
|
||||
|
||||
void acpi_create_gnvs(global_nvs_t *gnvs)
|
||||
void acpi_create_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
/* Enable USB ports in S3 */
|
||||
gnvs->s3u0 = 1;
|
||||
|
@@ -1,7 +1,8 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <southbridge/intel/i82801gx/nvs.h>
|
||||
|
||||
void acpi_create_gnvs(global_nvs_t *gnvs)
|
||||
void acpi_create_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
}
|
||||
|
@@ -1,7 +1,8 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <southbridge/intel/i82801gx/nvs.h>
|
||||
|
||||
void acpi_create_gnvs(global_nvs_t *gnvs)
|
||||
void acpi_create_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
}
|
||||
|
@@ -1,9 +1,10 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <southbridge/intel/bd82x6x/nvs.h>
|
||||
#include "thermal.h"
|
||||
|
||||
void acpi_create_gnvs(global_nvs_t *gnvs)
|
||||
void acpi_create_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
/* Enable USB ports in S3 by default */
|
||||
gnvs->s3u0 = 1;
|
||||
|
@@ -1,8 +1,9 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <southbridge/intel/i82801gx/nvs.h>
|
||||
|
||||
void acpi_create_gnvs(global_nvs_t *gnvs)
|
||||
void acpi_create_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
gnvs->pwrs = 1; /* Power state (AC = 1) */
|
||||
gnvs->cmap = 0x01; /* Enable COM 1 port */
|
||||
|
@@ -1,8 +1,9 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <southbridge/intel/i82801jx/nvs.h>
|
||||
|
||||
void acpi_create_gnvs(global_nvs_t *gnvs)
|
||||
void acpi_create_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
gnvs->pwrs = 1; /* Power state (AC = 1) */
|
||||
gnvs->osys = 2002; /* At least WINXP SP2 (HPET fix) */
|
||||
|
@@ -2,13 +2,14 @@
|
||||
|
||||
#include <types.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <device/device.h>
|
||||
#include <vendorcode/google/chromeos/gnvs.h>
|
||||
#include <southbridge/intel/bd82x6x/nvs.h>
|
||||
|
||||
#include "thermal.h"
|
||||
|
||||
void acpi_create_gnvs(global_nvs_t *gnvs)
|
||||
void acpi_create_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
/* Enable USB ports in S3 */
|
||||
gnvs->s3u0 = 1;
|
||||
|
@@ -2,6 +2,7 @@
|
||||
|
||||
#include <types.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <device/device.h>
|
||||
#include <cpu/x86/msr.h>
|
||||
|
||||
@@ -11,7 +12,7 @@
|
||||
|
||||
extern const unsigned char AmlCode[];
|
||||
|
||||
void acpi_create_gnvs(global_nvs_t *gnvs)
|
||||
void acpi_create_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
acpi_init_gnvs(gnvs);
|
||||
|
||||
|
@@ -1,6 +1,7 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <arch/ioapic.h>
|
||||
#include <device/device.h>
|
||||
#include <soc/acpi.h>
|
||||
@@ -10,7 +11,7 @@
|
||||
#include <boardid.h>
|
||||
#include "onboard.h"
|
||||
|
||||
void acpi_create_gnvs(global_nvs_t *gnvs)
|
||||
void acpi_create_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
acpi_init_gnvs(gnvs);
|
||||
|
||||
|
@@ -2,13 +2,14 @@
|
||||
|
||||
#include <types.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <arch/ioapic.h>
|
||||
#include <device/device.h>
|
||||
#include <soc/acpi.h>
|
||||
#include <soc/nvs.h>
|
||||
#include "thermal.h"
|
||||
|
||||
void acpi_create_gnvs(global_nvs_t *gnvs)
|
||||
void acpi_create_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
acpi_init_gnvs(gnvs);
|
||||
|
||||
|
Reference in New Issue
Block a user