Skip to content

Commit

Permalink
[PATCH] sky2: allow ethtool debug access to all of PCI space
Browse files Browse the repository at this point in the history
For debugging, it is useful to allow ethtool to dump all of
the PCI mapped space. There is one small set of registers for RAM
diagnostics that needs to be avoided to prevent hanging, but all
the rest is accessible.

Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
  • Loading branch information
Stephen Hemminger authored and Jeff Garzik committed Sep 22, 2005
1 parent 79e57d3 commit 6e4cbb3
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions drivers/net/sky2.c
Original file line number Diff line number Diff line change
Expand Up @@ -2488,33 +2488,30 @@ static int sky2_set_ringparam(struct net_device *dev,
return err;
}

#define SKY2_REGS_LEN 0x1000
static int sky2_get_regs_len(struct net_device *dev)
{
return SKY2_REGS_LEN;
return 0x4000;
}

/*
* Returns copy of control register region
* I/O region is divided into banks and certain regions are unreadable
* Note: access to the RAM address register set will cause timeouts.
*/
static void sky2_get_regs(struct net_device *dev, struct ethtool_regs *regs,
void *p)
{
const struct sky2_port *sky2 = netdev_priv(dev);
unsigned long offs;
const void __iomem *io = sky2->hw->regs;
static const unsigned long bankmap = 0xfff3f305;

BUG_ON(regs->len < B3_RI_WTO_R1);
regs->version = 1;
for (offs = 0; offs < regs->len; offs += 128) {
u32 len = min_t(u32, 128, regs->len - offs);
memset(p, 0, regs->len);

if (bankmap & (1 << (offs / 128)))
memcpy_fromio(p + offs, io + offs, len);
else
memset(p + offs, 0, len);
}
memcpy_fromio(p, io, B3_RAM_ADDR);

memcpy_fromio(p + B3_RI_WTO_R1,
io + B3_RI_WTO_R1,
regs->len - B3_RI_WTO_R1);
}

static struct ethtool_ops sky2_ethtool_ops = {
Expand Down

0 comments on commit 6e4cbb3

Please sign in to comment.