home *** CD-ROM | disk | FTP | other *** search
- #ifndef ASM_I386_PAGEOFFSET_H
- #define ASM_I386_PAGEOFFSET_H 1
-
- #ifdef __ASSEMBLY__
-
- #ifdef CONFIG_05GB
- #define PAGE_OFFSET_RAW 0xE0000000
- #elif defined(CONFIG_1GB)
- #define PAGE_OFFSET_RAW 0xC0000000
- #elif defined(CONFIG_2GB)
- #define PAGE_OFFSET_RAW 0x80000000
- #elif defined(CONFIG_3GB)
- #define PAGE_OFFSET_RAW 0x40000000
- #endif
-
- #else /* __ASSEMBLY__ */
-
- #ifdef CONFIG_05GB
- #define PAGE_OFFSET_RAW 0xE0000000UL
- #elif defined(CONFIG_1GB)
- #define PAGE_OFFSET_RAW 0xC0000000UL
- #elif defined(CONFIG_2GB)
- #define PAGE_OFFSET_RAW 0x80000000UL
- #elif defined(CONFIG_3GB)
- #define PAGE_OFFSET_RAW 0x40000000UL
- #endif
-
- #endif /* ASSEMBLY */
-
- #endif /* ASM_I386_PAGEOFFSET_H */
-