qcs405: Add DRAM resources

TEST=build

Change-Id: Iea79a942c297400c88aa205da713bcfcb8c51185
Signed-off-by: Sricharan R <sricharan@codeaurora.org>
Signed-off-by: Nitheesh Sekar <nsekar@codeaurora.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/29954
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
diff --git a/src/soc/qualcomm/qcs405/soc.c b/src/soc/qualcomm/qcs405/soc.c
index f7591a7..b3bfb99 100644
--- a/src/soc/qualcomm/qcs405/soc.c
+++ b/src/soc/qualcomm/qcs405/soc.c
@@ -13,12 +13,17 @@
  * GNU General Public License for more details.
  */
 
+#include <symbols.h>
 #include <device/device.h>
 #include <timestamp.h>
+#include <soc/mmu.h>
+#include <soc/symbols.h>
 
 static void soc_read_resources(struct device *dev)
 {
-
+	ram_resource(dev, 0, (uintptr_t)_dram / KiB, (1 * GiB) / KiB);
+	reserved_ram_resource(dev, 1, (uintptr_t)_dram_reserved / KiB,
+			      REGION_SIZE(dram_reserved) / KiB);
 }
 
 static void soc_init(struct device *dev)