unconfigure PCI dev

Gabor Kerenyi (wom@tateyama.hu)
Tue, 23 Apr 2002 11:28:09 +0900


hi!

I've got a strange problem.

I'm writing a driver for a PCI card.
The card has a problem because the serial eeprom where the pci configuration
data is loaded from is not valid and therefore the PLX-9050 chip gives some
default value. It shows vendor:devid as 10b5:9050 and the kernel identifies
it as a PLX PCI <-> IOBus Bridge. (kernel 2.5.7)

The serial eeprom can be read written at 50h in the local config area.
When I load my driver and it wants to request a memory region it seems that it
is already mapped. (I modified the driver to look for 0x10b5:9050)

So it fails.

The cat /proc/pci shows a memory region at 0xf4200000.

int plc_init_dev1(struct pci_dev *dev)
{
printk("%x\n", pci_resource_start(dev, 0);
return -EBUSY;
if (check_mem_region(pci_resource_start(dev, 0), 128))
return -EBUSY;
}

So why is it already in use?
I have to access that memory area. How can I do it if my driver doesn't load?
That's the only way to modify the eeprom contents.

Thanks.

Gabor

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/