HomeSort by: relevance | last modified time | path
    Searched defs:INTIOBASE (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/arch/x68k/include/
cpu.h 59 extern uint8_t *intiobase;
71 #define INTIOBASE (0x00C00000)
73 #define INTIOSIZE (INTIOTOP - INTIOBASE)
81 * ``intiobase'' (defined in locore.s) + INTIOSIZE. Since it is always mapped,
84 #define IIOV(pa) ((u_int)(pa) - INTIOBASE + (u_int)intiobase)
85 #define IIOP(va) ((u_int)(va) - (u_int)intiobase + INTIOBASE)
86 #define IIOPOFF(pa) ((int)(pa)-INTIOBASE)
  /src/sys/arch/hp300/stand/common/
samachdep.h 48 #define INTIOBASE (0x00400000)
  /src/sys/arch/hp300/include/
cpu.h 64 extern uint8_t *intiobase, *extiobase;
85 #define INTIOBASE (0x00400000)
87 #define INTIOSIZE (INTIOTOP - INTIOBASE)
97 * Internal IO space is mapped in the kernel from ``intiobase'' to
98 * ``intiobase'' + INTIOSIZE. Since it is always mapped,
102 ((uint8_t *)(va) >= intiobase && \
103 (uint8_t *)(va) < (intiobase + INTIOSIZE))
104 #define IIOV(pa) ((paddr_t)(pa)-INTIOBASE+(vaddr_t)intiobase)
105 #define IIOP(va) ((vaddr_t)(va)-(vaddr_t)intiobase+INTIOBASE
    [all...]
  /src/sys/arch/next68k/include/
cpu.h 249 #define INTIOBASE (0x02000000)
251 #define INTIOSIZE (INTIOTOP - INTIOBASE)
266 * Internal IO space is mapped in the kernel from ``intiobase'' to
270 #define IIOV(pa) ((int)(pa)-INTIOBASE+intiobase)
271 #define IIOP(va) ((int)(va)-intiobase+INTIOBASE)

Completed in 21 milliseconds