/src/sys/arch/powerpc/pic/ |
i8259_common.c | 51 isa_outb(IO_ICU1, 0x11); /* program device, four bytes */ 52 isa_outb(IO_ICU1+1, 0); /* starting at this vector */ 53 isa_outb(IO_ICU1+1, 1 << IRQ_SLAVE); /* slave on line 2 */ 54 isa_outb(IO_ICU1+1, 1); /* 8086 mode */ 55 isa_outb(IO_ICU1+1, 0xff); /* leave interrupts masked */ 57 isa_outb(IO_ICU2, 0x11); /* program device, four bytes */ 58 isa_outb(IO_ICU2+1, 8); /* starting at this vector */ 59 isa_outb(IO_ICU2+1, IRQ_SLAVE); 60 isa_outb(IO_ICU2+1, 1); /* 8086 mode */ 61 isa_outb(IO_ICU2+1, 0xff); /* leave interrupts masked * [all...] |
pic_prepivr.c | 95 isa_outb(IO_ELCR1, (0 >> 0) & 0xff); 96 isa_outb(IO_ELCR2, (0 >> 8) & 0xff); 118 isa_outb(IO_ELCR1, elcr[0]); 119 isa_outb(IO_ELCR2, elcr[1]);
|
/src/sys/arch/sandpoint/isa/ |
isaclock.c | 155 isa_outb(PITAUX_PORT, isa_inb(PITAUX_PORT) & ~PIT_SPKR); 182 isa_outb(IO_TIMER1 + TIMER_MODE, 184 isa_outb(IO_TIMER1 + TIMER_CNTR2, TIMER_DIV(pitch) % 256); 185 isa_outb(IO_TIMER1 + TIMER_CNTR2, TIMER_DIV(pitch) / 256); 186 isa_outb(PITAUX_PORT, isa_inb(PITAUX_PORT) | PIT_SPKR); /* enable counter 2 */
|
/src/sys/arch/arc/isa/ |
isabus.c | 311 isa_outb(IO_ICU1 + PIC_OCW1, imen); 312 isa_outb(IO_ICU2 + PIC_OCW1, imen >> 8); 429 isa_outb(IO_ICU2 + PIC_OCW1, imen >> 8); 430 isa_outb(IO_ICU2 + PIC_OCW2, 433 isa_outb(IO_ICU1, 437 isa_outb(IO_ICU1 + PIC_OCW1, imen); 438 isa_outb(IO_ICU1 + PIC_OCW2, 458 isa_outb(IO_ICU1 + PIC_OCW1, imen); 459 isa_outb(IO_ICU2 + PIC_OCW1, imen >> 8); 487 isa_outb(IO_ICU1 + PIC_ICW1, ICW1_SELECT | ICW1_IC4) [all...] |
/src/sys/arch/arc/arc/ |
c_isa.c | 184 isa_outb(IO_ICU1, 0x0f); /* Poll */ 188 isa_outb(IO_ICU2, 0x0f);
|
/src/sys/arch/bebox/include/ |
isa_machdep.h | 42 #define isa_outb(x,y) outb(PREP_BUS_SPACE_IO + (x), y) macro
|
/src/sys/arch/ibmnws/include/ |
isa_machdep.h | 42 #define isa_outb(x,y) outb(PREP_BUS_SPACE_IO + (x), y) macro
|
/src/sys/arch/mvmeppc/include/ |
isa_machdep.h | 37 #define isa_outb(x,y) outb(PREP_BUS_SPACE_IO + (x), y) macro
|
/src/sys/arch/ofppc/include/ |
isa_machdep.h | 44 void isa_outb(uint32_t, uint8_t);
|
/src/sys/arch/ofppc/isa/ |
isa_machdep.c | 95 isa_outb(uint32_t addr, uint8_t val) function in typeref:typename:void
|
/src/sys/arch/prep/include/ |
isa_machdep.h | 42 #define isa_outb(x,y) outb(PREP_BUS_SPACE_IO + (x), y) macro
|
/src/sys/arch/sandpoint/include/ |
isa_machdep.h | 37 #define isa_outb(x,y) outb(SANDPOINT_BUS_SPACE_IO + (x), y) macro
|
/src/sys/arch/arc/dti/ |
btl.c | 259 isa_outb(iobase + BT_CTRL_PORT, BT_CTRL_SRST); 262 isa_outb(iobase + BT_CMD_PORT, *ibuf++); 280 isa_outb(iobase + BT_CTRL_PORT, BT_CTRL_SRST); 304 isa_outb(iobase + BT_CTRL_PORT, BT_CTRL_IRST); 523 isa_outb(iobase + BT_CTRL_PORT, BT_CTRL_IRST); 778 isa_outb(iobase + BT_CMD_PORT, BT_START_SCSI); 909 isa_outb(iobase + BT_CTRL_PORT, BT_CTRL_HRST | BT_CTRL_SRST);
|
/src/sys/arch/arc/include/ |
isa_machdep.h | 46 #define isa_outb(x,y) outb(arc_bus_io.bs_vbase + (x)- arc_bus_io.bs_start, y) macro
|