blob: 33d4a69ec74b29f5c9c8edda62a6df48073545cc [file] [log] [blame]
Ravi Kumar Bokka0c9eb312021-03-31 08:04:13 +05301/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <symbols.h>
4#include <device/device.h>
5#include <soc/mmu.h>
6#include <soc/mmu_common.h>
7#include <soc/symbols_common.h>
8
9static void soc_read_resources(struct device *dev)
10{
11 ram_resource(dev, 0, (uintptr_t)ddr_region->offset / KiB,
12 ddr_region->size / KiB);
13 reserved_ram_resource(dev, 1, (uintptr_t)_dram_soc / KiB,
14 REGION_SIZE(dram_soc) / KiB);
15}
16
17static void soc_init(struct device *dev)
18{
19}
20
21static struct device_operations soc_ops = {
22 .read_resources = soc_read_resources,
23 .init = soc_init,
24};
25
26static void enable_soc_dev(struct device *dev)
27{
28 dev->ops = &soc_ops;
29}
30
31struct chip_operations soc_qualcomm_sc7280_ops = {
32 CHIP_NAME("SOC Qualcomm SC7280")
33 .enable_dev = enable_soc_dev,
34};