|
@@ -68,8 +68,12 @@
|
|
* functionality is already mapped as part of the main kernel
|
|
* functionality is already mapped as part of the main kernel
|
|
* mappings, and none of this applies in that case.
|
|
* mappings, and none of this applies in that case.
|
|
*/
|
|
*/
|
|
-#define HYP_PAGE_OFFSET_SHIFT VA_BITS
|
|
|
|
-#define HYP_PAGE_OFFSET_MASK ((UL(1) << HYP_PAGE_OFFSET_SHIFT) - 1)
|
|
|
|
|
|
+
|
|
|
|
+#define HYP_PAGE_OFFSET_HIGH_MASK ((UL(1) << VA_BITS) - 1)
|
|
|
|
+#define HYP_PAGE_OFFSET_LOW_MASK ((UL(1) << (VA_BITS - 1)) - 1)
|
|
|
|
+
|
|
|
|
+/* Temporary compat define */
|
|
|
|
+#define HYP_PAGE_OFFSET_MASK HYP_PAGE_OFFSET_HIGH_MASK
|
|
|
|
|
|
/*
|
|
/*
|
|
* Our virtual mapping for the idmap-ed MMU-enable code. Must be
|
|
* Our virtual mapping for the idmap-ed MMU-enable code. Must be
|