Simon Glass | 8ef0757 | 2014-11-12 22:42:07 -0700 | [diff] [blame^] | 1 | /* |
2 | * Copyright (c) 2011 The Chromium OS Authors. | ||||
3 | * (C) Copyright 2010,2011 | ||||
4 | * Graeme Russ, <graeme.russ@gmail.com> | ||||
5 | * | ||||
6 | * Portions from Coreboot mainboard/google/link/romstage.c | ||||
7 | * Copyright (C) 2007-2010 coresystems GmbH | ||||
8 | * Copyright (C) 2011 Google Inc. | ||||
9 | * | ||||
10 | * SPDX-License-Identifier: GPL-2.0 | ||||
11 | */ | ||||
12 | |||||
13 | #include <common.h> | ||||
14 | |||||
15 | int dram_init(void) | ||||
16 | { | ||||
17 | /* TODO: Set up DRAM */ | ||||
18 | |||||
19 | return 0; | ||||
20 | } |