Don't re-init EBDA in S3 resume path.
[coreboot.git] / src / arch / x86 / lib / ebda.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2012 The Chromium OS Authors. All rights reserved.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; version 2 of
9  * 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  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19  * MA 02110-1301 USA
20  */
21
22 #include <stdint.h>
23 #include <string.h>
24 #include <arch/io.h>
25 #include <arch/ebda.h>
26 #if CONFIG_HAVE_ACPI_RESUME
27 #include <arch/acpi.h>
28 #endif
29
30 void setup_ebda(u32 low_memory_size, u16 ebda_segment, u16 ebda_size)
31 {
32 #if CONFIG_HAVE_ACPI_RESUME
33         /* Skip in S3 resume path */
34         if (acpi_slp_type == 3)
35                 return;
36 #endif
37
38         if (!low_memory_size || !ebda_segment || !ebda_size)
39                 return;
40
41         /* clear BIOS DATA AREA */
42         memset((void *)X86_BDA_BASE, 0, X86_BDA_SIZE);
43
44         write16(X86_EBDA_LOWMEM, (low_memory_size >> 10));
45         write16(X86_EBDA_SEGMENT, ebda_segment);
46
47         /* Set up EBDA */
48         memset((void *)(ebda_segment << 4), 0, ebda_size);
49         write16((ebda_segment << 4), (ebda_size >> 10));
50 }
51
52 void setup_default_ebda(void)
53 {
54         setup_ebda(DEFAULT_EBDA_LOWMEM,
55                    DEFAULT_EBDA_SEGMENT,
56                    DEFAULT_EBDA_SIZE);
57 }