提交 dc7246e7 编写于 作者: M Masahiro Yamada

ARM: UniPhier: extend register area of init page table for PH1-sLD3

0x20000000-0x2fffffff: assigned to ARM mpcore (sLD3 only)
0xf0000000-0xffffffff: assigned to Denali NAND controller (sLD3 only)
Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
上级 230ce30a
......@@ -28,7 +28,12 @@
#define IS_SSC(x) ((IS_SPL_TEXT_AREA(x)) || \
(IS_INIT_STACK_AREA(x)))
#define IS_EXT(x) ((x) < 0x100)
#define IS_REG(x) (0x500 <= (x) && (x) < 0x700)
/* 0x20000000-0x2fffffff, 0xf0000000-0xffffffff are only used by PH1-sLD3 */
#define IS_REG(x) (0x200 <= (x) && (x) < 0x300) || \
(0x500 <= (x) && (x) < 0x700) || \
(0xf00 <= (x))
#define IS_DDR(x) (0x800 <= (x) && (x) < 0xf00)
#define MMU_FLAGS(x) (IS_SSC(x)) ? SSC : \
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册