x86/PCI: Convert pci_config_lock to raw_spinlock
pci_config_lock must be a real spinlock in preempt-rt. Convert it to raw_spinlock. No change for !RT kernels. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
This commit is contained in:
parent
511dd98ce8
commit
d19f61f098
6 changed files with 22 additions and 22 deletions
|
@ -83,7 +83,7 @@ struct irq_routing_table {
|
||||||
|
|
||||||
extern unsigned int pcibios_irq_mask;
|
extern unsigned int pcibios_irq_mask;
|
||||||
|
|
||||||
extern spinlock_t pci_config_lock;
|
extern raw_spinlock_t pci_config_lock;
|
||||||
|
|
||||||
extern int (*pcibios_enable_irq)(struct pci_dev *dev);
|
extern int (*pcibios_enable_irq)(struct pci_dev *dev);
|
||||||
extern void (*pcibios_disable_irq)(struct pci_dev *dev);
|
extern void (*pcibios_disable_irq)(struct pci_dev *dev);
|
||||||
|
|
|
@ -76,7 +76,7 @@ struct pci_ops pci_root_ops = {
|
||||||
* This interrupt-safe spinlock protects all accesses to PCI
|
* This interrupt-safe spinlock protects all accesses to PCI
|
||||||
* configuration space.
|
* configuration space.
|
||||||
*/
|
*/
|
||||||
DEFINE_SPINLOCK(pci_config_lock);
|
DEFINE_RAW_SPINLOCK(pci_config_lock);
|
||||||
|
|
||||||
static int __devinit can_skip_ioresource_align(const struct dmi_system_id *d)
|
static int __devinit can_skip_ioresource_align(const struct dmi_system_id *d)
|
||||||
{
|
{
|
||||||
|
|
|
@ -27,7 +27,7 @@ static int pci_conf1_read(unsigned int seg, unsigned int bus,
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_lock_irqsave(&pci_config_lock, flags);
|
raw_spin_lock_irqsave(&pci_config_lock, flags);
|
||||||
|
|
||||||
outl(PCI_CONF1_ADDRESS(bus, devfn, reg), 0xCF8);
|
outl(PCI_CONF1_ADDRESS(bus, devfn, reg), 0xCF8);
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ static int pci_conf1_read(unsigned int seg, unsigned int bus,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_unlock_irqrestore(&pci_config_lock, flags);
|
raw_spin_unlock_irqrestore(&pci_config_lock, flags);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -56,7 +56,7 @@ static int pci_conf1_write(unsigned int seg, unsigned int bus,
|
||||||
if ((bus > 255) || (devfn > 255) || (reg > 4095))
|
if ((bus > 255) || (devfn > 255) || (reg > 4095))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
spin_lock_irqsave(&pci_config_lock, flags);
|
raw_spin_lock_irqsave(&pci_config_lock, flags);
|
||||||
|
|
||||||
outl(PCI_CONF1_ADDRESS(bus, devfn, reg), 0xCF8);
|
outl(PCI_CONF1_ADDRESS(bus, devfn, reg), 0xCF8);
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@ static int pci_conf1_write(unsigned int seg, unsigned int bus,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_unlock_irqrestore(&pci_config_lock, flags);
|
raw_spin_unlock_irqrestore(&pci_config_lock, flags);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -108,7 +108,7 @@ static int pci_conf2_read(unsigned int seg, unsigned int bus,
|
||||||
if (dev & 0x10)
|
if (dev & 0x10)
|
||||||
return PCIBIOS_DEVICE_NOT_FOUND;
|
return PCIBIOS_DEVICE_NOT_FOUND;
|
||||||
|
|
||||||
spin_lock_irqsave(&pci_config_lock, flags);
|
raw_spin_lock_irqsave(&pci_config_lock, flags);
|
||||||
|
|
||||||
outb((u8)(0xF0 | (fn << 1)), 0xCF8);
|
outb((u8)(0xF0 | (fn << 1)), 0xCF8);
|
||||||
outb((u8)bus, 0xCFA);
|
outb((u8)bus, 0xCFA);
|
||||||
|
@ -127,7 +127,7 @@ static int pci_conf2_read(unsigned int seg, unsigned int bus,
|
||||||
|
|
||||||
outb(0, 0xCF8);
|
outb(0, 0xCF8);
|
||||||
|
|
||||||
spin_unlock_irqrestore(&pci_config_lock, flags);
|
raw_spin_unlock_irqrestore(&pci_config_lock, flags);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -147,7 +147,7 @@ static int pci_conf2_write(unsigned int seg, unsigned int bus,
|
||||||
if (dev & 0x10)
|
if (dev & 0x10)
|
||||||
return PCIBIOS_DEVICE_NOT_FOUND;
|
return PCIBIOS_DEVICE_NOT_FOUND;
|
||||||
|
|
||||||
spin_lock_irqsave(&pci_config_lock, flags);
|
raw_spin_lock_irqsave(&pci_config_lock, flags);
|
||||||
|
|
||||||
outb((u8)(0xF0 | (fn << 1)), 0xCF8);
|
outb((u8)(0xF0 | (fn << 1)), 0xCF8);
|
||||||
outb((u8)bus, 0xCFA);
|
outb((u8)bus, 0xCFA);
|
||||||
|
@ -166,7 +166,7 @@ static int pci_conf2_write(unsigned int seg, unsigned int bus,
|
||||||
|
|
||||||
outb(0, 0xCF8);
|
outb(0, 0xCF8);
|
||||||
|
|
||||||
spin_unlock_irqrestore(&pci_config_lock, flags);
|
raw_spin_unlock_irqrestore(&pci_config_lock, flags);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,7 +64,7 @@ err: *value = -1;
|
||||||
if (!base)
|
if (!base)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
spin_lock_irqsave(&pci_config_lock, flags);
|
raw_spin_lock_irqsave(&pci_config_lock, flags);
|
||||||
|
|
||||||
pci_exp_set_dev_base(base, bus, devfn);
|
pci_exp_set_dev_base(base, bus, devfn);
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@ err: *value = -1;
|
||||||
*value = mmio_config_readl(mmcfg_virt_addr + reg);
|
*value = mmio_config_readl(mmcfg_virt_addr + reg);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
spin_unlock_irqrestore(&pci_config_lock, flags);
|
raw_spin_unlock_irqrestore(&pci_config_lock, flags);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -97,7 +97,7 @@ static int pci_mmcfg_write(unsigned int seg, unsigned int bus,
|
||||||
if (!base)
|
if (!base)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
spin_lock_irqsave(&pci_config_lock, flags);
|
raw_spin_lock_irqsave(&pci_config_lock, flags);
|
||||||
|
|
||||||
pci_exp_set_dev_base(base, bus, devfn);
|
pci_exp_set_dev_base(base, bus, devfn);
|
||||||
|
|
||||||
|
@ -112,7 +112,7 @@ static int pci_mmcfg_write(unsigned int seg, unsigned int bus,
|
||||||
mmio_config_writel(mmcfg_virt_addr + reg, value);
|
mmio_config_writel(mmcfg_virt_addr + reg, value);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
spin_unlock_irqrestore(&pci_config_lock, flags);
|
raw_spin_unlock_irqrestore(&pci_config_lock, flags);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,7 @@ static int pci_conf1_mq_read(unsigned int seg, unsigned int bus,
|
||||||
if (!value || (bus >= MAX_MP_BUSSES) || (devfn > 255) || (reg > 255))
|
if (!value || (bus >= MAX_MP_BUSSES) || (devfn > 255) || (reg > 255))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
spin_lock_irqsave(&pci_config_lock, flags);
|
raw_spin_lock_irqsave(&pci_config_lock, flags);
|
||||||
|
|
||||||
write_cf8(bus, devfn, reg);
|
write_cf8(bus, devfn, reg);
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ static int pci_conf1_mq_read(unsigned int seg, unsigned int bus,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_unlock_irqrestore(&pci_config_lock, flags);
|
raw_spin_unlock_irqrestore(&pci_config_lock, flags);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -76,7 +76,7 @@ static int pci_conf1_mq_write(unsigned int seg, unsigned int bus,
|
||||||
if ((bus >= MAX_MP_BUSSES) || (devfn > 255) || (reg > 255))
|
if ((bus >= MAX_MP_BUSSES) || (devfn > 255) || (reg > 255))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
spin_lock_irqsave(&pci_config_lock, flags);
|
raw_spin_lock_irqsave(&pci_config_lock, flags);
|
||||||
|
|
||||||
write_cf8(bus, devfn, reg);
|
write_cf8(bus, devfn, reg);
|
||||||
|
|
||||||
|
@ -101,7 +101,7 @@ static int pci_conf1_mq_write(unsigned int seg, unsigned int bus,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_unlock_irqrestore(&pci_config_lock, flags);
|
raw_spin_unlock_irqrestore(&pci_config_lock, flags);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -162,7 +162,7 @@ static int pci_bios_read(unsigned int seg, unsigned int bus,
|
||||||
if (!value || (bus > 255) || (devfn > 255) || (reg > 255))
|
if (!value || (bus > 255) || (devfn > 255) || (reg > 255))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
spin_lock_irqsave(&pci_config_lock, flags);
|
raw_spin_lock_irqsave(&pci_config_lock, flags);
|
||||||
|
|
||||||
switch (len) {
|
switch (len) {
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -213,7 +213,7 @@ static int pci_bios_read(unsigned int seg, unsigned int bus,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_unlock_irqrestore(&pci_config_lock, flags);
|
raw_spin_unlock_irqrestore(&pci_config_lock, flags);
|
||||||
|
|
||||||
return (int)((result & 0xff00) >> 8);
|
return (int)((result & 0xff00) >> 8);
|
||||||
}
|
}
|
||||||
|
@ -228,7 +228,7 @@ static int pci_bios_write(unsigned int seg, unsigned int bus,
|
||||||
if ((bus > 255) || (devfn > 255) || (reg > 255))
|
if ((bus > 255) || (devfn > 255) || (reg > 255))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
spin_lock_irqsave(&pci_config_lock, flags);
|
raw_spin_lock_irqsave(&pci_config_lock, flags);
|
||||||
|
|
||||||
switch (len) {
|
switch (len) {
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -269,7 +269,7 @@ static int pci_bios_write(unsigned int seg, unsigned int bus,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_unlock_irqrestore(&pci_config_lock, flags);
|
raw_spin_unlock_irqrestore(&pci_config_lock, flags);
|
||||||
|
|
||||||
return (int)((result & 0xff00) >> 8);
|
return (int)((result & 0xff00) >> 8);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue