Home | History | Annotate | Download | only in ixgbe

Lines Matching defs:gssr

3309  * Acquires the SWFW semaphore through the GSSR register for the specified
3314 u32 gssr = 0;
3330 gssr = IXGBE_READ_REG(hw, IXGBE_GSSR);
3331 if (!(gssr & (fwmask | swmask))) {
3332 gssr |= swmask;
3333 IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr);
3344 if (gssr & (fwmask | swmask))
3345 ixgbe_release_swfw_sync(hw, gssr & (fwmask | swmask));
3356 * Releases the SWFW semaphore through the GSSR register for the specified
3361 u32 gssr;
3368 gssr = IXGBE_READ_REG(hw, IXGBE_GSSR);
3369 gssr &= ~swmask;
3370 IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr);