blob: fcfe693ce5faec87e45aacec09c3f2a3d73850f3 [file] [log] [blame]
Bin Mengb2e02d22014-12-17 15:50:36 +08001/*
2 * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
Simon Glass1021af42015-01-27 22:13:36 -07008#include <asm/fsp/fsp_support.h>
Bin Mengb2e02d22014-12-17 15:50:36 +08009#include <asm/e820.h>
Bin Mengff1e18a2015-10-11 21:37:42 -070010#include <asm/mrccache.h>
Bin Mengb2e02d22014-12-17 15:50:36 +080011#include <asm/post.h>
12
13DECLARE_GLOBAL_DATA_PTR;
14
15int dram_init(void)
16{
17 phys_size_t ram_size = 0;
Bin Meng949dbc12014-12-30 16:02:05 +080018 const struct hob_header *hdr;
19 struct hob_res_desc *res_desc;
Bin Mengb2e02d22014-12-17 15:50:36 +080020
Bin Meng949dbc12014-12-30 16:02:05 +080021 hdr = gd->arch.hob_list;
22 while (!end_of_hob(hdr)) {
Bin Mengb2439ae2015-01-06 14:04:36 +080023 if (hdr->type == HOB_TYPE_RES_DESC) {
Bin Meng949dbc12014-12-30 16:02:05 +080024 res_desc = (struct hob_res_desc *)hdr;
25 if (res_desc->type == RES_SYS_MEM ||
26 res_desc->type == RES_MEM_RESERVED) {
27 ram_size += res_desc->len;
Bin Mengb2e02d22014-12-17 15:50:36 +080028 }
29 }
Bin Meng949dbc12014-12-30 16:02:05 +080030 hdr = get_next_hob(hdr);
Bin Mengb2e02d22014-12-17 15:50:36 +080031 }
32
33 gd->ram_size = ram_size;
34 post_code(POST_DRAM);
35
Bin Mengff1e18a2015-10-11 21:37:42 -070036#ifdef CONFIG_ENABLE_MRC_CACHE
37 gd->arch.mrc_output = fsp_get_nvs_data(gd->arch.hob_list,
38 &gd->arch.mrc_output_len);
39#endif
40
Bin Mengb2e02d22014-12-17 15:50:36 +080041 return 0;
42}
43
44void dram_init_banksize(void)
45{
46 gd->bd->bi_dram[0].start = 0;
47 gd->bd->bi_dram[0].size = gd->ram_size;
48}
49
50/*
51 * This function looks for the highest region of memory lower than 4GB which
52 * has enough space for U-Boot where U-Boot is aligned on a page boundary.
53 * It overrides the default implementation found elsewhere which simply
54 * picks the end of ram, wherever that may be. The location of the stack,
55 * the relocation address, and how far U-Boot is moved by relocation are
56 * set in the global data structure.
57 */
58ulong board_get_usable_ram_top(ulong total_size)
59{
Bin Meng255fd5c2014-12-17 15:50:49 +080060 return fsp_get_usable_lowmem_top(gd->arch.hob_list);
Bin Mengb2e02d22014-12-17 15:50:36 +080061}
62
63unsigned install_e820_map(unsigned max_entries, struct e820entry *entries)
64{
65 unsigned num_entries = 0;
Bin Meng949dbc12014-12-30 16:02:05 +080066 const struct hob_header *hdr;
67 struct hob_res_desc *res_desc;
Bin Mengb2e02d22014-12-17 15:50:36 +080068
Bin Meng949dbc12014-12-30 16:02:05 +080069 hdr = gd->arch.hob_list;
Bin Mengb2e02d22014-12-17 15:50:36 +080070
Bin Meng949dbc12014-12-30 16:02:05 +080071 while (!end_of_hob(hdr)) {
Bin Mengb2439ae2015-01-06 14:04:36 +080072 if (hdr->type == HOB_TYPE_RES_DESC) {
Bin Meng949dbc12014-12-30 16:02:05 +080073 res_desc = (struct hob_res_desc *)hdr;
74 entries[num_entries].addr = res_desc->phys_start;
75 entries[num_entries].size = res_desc->len;
Bin Mengb2e02d22014-12-17 15:50:36 +080076
Bin Meng949dbc12014-12-30 16:02:05 +080077 if (res_desc->type == RES_SYS_MEM)
Bin Mengb2e02d22014-12-17 15:50:36 +080078 entries[num_entries].type = E820_RAM;
Bin Meng949dbc12014-12-30 16:02:05 +080079 else if (res_desc->type == RES_MEM_RESERVED)
Bin Mengb2e02d22014-12-17 15:50:36 +080080 entries[num_entries].type = E820_RESERVED;
Bin Meng196193a2015-09-28 02:11:59 -070081
82 num_entries++;
Bin Mengb2e02d22014-12-17 15:50:36 +080083 }
Bin Meng949dbc12014-12-30 16:02:05 +080084 hdr = get_next_hob(hdr);
Bin Mengb2e02d22014-12-17 15:50:36 +080085 }
86
Bin Meng1ed66482015-07-22 01:21:15 -070087 /* Mark PCIe ECAM address range as reserved */
88 entries[num_entries].addr = CONFIG_PCIE_ECAM_BASE;
89 entries[num_entries].size = CONFIG_PCIE_ECAM_SIZE;
90 entries[num_entries].type = E820_RESERVED;
91 num_entries++;
92
Bin Mengb2e02d22014-12-17 15:50:36 +080093 return num_entries;
94}