blob: b409ab0f11f814c247692fcbe185e73c075ccd39 [file] [log] [blame]
/* 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,
};