Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians...
[oweals/u-boot.git] / arch / x86 / cpu / ivybridge / sdram_nop.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (c) 2016 Google, Inc
4  */
5
6 #include <common.h>
7 #include <init.h>
8
9 DECLARE_GLOBAL_DATA_PTR;
10
11 int dram_init(void)
12 {
13         gd->ram_size = 1ULL << 31;
14         gd->bd->bi_dram[0].start = 0;
15         gd->bd->bi_dram[0].size = gd->ram_size;
16
17         return 0;
18 }