-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 10731 b: refs/heads/master c: 3d155f8 h: refs/heads/master i: 10729: 6608bf6 10727: 9ef2016 v: v3
- Loading branch information
Roland Dreier
committed
Oct 27, 2005
1 parent
ba94625
commit 093e7d4
Showing
6 changed files
with
177 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 7cc656efb560cda66b5ed48444cad7556ea4fe99 | ||
refs/heads/master: 3d155f8cd0d077938d271225d26ee52f8eb26082 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
/* | ||
* Copyright (c) 2005 Cisco Systems. All rights reserved. | ||
* | ||
* This software is available to you under a choice of one of two | ||
* licenses. You may choose to be licensed under the terms of the GNU | ||
* General Public License (GPL) Version 2, available from the file | ||
* COPYING in the main directory of this source tree, or the | ||
* OpenIB.org BSD license below: | ||
* | ||
* Redistribution and use in source and binary forms, with or | ||
* without modification, are permitted provided that the following | ||
* conditions are met: | ||
* | ||
* - Redistributions of source code must retain the above | ||
* copyright notice, this list of conditions and the following | ||
* disclaimer. | ||
* | ||
* - Redistributions in binary form must reproduce the above | ||
* copyright notice, this list of conditions and the following | ||
* disclaimer in the documentation and/or other materials | ||
* provided with the distribution. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS | ||
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN | ||
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
* | ||
* $Id$ | ||
*/ | ||
|
||
#include "mthca_dev.h" | ||
|
||
enum { | ||
MTHCA_CATAS_POLL_INTERVAL = 5 * HZ, | ||
|
||
MTHCA_CATAS_TYPE_INTERNAL = 0, | ||
MTHCA_CATAS_TYPE_UPLINK = 3, | ||
MTHCA_CATAS_TYPE_DDR = 4, | ||
MTHCA_CATAS_TYPE_PARITY = 5, | ||
}; | ||
|
||
static DEFINE_SPINLOCK(catas_lock); | ||
|
||
static void handle_catas(struct mthca_dev *dev) | ||
{ | ||
struct ib_event event; | ||
const char *type; | ||
int i; | ||
|
||
event.device = &dev->ib_dev; | ||
event.event = IB_EVENT_DEVICE_FATAL; | ||
event.element.port_num = 0; | ||
|
||
ib_dispatch_event(&event); | ||
|
||
switch (swab32(readl(dev->catas_err.map)) >> 24) { | ||
case MTHCA_CATAS_TYPE_INTERNAL: | ||
type = "internal error"; | ||
break; | ||
case MTHCA_CATAS_TYPE_UPLINK: | ||
type = "uplink bus error"; | ||
break; | ||
case MTHCA_CATAS_TYPE_DDR: | ||
type = "DDR data error"; | ||
break; | ||
case MTHCA_CATAS_TYPE_PARITY: | ||
type = "internal parity error"; | ||
break; | ||
default: | ||
type = "unknown error"; | ||
break; | ||
} | ||
|
||
mthca_err(dev, "Catastrophic error detected: %s\n", type); | ||
for (i = 0; i < dev->catas_err.size; ++i) | ||
mthca_err(dev, " buf[%02x]: %08x\n", | ||
i, swab32(readl(dev->catas_err.map + i))); | ||
} | ||
|
||
static void poll_catas(unsigned long dev_ptr) | ||
{ | ||
struct mthca_dev *dev = (struct mthca_dev *) dev_ptr; | ||
unsigned long flags; | ||
int i; | ||
|
||
for (i = 0; i < dev->catas_err.size; ++i) | ||
if (readl(dev->catas_err.map + i)) { | ||
handle_catas(dev); | ||
return; | ||
} | ||
|
||
spin_lock_irqsave(&catas_lock, flags); | ||
if (dev->catas_err.stop) | ||
mod_timer(&dev->catas_err.timer, | ||
jiffies + MTHCA_CATAS_POLL_INTERVAL); | ||
spin_unlock_irqrestore(&catas_lock, flags); | ||
|
||
return; | ||
} | ||
|
||
void mthca_start_catas_poll(struct mthca_dev *dev) | ||
{ | ||
unsigned long addr; | ||
|
||
init_timer(&dev->catas_err.timer); | ||
dev->catas_err.stop = 0; | ||
dev->catas_err.map = NULL; | ||
|
||
addr = pci_resource_start(dev->pdev, 0) + | ||
((pci_resource_len(dev->pdev, 0) - 1) & | ||
dev->catas_err.addr); | ||
|
||
if (!request_mem_region(addr, dev->catas_err.size * 4, | ||
DRV_NAME)) { | ||
mthca_warn(dev, "couldn't request catastrophic error region " | ||
"at 0x%lx/0x%x\n", addr, dev->catas_err.size * 4); | ||
return; | ||
} | ||
|
||
dev->catas_err.map = ioremap(addr, dev->catas_err.size * 4); | ||
if (!dev->catas_err.map) { | ||
mthca_warn(dev, "couldn't map catastrophic error region " | ||
"at 0x%lx/0x%x\n", addr, dev->catas_err.size * 4); | ||
release_mem_region(addr, dev->catas_err.size * 4); | ||
return; | ||
} | ||
|
||
dev->catas_err.timer.data = (unsigned long) dev; | ||
dev->catas_err.timer.function = poll_catas; | ||
dev->catas_err.timer.expires = jiffies + MTHCA_CATAS_POLL_INTERVAL; | ||
add_timer(&dev->catas_err.timer); | ||
} | ||
|
||
void mthca_stop_catas_poll(struct mthca_dev *dev) | ||
{ | ||
spin_lock_irq(&catas_lock); | ||
dev->catas_err.stop = 1; | ||
spin_unlock_irq(&catas_lock); | ||
|
||
del_timer_sync(&dev->catas_err.timer); | ||
|
||
if (dev->catas_err.map) { | ||
iounmap(dev->catas_err.map); | ||
release_mem_region(pci_resource_start(dev->pdev, 0) + | ||
((pci_resource_len(dev->pdev, 0) - 1) & | ||
dev->catas_err.addr), | ||
dev->catas_err.size * 4); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters