cpu/x86/smm/pci_resource_store: Store DEV/VEN ID
[coreboot2.git] / src / mainboard / google / rambi / acpi_tables.c
blobec85efa4165891c4f60e004cc62fd18003657b3a
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <acpi/acpi.h>
4 #include <acpi/acpi_gnvs.h>
5 #include <soc/acpi.h>
6 #include <soc/nvs.h>
8 void mainboard_fill_gnvs(struct global_nvs *gnvs)
10 /* Enable USB ports in S3 */
11 gnvs->s3u0 = 1;
12 gnvs->s3u1 = 1;
14 /* TPM Present */
15 gnvs->tpmp = 1;
17 /* Enable DPTF */
18 gnvs->dpte = 1;
21 void mainboard_fill_fadt(acpi_fadt_t *fadt)
23 fadt->preferred_pm_profile = PM_MOBILE;