00001 00043 #include <linkerscript.h> 00044 #include <physmem.h> 00045 #include <cpu/addrspace.h> 00046 #include <chip/memory-map.h> 00047 00051 struct physmem_pool cpu_sram_pool = { 00052 .start = (phys_addr_t)_end, 00053 .end = CPU_SRAM_BASE + CPU_SRAM_SIZE, 00054 }; 00055 00059 struct physmem_pool hsb_sram_pool = { 00060 .start = HSB_SRAM_BASE, 00061 .end = HSB_SRAM_BASE + HSB_SRAM_SIZE, 00062 };
1.5.8