提交 5ef216c1 编写于 作者: M Michael Grzeschik

arcnet: com20020-pci: add rotary index support

The EAE PLX-PCI card has a special rotary encoder
to configure the address of every card individually.
We take this information for the initial setup of
the cards dev_id.
Signed-off-by: NMichael Grzeschik <m.grzeschik@pengutronix.de>
上级 ae8ede6a
...@@ -68,6 +68,7 @@ static int com20020pci_probe(struct pci_dev *pdev, ...@@ -68,6 +68,7 @@ static int com20020pci_probe(struct pci_dev *pdev,
const struct pci_device_id *id) const struct pci_device_id *id)
{ {
struct com20020_pci_card_info *ci; struct com20020_pci_card_info *ci;
struct com20020_pci_channel_map *mm;
struct net_device *dev; struct net_device *dev;
struct arcnet_local *lp; struct arcnet_local *lp;
struct com20020_priv *priv; struct com20020_priv *priv;
...@@ -84,9 +85,22 @@ static int com20020pci_probe(struct pci_dev *pdev, ...@@ -84,9 +85,22 @@ static int com20020pci_probe(struct pci_dev *pdev,
ci = (struct com20020_pci_card_info *)id->driver_data; ci = (struct com20020_pci_card_info *)id->driver_data;
priv->ci = ci; priv->ci = ci;
mm = &ci->misc_map;
INIT_LIST_HEAD(&priv->list_dev); INIT_LIST_HEAD(&priv->list_dev);
if (mm->size) {
ioaddr = pci_resource_start(pdev, mm->bar) + mm->offset;
r = devm_request_region(&pdev->dev, ioaddr, mm->size,
"com20020-pci");
if (!r) {
pr_err("IO region %xh-%xh already allocated.\n",
ioaddr, ioaddr + mm->size - 1);
return -EBUSY;
}
priv->misc = ioaddr;
}
for (i = 0; i < ci->devcount; i++) { for (i = 0; i < ci->devcount; i++) {
struct com20020_pci_channel_map *cm = &ci->chan_map_tbl[i]; struct com20020_pci_channel_map *cm = &ci->chan_map_tbl[i];
struct com20020_dev *card; struct com20020_dev *card;
...@@ -132,6 +146,13 @@ static int com20020pci_probe(struct pci_dev *pdev, ...@@ -132,6 +146,13 @@ static int com20020pci_probe(struct pci_dev *pdev,
lp->timeout = timeout; lp->timeout = timeout;
lp->hw.owner = THIS_MODULE; lp->hw.owner = THIS_MODULE;
/* Get the dev_id from the PLX rotary coder */
if (!strncmp(ci->name, "EAE PLX-PCI MA1", 15))
dev->dev_id = 0xc;
dev->dev_id ^= inb(priv->misc + ci->rotary) >> 4;
snprintf(dev->name, sizeof(dev->name), "arc%d-%d", dev->dev_id, i);
if (arcnet_inb(ioaddr, COM20020_REG_R_STATUS) == 0xFF) { if (arcnet_inb(ioaddr, COM20020_REG_R_STATUS) == 0xFF) {
pr_err("IO address %Xh is empty!\n", ioaddr); pr_err("IO address %Xh is empty!\n", ioaddr);
ret = -EIO; ret = -EIO;
...@@ -235,6 +256,12 @@ static struct com20020_pci_card_info card_info_eae_arc1 = { ...@@ -235,6 +256,12 @@ static struct com20020_pci_card_info card_info_eae_arc1 = {
.size = 0x08, .size = 0x08,
}, },
}, },
.misc_map = {
.bar = 2,
.offset = 0x10,
.size = 0x04,
},
.rotary = 0x0,
.flags = ARC_CAN_10MBIT, .flags = ARC_CAN_10MBIT,
}; };
...@@ -252,6 +279,12 @@ static struct com20020_pci_card_info card_info_eae_ma1 = { ...@@ -252,6 +279,12 @@ static struct com20020_pci_card_info card_info_eae_ma1 = {
.size = 0x08, .size = 0x08,
} }
}, },
.misc_map = {
.bar = 2,
.offset = 0x10,
.size = 0x04,
},
.rotary = 0x0,
.flags = ARC_CAN_10MBIT, .flags = ARC_CAN_10MBIT,
}; };
......
...@@ -47,6 +47,9 @@ struct com20020_pci_card_info { ...@@ -47,6 +47,9 @@ struct com20020_pci_card_info {
int devcount; int devcount;
struct com20020_pci_channel_map chan_map_tbl[PLX_PCI_MAX_CARDS]; struct com20020_pci_channel_map chan_map_tbl[PLX_PCI_MAX_CARDS];
struct com20020_pci_channel_map misc_map;
int rotary;
unsigned int flags; unsigned int flags;
}; };
...@@ -54,6 +57,7 @@ struct com20020_pci_card_info { ...@@ -54,6 +57,7 @@ struct com20020_pci_card_info {
struct com20020_priv { struct com20020_priv {
struct com20020_pci_card_info *ci; struct com20020_pci_card_info *ci;
struct list_head list_dev; struct list_head list_dev;
resource_size_t misc;
}; };
struct com20020_dev { struct com20020_dev {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册