Subversion Repositories HelenOS-historic

Rev

Rev 172 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 172 Rev 188
Line 30... Line 30...
30
#define __amd64_PAGE_H__
30
#define __amd64_PAGE_H__
31
 
31
 
32
#include <mm/page.h>
32
#include <mm/page.h>
33
#include <arch/mm/frame.h>
33
#include <arch/mm/frame.h>
34
#include <arch/types.h>
34
#include <arch/types.h>
-
 
35
#include <arch/mm/ptl.h>
35
 
36
 
36
#define PAGE_SIZE   FRAME_SIZE
37
#define PAGE_SIZE   FRAME_SIZE
37
 
38
 
38
#define KA2PA(x)    (((__address) (x)) + 0x80000000)
-
 
39
#define PA2KA(x)    (((__address) (x)) - 0x80000000)
-
 
40
 
-
 
41
#define PTL0_INDEX_ARCH(vaddr)      0
39
#define PTL0_INDEX_ARCH(vaddr)      0
42
#define PTL1_INDEX_ARCH(vaddr)      0
40
#define PTL1_INDEX_ARCH(vaddr)      0
43
#define PTL2_INDEX_ARCH(vaddr)      0
41
#define PTL2_INDEX_ARCH(vaddr)      0
44
#define PTL3_INDEX_ARCH(vaddr)      0
42
#define PTL3_INDEX_ARCH(vaddr)      0
45
 
43