Searched refs:eth_asic_base (Results 1 – 2 of 2) sorted by relevance
/external/syslinux/gpxe/src/drivers/net/ |
D | ns8390.c | 55 static unsigned short eth_nic_base, eth_asic_base; variable 134 outb(src & 0xff, eth_asic_base + WD_GP2); 135 outb(src >> 8, eth_asic_base + WD_GP2); 147 outb(src & 0xff, eth_asic_base + _3COM_DALSB); 148 outb(src >> 8, eth_asic_base + _3COM_DAMSB); 149 outb(t503_output | _3COM_CR_START, eth_asic_base + _3COM_CR); 158 while((inb(eth_asic_base + _3COM_STREG) & _3COM_STREG_DPRDY) == 0) 163 *((unsigned short *)dst) = inw(eth_asic_base + ASIC_PIO); 167 *(dst++) = inb(eth_asic_base + ASIC_PIO); 171 outb(t503_output, eth_asic_base + _3COM_CR); [all …]
|
D | ne2k_isa.c | 34 static unsigned short eth_nic_base, eth_asic_base; variable 59 *((unsigned short *) dst) = inw(eth_asic_base + ASIC_PIO); in eth_pio_read() 62 *(dst++) = inb(eth_asic_base + ASIC_PIO); in eth_pio_read() 84 outw(*((unsigned short *) src), eth_asic_base + ASIC_PIO); in eth_pio_write() 87 outb(*(src++), eth_asic_base + ASIC_PIO); in eth_pio_write() 158 eth_asic_base = eth_nic_base + NE_ASIC_OFFSET; in ne_probe() 162 c = inb(eth_asic_base + NE_RESET); in ne_probe() 163 outb(c, eth_asic_base + NE_RESET); in ne_probe()
|