blob: 9dde848406b95e6781c47b3aab5881b1078811a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <device/device.h>
#include <soc/sdram.h>
#include <symbols.h>
static void mainboard_enable(struct device *dev)
{
ram_resource_kb(dev, 0, (uintptr_t)_dram/KiB, sdram_size_mb()*KiB);
}
struct chip_operations mainboard_ops = {
.enable_dev = mainboard_enable,
};
|