fece94398afe04b647c60402606382dc7e1395e8
[coreboot.git] / src / southbridge / amd / sb800 / fadt.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2010 Advanced Micro Devices, 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.
14  *
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
18  */
19
20 /*
21  * ACPI - create the Fixed ACPI Description Tables (FADT)
22  */
23
24 #include <string.h>
25 #include <console/console.h>
26 #include <arch/acpi.h>
27 #include <arch/io.h>
28 #include <device/device.h>
29 #include "sb800.h"
30
31 void acpi_create_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, void *dsdt)
32 {
33         acpi_header_t *header = &(fadt->header);
34
35         printk(BIOS_DEBUG, "pm_base: 0x%04x\n", SB800_ACPI_IO_BASE);
36
37         /* Prepare the header */
38         memset((void *)fadt, 0, sizeof(acpi_fadt_t));
39         memcpy(header->signature, "FACP", 4);
40         header->length = 244;
41         header->revision = 1;   /* TODO: 3 will make linux hang. */
42         memcpy(header->oem_id, OEM_ID, 6);
43         memcpy(header->oem_table_id, "COREBOOT", 8);
44         memcpy(header->asl_compiler_id, ASLC, 4);
45         header->asl_compiler_revision = 0;
46
47         fadt->firmware_ctrl = (u32) facs;
48         fadt->dsdt = (u32) dsdt;
49         /* 3=Workstation,4=Enterprise Server, 7=Performance Server */
50         fadt->preferred_pm_profile = 0x03;
51         fadt->sci_int = 9;
52         /* disable system management mode by setting to 0: */
53         fadt->smi_cmd = 0;
54         fadt->acpi_enable = 0xf0;
55         fadt->acpi_disable = 0xf1;
56         fadt->s4bios_req = 0x0;
57         fadt->pstate_cnt = 0xe2;
58         fadt->pm1a_evt_blk = ACPI_PM_EVT_BLK;
59         fadt->pm1b_evt_blk = 0x0000;
60         fadt->pm1a_cnt_blk = ACPI_PM1_CNT_BLK;
61         fadt->pm1b_cnt_blk = 0x0000;
62         fadt->pm2_cnt_blk = ACPI_PMA_CNT_BLK;
63         fadt->pm_tmr_blk = ACPI_PM_TMR_BLK;
64         fadt->gpe0_blk = ACPI_GPE0_BLK;
65         fadt->gpe1_blk = 0x0000;        /* we dont have gpe1 block, do we? */
66
67         fadt->pm1_evt_len = 4;
68         fadt->pm1_cnt_len = 2;
69         fadt->pm2_cnt_len = 1;
70         fadt->pm_tmr_len = 4;
71         fadt->gpe0_blk_len = 8;
72         fadt->gpe1_blk_len = 0;
73         fadt->gpe1_base = 0;
74
75         fadt->cst_cnt = 0xe3;
76         fadt->p_lvl2_lat = 101;
77         fadt->p_lvl3_lat = 1001;
78         fadt->flush_size = 0;
79         fadt->flush_stride = 0;
80         fadt->duty_offset = 1;
81         fadt->duty_width = 3;
82         fadt->day_alrm = 0;     /* 0x7d these have to be */
83         fadt->mon_alrm = 0;     /* 0x7e added to cmos.layout */
84         fadt->century = 0;      /* 0x7f to make rtc alrm work */
85         fadt->iapc_boot_arch = 0x3;     /* See table 5-11 */
86         fadt->flags = 0x0001c1a5;/* 0x25; */
87
88         fadt->res2 = 0;
89
90         fadt->reset_reg.space_id = 1;
91         fadt->reset_reg.bit_width = 8;
92         fadt->reset_reg.bit_offset = 0;
93         fadt->reset_reg.resv = 0;
94         fadt->reset_reg.addrl = 0xcf9;
95         fadt->reset_reg.addrh = 0x0;
96
97         fadt->reset_value = 6;
98         fadt->x_firmware_ctl_l = (u32) facs;
99         fadt->x_firmware_ctl_h = 0;
100         fadt->x_dsdt_l = (u32) dsdt;
101         fadt->x_dsdt_h = 0;
102
103         fadt->x_pm1a_evt_blk.space_id = 1;
104         fadt->x_pm1a_evt_blk.bit_width = 32;
105         fadt->x_pm1a_evt_blk.bit_offset = 0;
106         fadt->x_pm1a_evt_blk.resv = 0;
107         fadt->x_pm1a_evt_blk.addrl = ACPI_PM_EVT_BLK;
108         fadt->x_pm1a_evt_blk.addrh = 0x0;
109
110         fadt->x_pm1b_evt_blk.space_id = 1;
111         fadt->x_pm1b_evt_blk.bit_width = 4;
112         fadt->x_pm1b_evt_blk.bit_offset = 0;
113         fadt->x_pm1b_evt_blk.resv = 0;
114         fadt->x_pm1b_evt_blk.addrl = 0x0;
115         fadt->x_pm1b_evt_blk.addrh = 0x0;
116
117         fadt->x_pm1a_cnt_blk.space_id = 1;
118         fadt->x_pm1a_cnt_blk.bit_width = 16;
119         fadt->x_pm1a_cnt_blk.bit_offset = 0;
120         fadt->x_pm1a_cnt_blk.resv = 0;
121         fadt->x_pm1a_cnt_blk.addrl = ACPI_PM1_CNT_BLK;
122         fadt->x_pm1a_cnt_blk.addrh = 0x0;
123
124         fadt->x_pm1b_cnt_blk.space_id = 1;
125         fadt->x_pm1b_cnt_blk.bit_width = 2;
126         fadt->x_pm1b_cnt_blk.bit_offset = 0;
127         fadt->x_pm1b_cnt_blk.resv = 0;
128         fadt->x_pm1b_cnt_blk.addrl = 0x0;
129         fadt->x_pm1b_cnt_blk.addrh = 0x0;
130
131         fadt->x_pm2_cnt_blk.space_id = 1;
132         fadt->x_pm2_cnt_blk.bit_width = 0;
133         fadt->x_pm2_cnt_blk.bit_offset = 0;
134         fadt->x_pm2_cnt_blk.resv = 0;
135         fadt->x_pm2_cnt_blk.addrl = ACPI_PMA_CNT_BLK;
136         fadt->x_pm2_cnt_blk.addrh = 0x0;
137
138         fadt->x_pm_tmr_blk.space_id = 1;
139         fadt->x_pm_tmr_blk.bit_width = 32;
140         fadt->x_pm_tmr_blk.bit_offset = 0;
141         fadt->x_pm_tmr_blk.resv = 0;
142         fadt->x_pm_tmr_blk.addrl = ACPI_PM_TMR_BLK;
143         fadt->x_pm_tmr_blk.addrh = 0x0;
144
145         fadt->x_gpe0_blk.space_id = 1;
146         fadt->x_gpe0_blk.bit_width = 32;
147         fadt->x_gpe0_blk.bit_offset = 0;
148         fadt->x_gpe0_blk.resv = 0;
149         fadt->x_gpe0_blk.addrl = ACPI_GPE0_BLK;
150         fadt->x_gpe0_blk.addrh = 0x0;
151
152         fadt->x_gpe1_blk.space_id = 1;
153         fadt->x_gpe1_blk.bit_width = 0;
154         fadt->x_gpe1_blk.bit_offset = 0;
155         fadt->x_gpe1_blk.resv = 0;
156         fadt->x_gpe1_blk.addrl = 0;
157         fadt->x_gpe1_blk.addrh = 0x0;
158
159         header->checksum = acpi_checksum((void *)fadt, sizeof(acpi_fadt_t));
160 }