2011-08-07 16:30:34 +00:00
|
|
|
// Memory layout
|
|
|
|
|
2011-08-16 19:47:22 +00:00
|
|
|
#define EXTMEM 0x100000 // Start of extended memory
|
2011-08-17 00:23:17 +00:00
|
|
|
#define PHYSTOP 0xE000000 // Top physical memory (too hard to get from E820)
|
2011-08-16 19:47:22 +00:00
|
|
|
#define DEVSPACE 0xFE000000 // Other devices are at high addresses
|
2011-08-07 16:30:34 +00:00
|
|
|
|
2011-08-08 17:30:08 +00:00
|
|
|
// Key addresses for address space layout (see kmap in vm.c for the layout)
|
2011-08-16 19:47:22 +00:00
|
|
|
#define KERNBASE 0xF0000000 // First kernel virtual address
|
2011-08-07 16:30:34 +00:00
|
|
|
#define USERTOP (KERNBASE-PGSIZE) // Highest user virtual address
|
2011-08-16 19:47:22 +00:00
|
|
|
#define KERNLINK (KERNBASE+EXTMEM) // Address where kernel is linked
|
2011-08-07 16:30:34 +00:00
|
|
|
|
|
|
|
#ifndef __ASSEMBLER__
|
|
|
|
|
|
|
|
static inline uint v2p(void *a) { return (uint) a - KERNBASE; }
|
|
|
|
static inline void *p2v(uint a) { return (void *) a + KERNBASE; }
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define V2P(a) ((uint) a - KERNBASE)
|
|
|
|
#define P2V(a) ((void *) a + KERNBASE)
|
|
|
|
|
2011-08-08 17:30:08 +00:00
|
|
|
#define V2P_WO(x) ((x) - KERNBASE) // same as V2P, but without casts
|
|
|
|
#define P2V_WO(x) ((x) + KERNBASE) // same as V2P, but without casts
|