amd-xgbe: Mask auto-negotiation interrupts in ISR
authorLendacky, Thomas <Thomas.Lendacky@amd.com>
Wed, 17 Feb 2016 17:49:28 +0000 (11:49 -0600)
committerDavid S. Miller <davem@davemloft.net>
Wed, 17 Feb 2016 20:22:20 +0000 (15:22 -0500)
Currently the auto-negotiation interrupt handling disables the irq
instead of masking off the interrupts. This was done because the phy
library was originally used to read and write the PCS registers, which
could not be performed in interrupt context. Now that the phy library is
no longer used to read and write the PCS registers the interrupts can be
masked off in the interrupt service routine eliminating the need to call
disable_irq/enable_irq. This also requires changing the protection mutex
to a spinlock.

Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/amd/xgbe/xgbe-dev.c
drivers/net/ethernet/amd/xgbe/xgbe-main.c
drivers/net/ethernet/amd/xgbe/xgbe-mdio.c
drivers/net/ethernet/amd/xgbe/xgbe.h

index b48c6eca3e6b275c6bd9c5314139273e95c155fe..1babcc11a2488b57a57fb9eec8b0d86638ff5df4 100644 (file)
@@ -1022,6 +1022,7 @@ static int xgbe_config_rx_mode(struct xgbe_prv_data *pdata)
 static int xgbe_read_mmd_regs(struct xgbe_prv_data *pdata, int prtad,
                              int mmd_reg)
 {
+       unsigned long flags;
        unsigned int mmd_address;
        int mmd_data;
 
@@ -1039,10 +1040,10 @@ static int xgbe_read_mmd_regs(struct xgbe_prv_data *pdata, int prtad,
         * register offsets must therefore be adjusted by left shifting the
         * offset 2 bits and reading 32 bits of data.
         */
-       mutex_lock(&pdata->xpcs_mutex);
+       spin_lock_irqsave(&pdata->xpcs_lock, flags);
        XPCS_IOWRITE(pdata, PCS_MMD_SELECT << 2, mmd_address >> 8);
        mmd_data = XPCS_IOREAD(pdata, (mmd_address & 0xff) << 2);
-       mutex_unlock(&pdata->xpcs_mutex);
+       spin_unlock_irqrestore(&pdata->xpcs_lock, flags);
 
        return mmd_data;
 }
@@ -1051,6 +1052,7 @@ static void xgbe_write_mmd_regs(struct xgbe_prv_data *pdata, int prtad,
                                int mmd_reg, int mmd_data)
 {
        unsigned int mmd_address;
+       unsigned long flags;
 
        if (mmd_reg & MII_ADDR_C45)
                mmd_address = mmd_reg & ~MII_ADDR_C45;
@@ -1066,10 +1068,10 @@ static void xgbe_write_mmd_regs(struct xgbe_prv_data *pdata, int prtad,
         * register offsets must therefore be adjusted by left shifting the
         * offset 2 bits and reading 32 bits of data.
         */
-       mutex_lock(&pdata->xpcs_mutex);
+       spin_lock_irqsave(&pdata->xpcs_lock, flags);
        XPCS_IOWRITE(pdata, PCS_MMD_SELECT << 2, mmd_address >> 8);
        XPCS_IOWRITE(pdata, (mmd_address & 0xff) << 2, mmd_data);
-       mutex_unlock(&pdata->xpcs_mutex);
+       spin_unlock_irqrestore(&pdata->xpcs_lock, flags);
 }
 
 static int xgbe_tx_complete(struct xgbe_ring_desc *rdesc)
index 618d952c2984c3756cee516fb4623f0cb6a80afd..3eee3201b58fe53edad393d491eaa712daf7fba6 100644 (file)
@@ -6,7 +6,7 @@
  *
  * License 1: GPLv2
  *
- * Copyright (c) 2014 Advanced Micro Devices, Inc.
+ * Copyright (c) 2014-2016 Advanced Micro Devices, Inc.
  *
  * This file is free software; you may copy, redistribute and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -56,7 +56,7 @@
  *
  * License 2: Modified BSD
  *
- * Copyright (c) 2014 Advanced Micro Devices, Inc.
+ * Copyright (c) 2014-2016 Advanced Micro Devices, Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -363,7 +363,7 @@ static int xgbe_probe(struct platform_device *pdev)
        platform_set_drvdata(pdev, netdev);
 
        spin_lock_init(&pdata->lock);
-       mutex_init(&pdata->xpcs_mutex);
+       spin_lock_init(&pdata->xpcs_lock);
        mutex_init(&pdata->rss_mutex);
        spin_lock_init(&pdata->tstamp_lock);
 
index 4460580818665d80e04ad6e53039d7d7e7f5fc99..84c5d296d13e85b2ee7425ac75833312cf6819e5 100644 (file)
@@ -6,7 +6,7 @@
  *
  * License 1: GPLv2
  *
- * Copyright (c) 2014 Advanced Micro Devices, Inc.
+ * Copyright (c) 2014-2016 Advanced Micro Devices, Inc.
  *
  * This file is free software; you may copy, redistribute and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -56,7 +56,7 @@
  *
  * License 2: Modified BSD
  *
- * Copyright (c) 2014 Advanced Micro Devices, Inc.
+ * Copyright (c) 2014-2016 Advanced Micro Devices, Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -626,10 +626,22 @@ static irqreturn_t xgbe_an_isr(int irq, void *data)
 
        netif_dbg(pdata, intr, pdata->netdev, "AN interrupt received\n");
 
-       /* Interrupt reason must be read and cleared outside of IRQ context */
-       disable_irq_nosync(pdata->an_irq);
+       /* Disable AN interrupts */
+       XMDIO_WRITE(pdata, MDIO_MMD_AN, MDIO_AN_INTMASK, 0);
+
+       /* Save the interrupt(s) that fired */
+       pdata->an_int = XMDIO_READ(pdata, MDIO_MMD_AN, MDIO_AN_INT);
 
-       queue_work(pdata->an_workqueue, &pdata->an_irq_work);
+       if (pdata->an_int) {
+               /* Clear the interrupt(s) that fired and process them */
+               XMDIO_WRITE(pdata, MDIO_MMD_AN, MDIO_AN_INT, ~pdata->an_int);
+
+               queue_work(pdata->an_workqueue, &pdata->an_irq_work);
+       } else {
+               /* Enable AN interrupts */
+               XMDIO_WRITE(pdata, MDIO_MMD_AN, MDIO_AN_INTMASK,
+                           XGBE_AN_INT_MASK);
+       }
 
        return IRQ_HANDLED;
 }
@@ -673,34 +685,26 @@ static void xgbe_an_state_machine(struct work_struct *work)
                                                   struct xgbe_prv_data,
                                                   an_work);
        enum xgbe_an cur_state = pdata->an_state;
