blob: 36f68fe3e8c913399883e97ed6f13742458effa1 [file] [log] [blame]
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001/*
2 * Agere Systems Inc.
3 * 10/100/1000 Base-T Ethernet Driver for the ET1301 and ET131x series MACs
4 *
Alan Cox64f93032009-06-10 17:30:41 +01005 * Copyright © 2005 Agere Systems Inc.
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07006 * All rights reserved.
7 * http://www.agere.com
8 *
9 *------------------------------------------------------------------------------
10 *
11 * et131x_isr.c - File which contains the ISR, ISR handler, and related routines
12 * for processing interrupts from the device.
13 *
14 *------------------------------------------------------------------------------
15 *
16 * SOFTWARE LICENSE
17 *
18 * This software is provided subject to the following terms and conditions,
19 * which you should read carefully before using the software. Using this
20 * software indicates your acceptance of these terms and conditions. If you do
21 * not agree with these terms and conditions, do not use the software.
22 *
Alan Cox64f93032009-06-10 17:30:41 +010023 * Copyright © 2005 Agere Systems Inc.
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070024 * All rights reserved.
25 *
26 * Redistribution and use in source or binary forms, with or without
27 * modifications, are permitted provided that the following conditions are met:
28 *
29 * . Redistributions of source code must retain the above copyright notice, this
30 * list of conditions and the following Disclaimer as comments in the code as
31 * well as in the documentation and/or other materials provided with the
32 * distribution.
33 *
34 * . Redistributions in binary form must reproduce the above copyright notice,
35 * this list of conditions and the following Disclaimer in the documentation
36 * and/or other materials provided with the distribution.
37 *
38 * . Neither the name of Agere Systems Inc. nor the names of the contributors
39 * may be used to endorse or promote products derived from this software
40 * without specific prior written permission.
41 *
42 * Disclaimer
43 *
Alan Cox64f93032009-06-10 17:30:41 +010044 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070045 * INCLUDING, BUT NOT LIMITED TO, INFRINGEMENT AND THE IMPLIED WARRANTIES OF
46 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ANY
47 * USE, MODIFICATION OR DISTRIBUTION OF THIS SOFTWARE IS SOLELY AT THE USERS OWN
48 * RISK. IN NO EVENT SHALL AGERE SYSTEMS INC. OR CONTRIBUTORS BE LIABLE FOR ANY
49 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
50 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
51 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
52 * ON ANY THEORY OF LIABILITY, INCLUDING, BUT NOT LIMITED TO, CONTRACT, STRICT
53 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
54 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
55 * DAMAGE.
56 *
57 */
58
59#include "et131x_version.h"
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070060#include "et131x_defs.h"
61
62#include <linux/init.h>
63#include <linux/module.h>
64#include <linux/types.h>
65#include <linux/kernel.h>
66
67#include <linux/sched.h>
68#include <linux/ptrace.h>
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070069#include <linux/ctype.h>
70#include <linux/string.h>
71#include <linux/timer.h>
72#include <linux/interrupt.h>
73#include <linux/in.h>
74#include <linux/delay.h>
Alan Cox64f93032009-06-10 17:30:41 +010075#include <linux/io.h>
76#include <linux/bitops.h>
Alan Cox15700032009-08-27 11:03:09 +010077#include <linux/pci.h>
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070078#include <asm/system.h>
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070079
80#include <linux/netdevice.h>
81#include <linux/etherdevice.h>
82#include <linux/skbuff.h>
83#include <linux/if_arp.h>
84#include <linux/ioport.h>
85
86#include "et1310_phy.h"
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070087#include "et131x_adapter.h"
Alan Cox69ea5fc2010-01-18 15:34:24 +000088#include "et131x.h"
89
90/*
91 * For interrupts, normal running is:
92 * rxdma_xfr_done, phy_interrupt, mac_stat_interrupt,
93 * watchdog_interrupt & txdma_xfer_done
94 *
95 * In both cases, when flow control is enabled for either Tx or bi-direction,
96 * we additional enable rx_fbr0_low and rx_fbr1_low, so we know when the
97 * buffer rings are running low.
98 */
99#define INT_MASK_DISABLE 0xffffffff
100
101/* NOTE: Masking out MAC_STAT Interrupt for now...
102 * #define INT_MASK_ENABLE 0xfff6bf17
103 * #define INT_MASK_ENABLE_NO_FLOW 0xfff6bfd7
104 */
105#define INT_MASK_ENABLE 0xfffebf17
106#define INT_MASK_ENABLE_NO_FLOW 0xfffebfd7
107
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700108
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700109/**
Alan Coxb8c4cc42009-08-27 11:02:25 +0100110 * et131x_enable_interrupts - enable interrupt
111 * @adapter: et131x device
112 *
113 * Enable the appropriate interrupts on the ET131x according to our
114 * configuration
115 */
116
117void et131x_enable_interrupts(struct et131x_adapter *adapter)
118{
119 u32 mask;
120
121 /* Enable all global interrupts */
122 if (adapter->FlowControl == TxOnly || adapter->FlowControl == Both)
123 mask = INT_MASK_ENABLE;
124 else
125 mask = INT_MASK_ENABLE_NO_FLOW;
126
Alan Coxb8c4cc42009-08-27 11:02:25 +0100127 adapter->CachedMaskValue = mask;
128 writel(mask, &adapter->regs->global.int_mask);
129}
130
131/**
132 * et131x_disable_interrupts - interrupt disable
133 * @adapter: et131x device
134 *
135 * Block all interrupts from the et131x device at the device itself
136 */
137
138void et131x_disable_interrupts(struct et131x_adapter *adapter)
139{
140 /* Disable all global interrupts */
141 adapter->CachedMaskValue = INT_MASK_DISABLE;
142 writel(INT_MASK_DISABLE, &adapter->regs->global.int_mask);
143}
144
145
146/**
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700147 * et131x_isr - The Interrupt Service Routine for the driver.
148 * @irq: the IRQ on which the interrupt was received.
149 * @dev_id: device-specific info (here a pointer to a net_device struct)
150 *
151 * Returns a value indicating if the interrupt was handled.
152 */
Alan Coxb8c4cc42009-08-27 11:02:25 +0100153
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700154irqreturn_t et131x_isr(int irq, void *dev_id)
155{
156 bool handled = true;
157 struct net_device *netdev = (struct net_device *)dev_id;
158 struct et131x_adapter *adapter = NULL;
Alan Cox2211b732009-08-27 11:02:12 +0100159 u32 status;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700160
Alan Cox15700032009-08-27 11:03:09 +0100161 if (!netif_device_present(netdev)) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700162 handled = false;
163 goto out;
164 }
165
166 adapter = netdev_priv(netdev);
167
168 /* If the adapter is in low power state, then it should not
169 * recognize any interrupt
170 */
171
172 /* Disable Device Interrupts */
173 et131x_disable_interrupts(adapter);
174
175 /* Get a copy of the value in the interrupt status register
176 * so we can process the interrupting section
177 */
Alan Cox2211b732009-08-27 11:02:12 +0100178 status = readl(&adapter->regs->global.int_status);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700179
180 if (adapter->FlowControl == TxOnly ||
181 adapter->FlowControl == Both) {
Alan Cox2211b732009-08-27 11:02:12 +0100182 status &= ~INT_MASK_ENABLE;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700183 } else {
Alan Cox2211b732009-08-27 11:02:12 +0100184 status &= ~INT_MASK_ENABLE_NO_FLOW;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700185 }
186
187 /* Make sure this is our interrupt */
Alan Cox2211b732009-08-27 11:02:12 +0100188 if (!status) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700189 handled = false;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700190 et131x_enable_interrupts(adapter);
191 goto out;
192 }
193
194 /* This is our interrupt, so process accordingly */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700195
Alan Cox2211b732009-08-27 11:02:12 +0100196 if (status & ET_INTR_WATCHDOG) {
Alan Coxc78732a2009-10-06 15:49:45 +0100197 struct tcb *tcb = adapter->tx_ring.send_head;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700198
Alan Coxb711b2e2009-10-06 15:48:33 +0100199 if (tcb)
Alan Coxc78732a2009-10-06 15:49:45 +0100200 if (++tcb->stale > 1)
Alan Cox2211b732009-08-27 11:02:12 +0100201 status |= ET_INTR_TXDMA_ISR;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700202
Alan Cox8f127852010-01-18 15:34:07 +0000203 if (adapter->rx_ring.UnfinishedReceives)
Alan Cox2211b732009-08-27 11:02:12 +0100204 status |= ET_INTR_RXDMA_XFR_DONE;
Alan Coxb711b2e2009-10-06 15:48:33 +0100205 else if (tcb == NULL)
Alan Coxf3f415a2009-08-27 10:59:30 +0100206 writel(0, &adapter->regs->global.watchdog_timer);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700207
Alan Cox2211b732009-08-27 11:02:12 +0100208 status &= ~ET_INTR_WATCHDOG;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700209 }
210
Alan Cox2211b732009-08-27 11:02:12 +0100211 if (status == 0) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700212 /* This interrupt has in some way been "handled" by
213 * the ISR. Either it was a spurious Rx interrupt, or
214 * it was a Tx interrupt that has been filtered by
215 * the ISR.
216 */
217 et131x_enable_interrupts(adapter);
218 goto out;
219 }
220
221 /* We need to save the interrupt status value for use in our
222 * DPC. We will clear the software copy of that in that
223 * routine.
224 */
225 adapter->Stats.InterruptStatus = status;
226
227 /* Schedule the ISR handler as a bottom-half task in the
228 * kernel's tq_immediate queue, and mark the queue for
229 * execution
230 */
231 schedule_work(&adapter->task);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700232out:
233 return IRQ_RETVAL(handled);
234}
235
236/**
237 * et131x_isr_handler - The ISR handler
238 * @p_adapter, a pointer to the device's private adapter structure
239 *
240 * scheduled to run in a deferred context by the ISR. This is where the ISR's
241 * work actually gets done.
242 */
243void et131x_isr_handler(struct work_struct *work)
244{
Alan Cox25ad00b2009-08-19 18:21:44 +0100245 struct et131x_adapter *etdev =
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700246 container_of(work, struct et131x_adapter, task);
Alan Cox2211b732009-08-27 11:02:12 +0100247 u32 status = etdev->Stats.InterruptStatus;
Alan Coxf3f415a2009-08-27 10:59:30 +0100248 ADDRESS_MAP_t __iomem *iomem = etdev->regs;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700249
250 /*
251 * These first two are by far the most common. Once handled, we clear
252 * their two bits in the status word. If the word is now zero, we
253 * exit.
254 */
255 /* Handle all the completed Transmit interrupts */
Michael Tateb4c84c22010-03-06 15:03:57 +0400256 if (status & ET_INTR_TXDMA_ISR)
Alan Cox25ad00b2009-08-19 18:21:44 +0100257 et131x_handle_send_interrupt(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700258
259 /* Handle all the completed Receives interrupts */
Michael Tateb4c84c22010-03-06 15:03:57 +0400260 if (status & ET_INTR_RXDMA_XFR_DONE)
Alan Cox25ad00b2009-08-19 18:21:44 +0100261 et131x_handle_recv_interrupt(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700262
Alan Cox2211b732009-08-27 11:02:12 +0100263 status &= 0xffffffd7;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700264
Alan Cox2211b732009-08-27 11:02:12 +0100265 if (status) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700266 /* Handle the TXDMA Error interrupt */
Alan Cox2211b732009-08-27 11:02:12 +0100267 if (status & ET_INTR_TXDMA_ERR) {
Alan Coxfba84162009-08-27 11:03:29 +0100268 u32 txdma_err;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700269
270 /* Following read also clears the register (COR) */
Alan Coxfba84162009-08-27 11:03:29 +0100271 txdma_err = readl(&iomem->txdma.TxDmaError);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700272
Alan Cox15700032009-08-27 11:03:09 +0100273 dev_warn(&etdev->pdev->dev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700274 "TXDMA_ERR interrupt, error = %d\n",
Alan Coxfba84162009-08-27 11:03:29 +0100275 txdma_err);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700276 }
277
278 /* Handle Free Buffer Ring 0 and 1 Low interrupt */
Alan Cox2211b732009-08-27 11:02:12 +0100279 if (status & (ET_INTR_RXDMA_FB_R0_LOW | ET_INTR_RXDMA_FB_R1_LOW)) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700280 /*
281 * This indicates the number of unused buffers in
282 * RXDMA free buffer ring 0 is <= the limit you
283 * programmed. Free buffer resources need to be
284 * returned. Free buffers are consumed as packets
285 * are passed from the network to the host. The host
286 * becomes aware of the packets from the contents of
287 * the packet status ring. This ring is queried when
288 * the packet done interrupt occurs. Packets are then
289 * passed to the OS. When the OS is done with the
290 * packets the resources can be returned to the
291 * ET1310 for re-use. This interrupt is one method of
292 * returning resources.
293 */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700294
295 /* If the user has flow control on, then we will
296 * send a pause packet, otherwise just exit
297 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100298 if (etdev->FlowControl == TxOnly ||
299 etdev->FlowControl == Both) {
Alan Coxf2c98d22009-08-27 11:01:49 +0100300 u32 pm_csr;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700301
302 /* Tell the device to send a pause packet via
Alan Coxcfc52eb2009-11-18 14:07:29 +0000303 * the back pressure register (bp req and
304 * bp xon/xoff)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700305 */
Alan Coxf2c98d22009-08-27 11:01:49 +0100306 pm_csr = readl(&iomem->global.pm_csr);
Alan Coxcfc52eb2009-11-18 14:07:29 +0000307 if ((pm_csr & ET_PM_PHY_SW_COMA) == 0)
308 writel(3, &iomem->txmac.bp_ctrl);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700309 }
310 }
311
312 /* Handle Packet Status Ring Low Interrupt */
Alan Cox2211b732009-08-27 11:02:12 +0100313 if (status & ET_INTR_RXDMA_STAT_LOW) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700314
315 /*
316 * Same idea as with the two Free Buffer Rings.
317 * Packets going from the network to the host each
318 * consume a free buffer resource and a packet status
319 * resource. These resoures are passed to the OS.
320 * When the OS is done with the resources, they need
321 * to be returned to the ET1310. This is one method
322 * of returning the resources.
323 */
324 }
325
326 /* Handle RXDMA Error Interrupt */
Alan Cox2211b732009-08-27 11:02:12 +0100327 if (status & ET_INTR_RXDMA_ERR) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700328 /*
329 * The rxdma_error interrupt is sent when a time-out
330 * on a request issued by the JAGCore has occurred or
331 * a completion is returned with an un-successful
332 * status. In both cases the request is considered
333 * complete. The JAGCore will automatically re-try the
334 * request in question. Normally information on events
335 * like these are sent to the host using the "Advanced
336 * Error Reporting" capability. This interrupt is
337 * another way of getting similar information. The
338 * only thing required is to clear the interrupt by
339 * reading the ISR in the global resources. The
340 * JAGCore will do a re-try on the request. Normally
341 * you should never see this interrupt. If you start
342 * to see this interrupt occurring frequently then
343 * something bad has occurred. A reset might be the
344 * thing to do.
345 */
Alan Cox64f93032009-06-10 17:30:41 +0100346 /* TRAP();*/
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700347
Alan Cox15700032009-08-27 11:03:09 +0100348 dev_warn(&etdev->pdev->dev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700349 "RxDMA_ERR interrupt, error %x\n",
Alan Coxd97aabc2009-11-18 14:07:15 +0000350 readl(&iomem->txmac.tx_test));
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700351 }
352
353 /* Handle the Wake on LAN Event */
Alan Cox2211b732009-08-27 11:02:12 +0100354 if (status & ET_INTR_WOL) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700355 /*
356 * This is a secondary interrupt for wake on LAN.
357 * The driver should never see this, if it does,
358 * something serious is wrong. We will TRAP the
359 * message when we are in DBG mode, otherwise we
360 * will ignore it.
361 */
Alan Cox15700032009-08-27 11:03:09 +0100362 dev_err(&etdev->pdev->dev, "WAKE_ON_LAN interrupt\n");
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700363 }
364
365 /* Handle the PHY interrupt */
Alan Cox2211b732009-08-27 11:02:12 +0100366 if (status & ET_INTR_PHY) {
Alan Coxf2c98d22009-08-27 11:01:49 +0100367 u32 pm_csr;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700368 MI_BMSR_t BmsrInts, BmsrData;
369 MI_ISR_t myIsr;
370
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700371 /* If we are in coma mode when we get this interrupt,
372 * we need to disable it.
373 */
Alan Coxf2c98d22009-08-27 11:01:49 +0100374 pm_csr = readl(&iomem->global.pm_csr);
375 if (pm_csr & ET_PM_PHY_SW_COMA) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700376 /*
377 * Check to see if we are in coma mode and if
378 * so, disable it because we will not be able
379 * to read PHY values until we are out.
380 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100381 DisablePhyComa(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700382 }
383
384 /* Read the PHY ISR to clear the reason for the
385 * interrupt.
386 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100387 MiRead(etdev, (uint8_t) offsetof(MI_REGS_t, isr),
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700388 &myIsr.value);
389
Alan Cox25ad00b2009-08-19 18:21:44 +0100390 if (!etdev->ReplicaPhyLoopbk) {
391 MiRead(etdev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700392 (uint8_t) offsetof(MI_REGS_t, bmsr),
393 &BmsrData.value);
394
395 BmsrInts.value =
Alan Cox25ad00b2009-08-19 18:21:44 +0100396 etdev->Bmsr.value ^ BmsrData.value;
397 etdev->Bmsr.value = BmsrData.value;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700398
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700399 /* Do all the cable in / cable out stuff */
Alan Cox25ad00b2009-08-19 18:21:44 +0100400 et131x_Mii_check(etdev, BmsrData, BmsrInts);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700401 }
402 }
403
404 /* Let's move on to the TxMac */
Alan Cox2211b732009-08-27 11:02:12 +0100405 if (status & ET_INTR_TXMAC) {
Alan Cox003e52e2010-01-18 15:34:40 +0000406 u32 err = readl(&iomem->txmac.err);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700407
408 /*
409 * When any of the errors occur and TXMAC generates
410 * an interrupt to report these errors, it usually
411 * means that TXMAC has detected an error in the data
412 * stream retrieved from the on-chip Tx Q. All of
413 * these errors are catastrophic and TXMAC won't be
414 * able to recover data when these errors occur. In
415 * a nutshell, the whole Tx path will have to be reset
416 * and re-configured afterwards.
417 */
Alan Cox15700032009-08-27 11:03:09 +0100418 dev_warn(&etdev->pdev->dev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700419 "TXMAC interrupt, error 0x%08x\n",
Alan Coxceef1a52009-10-06 15:50:05 +0100420 err);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700421
422 /* If we are debugging, we want to see this error,
423 * otherwise we just want the device to be reset and
424 * continue
425 */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700426 }
427
428 /* Handle RXMAC Interrupt */
Alan Cox2211b732009-08-27 11:02:12 +0100429 if (status & ET_INTR_RXMAC) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700430 /*
431 * These interrupts are catastrophic to the device,
432 * what we need to do is disable the interrupts and
433 * set the flag to cause us to reset so we can solve
434 * this issue.
435 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100436 /* MP_SET_FLAG( etdev,
Alan Cox64f93032009-06-10 17:30:41 +0100437 fMP_ADAPTER_HARDWARE_ERROR); */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700438
Alan Cox15700032009-08-27 11:03:09 +0100439 dev_warn(&etdev->pdev->dev,
Alan Cox64f93032009-06-10 17:30:41 +0100440 "RXMAC interrupt, error 0x%08x. Requesting reset\n",
Alan Coxfef5ba32010-01-18 15:35:24 +0000441 readl(&iomem->rxmac.err_reg));
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700442
Alan Cox15700032009-08-27 11:03:09 +0100443 dev_warn(&etdev->pdev->dev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700444 "Enable 0x%08x, Diag 0x%08x\n",
Alan Coxbd03d0d2010-01-18 15:35:30 +0000445 readl(&iomem->rxmac.ctrl),
Alan Coxf7ae1952010-01-18 15:35:08 +0000446 readl(&iomem->rxmac.rxq_diag));
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700447
448 /*
449 * If we are debugging, we want to see this error,
450 * otherwise we just want the device to be reset and
451 * continue
452 */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700453 }
454
455 /* Handle MAC_STAT Interrupt */
Alan Cox2211b732009-08-27 11:02:12 +0100456 if (status & ET_INTR_MAC_STAT) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700457 /*
458 * This means at least one of the un-masked counters
459 * in the MAC_STAT block has rolled over. Use this
460 * to maintain the top, software managed bits of the
461 * counter(s).
462 */
Alan Cox25ad00b2009-08-19 18:21:44 +0100463 HandleMacStatInterrupt(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700464 }
465
466 /* Handle SLV Timeout Interrupt */
Alan Cox2211b732009-08-27 11:02:12 +0100467 if (status & ET_INTR_SLV_TIMEOUT) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700468 /*
469 * This means a timeout has occured on a read or
470 * write request to one of the JAGCore registers. The
471 * Global Resources block has terminated the request
472 * and on a read request, returned a "fake" value.
473 * The most likely reasons are: Bad Address or the
474 * addressed module is in a power-down state and
475 * can't respond.
476 */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700477 }
478 }
Alan Cox20dedd32009-08-19 18:21:56 +0100479 et131x_enable_interrupts(etdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700480}