aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wilcox <willy@linux.intel.com>2009-03-17 08:54:08 -0400
committerJesse Barnes <jbarnes@virtuousgeek.org>2009-03-20 13:48:13 -0400
commit264d9caaa1c574c0274b019a810abfe957391005 (patch)
tree06ac3d9df11a0e64e2f8571145e8865424fb7dc6
parent379f5327a86f7822a51ec7d088a085167724df75 (diff)
PCI MSI: Use mask_pos instead of mask_base when appropriate
MSI interrupts have a mask_pos where MSI-X have a mask_base. Use a transparent union to get rid of some ugly casts. Signed-off-by: Matthew Wilcox <willy@linux.intel.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
-rw-r--r--drivers/pci/msi.c5
-rw-r--r--include/linux/msi.h5
2 files changed, 6 insertions, 4 deletions
diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c
index a658c0f34e16..fcde04df6dfe 100644
--- a/drivers/pci/msi.c
+++ b/drivers/pci/msi.c
@@ -145,7 +145,7 @@ static int msi_set_mask_bits(struct irq_desc *desc, u32 mask, u32 flag)
145 if (!entry->msi_attrib.maskbit) 145 if (!entry->msi_attrib.maskbit)
146 return 0; 146 return 0;
147 147
148 pos = (long)entry->mask_base; 148 pos = entry->mask_pos;
149 pci_read_config_dword(entry->dev, pos, &mask_bits); 149 pci_read_config_dword(entry->dev, pos, &mask_bits);
150 mask_bits &= ~mask; 150 mask_bits &= ~mask;
151 mask_bits |= flag & mask; 151 mask_bits |= flag & mask;
@@ -363,8 +363,7 @@ static int msi_capability_init(struct pci_dev *dev)
363 unsigned int base, maskbits, temp; 363 unsigned int base, maskbits, temp;
364 364
365 base = msi_mask_bits_reg(pos, entry->msi_attrib.is_64); 365 base = msi_mask_bits_reg(pos, entry->msi_attrib.is_64);
366 entry->mask_base = (void __iomem *)(long)base; 366 entry->mask_pos = base;
367
368 /* All MSIs are unmasked by default, Mask them all */ 367 /* All MSIs are unmasked by default, Mask them all */
369 pci_read_config_dword(dev, base, &maskbits); 368 pci_read_config_dword(dev, base, &maskbits);
370 temp = msi_mask((control & PCI_MSI_FLAGS_QMASK) >> 1); 369 temp = msi_mask((control & PCI_MSI_FLAGS_QMASK) >> 1);
diff --git a/include/linux/msi.h b/include/linux/msi.h
index 9c5ce214fbf4..5025ca4d91e4 100644
--- a/include/linux/msi.h
+++ b/include/linux/msi.h
@@ -33,7 +33,10 @@ struct msi_desc {
33 unsigned int irq; 33 unsigned int irq;
34 struct list_head list; 34 struct list_head list;
35 35
36 void __iomem *mask_base; 36 union {
37 void __iomem *mask_base;
38 u8 mask_pos;
39 };
37 struct pci_dev *dev; 40 struct pci_dev *dev;
38 41
39 /* Last set MSI message */ 42 /* Last set MSI message */