• Home
  • Raw
  • Download

Lines Matching refs:ctl

318 				u16 ctl,  in tx_write_2byte_queue()  argument
326 ctl |= B43_PIO_TXCTL_WRITELO | B43_PIO_TXCTL_WRITEHI; in tx_write_2byte_queue()
327 b43_piotx_write16(q, B43_PIO_TXCTL, ctl); in tx_write_2byte_queue()
337 ctl &= ~B43_PIO_TXCTL_WRITEHI; in tx_write_2byte_queue()
338 b43_piotx_write16(q, B43_PIO_TXCTL, ctl); in tx_write_2byte_queue()
346 return ctl; in tx_write_2byte_queue()
355 u16 ctl; in pio_tx_frame_2byte_queue() local
357 ctl = b43_piotx_read16(q, B43_PIO_TXCTL); in pio_tx_frame_2byte_queue()
358 ctl |= B43_PIO_TXCTL_FREADY; in pio_tx_frame_2byte_queue()
359 ctl &= ~B43_PIO_TXCTL_EOF; in pio_tx_frame_2byte_queue()
362 ctl = tx_write_2byte_queue(q, ctl, hdr, hdrlen); in pio_tx_frame_2byte_queue()
364 ctl = tx_write_2byte_queue(q, ctl, frame, frame_len); in pio_tx_frame_2byte_queue()
366 ctl |= B43_PIO_TXCTL_EOF; in pio_tx_frame_2byte_queue()
367 b43_piotx_write16(q, B43_PIO_TXCTL, ctl); in pio_tx_frame_2byte_queue()
371 u32 ctl, in tx_write_4byte_queue() argument
379 ctl |= B43_PIO8_TXCTL_0_7 | B43_PIO8_TXCTL_8_15 | in tx_write_4byte_queue()
381 b43_piotx_write32(q, B43_PIO8_TXCTL, ctl); in tx_write_4byte_queue()
392 ctl &= ~(B43_PIO8_TXCTL_8_15 | B43_PIO8_TXCTL_16_23 | in tx_write_4byte_queue()
396 ctl |= B43_PIO8_TXCTL_16_23 | B43_PIO8_TXCTL_8_15; in tx_write_4byte_queue()
402 ctl |= B43_PIO8_TXCTL_8_15; in tx_write_4byte_queue()
410 b43_piotx_write32(q, B43_PIO8_TXCTL, ctl); in tx_write_4byte_queue()
416 return ctl; in tx_write_4byte_queue()
425 u32 ctl; in pio_tx_frame_4byte_queue() local
427 ctl = b43_piotx_read32(q, B43_PIO8_TXCTL); in pio_tx_frame_4byte_queue()
428 ctl |= B43_PIO8_TXCTL_FREADY; in pio_tx_frame_4byte_queue()
429 ctl &= ~B43_PIO8_TXCTL_EOF; in pio_tx_frame_4byte_queue()
432 ctl = tx_write_4byte_queue(q, ctl, hdr, hdrlen); in pio_tx_frame_4byte_queue()
434 ctl = tx_write_4byte_queue(q, ctl, frame, frame_len); in pio_tx_frame_4byte_queue()
436 ctl |= B43_PIO8_TXCTL_EOF; in pio_tx_frame_4byte_queue()
437 b43_piotx_write32(q, B43_PIO_TXCTL, ctl); in pio_tx_frame_4byte_queue()
623 u32 ctl; in pio_rx_frame() local
625 ctl = b43_piorx_read32(q, B43_PIO8_RXCTL); in pio_rx_frame()
626 if (!(ctl & B43_PIO8_RXCTL_FRAMERDY)) in pio_rx_frame()
631 ctl = b43_piorx_read32(q, B43_PIO8_RXCTL); in pio_rx_frame()
632 if (ctl & B43_PIO8_RXCTL_DATARDY) in pio_rx_frame()
637 u16 ctl; in pio_rx_frame() local
639 ctl = b43_piorx_read16(q, B43_PIO_RXCTL); in pio_rx_frame()
640 if (!(ctl & B43_PIO_RXCTL_FRAMERDY)) in pio_rx_frame()
645 ctl = b43_piorx_read16(q, B43_PIO_RXCTL); in pio_rx_frame()
646 if (ctl & B43_PIO_RXCTL_DATARDY) in pio_rx_frame()