xv6-cs450/memlayout.h

23 lines
828 B
C
Raw Permalink Normal View History

2011-08-07 18:30:34 +02:00
// Memory layout
#define EXTMEM 0x100000 // Start of extended memory
2011-09-01 16:25:20 +02:00
#define PHYSTOP 0xE000000 // Top physical memory
#define DEVSPACE 0xFE000000 // Other devices are at high addresses
2011-08-07 18:30:34 +02:00
2011-09-01 16:25:20 +02:00
// Key addresses for address space layout (see kmap in vm.c for layout)
2011-08-31 15:48:52 +02:00
#define KERNBASE 0x80000000 // First kernel virtual address
#define KERNLINK (KERNBASE+EXTMEM) // Address where kernel is linked
2011-08-07 18:30:34 +02:00
#ifndef __ASSEMBLER__
2011-09-13 18:28:45 +02:00
static inline uint v2p(void *a) { return ((uint) (a)) - KERNBASE; }
static inline void *p2v(uint a) { return (void *) ((a) + KERNBASE); }
2011-08-07 18:30:34 +02:00
#endif
2011-09-13 18:28:45 +02:00
#define V2P(a) (((uint) (a)) - KERNBASE)
#define P2V(a) (((void *) (a)) + KERNBASE)
2011-08-07 18:30:34 +02: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