summaryrefslogtreecommitdiff
path: root/src/mainboard/emulation/qemu-riscv/mainboard.c
blob: e17ce13d4315e24de943daf9af61cf905b4f7cb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0-only */

#include <console/console.h>
#include <device/device.h>
#include <symbols.h>
#include <cbmem.h>

static void mainboard_enable(struct device *dev)
{
	if (!dev) {
		die("No dev0; die\n");
	}

	ram_from_to(dev, 0, (uintptr_t)_dram, (uintptr_t)cbmem_top());
}

struct chip_operations mainboard_ops = {
	.enable_dev = mainboard_enable,
};