1 /* SPDX-License-Identifier: GPL-2.0-only */
4 #include <device/device.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
,
24 static void enable_soc_dev(struct device
*dev
)
29 struct chip_operations soc_qualcomm_qcs405_ops
= {
30 CHIP_NAME("SOC Qualcomm QCS405")
31 .enable_dev
= enable_soc_dev
,