blob: af222b5adecc231929c3fe0aa1005e13da379886 [file] [log] [blame]
Lee Leahy89b5fbd2015-05-11 17:24:31 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 * Copyright (C) 2015 Intel Corp.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Lee Leahy89b5fbd2015-05-11 17:24:31 -070015 */
16
17#include <soc/acpi.h>
18#include <string.h>
19
20void acpi_create_fadt(acpi_fadt_t *fadt, acpi_facs_t *facs, void *dsdt)
21{
22 acpi_header_t *header = &(fadt->header);
23
24 memset((void *) fadt, 0, sizeof(acpi_fadt_t));
25 memcpy(header->signature, "FACP", 4);
26 header->length = sizeof(acpi_fadt_t);
27 header->revision = 3;
28 memcpy(header->oem_id, OEM_ID, 6);
29 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
30 memcpy(header->asl_compiler_id, ASLC, 4);
31 header->asl_compiler_revision = 1;
32
33 fadt->firmware_ctrl = (unsigned long) facs;
34 fadt->dsdt = (unsigned long) dsdt;
35 fadt->model = 1;
36 fadt->preferred_pm_profile = PM_MOBILE;
37
38 fadt->x_firmware_ctl_l = (unsigned long)facs;
39 fadt->x_firmware_ctl_h = 0;
40 fadt->x_dsdt_l = (unsigned long)dsdt;
41 fadt->x_dsdt_h = 0;
42
43 acpi_fill_in_fadt(fadt);
44
45 header->checksum =
46 acpi_checksum((void *) fadt, header->length);
47}