Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2016 Imagination Technologies |
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | |
| 8 | #include <asm/io.h> |
| 9 | |
| 10 | #include "boston-regs.h" |
| 11 | |
Simon Glass | 088454c | 2017-03-31 08:40:25 -0600 | [diff] [blame] | 12 | DECLARE_GLOBAL_DATA_PTR; |
| 13 | |
Simon Glass | f1683aa | 2017-04-06 12:47:05 -0600 | [diff] [blame] | 14 | int dram_init(void) |
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 15 | { |
| 16 | u32 ddrconf0 = __raw_readl((uint32_t *)BOSTON_PLAT_DDRCONF0); |
| 17 | |
Simon Glass | 088454c | 2017-03-31 08:40:25 -0600 | [diff] [blame] | 18 | gd->ram_size = (phys_size_t)(ddrconf0 & BOSTON_PLAT_DDRCONF0_SIZE) << |
| 19 | 30; |
| 20 | |
| 21 | return 0; |
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 22 | } |
| 23 | |
| 24 | ulong 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 | } |