17 lines
416 B
C
17 lines
416 B
C
#ifndef __DT_BINDING_ST_MEM_H
|
|
#define __DT_BINDING_ST_MEM_H
|
|
|
|
#define __SIZE_K(x) (x * 1024)
|
|
|
|
#if defined(CONFIG_SOC_QUARK_SE_C1000)
|
|
#define DT_FLASH_SIZE __SIZE_K(144)
|
|
#define DT_SRAM_SIZE __SIZE_K(55)
|
|
#elif defined(CONFIG_SOC_QUARK_D2000)
|
|
#define DT_FLASH_SIZE __SIZE_K(32)
|
|
#define DT_SRAM_SIZE __SIZE_K(8)
|
|
#else
|
|
#error "Flash and RAM sizes not defined for this chip"
|
|
#endif
|
|
|
|
#endif /* __DT_BINDING_ST_MEM_H */
|