]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
net-next: ax88796: add interrupt status callback to platform data
authorMichael Karcher <kernel@mkarcher.dialup.fu-berlin.de>
Thu, 19 Apr 2018 02:05:23 +0000 (14:05 +1200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 19 Apr 2018 20:11:11 +0000 (16:11 -0400)
To be able to tell the ax88796 driver whether it is sensible to enter
the 8390 interrupt handler, an "is this interrupt caused by the 88796"
callback has been added to the ax_plat_data structure (with NULL being
compatible to the previous behaviour).

Signed-off-by: Michael Karcher <kernel@mkarcher.dialup.fu-berlin.de>
Signed-off-by: Michael Schmitz <schmitzmic@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/8390/ax88796.c
include/net/ax88796.h

index 939a572a19ff914a209cac30d04ad83b6b3cdcb0..d283ed0925195f39111aaef831579597fe46333c 100644 (file)
@@ -163,6 +163,21 @@ static void ax_reset_8390(struct net_device *dev)
        ei_outb(ENISR_RESET, addr + EN0_ISR);   /* Ack intr. */
 }
 
+/* Wrapper for __ei_interrupt for platforms that have a platform-specific
+ * way to find out whether the interrupt request might be caused by
+ * the ax88796 chip.
+ */
+static irqreturn_t ax_ei_interrupt_filtered(int irq, void *dev_id)
+{
+       struct net_device *dev = dev_id;
+       struct ax_device *ax = to_ax_dev(dev);
+       struct platform_device *pdev = to_platform_device(dev->dev.parent);
+
+       if (!ax->plat->check_irq(pdev))
+               return IRQ_NONE;
+
+       return ax_ei_interrupt(irq, dev_id);
+}
 
 static void ax_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr,
                            int ring_page)
@@ -482,8 +497,12 @@ static int ax_open(struct net_device *dev)
        if (ret)
                goto failed_mii;
 
-       ret = request_irq(dev->irq, ax_ei_interrupt, ax->irqflags,
-                         dev->name, dev);
+       if (ax->plat->check_irq)
+               ret = request_irq(dev->irq, ax_ei_interrupt_filtered,
+                                 ax->irqflags, dev->name, dev);
+       else
+               ret = request_irq(dev->irq, ax_ei_interrupt, ax->irqflags,
+                                 dev->name, dev);
        if (ret)
                goto failed_request_irq;
 
index 363b0ca5f7e8a633b8366a754522e6659116ded7..84b3785d0e66a4e022221152ea0b25b83e31b7bb 100644 (file)
@@ -14,6 +14,7 @@
 
 struct sk_buff;
 struct net_device;
+struct platform_device;
 
 #define AXFLG_HAS_EEPROM               (1<<0)
 #define AXFLG_MAC_FROMDEV              (1<<1)  /* device already has MAC */
@@ -35,6 +36,10 @@ struct ax_plat_data {
                        const unsigned char *buf, int star_page);
        void (*block_input)(struct net_device *dev, int count,
                        struct sk_buff *skb, int ring_offset);
+       /* returns nonzero if a pending interrupt request might by caused by
+        * the ax88786. Handles all interrupts if set to NULL
+        */
+       int (*check_irq)(struct platform_device *pdev);
 };
 
 #endif /* __NET_AX88796_PLAT_H */