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 <sathish.k.kuttan@intel.com>
This commit is contained in:
Sathish Kuttan 2019-06-09 16:26:46 -07:00 committed by Anas Nashif
commit 35c4f53ad1

View file

@ -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 */