mb/*/*/acpi_tables: Remove unnecessary function call
[coreboot.git] / src / mainboard / google / jecht / acpi_tables.c
blob48b7a36797f71b4b834c566c0d3438be2e3420c5
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2014 Google Inc.
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.
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.
16 #include <types.h>
17 #include <arch/acpi.h>
18 #include <arch/ioapic.h>
19 #include <arch/smp/mpspec.h>
20 #include <device/device.h>
21 #include <soc/acpi.h>
22 #include <soc/nvs.h>
23 #include <variant/thermal.h>
25 void acpi_create_gnvs(global_nvs_t *gnvs)
27 acpi_init_gnvs(gnvs);
29 /* Enable USB ports in S3 */
30 gnvs->s3u0 = 1;
32 /* Disable USB ports in S5 */
33 gnvs->s5u0 = 0;
35 gnvs->tmps = TEMPERATURE_SENSOR_ID;
36 gnvs->tcrt = CRITICAL_TEMPERATURE;
37 gnvs->tpsv = PASSIVE_TEMPERATURE;
38 gnvs->tmax = MAX_TEMPERATURE;
39 gnvs->flvl = 1;
42 unsigned long acpi_fill_madt(unsigned long current)
44 /* Local APICs */
45 current = acpi_create_madt_lapics(current);
47 /* IOAPIC */
48 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
49 2, IO_APIC_ADDR, 0);
51 return acpi_madt_irq_overrides(current);