Prepare the BIOS data areas before device init.
[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
27 void setup_ebda(u32 low_memory_size, u16 ebda_segment, u16 ebda_size)
28 {
29         if (!low_memory_size || !ebda_segment || !ebda_size)
30                 return;
31
32         /* clear BIOS DATA AREA */
33         memset((void *)X86_BDA_BASE, 0, X86_BDA_SIZE);
34
35         write16(X86_EBDA_LOWMEM, (low_memory_size >> 10));
36         write16(X86_EBDA_SEGMENT, ebda_segment);
37
38         /* Set up EBDA */
39         memset((void *)(ebda_segment << 4), 0, ebda_size);
40         write16((ebda_segment << 4), (ebda_size >> 10));
41 }
42
43 void setup_default_ebda(void)
44 {
45         setup_ebda(DEFAULT_EBDA_LOWMEM,
46                    DEFAULT_EBDA_SEGMENT,
47                    DEFAULT_EBDA_SIZE);
48 }