Searched defs:io_base (Results 1 - 3 of 3) sorted by relevance

/external/grub/netboot/
H A D3c509.c400 int data, j, io_base, id_port; local
468 io_base = (j * EP_EISA_START) | EP_EISA_W0;
469 if (inw(io_base + EP_W0_MFG_ID) != MFG_ID)
473 if ((inw(io_base + EP_W0_ADDRESS_CFG) & 0x1f) != 0x1f)
477 outb(W0_P4_CMD_RESET_ADAPTER, io_base + EP_W0_CONFIG_CTRL);
479 outb(W0_P4_CMD_ENABLE_ADAPTER, io_base + EP_W0_CONFIG_CTRL);
H A Dtlan.c394 * io_base The IO port base address for the
403 static void TLan_EeSendStart( u16 io_base )
407 outw( TLAN_NET_SIO, io_base + TLAN_DIO_ADR );
408 sio = io_base + TLAN_DIO_DATA + TLAN_NET_SIO;
423 * Parms: io_base The IO port base address for the
440 static int TLan_EeSendByte( u16 io_base, u8 data, int stop ) argument
446 outw( TLAN_NET_SIO, io_base + TLAN_DIO_ADR );
447 sio = io_base + TLAN_DIO_DATA + TLAN_NET_SIO;
480 * io_base The IO port base address for the
498 static void TLan_EeReceiveByte( u16 io_base, u argument
553 TLan_EeReadByte( u16 io_base, u8 ee_addr, u8 *data ) argument
[all...]
/external/qemu/hw/
H A Dpckbd.c365 void i8042_init(qemu_irq kbd_irq, qemu_irq mouse_irq, uint32_t io_base) argument
374 register_ioport_read(io_base, 1, 1, kbd_read_data, s);
375 register_ioport_write(io_base, 1, 1, kbd_write_data, s);
376 register_ioport_read(io_base + 4, 1, 1, kbd_read_status, s);
377 register_ioport_write(io_base + 4, 1, 1, kbd_write_command, s);

Completed in 100 milliseconds