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

Annotation of sys/arch/hp300/include/pmap.h, Revision 1.1

1.1     ! nbrk        1: /*     $OpenBSD: pmap.h,v 1.16 2006/08/22 21:03:54 miod Exp $  */
        !             2:
        !             3: #ifndef        _MACHINE_PMAP_H_
        !             4: #define        _MACHINE_PMAP_H_
        !             5:
        !             6: #include <m68k/pmap_motorola.h>
        !             7:
        !             8: #if !defined(M68020)
        !             9: #define        pmap_map_direct(pg)     ((vaddr_t)VM_PAGE_TO_PHYS(pg))
        !            10: #define        pmap_unmap_direct(va)   PHYS_TO_VM_PAGE((paddr_t)va)
        !            11: #define        __HAVE_PMAP_DIRECT
        !            12: #define        PMAP_STEAL_MEMORY
        !            13: #endif
        !            14:
        !            15: #ifdef _KERNEL
        !            16: void pmap_init_md(void);
        !            17: #define        PMAP_INIT_MD()  pmap_init_md()
        !            18: #endif
        !            19:
        !            20: #endif /* _MACHINE_PMAP_H_ */

CVSweb