Lines Matching full:receiver
673 receive_active returns 1 if the receiver on the card is
680 if (!(xr32(CSR5) & (7 << 17))) /* receiver disabled */ in receive_active()
687 activate_receiver enables the receiver on the card.
688 Before being allowed to active the receiver, the receiver
690 this code actually disables the receiver first; then it waits for the
691 receiver to become inactive, then it activates the receiver and then
692 it waits for the receiver to be active.
704 /* If the "active" bit is set and the receiver is already in activate_receiver()
710 val = val & ~2; /* disable the receiver */ in activate_receiver()
721 netdev_err(card->dev, "Receiver failed to deactivate\n"); in activate_receiver()
724 /* enable the receiver */ in activate_receiver()
726 val = val | 2; /* enable the receiver */ in activate_receiver()
739 "Receiver failed to re-activate\n"); in activate_receiver()
744 deactivate_receiver disables the receiver on the card.
745 To achieve this this code disables the receiver first;
746 then it waits for the receiver to become inactive.
757 val = val & ~2; /* disable the receiver */ in deactivate_receiver()
768 netdev_err(card->dev, "Receiver failed to deactivate\n"); in deactivate_receiver()
791 /* If the "active" bit is set and the receiver is already in activate_transmitter()