common: Move RAM-sizing functions to init.h
[platform/kernel/u-boot.git] / arch / arm / mach-orion5x / dram.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2010 Albert ARIBAUD <albert.u.boot@aribaud.net>
4  *
5  * Based on original Kirkwood support which is
6  * (C) Copyright 2009
7  * Marvell Semiconductor <www.marvell.com>
8  * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
9  */
10
11 #include <common.h>
12 #include <config.h>
13 #include <init.h>
14 #include <asm/arch/cpu.h>
15
16 DECLARE_GLOBAL_DATA_PTR;
17
18 /*
19  * orion5x_sdram_bar - reads SDRAM Base Address Register
20  */
21 u32 orion5x_sdram_bar(enum memory_bank bank)
22 {
23         struct orion5x_ddr_addr_decode_registers *winregs =
24                 (struct orion5x_ddr_addr_decode_registers *)
25                 ORION5X_DRAM_BASE;
26
27         u32 result = 0;
28         u32 enable = 0x01 & winregs[bank].size;
29
30         if ((!enable) || (bank > BANK3))
31                 return 0;
32
33         result = winregs[bank].base;
34         return result;
35 }
36 int dram_init (void)
37 {
38         /* dram_init must store complete ramsize in gd->ram_size */
39         gd->ram_size = get_ram_size(
40                         (long *) orion5x_sdram_bar(0),
41                         CONFIG_MAX_RAM_BANK_SIZE);
42         return 0;
43 }
44
45 int dram_init_banksize(void)
46 {
47         int i;
48
49         for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
50                 gd->bd->bi_dram[i].start = orion5x_sdram_bar(i);
51                 gd->bd->bi_dram[i].size = get_ram_size(
52                         (long *) (gd->bd->bi_dram[i].start),
53                         CONFIG_MAX_RAM_BANK_SIZE);
54         }
55
56         return 0;
57 }