blob: 6f1c7940b26c8e936165445624f038b675d9bb76 [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_resource_kb(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,
};