summaryrefslogtreecommitdiff
path: root/src/soc/ti/am335x/soc.c
blob: 99c651fd8b4cc87b3ad2b24a27132ec1d9837d27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0-only */

#include <device/device.h>
#include <symbols.h>
#include <bootmem.h>

static void soc_enable(struct device *dev)
{
	ram_resource(dev, 0, (uintptr_t)_dram / KiB, CONFIG_DRAM_SIZE_MB * MiB / KiB);
}

struct chip_operations soc_ti_am335x_ops = {
	CHIP_NAME("TI AM335X")
	.enable_dev = soc_enable,
};