Home
last modified time | relevance | path

Searched refs:IOM_BEGIN (Results 1 – 6 of 6) sorted by relevance

/mirbsd/src/sys/dev/isa/
Disareg.h156 #ifndef IOM_BEGIN
157 #define IOM_BEGIN 0x0a0000 /* Start of I/O Memory "hole" */ macro
159 #define IOM_SIZE (IOM_END - IOM_BEGIN)
/mirbsd/src/sys/arch/i386/isa/
Disa_machdep.h206 #define ISA_PHYSADDR(v) ((void *) ((u_long)(v) - atdevbase + IOM_BEGIN))
212 #define ISA_HOLE_VADDR(p) ((void *) ((u_long)(p) - IOM_BEGIN + atdevbase))
/mirbsd/src/sys/arch/i386/i386/
Dapm.c788 (ap->apm_code32_base < IOM_BEGIN &&
789 ap->apm_code32_base + ap->apm_code_len > IOM_BEGIN) ||
790 (ap->apm_code16_base < IOM_BEGIN &&
791 ap->apm_code16_base + ap->apm_code16_len > IOM_BEGIN) ||
792 (ap->apm_data_base < IOM_BEGIN &&
793 ap->apm_data_base + ap->apm_data_len > IOM_BEGIN))
Dmachdep.c2742 if ((a > IOM_BEGIN && a < IOM_END) || in init386()
2743 (e > IOM_BEGIN && e < IOM_END)) { in init386()
3149 if (IOM_BEGIN <= bpa && bpa <= IOM_END) {
3337 if (IOM_BEGIN <= bpa && bpa <= IOM_END)
3381 if (IOM_BEGIN <= bpa && bpa <= IOM_END) in _bus_space_unmap()
Dlocore.s591 movl $(IOM_BEGIN|PG_V|PG_KW/*|PG_N*/),%eax # having these bits set
/mirbsd/src/sys/arch/i386/stand/libsa/
Dmemprobe.c349 if (im->addr < IOM_BEGIN) in memprobe()