refactor: add a async read/write variant to device ops, with allow async io to be...
[lunaix-os.git] / lunaix-os / arch / i386 / includes / sys / mm / mempart.h
index 50015aae8c6656caa106f3f69c6e6bb90b063d52..3f527636ce9d1a2acb832c544b949b81c754fdb8 100644 (file)
@@ -1,3 +1,5 @@
+#ifndef __LUNAIX_MEMPART_H
+#define __LUNAIX_MEMPART_H
 /* Physical Adress Space Partition */
 /* Generated from mempart.h.j2. Do NOT modify */
 
 #define KERNEL_STACK_SIZE 0x100000UL
 #define KERNEL_STACK_END 0x3ffff0UL
 
+#define USR_EXEC 0x400000UL
+#define USR_EXEC_SIZE 0x20000000UL
+#define USR_EXEC_END 0x203fffffUL
+
+#define USR_MMAP 0x20400000UL
+#define USR_MMAP_SIZE 0x9f800000UL
+#define USR_MMAP_END 0xbfbfffffUL
+
+#define USR_STACK 0xbfc00000UL
+#define USR_STACK_SIZE 0x400000UL
+#define USR_STACK_END 0xbffffff0UL
+
 #define KERNEL_EXEC 0xc0000000UL
 #define KERNEL_EXEC_SIZE 0x4000000UL
 #define KERNEL_EXEC_END 0xc3ffffffUL
 
-#define PD_MOUNT 0xc4000000UL
-#define PD_MOUNT_SIZE 0x400000UL
-#define PD_MOUNT_END 0xc43fffffUL
+#define VMS_MOUNT_1 0xc4000000UL
+#define VMS_MOUNT_1_SIZE 0x400000UL
+#define VMS_MOUNT_1_END 0xc43fffffUL
 
 #define PG_MOUNT_1 0xc4400000UL
 #define PG_MOUNT_1_SIZE 0x1000UL
 #define PG_MOUNT_4_SIZE 0x1000UL
 #define PG_MOUNT_4_END 0xc4403fffUL
 
-#define VMAP 0xc4404000UL
-#define VMAP_SIZE 0x3b7fc000UL
+#define VMAP 0xc4800000UL
+#define VMAP_SIZE 0x3b400000UL
 #define VMAP_END 0xffbfffffUL
 
 #define PD_REF 0xffc00000UL
 #define PD_REF_SIZE 0x400000UL
 #define PD_REF_END 0xffffffffUL
 
+#endif
\ No newline at end of file