1 // SPDX-License-Identifier: GPL-2.0+
8 #include <asm/arch/qemu.h>
10 DECLARE_GLOBAL_DATA_PTR;
12 u32 qemu_get_low_memory_size(void)
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;
25 u64 qemu_get_high_memory_size(void)
29 outb(HIGH_HIGHRAM_ADDR, CMOS_ADDR_PORT);
30 ram = ((u64)inb(CMOS_DATA_PORT)) << 22;
31 outb(MID_HIGHRAM_ADDR, CMOS_ADDR_PORT);
32 ram |= ((u64)inb(CMOS_DATA_PORT)) << 14;
33 outb(LOW_HIGHRAM_ADDR, CMOS_ADDR_PORT);
34 ram |= ((u64)inb(CMOS_DATA_PORT)) << 6;
41 gd->ram_size = qemu_get_low_memory_size();
42 gd->ram_size += qemu_get_high_memory_size();
48 int dram_init_banksize(void)
52 gd->bd->bi_dram[0].start = 0;
53 gd->bd->bi_dram[0].size = qemu_get_low_memory_size();
55 high_mem_size = qemu_get_high_memory_size();
57 gd->bd->bi_dram[1].start = SZ_4G;
58 gd->bd->bi_dram[1].size = high_mem_size;
65 * This function looks for the highest region of memory lower than 4GB which
66 * has enough space for U-Boot where U-Boot is aligned on a page boundary.
67 * It overrides the default implementation found elsewhere which simply
68 * picks the end of ram, wherever that may be. The location of the stack,
69 * the relocation address, and how far U-Boot is moved by relocation are
70 * set in the global data structure.
72 ulong board_get_usable_ram_top(ulong total_size)
74 return qemu_get_low_memory_size();