blob: 543d2658d93c81928920978db8176f70369a34cd [file] [log] [blame]
Lee Leahyf7c01aa2016-02-20 17:53:54 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 Google Inc.
5 * Copyright (C) 2015-2016 Intel Corporation.
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.
15 */
16
17#include <string.h>
18#include <soc/acpi.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 /* Initialize the FADT header */
25 memset((void *) fadt, 0, sizeof(acpi_fadt_t));
26 memcpy(header->signature, "FACP", 4);
27 header->length = sizeof(acpi_fadt_t);
28 header->revision = 5;
29 memcpy(header->oem_id, OEM_ID, 6);
30 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
31 memcpy(header->asl_compiler_id, ASLC, 4);
32 header->asl_compiler_revision = 1;
33
34 /* Fill in SoC specific values */
35 acpi_fill_in_fadt(fadt);
36
37 header->checksum = acpi_checksum((void *) fadt, header->length);
38}