blob: c55213ca2d2ef7371b16df10d67a15f396773084 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Simon Glass78a20d22017-01-16 07:04:08 -07002/*
3 * Copyright (c) 2016 Google, Inc
Simon Glass78a20d22017-01-16 07:04:08 -07004 */
5
6#include <common.h>
7
8DECLARE_GLOBAL_DATA_PTR;
9
10int dram_init(void)
11{
12 gd->ram_size = 1ULL << 31;
13 gd->bd->bi_dram[0].start = 0;
14 gd->bd->bi_dram[0].size = gd->ram_size;
15
16 return 0;
17}