Home | History | Annotate | Download | only in netboot

Lines Matching defs:base

87     there is only provision  for two I/O base addresses  on each card (0x300
90 Ethernet PROM. The shared memory base address is 'autoprobed' by
102 the base memory addresses correctly. The driver autoprobes I/O 0x300
103 then 0x200. The base memory address for the first device must be less
149 To assign a base memory address for the shared memory when running as a
243 #define DEPCA_HBASE ioaddr+0x08 /* EISA high memory base address reg. */
422 volatile s32 base;
428 volatile s32 base;
443 u32 rx_ring; /* Rx ring base pointer & ring length */
444 u32 tx_ring; /* Tx ring base pointer & ring length */
481 /* Initialize the base addresses and length of each buffer in the ring */
483 writel((p = lp.dma_buffs + i * RX_BUFF_SZ) | R_OWN, &lp.rx_ring[i].base);
488 writel((p = lp.dma_buffs + (i + lp.txRingMask + 1) * TX_BUFF_SZ) & 0x00ffffff, &lp.tx_ring[i].base);
594 if ((status = readl(&lp.rx_ring[entry].base) & R_OWN))
597 lp.rx_ring[entry].base |= R_OWN;
630 writel(readl(&lp.tx_ring[entry].base) & ~T_FLAGS, &lp.tx_ring[entry].base);
636 writel(readl(&lp.tx_ring[entry].base) | (T_STP|T_ENP|T_OWN), &lp.tx_ring[entry].base);
720 printf("%s base %#hX, memory [%#hX-%#hX], addr %!",
734 static unsigned short base[] = DEPCA_IO_PORTS;
738 probe_addrs = base; /* Use defaults */
739 for (i = 0; (ioaddr = base[i]) != 0; ++i) {