blob: c29b073d7c4eaed5b9fa7b973ea931361a3ee2d0 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bin Meng2229c4c2015-05-07 21:34:08 +08002/*
3 * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
Bin Meng2229c4c2015-05-07 21:34:08 +08004 */
5
6#include <common.h>
7#include <asm/post.h>
8#include <asm/arch/qemu.h>
9
10DECLARE_GLOBAL_DATA_PTR;
11
Bin Meng38502eb2019-08-29 02:53:04 -070012u32 qemu_get_low_memory_size(void)
Bin Meng2229c4c2015-05-07 21:34:08 +080013{
14 u32 ram;
15
16 outb(HIGH_RAM_ADDR, CMOS_ADDR_PORT);
17 ram = ((u32)inb(CMOS_DATA_PORT)) << 14;
18 outb(LOW_RAM_ADDR, CMOS_ADDR_PORT);
19 ram |= ((u32)inb(CMOS_DATA_PORT)) << 6;
20 ram += 16 * 1024;
21
Bin Meng38502eb2019-08-29 02:53:04 -070022 return ram * 1024;
23}
24
25int dram_init(void)
26{
27 gd->ram_size = qemu_get_low_memory_size();
Bin Meng2229c4c2015-05-07 21:34:08 +080028 post_code(POST_DRAM);
29
30 return 0;
31}
32
Simon Glass2f949c32017-03-31 08:40:32 -060033int dram_init_banksize(void)
Bin Meng2229c4c2015-05-07 21:34:08 +080034{
35 gd->bd->bi_dram[0].start = 0;
36 gd->bd->bi_dram[0].size = gd->ram_size;
Simon Glass2f949c32017-03-31 08:40:32 -060037
38 return 0;
Bin Meng2229c4c2015-05-07 21:34:08 +080039}
40
41/*
42 * This function looks for the highest region of memory lower than 4GB which
43 * has enough space for U-Boot where U-Boot is aligned on a page boundary.
44 * It overrides the default implementation found elsewhere which simply
45 * picks the end of ram, wherever that may be. The location of the stack,
46 * the relocation address, and how far U-Boot is moved by relocation are
47 * set in the global data structure.
48 */
49ulong board_get_usable_ram_top(ulong total_size)
50{
51 return gd->ram_size;
52}