HomeSort by: relevance | last modified time | path
    Searched refs:INTIOBASE (Results 1 - 24 of 24) 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/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/hp300/stand/common/
apci.c 104 frodoregs = (volatile u_int8_t *)IIOV(INTIOBASE + FRODO_BASE);
117 (void *)IIOV(INTIOBASE + FRODO_BASE + FRODO_APCI_OFFSET(1));
samachdep.h 48 #define INTIOBASE (0x00400000)
dnkbd.c 98 (struct apciregs *)IIOV(INTIOBASE + FRODO_BASE +
172 if (badaddr((void *)IIOV(INTIOBASE + FRODO_BASE +
autoconf.c 174 return INTIOBASE + FB_BASE;
clock.c 76 (volatile uint8_t *)(INTIOBASE + FRODO_BASE + FRODO_CALENDAR);
ite.c 287 ip->regbase = (uint8_t *)(INTIOBASE + FB_BASE);
330 if ((int)ip->regbase == INTIOBASE + FB_BASE) {
  /src/sys/arch/next68k/dev/
intio.c 117 if (addr >= INTIOBASE && (addr + size) < INTIOTOP) {
130 if (addr >= INTIOBASE && (addr + offset) < INTIOTOP)
  /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)
  /src/sys/arch/hp300/dev/
com_frodo.c 171 frodoregs = (volatile uint8_t *)IIOV(INTIOBASE + FRODO_BASE);
intio.c 166 (bus_addr_t)(intiobase + intio_builtins[i].ib_offset);
180 aprint_normal(" addr 0x%lx", INTIOBASE + ia->ia_iobase);
  /src/sys/arch/hp300/hp300/
bus_space.c 63 *bshp = (bus_space_handle_t)IIOV(INTIOBASE + bpa);
locore.s 196 movl #INTIOBASE+MMUBASE,%a1
416 ASRELOC(intiobase,%a0)
468 movl %d1,INTIOBASE+MMUBASE+MMUSSTP | load in sysseg table register
470 movl #0,INTIOBASE+MMUBASE+MMUCMD | clear external cache
471 movl #MMU_ENAB,INTIOBASE+MMUBASE+MMUCMD | turn on MMU
477 movw #0,INTIOBASE+MMUBASE+MMUCMD+2
478 movw #MMU_IEN+MMU_CEN+MMU_FPE,INTIOBASE+MMUBASE+MMUCMD+2
482 movl #MMU_IEN+MMU_FPE,INTIOBASE+MMUBASE+MMUCMD
1140 GLOBAL(intiobase)
pmap_bootstrap.c 397 protopte = INTIOBASE | PG_RW | PG_CI | PG_V;
399 RELOC(intiobase, uint8_t *) = (uint8_t *)PTE2VA(pte);
machdep.c 177 { .pmbm_vaddr_ptr = (vaddr_t *)&intiobase,
178 .pmbm_paddr = INTIOBASE,
  /src/sys/arch/x68k/stand/boot_ufs/
bootmain.c 54 #define IODEVbase ((volatile struct IODEVICE *)INTIOBASE)
  /src/sys/arch/x68k/x68k/
clock.c 304 return ((off + (INTIOBASE + CLKBASE + CLKSR - 1)) >> PGSHIFT);
pmap_bootstrap.c 365 protopte = INTIOBASE | PG_RW | PG_CI | PG_V;
367 RELOC(intiobase, uint8_t *) = (uint8_t *)PTE2VA(pte);
machdep.c 183 .pmbm_paddr = INTIOBASE,
206 intiobase = (uint8_t *)intiova;
1252 if (INTIOBASE <= pa && pa < INTIOTOP) {
  /src/sys/arch/x68k/dev/
intio.c 159 aprint_normal(" mapped at %8p\n", intiobase);
162 INTIOBASE,
163 INTIOBASE + 0x400000,
  /src/sys/arch/amiga/dev/
clock.c 475 return MD_BTOP(off + (INTIOBASE+CLKBASE+CLKSR-1));
  /src/sys/arch/next68k/next68k/
pmap_bootstrap.c 383 protopte = INTIOBASE | PG_RW | PG_CI | PG_U | PG_M | PG_V;
385 RELOC(intiobase, vaddr_t) = PTE2VA(pte);
machdep.c 184 { .pmbm_vaddr_ptr = &intiobase,
185 .pmbm_paddr = INTIOBASE,

Completed in 39 milliseconds