From 35c4f53ad176a427e65780a4237975b323fa094c Mon Sep 17 00:00:00 2001 From: Sathish Kuttan Date: Sun, 9 Jun 2019 16:26:46 -0700 Subject: [PATCH] soc: intel_s1000: define lpsram memory for linker Add definitions in memory.h for use in linker script - LPRAM_BASE - LPRAM_SIZE Signed-off-by: Sathish Kuttan --- soc/xtensa/intel_s1000/memory.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/soc/xtensa/intel_s1000/memory.h b/soc/xtensa/intel_s1000/memory.h index cfc8323d3b5..8117c16406f 100644 --- a/soc/xtensa/intel_s1000/memory.h +++ b/soc/xtensa/intel_s1000/memory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 Intel Corporation + * Copyright (c) 2019 Intel Corporation * SPDX-License-Identifier: Apache-2.0 */ @@ -68,4 +68,8 @@ /* size of the Interrupt Descriptor Table (IDT) */ #define IDT_SIZE 0x2000 +/* low power ram where DMA buffers are typically placed */ +#define LPRAM_BASE (DT_LP_SRAM_BASE) +#define LPRAM_SIZE (DT_LP_SRAM_SIZE) + #endif /* __INC_MEMORY_H */