soc/intel/alderlake/acpi.c: Don't look up coreboot CPU index
[coreboot.git] / src / soc / qualcomm / qcs405 / soc.c
blobf1a2def791fdcdea7a540b8742a5f56f55069150
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <symbols.h>
4 #include <device/device.h>
5 #include <soc/mmu.h>
6 #include <soc/symbols.h>
8 static void soc_read_resources(struct device *dev)
10 ram_range(dev, 0, (uintptr_t)_dram, 1 * GiB);
11 reserved_ram_range(dev, 1, (uintptr_t)_dram_reserved, REGION_SIZE(dram_reserved));
14 static void soc_init(struct device *dev)
19 static struct device_operations soc_ops = {
20 .read_resources = soc_read_resources,
21 .init = soc_init,
24 static void enable_soc_dev(struct device *dev)
26 dev->ops = &soc_ops;
29 struct chip_operations soc_qualcomm_qcs405_ops = {
30 CHIP_NAME("SOC Qualcomm QCS405")
31 .enable_dev = enable_soc_dev,