Commit 1baccff8 authored by Sergei Shtylyov's avatar Sergei Shtylyov Committed by Bartlomiej Zolnierkiewicz

ide: make ide_pci_check_iomem() actually work

This function didn't actually check if a given BAR is in I/O space because of
using the bogus PCI_BASE_ADDRESS_IO_MASK (which equals ~3) to test the resource
flags instead of IORESOURCE_IO -- fix this, make ide_hwif_configure() check the
results failing if necessary, and move the printk() call to the failure path.
Signed-off-by: default avatarSergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent 938da770
...@@ -301,11 +301,12 @@ static int ide_pci_configure(struct pci_dev *dev, const struct ide_port_info *d) ...@@ -301,11 +301,12 @@ static int ide_pci_configure(struct pci_dev *dev, const struct ide_port_info *d)
* @d: IDE port info * @d: IDE port info
* @bar: BAR number * @bar: BAR number
* *
* Checks if a BAR is configured and points to MMIO space. If so * Checks if a BAR is configured and points to MMIO space. If so,
* print an error and return an error code. Otherwise return 0 * return an error code. Otherwise return 0
*/ */
static int ide_pci_check_iomem(struct pci_dev *dev, const struct ide_port_info *d, int bar) static int ide_pci_check_iomem(struct pci_dev *dev, const struct ide_port_info *d,
int bar)
{ {
ulong flags = pci_resource_flags(dev, bar); ulong flags = pci_resource_flags(dev, bar);
...@@ -314,13 +315,10 @@ static int ide_pci_check_iomem(struct pci_dev *dev, const struct ide_port_info * ...@@ -314,13 +315,10 @@ static int ide_pci_check_iomem(struct pci_dev *dev, const struct ide_port_info *
return 0; return 0;
/* I/O space */ /* I/O space */
if(flags & PCI_BASE_ADDRESS_IO_MASK) if (flags & IORESOURCE_IO)
return 0; return 0;
/* Bad */ /* Bad */
printk(KERN_ERR "%s: IO baseregs (BIOS) are reported "
"as MEM, report to "
"<andre@linux-ide.org>.\n", d->name);
return -EINVAL; return -EINVAL;
} }
...@@ -348,9 +346,12 @@ static ide_hwif_t *ide_hwif_configure(struct pci_dev *dev, ...@@ -348,9 +346,12 @@ static ide_hwif_t *ide_hwif_configure(struct pci_dev *dev,
struct hw_regs_s hw; struct hw_regs_s hw;
if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) { if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) {
/* Possibly we should fail if these checks report true */ if (ide_pci_check_iomem(dev, d, 2 * port) ||
ide_pci_check_iomem(dev, d, 2*port); ide_pci_check_iomem(dev, d, 2 * port + 1)) {
ide_pci_check_iomem(dev, d, 2*port+1); printk(KERN_ERR "%s: I/O baseregs (BIOS) are reported "
"as MEM for port %d!\n", d->name, port);
return NULL;
}
ctl = pci_resource_start(dev, 2*port+1); ctl = pci_resource_start(dev, 2*port+1);
base = pci_resource_start(dev, 2*port); base = pci_resource_start(dev, 2*port);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment