Seems it was not on lkml mail list.

MPCBL0040 target has buggy DC752HRA bios with wrong length of SMBus region
(SMBL field).  That makes acpi pnp code reserve incorrect region.  i2c-801 
driver fails on requesting ioport region because half of this region is 
alredy held by acpi pnp and regions lengths are not match. This patch 
requests each ioport separately so it doesn't matter now if ioport is 
reserved by acpi pnp or not.

This patch makes extra records in /proc/ioport. One record per ioport = 20
lines. In case with DC752HRA bios we can request ioports on 2 commands and 
we will have only 2 lines in /proc/ioport. But this solution is more 
universal.
Signed-off-by: Maxim Uvarov <[EMAIL PROTECTED]>

Signed-off-by: Maxim Uvarov <[EMAIL PROTECTED]>                                 
                                                 
---

 drivers/i2c/busses/i2c-i801.c |   19 ++++++++++++-------
 1 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
index ac27e5f..6bb9a70 100644
--- a/drivers/i2c/busses/i2c-i801.c
+++ b/drivers/i2c/busses/i2c-i801.c
@@ -554,6 +554,7 @@ static int __devinit i801_probe(struct pci_dev *dev, const 
struct pci_device_id
 {
        unsigned char temp;
        int err;
+       int idx;
 
        I801_dev = dev;
        switch (dev->device) {
@@ -588,12 +589,15 @@ static int __devinit i801_probe(struct pci_dev *dev, 
const struct pci_device_id
                goto exit;
        }
 
-       err = pci_request_region(dev, SMBBAR, i801_driver.name);
-       if (err) {
-               dev_err(&dev->dev, "Failed to request SMBus region "
-                       "0x%lx-0x%Lx\n", i801_smba,
-                       (unsigned long long)pci_resource_end(dev, SMBBAR));
-               goto exit;
+       for (idx = 0; idx < pci_resource_len(dev, SMBBAR); idx++) {
+               if (!request_region(i801_smba + idx, 1, i801_driver.name)) {
+                               while (idx--)
+                                       release_region(i801_smba + idx, 1);
+                               dev_err(&dev->dev, "Failed to request SMBus 
region "
+                                       "0x%lx-0x%Lx\n", i801_smba,
+                                       (unsigned long 
long)pci_resource_end(dev, SMBBAR));
+                               goto exit;
+               }
        }
 
        pci_read_config_byte(I801_dev, SMBHSTCFG, &temp);
@@ -623,7 +627,8 @@ static int __devinit i801_probe(struct pci_dev *dev, const 
struct pci_device_id
        return 0;
 
 exit_release:
-       pci_release_region(dev, SMBBAR);
+       for (idx = 0; idx < pci_resource_len(dev, SMBBAR); idx++) 
+               release_region(i801_smba + idx, 1);
 exit:
        return err;
 }

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

Reply via email to