blob: 8245ca24dd4d2b6d5bc0b2d31c19f0fc546d6260 [file] [log] [blame]
Stefan Reinauer597ff872013-01-07 13:21:22 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2004 Stefan Reinauer <stefan.reinauer@coreboot.org>
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
Paul Menzela46a7122013-02-23 18:37:27 +010017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Stefan Reinauer597ff872013-01-07 13:21:22 -080018 */
19
20#include <cbmem.h>
21
22#define CMOS_ADDR_PORT 0x70
23#define CMOS_DATA_PORT 0x71
Gerd Hoffmann9839a382013-06-17 12:26:17 +020024
Stefan Reinauer597ff872013-01-07 13:21:22 -080025#define HIGH_RAM_ADDR 0x35
26#define LOW_RAM_ADDR 0x34
27
Gerd Hoffmann9839a382013-06-17 12:26:17 +020028#define HIGH_HIGHRAM_ADDR 0x5d
29#define MID_HIGHRAM_ADDR 0x5c
30#define LOW_HIGHRAM_ADDR 0x5b
31
Stefan Reinauer597ff872013-01-07 13:21:22 -080032static unsigned long qemu_get_memory_size(void)
33{
34 unsigned long tomk;
35 outb (HIGH_RAM_ADDR, CMOS_ADDR_PORT);
36 tomk = ((unsigned long) inb(CMOS_DATA_PORT)) << 14;
37 outb (LOW_RAM_ADDR, CMOS_ADDR_PORT);
38 tomk |= ((unsigned long) inb(CMOS_DATA_PORT)) << 6;
39 tomk += 16 * 1024;
40 return tomk;
41}
42
43unsigned long get_top_of_ram(void);
44unsigned long get_top_of_ram(void)
45{
46 return qemu_get_memory_size() * 1024;
47}
48
49struct cbmem_entry *get_cbmem_toc(void)
50{
51 return (struct cbmem_entry *)(get_top_of_ram() - HIGH_MEMORY_SIZE);
52}