summaryrefslogtreecommitdiff
path: root/src/soc/ti/am335x/soc.c
blob: b409ab0f11f814c247692fcbe185e73c075ccd39 (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_range(dev, 0, (uintptr_t)_dram, CONFIG_DRAM_SIZE_MB * (uint64_t)MiB);
}

struct chip_operations soc_ti_am335x_ops = {
	.name = "TI AM335X",
	.enable_dev = soc_enable,
};