]> Git Repo - J-u-boot.git/blob - arch/x86/cpu/qemu/dram.c
x86: qemu: Support getting high memory size
[J-u-boot.git] / arch / x86 / cpu / qemu / dram.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2015, Bin Meng <[email protected]>
4  */
5
6 #include <common.h>
7 #include <asm/post.h>
8 #include <asm/arch/qemu.h>
9
10 DECLARE_GLOBAL_DATA_PTR;
11
12 u32 qemu_get_low_memory_size(void)
13 {
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
22         return ram * 1024;
23 }
24
25 u64 qemu_get_high_memory_size(void)
26 {
27         u64 ram;
28
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;
35
36         return ram * 1024;
37 }
38
39 int dram_init(void)
40 {
41         gd->ram_size = qemu_get_low_memory_size();
42         gd->ram_size += qemu_get_high_memory_size();
43         post_code(POST_DRAM);
44
45         return 0;
46 }
47
48 int dram_init_banksize(void)
49 {
50         u64 high_mem_size;
51
52         gd->bd->bi_dram[0].start = 0;
53         gd->bd->bi_dram[0].size = qemu_get_low_memory_size();
54
55         high_mem_size = qemu_get_high_memory_size();
56         if (high_mem_size) {
57                 gd->bd->bi_dram[1].start = SZ_4G;
58                 gd->bd->bi_dram[1].size = high_mem_size;
59         }
60
61         return 0;
62 }
63
64 /*
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.
71  */
72 ulong board_get_usable_ram_top(ulong total_size)
73 {
74         return qemu_get_low_memory_size();
75 }
This page took 0.030425 seconds and 4 git commands to generate.