Get rid of hard coded strings in ACPI tables
[coreboot.git] / src / mainboard / supermicro / h8qgi / fadt.c
blob0ffd6d1fc2b03e20d5afa9b874526f4fcbef4109
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2011 - 2012 Advanced Micro Devices, 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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 * ACPI - create the Fixed ACPI Description Tables (FADT)
26 #include <string.h>
27 #include <console/console.h>
28 #include <arch/acpi.h>
29 #include <arch/io.h>
30 #include <device/device.h>
31 #include "Platform.h" /*sb700 platform header*/
33 #ifndef ACPI_BLK_BASE
34 #define ACPI_BLK_BASE PM1_EVT_BLK_ADDRESS
35 #endif
37 void acpi_create_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, void *dsdt)
39 acpi_header_t *header = &(fadt->header);
41 printk(BIOS_DEBUG, "ACPI_BLK_BASE: 0x%04x\n", ACPI_BLK_BASE);
42 /* Prepare the header */
43 memset((void *)fadt, 0, sizeof(acpi_fadt_t));
44 memcpy(header->signature, "FACP", 4);
45 header->length = 244;
46 header->revision = 3;
47 memcpy(header->oem_id, OEM_ID, 6);
48 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
49 memcpy(header->asl_compiler_id, ASLC, 4);
50 header->asl_compiler_revision = 0;
52 fadt->firmware_ctrl = (u32) facs;
53 fadt->dsdt = (u32) dsdt;
54 /* 3=Workstation,4=Enterprise Server, 7=Performance Server */
55 fadt->preferred_pm_profile = 0x03;
56 fadt->sci_int = 9;
57 /* disable system management mode by setting to 0: */
58 fadt->smi_cmd = 0;
59 fadt->acpi_enable = 0xf0;
60 fadt->acpi_disable = 0xf1;
61 fadt->s4bios_req = 0x0;
62 fadt->pstate_cnt = 0xe2;
64 /* RTC_En_En, TMR_En_En, GBL_EN_EN */
65 outl(0x1, PM1_CNT_BLK_ADDRESS); /* set SCI_EN */
66 fadt->pm1a_evt_blk = PM1_EVT_BLK_ADDRESS;
67 fadt->pm1b_evt_blk = 0x0000;
68 fadt->pm1a_cnt_blk = PM1_CNT_BLK_ADDRESS;
69 fadt->pm1b_cnt_blk = 0x0000;
70 fadt->pm2_cnt_blk = ACPI_PMA_CNT_BLK_ADDRESS;
71 fadt->pm_tmr_blk = PM1_TMR_BLK_ADDRESS;
72 fadt->gpe0_blk = GPE0_BLK_ADDRESS;
73 fadt->gpe1_blk = 0x0000; /* we dont have gpe1 block, do we? */
75 fadt->pm1_evt_len = 4;
76 fadt->pm1_cnt_len = 2;
77 fadt->pm2_cnt_len = 1;
78 fadt->pm_tmr_len = 4;
79 fadt->gpe0_blk_len = 8;
80 fadt->gpe1_blk_len = 0;
81 fadt->gpe1_base = 0;
83 fadt->cst_cnt = 0xe3;
84 fadt->p_lvl2_lat = 101;
85 fadt->p_lvl3_lat = 1001;
86 fadt->flush_size = 0;
87 fadt->flush_stride = 0;
88 fadt->duty_offset = 1;
89 fadt->duty_width = 3;
90 fadt->day_alrm = 0; /* 0x7d these have to be */
91 fadt->mon_alrm = 0; /* 0x7e added to cmos.layout */
92 fadt->century = 0; /* 0x7f to make rtc alrm work */
93 fadt->iapc_boot_arch = 0x3; /* See table 5-11 */
94 fadt->flags = 0x0001c1a5;/* 0x25; */
96 fadt->res2 = 0;
98 fadt->reset_reg.space_id = 1;
99 fadt->reset_reg.bit_width = 8;
100 fadt->reset_reg.bit_offset = 0;
101 fadt->reset_reg.resv = 0;
102 fadt->reset_reg.addrl = 0xcf9;
103 fadt->reset_reg.addrh = 0x0;
105 fadt->reset_value = 6;
106 fadt->x_firmware_ctl_l = (u32) facs;
107 fadt->x_firmware_ctl_h = 0;
108 fadt->x_dsdt_l = (u32) dsdt;
109 fadt->x_dsdt_h = 0;
111 fadt->x_pm1a_evt_blk.space_id = 1;
112 fadt->x_pm1a_evt_blk.bit_width = 32;
113 fadt->x_pm1a_evt_blk.bit_offset = 0;
114 fadt->x_pm1a_evt_blk.resv = 0;
115 fadt->x_pm1a_evt_blk.addrl = PM1_EVT_BLK_ADDRESS;
116 fadt->x_pm1a_evt_blk.addrh = 0x0;
118 fadt->x_pm1b_evt_blk.space_id = 1;
119 fadt->x_pm1b_evt_blk.bit_width = 4;
120 fadt->x_pm1b_evt_blk.bit_offset = 0;
121 fadt->x_pm1b_evt_blk.resv = 0;
122 fadt->x_pm1b_evt_blk.addrl = 0x0;
123 fadt->x_pm1b_evt_blk.addrh = 0x0;
126 fadt->x_pm1a_cnt_blk.space_id = 1;
127 fadt->x_pm1a_cnt_blk.bit_width = 16;
128 fadt->x_pm1a_cnt_blk.bit_offset = 0;
129 fadt->x_pm1a_cnt_blk.resv = 0;
130 fadt->x_pm1a_cnt_blk.addrl = PM1_CNT_BLK_ADDRESS;
131 fadt->x_pm1a_cnt_blk.addrh = 0x0;
133 fadt->x_pm1b_cnt_blk.space_id = 1;
134 fadt->x_pm1b_cnt_blk.bit_width = 2;
135 fadt->x_pm1b_cnt_blk.bit_offset = 0;
136 fadt->x_pm1b_cnt_blk.resv = 0;
137 fadt->x_pm1b_cnt_blk.addrl = 0x0;
138 fadt->x_pm1b_cnt_blk.addrh = 0x0;
141 fadt->x_pm2_cnt_blk.space_id = 1;
142 fadt->x_pm2_cnt_blk.bit_width = 0;
143 fadt->x_pm2_cnt_blk.bit_offset = 0;
144 fadt->x_pm2_cnt_blk.resv = 0;
145 fadt->x_pm2_cnt_blk.addrl = ACPI_PMA_CNT_BLK_ADDRESS;
146 fadt->x_pm2_cnt_blk.addrh = 0x0;
149 fadt->x_pm_tmr_blk.space_id = 1;
150 fadt->x_pm_tmr_blk.bit_width = 32;
151 fadt->x_pm_tmr_blk.bit_offset = 0;
152 fadt->x_pm_tmr_blk.resv = 0;
153 fadt->x_pm_tmr_blk.addrl = PM1_TMR_BLK_ADDRESS;
154 fadt->x_pm_tmr_blk.addrh = 0x0;
157 fadt->x_gpe0_blk.space_id = 1;
158 fadt->x_gpe0_blk.bit_width = 32;
159 fadt->x_gpe0_blk.bit_offset = 0;
160 fadt->x_gpe0_blk.resv = 0;
161 fadt->x_gpe0_blk.addrl = GPE0_BLK_ADDRESS;
162 fadt->x_gpe0_blk.addrh = 0x0;
165 fadt->x_gpe1_blk.space_id = 1;
166 fadt->x_gpe1_blk.bit_width = 0;
167 fadt->x_gpe1_blk.bit_offset = 0;
168 fadt->x_gpe1_blk.resv = 0;
169 fadt->x_gpe1_blk.addrl = 0;
170 fadt->x_gpe1_blk.addrh = 0x0;
172 header->checksum = acpi_checksum((void *)fadt, sizeof(acpi_fadt_t));