blob: 8209379befb4c156f842831fffbb834da077f522 [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.
Stefan Reinauer597ff872013-01-07 13:21:22 -080014 */
15
16#include <cbmem.h>
Patrick Rudolph69d5ef92018-11-11 12:43:48 +010017#include <arch/io.h>
Kyösti Mälkkif0a3d442019-08-18 08:02:23 +030018#include <arch/romstage.h>
Patrick Rudolph69d5ef92018-11-11 12:43:48 +010019#include "memory.h"
Thomas Heijligen8d010db2019-01-10 19:45:47 +010020#include "fw_cfg.h"
Stefan Reinauer597ff872013-01-07 13:21:22 -080021
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
Patrick Rudolph69d5ef92018-11-11 12:43:48 +010032unsigned long qemu_get_high_memory_size(void)
33{
34 unsigned long high;
35 outb(HIGH_HIGHRAM_ADDR, CMOS_ADDR_PORT);
36 high = ((unsigned long) inb(CMOS_DATA_PORT)) << 22;
37 outb(MID_HIGHRAM_ADDR, CMOS_ADDR_PORT);
38 high |= ((unsigned long) inb(CMOS_DATA_PORT)) << 14;
39 outb(LOW_HIGHRAM_ADDR, CMOS_ADDR_PORT);
40 high |= ((unsigned long) inb(CMOS_DATA_PORT)) << 6;
41 return high;
42}
43
44unsigned long qemu_get_memory_size(void)
Stefan Reinauer597ff872013-01-07 13:21:22 -080045{
46 unsigned long tomk;
Patrick Rudolph69d5ef92018-11-11 12:43:48 +010047 outb(HIGH_RAM_ADDR, CMOS_ADDR_PORT);
Stefan Reinauer597ff872013-01-07 13:21:22 -080048 tomk = ((unsigned long) inb(CMOS_DATA_PORT)) << 14;
Patrick Rudolph69d5ef92018-11-11 12:43:48 +010049 outb(LOW_RAM_ADDR, CMOS_ADDR_PORT);
Stefan Reinauer597ff872013-01-07 13:21:22 -080050 tomk |= ((unsigned long) inb(CMOS_DATA_PORT)) << 6;
51 tomk += 16 * 1024;
52 return tomk;
53}
54
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020055void *cbmem_top(void)
Stefan Reinauer597ff872013-01-07 13:21:22 -080056{
Thomas Heijligen8d010db2019-01-10 19:45:47 +010057 uintptr_t top = 0;
58
59 top = fw_cfg_tolud();
60 if (!top)
61 top = (uintptr_t)qemu_get_memory_size() * 1024;
62
63 return (void *)top;
Stefan Reinauer597ff872013-01-07 13:21:22 -080064}
Kyösti Mälkkif0a3d442019-08-18 08:02:23 +030065
66/* Nothing to do, MTRRs are no-op on QEMU. */
67void fill_postcar_frame(struct postcar_frame *pcf)
68{
69}