[BACK]Return to vmparam.h CVS log [TXT][DIR] Up to [local] / sys / arch / solbourne / include

Annotation of sys/arch/solbourne/include/vmparam.h, Revision 1.1.1.1

1.1       nbrk        1: /* $OpenBSD: vmparam.h,v 1.2 2006/06/04 17:21:24 miod Exp $ */
                      2: /* public domain */
                      3:
                      4: #ifndef _SOLBOURNE_VMPARAM_H_
                      5: #define _SOLBOURNE_VMPARAM_H_
                      6:
                      7: #include <sparc/vmparam.h>
                      8:
                      9: /*
                     10:  * User/kernel map constants. We slightly differ from sparc here.
                     11:  */
                     12: #undef VM_MIN_KERNEL_ADDRESS
                     13: #define        VM_MIN_KERNEL_ADDRESS   ((vaddr_t)0xf8000000)
                     14: #undef VM_MAX_KERNEL_ADDRESS
                     15: #define VM_MAX_KERNEL_ADDRESS  ((vaddr_t)0xfd000000)
                     16:
                     17: #undef IOSPACE_BASE
                     18: #define        IOSPACE_BASE            ((vaddr_t)0xff000000)
                     19: #undef IOSPACE_LEN
                     20: #define        IOSPACE_LEN             0x00f00000              /* 15 MB of iospace */
                     21:
                     22: #undef VM_PHYSSEG_MAX
                     23: #define        VM_PHYSSEG_MAX          2
                     24: #undef VM_PHYSSEG_STRAT
                     25: #define        VM_PHYSSEG_STRAT        VM_PSTRAT_BIGFIRST
                     26:
                     27: #endif /* _SOLBOURNE_VMPARAM_H_ */

CVSweb