blob: 241b3846687ad5d1058b9e82cced83966eb8e16c [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>
Simon Glass67c4e9f2019-11-14 12:57:45 -07007#include <init.h>
Paul Burtonad8783c2016-09-08 07:47:39 +01008
9#include <asm/io.h>
10
11#include "boston-regs.h"
12
Simon Glass088454c2017-03-31 08:40:25 -060013DECLARE_GLOBAL_DATA_PTR;
14
Simon Glassf1683aa2017-04-06 12:47:05 -060015int dram_init(void)
Paul Burtonad8783c2016-09-08 07:47:39 +010016{
17 u32 ddrconf0 = __raw_readl((uint32_t *)BOSTON_PLAT_DDRCONF0);
18
Simon Glass088454c2017-03-31 08:40:25 -060019 gd->ram_size = (phys_size_t)(ddrconf0 & BOSTON_PLAT_DDRCONF0_SIZE) <<
20 30;
21
22 return 0;
Paul Burtonad8783c2016-09-08 07:47:39 +010023}
24
25ulong board_get_usable_ram_top(ulong total_size)
26{
27 DECLARE_GLOBAL_DATA_PTR;
28
29 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE) {
30 /* 2GB wrapped around to 0 */
31 return CKSEG0ADDR(256 << 20);
32 }
33
34 return min_t(unsigned long, gd->ram_top, CKSEG0ADDR(256 << 20));
35}