blob: 4b428aa486fdcf84feffc90dbbd64946ad44b02e [file] [log] [blame]
Ronald G. Minniche0e784a2014-11-26 19:25:47 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2014 Google, Inc.
5 *
Martin Rothb28f4662018-05-26 17:58:47 -06006 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
Ronald G. Minniche0e784a2014-11-26 19:25:47 +00009 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <console/console.h>
17#include <device/device.h>
18#include <cbmem.h>
Philipp Hug2ef569a2018-12-31 14:13:47 +010019#include <symbols.h>
Ronald G. Minniche0e784a2014-11-26 19:25:47 +000020
Elyes HAOUAS5cb876c2018-06-08 18:31:43 +020021static void mainboard_enable(struct device *dev)
Ronald G. Minniche0e784a2014-11-26 19:25:47 +000022{
23
24 if (!dev) {
Jonathan Neuschäfer2af174a2016-10-12 00:18:00 +020025 die("No dev0; die\n");
Ronald G. Minniche0e784a2014-11-26 19:25:47 +000026 }
27
Philipp Hug2ef569a2018-12-31 14:13:47 +010028 ram_resource(dev, 0, (uintptr_t)_dram / KiB, CONFIG_DRAM_SIZE_MB * KiB);
Ronald G. Minniche0e784a2014-11-26 19:25:47 +000029 cbmem_recovery(0);
30}
31
32struct chip_operations mainboard_ops = {
33 .enable_dev = mainboard_enable,
34};