Home | History | Annotate | Download | only in igc

Lines Matching defs:flswctl

732 	uint32_t flswctl = 0;
738 flswctl = IGC_READ_REG(hw, IGC_I225_FLSWCTL);
739 /* Polling done bit on FLSWCTL register */
741 if (flswctl & IGC_FLSWCTL_DONE)
744 flswctl = IGC_READ_REG(hw, IGC_I225_FLSWCTL);
753 /* Build and issue command on FLSWCTL register */
754 flswctl = address | opcode;
755 IGC_WRITE_REG(hw, IGC_I225_FLSWCTL, flswctl);
757 /* Check if issued command is valid on FLSWCTL register */
758 flswctl = IGC_READ_REG(hw, IGC_I225_FLSWCTL);
759 if (!(flswctl & IGC_FLSWCTL_CMDV)) {