Searched refs:rxs (Results 1 – 9 of 9) sorted by relevance
/linux-2.4.37.9/drivers/net/wan/ |
D | c101.c | 70 u8 rxs, txs, tmc; /* SCA registers */ member 123 u8 rxs = port->rxs & CLK_BRG_MASK; in c101_set_iface() local 128 rxs |= CLK_BRG_RX; /* TX clock */ in c101_set_iface() 133 rxs |= CLK_LINE_RX; /* RXC input */ in c101_set_iface() 138 rxs |= CLK_LINE_RX; /* RXC input */ in c101_set_iface() 143 rxs |= CLK_LINE_RX; /* RXC input */ in c101_set_iface() 147 port->rxs = rxs; in c101_set_iface() 149 sca_out(rxs, msci + RXS, port); in c101_set_iface()
|
D | pci200syn.c | 84 u8 rxs, txs, tmc; /* SCA registers */ member 140 u8 rxs = port->rxs & CLK_BRG_MASK; in pci200_set_iface() local 147 rxs |= CLK_BRG; /* BRG output */ in pci200_set_iface() 152 rxs |= CLK_LINE; /* RXC input */ in pci200_set_iface() 157 rxs |= CLK_LINE; /* RXC input */ in pci200_set_iface() 162 rxs |= CLK_LINE; /* RXC input */ in pci200_set_iface() 167 port->rxs = rxs; in pci200_set_iface() 169 sca_out(rxs, msci + RXS, card); in pci200_set_iface()
|
D | n2.c | 104 u8 rxs, txs, tmc; /* SCA registers */ member 176 u8 rxs = port->rxs & CLK_BRG_MASK; in n2_set_iface() local 182 rxs |= CLK_BRG_RX; /* BRG output */ in n2_set_iface() 188 rxs |= CLK_LINE_RX; /* RXC input */ in n2_set_iface() 194 rxs |= CLK_LINE_RX; /* RXC input */ in n2_set_iface() 200 rxs |= CLK_LINE_RX; /* RXC input */ in n2_set_iface() 205 port->rxs = rxs; in n2_set_iface() 207 sca_out(rxs, msci + RXS, card); in n2_set_iface()
|
D | hd6457x.c | 472 port->rxs = (port->rxs & ~CLK_BRG_MASK) | br; in sca_set_port() 485 sca_out(port->rxs, msci + RXS, card); in sca_set_port() 583 sca_out(port->rxs, msci + RXS, card); in sca_open()
|
/linux-2.4.37.9/drivers/net/irda/ |
D | toshoboe.c | 399 self->rxs = inb_p (OBOE_RCVT); in toshoboe_interrupt() 400 self->rxs += (RX_SLOTS - 1); in toshoboe_interrupt() 401 self->rxs %= RX_SLOTS; in toshoboe_interrupt() 403 while (self->taskfile->recv[self->rxs].control == 0) in toshoboe_interrupt() 406 int len = self->taskfile->recv[self->rxs].len; in toshoboe_interrupt() 417 memcpy (skb->data, self->recv_bufs[self->rxs], len); in toshoboe_interrupt() 429 self->taskfile->recv[self->rxs].control = 0x83; in toshoboe_interrupt() 430 self->taskfile->recv[self->rxs].len = 0x0; in toshoboe_interrupt() 432 self->rxs++; in toshoboe_interrupt() 433 self->rxs %= RX_SLOTS; in toshoboe_interrupt() [all …]
|
D | donauboe.c | 567 self->rxs = inb_p (OBOE_RXSLOT) & OBOE_SLOT_MASK; in toshoboe_resetptrs() 1276 while (!(self->ring->rx[self->rxs].control & OBOE_CTL_RX_HW_OWNS)) in toshoboe_interrupt() 1278 int len = self->ring->rx[self->rxs].len; in toshoboe_interrupt() 1281 ,len,self->ring->rx[self->rxs].control); in toshoboe_interrupt() 1284 dumpbufs(self->rx_bufs[self->rxs],len,'<'); in toshoboe_interrupt() 1287 if (self->ring->rx[self->rxs].control == 0) in toshoboe_interrupt() 1295 if (!toshoboe_checkfcs (self->rx_bufs[self->rxs], len)) in toshoboe_interrupt() 1334 memcpy (skb->data, self->rx_bufs[self->rxs], len); in toshoboe_interrupt() 1358 ,len,self->ring->rx[self->rxs].control); in toshoboe_interrupt() 1361 self->ring->rx[self->rxs].len = 0x0; in toshoboe_interrupt() [all …]
|
D | donauboe.h | 326 int txs, rxs; /*Which slots are we at */ member
|
/linux-2.4.37.9/drivers/atm/ |
D | ambassador.c | 321 static unsigned int rxs[NUM_RX_POOLS] = { 64, 64, 64, 64 }; variable 1737 unsigned int txs, unsigned int * rxs, in create_queues() argument 1751 total += rxs[pool] * (sizeof(rx_in) + sizeof(rx_out)); in create_queues() 1822 rxq->low = rxs[pool] - 1; in create_queues() 1824 rxq->maximum = rxs[pool] - 1; in create_queues() 1828 rxq->in.limit = in + rxs[pool]; in create_queues() 1835 rxq->out.limit = out + rxs[pool]; in create_queues() 2346 } else if (create_queues (dev, cmds, txs, rxs, rxs_bs)) { in amb_init() 2560 if (rxs[pool] < MIN_QUEUE_SIZE) in amb_check_args() 2562 pool, rxs[pool] = MIN_QUEUE_SIZE); in amb_check_args() [all …]
|
/linux-2.4.37.9/include/net/irda/ |
D | toshoboe.h | 155 int txs, rxs; /*Which slots are we at */ member
|