blob: 3f8a5c0d8e6ba1ceaa489b621f6a58865bf90e3e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Paul Burtonad8783c2016-09-08 07:47:39 +01002/*
3 * Copyright (C) 2016 Imagination Technologies
Paul Burtonad8783c2016-09-08 07:47:39 +01004 */
5
6#include <common.h>
7
8#include <asm/io.h>
9
10#include "boston-regs.h"
11
Simon Glass088454c2017-03-31 08:40:25 -060012DECLARE_GLOBAL_DATA_PTR;
13
Simon Glassf1683aa2017-04-06 12:47:05 -060014int dram_init(void)
Paul Burtonad8783c2016-09-08 07:47:39 +010015{
16 u32 ddrconf0 = __raw_readl((uint32_t *)BOSTON_PLAT_DDRCONF0);
17
Simon Glass088454c2017-03-31 08:40:25 -060018 gd->ram_size = (phys_size_t)(ddrconf0 & BOSTON_PLAT_DDRCONF0_SIZE) <<
19 30;
20
21 return 0;
Paul Burtonad8783c2016-09-08 07:47:39 +010022}
23
24ulong board_get_usable_ram_top(ulong total_size)
25{
26 DECLARE_GLOBAL_DATA_PTR;
27
28 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE) {
29 /* 2GB wrapped around to 0 */
30 return CKSEG0ADDR(256 << 20);
31 }
32
33 return min_t(unsigned long, gd->ram_top, CKSEG0ADDR(256 << 20));
34}