rk3026: memory.h fix for smp

This commit is contained in:
黄涛
2013-07-24 16:31:00 +08:00
parent a9085bc347
commit 334a415895

View File

@@ -1 +1,15 @@
#include <../../mach-rk2928/include/mach/memory.h>
#ifndef __MACH_MEMORY_H
#define __MACH_MEMORY_H
#include <plat/memory.h>
#include <mach/io.h>
/*
* SRAM memory whereabouts
*/
#define SRAM_CODE_OFFSET (RK2928_IMEM_BASE + 0x0010)
#define SRAM_CODE_END (RK2928_IMEM_BASE + 0x0FFF)
#define SRAM_DATA_OFFSET (RK2928_IMEM_BASE + 0x1000)
#define SRAM_DATA_END (RK2928_IMEM_BASE + 0x1FFF)
#endif