|
@@ -579,7 +579,7 @@ static void fm10k_configure_tx_ring(struct fm10k_intfc *interface,
|
|
|
u64 tdba = ring->dma;
|
|
|
u32 size = ring->count * sizeof(struct fm10k_tx_desc);
|
|
|
u32 txint = FM10K_INT_MAP_DISABLE;
|
|
|
- u32 txdctl = FM10K_TXDCTL_ENABLE | (1 << FM10K_TXDCTL_MAX_TIME_SHIFT);
|
|
|
+ u32 txdctl = (1 << FM10K_TXDCTL_MAX_TIME_SHIFT) | FM10K_TXDCTL_ENABLE;
|
|
|
u8 reg_idx = ring->reg_idx;
|
|
|
|
|
|
/* disable queue to avoid issues while updating state */
|
|
@@ -903,8 +903,8 @@ static irqreturn_t fm10k_msix_mbx_vf(int __always_unused irq, void *data)
|
|
|
|
|
|
/* re-enable mailbox interrupt and indicate 20us delay */
|
|
|
fm10k_write_reg(hw, FM10K_VFITR(FM10K_MBX_VECTOR),
|
|
|
- FM10K_ITR_ENABLE | (FM10K_MBX_INT_DELAY >>
|
|
|
- hw->mac.itr_scale));
|
|
|
+ (FM10K_MBX_INT_DELAY >> hw->mac.itr_scale) |
|
|
|
+ FM10K_ITR_ENABLE);
|
|
|
|
|
|
/* service upstream mailbox */
|
|
|
if (fm10k_mbx_trylock(interface)) {
|
|
@@ -1135,8 +1135,8 @@ static irqreturn_t fm10k_msix_mbx_pf(int __always_unused irq, void *data)
|
|
|
|
|
|
/* re-enable mailbox interrupt and indicate 20us delay */
|
|
|
fm10k_write_reg(hw, FM10K_ITR(FM10K_MBX_VECTOR),
|
|
|
- FM10K_ITR_ENABLE | (FM10K_MBX_INT_DELAY >>
|
|
|
- hw->mac.itr_scale));
|
|
|
+ (FM10K_MBX_INT_DELAY >> hw->mac.itr_scale) |
|
|
|
+ FM10K_ITR_ENABLE);
|
|
|
|
|
|
return IRQ_HANDLED;
|
|
|
}
|
|
@@ -1253,7 +1253,7 @@ static int fm10k_mbx_request_irq_vf(struct fm10k_intfc *interface)
|
|
|
int err;
|
|
|
|
|
|
/* Use timer0 for interrupt moderation on the mailbox */
|
|
|
- u32 itr = FM10K_INT_MAP_TIMER0 | entry->entry;
|
|
|
+ u32 itr = entry->entry | FM10K_INT_MAP_TIMER0;
|
|
|
|
|
|
/* register mailbox handlers */
|
|
|
err = hw->mbx.ops.register_handlers(&hw->mbx, vf_mbx_data);
|
|
@@ -1420,8 +1420,8 @@ static int fm10k_mbx_request_irq_pf(struct fm10k_intfc *interface)
|
|
|
int err;
|
|
|
|
|
|
/* Use timer0 for interrupt moderation on the mailbox */
|
|
|
- u32 mbx_itr = FM10K_INT_MAP_TIMER0 | entry->entry;
|
|
|
- u32 other_itr = FM10K_INT_MAP_IMMEDIATE | entry->entry;
|
|
|
+ u32 mbx_itr = entry->entry | FM10K_INT_MAP_TIMER0;
|
|
|
+ u32 other_itr = entry->entry | FM10K_INT_MAP_IMMEDIATE;
|
|
|
|
|
|
/* register mailbox handlers */
|
|
|
err = hw->mbx.ops.register_handlers(&hw->mbx, pf_mbx_data);
|