summaryrefslogtreecommitdiff
path: root/arch/mips/mach-octeon/dram.c
blob: ff7a59f2ab8a76204ef4fbb6560aa65e6cc121d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright (C) Stefan Roese <sr@denx.de>
 */

#include <dm.h>
#include <ram.h>
#include <asm/global_data.h>
#include <linux/compat.h>

DECLARE_GLOBAL_DATA_PTR;

int dram_init(void)
{
	/*
	 * No DDR init yet -> run in L2 cache
	 */
	gd->ram_size = (4 << 20);
	gd->bd->bi_dram[0].size = gd->ram_size;
	gd->bd->bi_dram[1].size = 0;

	return 0;
}

ulong board_get_usable_ram_top(ulong total_size)
{
	return gd->ram_top;
}