blob: 8794883364f8e1e24e2f3b138e60df9b99783360 [file] [log] [blame]
Duncan Laurieddc3e422013-10-02 16:10:54 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 Google Inc.
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.
Duncan Laurieddc3e422013-10-02 16:10:54 -070014 */
15
16#include <types.h>
17#include <string.h>
18#include <cbmem.h>
19#include <console/console.h>
20#include <arch/acpi.h>
21#include <arch/ioapic.h>
22#include <arch/acpigen.h>
23#include <arch/smp/mpspec.h>
24#include <device/device.h>
25#include <device/pci.h>
26#include <device/pci_ids.h>
27#include <cpu/cpu.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070028#include <soc/acpi.h>
29#include <soc/nvs.h>
Duncan Laurieddc3e422013-10-02 16:10:54 -070030#include "thermal.h"
31
Vladimir Serbinenkoc6e566a2014-08-31 17:43:51 +020032void acpi_create_gnvs(global_nvs_t *gnvs)
Duncan Laurieddc3e422013-10-02 16:10:54 -070033{
Duncan Laurie2663a552014-05-14 15:59:37 -070034 acpi_init_gnvs(gnvs);
35
Duncan Laurieddc3e422013-10-02 16:10:54 -070036 /* Enable USB ports in S3 */
37 gnvs->s3u0 = 1;
Duncan Laurieddc3e422013-10-02 16:10:54 -070038
39 /* Disable USB ports in S5 */
40 gnvs->s5u0 = 0;
Duncan Laurieddc3e422013-10-02 16:10:54 -070041
Duncan Laurie2663a552014-05-14 15:59:37 -070042 gnvs->tmps = TEMPERATURE_SENSOR_ID;
43 gnvs->tcrt = CRITICAL_TEMPERATURE;
44 gnvs->tpsv = PASSIVE_TEMPERATURE;
45 gnvs->tmax = MAX_TEMPERATURE;
Duncan Laurieddc3e422013-10-02 16:10:54 -070046}
47
48unsigned long acpi_fill_madt(unsigned long current)
49{
50 /* Local APICs */
51 current = acpi_create_madt_lapics(current);
52
53 /* IOAPIC */
54 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
55 2, IO_APIC_ADDR, 0);
56
Duncan Laurie2663a552014-05-14 15:59:37 -070057 return acpi_madt_irq_overrides(current);
Duncan Laurieddc3e422013-10-02 16:10:54 -070058}