-       unsigned int int_reg, int_mask;
 
        mutex_lock(&pdata->an_mutex);
 
-       /* Read the interrupt */
-       int_reg = XMDIO_READ(pdata, MDIO_MMD_AN, MDIO_AN_INT);
-       if (!int_reg)
+       if (!pdata->an_int)
                goto out;
 
 next_int:
-       if (int_reg & XGBE_AN_PG_RCV) {
+       if (pdata->an_int & XGBE_AN_PG_RCV) {
                pdata->an_state = XGBE_AN_PAGE_RECEIVED;
-               int_mask = XGBE_AN_PG_RCV;
-       } else if (int_reg & XGBE_AN_INC_LINK) {
+               pdata->an_int &= ~XGBE_AN_PG_RCV;
+       } else if (pdata->an_int & XGBE_AN_INC_LINK) {
                pdata->an_state = XGBE_AN_INCOMPAT_LINK;
-               int_mask = XGBE_AN_INC_LINK;
-       } else if (int_reg & XGBE_AN_INT_CMPLT) {
+               pdata->an_int &= ~XGBE_AN_INC_LINK;
+       } else if (pdata->an_int & XGBE_AN_INT_CMPLT) {
                pdata->an_state = XGBE_AN_COMPLETE;
-               int_mask = XGBE_AN_INT_CMPLT;
+               pdata->an_int &= ~XGBE_AN_INT_CMPLT;
        } else {
                pdata->an_state = XGBE_AN_ERROR;
-               int_mask = 0;
        }
 
-       /* Clear the interrupt to be processed */
-       int_reg &= ~int_mask;
-       XMDIO_WRITE(pdata, MDIO_MMD_AN, MDIO_AN_INT, int_reg);
-
        pdata->an_result = pdata->an_state;
 
 again:
@@ -740,14 +744,14 @@ again:
        }
 
        if (pdata->an_state == XGBE_AN_NO_LINK) {
-               int_reg = 0;
+               pdata->an_int = 0;
                XMDIO_WRITE(pdata, MDIO_MMD_AN, MDIO_AN_INT, 0);
        } else if (pdata->an_state == XGBE_AN_ERROR) {
                netdev_err(pdata->netdev,
                           "error during auto-negotiation, state=%u\n",
                           cur_state);
 
-               int_reg = 0;
+               pdata->an_int = 0;
                XMDIO_WRITE(pdata, MDIO_MMD_AN, MDIO_AN_INT, 0);
        }
 
@@ -765,11 +769,12 @@ again:
        if (cur_state != pdata->an_state)
                goto again;
 
-       if (int_reg)
+       if (pdata->an_int)
                goto next_int;
 
 out:
-       enable_irq(pdata->an_irq);
+       /* Enable AN interrupts on the way out */
+       XMDIO_WRITE(pdata, MDIO_MMD_AN, MDIO_AN_INTMASK, XGBE_AN_INT_MASK);
 
        mutex_unlock(&pdata->an_mutex);
 }
index ca2835485450a423c39f938112aa20ba5335c9f3..98d9d63c4353370c464e06a210b9af3b37e83133 100644 (file)
@@ -774,8 +774,8 @@ struct xgbe_prv_data {
        /* Overall device lock */
        spinlock_t lock;
 
-       /* XPCS indirect addressing mutex */
-       struct mutex xpcs_mutex;
+       /* XPCS indirect addressing lock */
+       spinlock_t xpcs_lock;
 
        /* RSS addressing mutex */
        struct mutex rss_mutex;
@@ -927,6 +927,7 @@ struct xgbe_prv_data {
        u32 serdes_dfe_tap_ena[XGBE_SPEEDS];
 
        /* Auto-negotiation state machine support */
+       unsigned int an_int;
        struct mutex an_mutex;
        enum xgbe_an an_result;
        enum xgbe_an an_state;