00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef __MACHDEP_PARAM_H__
00011 #define __MACHDEP_PARAM_H__ 1
00012
00013 #define PAGESIZE 0x1000
00014 #define GDT_SIZEPG 16
00015 #define IDT_SIZEPG 1
00016
00017
00018 #define PGTBLSIZE (1024 * PAGESIZE)
00019
00020 #define KERNEL_PGTBL 0xc0000000
00021 #define MAX_UADDR (KERNEL_PGTBL - 1)
00022
00023 #define GLAST_IDXSEL ((GDT_SIZEPG * PAGESIZE)/sizeof (union descriptor))
00024 #define ILAST_IDXSEL 256
00025
00026 #define MAX_CPUS 8
00027 #define NB_CPUS 1
00028
00029 #endif