Fedora kernel-2.6.17-1.2142_FC4 patched with stable patch-2.6.17.4-vs2.0.2-rc26.diff
[linux-2.6.git] / drivers / macintosh / macio_asic.c
index d0bda7e..431bd37 100644 (file)
@@ -3,6 +3,13 @@
  * a MacIO ASIC. Interface to new driver model mostly
  * stolen from the PCI version.
  * 
+ *  Copyright (C) 2005 Ben. Herrenschmidt (benh@kernel.crashing.org)
+ *
+ *  This program is free software; you can redistribute it and/or
+ *  modify it under the terms of the GNU General Public License
+ *  as published by the Free Software Foundation; either version
+ *  2 of the License, or (at your option) any later version.
+ *
  * TODO:
  * 
  *  - Don't probe below media bay by default, but instead provide
@@ -17,6 +24,8 @@
 #include <linux/pci_ids.h>
 #include <linux/init.h>
 #include <linux/module.h>
+#include <linux/slab.h>
+
 #include <asm/machdep.h>
 #include <asm/macio.h>
 #include <asm/pmac_feature.h>
@@ -33,7 +42,7 @@ static int macio_bus_match(struct device *dev, struct device_driver *drv)
 {
        struct macio_dev * macio_dev = to_macio_device(dev);
        struct macio_driver * macio_drv = to_macio_driver(drv);
-       const struct of_match * matches = macio_drv->match_table;
+       const struct of_device_id * matches = macio_drv->match_table;
 
        if (!matches) 
                return 0;
@@ -66,7 +75,7 @@ static int macio_device_probe(struct device *dev)
        int error = -ENODEV;
        struct macio_driver *drv;
        struct macio_dev *macio_dev;
-       const struct of_match *match;
+       const struct of_device_id *match;
 
        drv = to_macio_driver(dev->driver);
        macio_dev = to_macio_device(dev);
@@ -126,11 +135,112 @@ static int macio_device_resume(struct device * dev)
        return 0;
 }
 
+static int macio_uevent(struct device *dev, char **envp, int num_envp,
+                          char *buffer, int buffer_size)
+{
+       struct macio_dev * macio_dev;
+       struct of_device * of;
+       char *scratch, *compat, *compat2;
+       int i = 0;
+       int length, cplen, cplen2, seen = 0;
+
+       if (!dev)
+               return -ENODEV;
+
+       macio_dev = to_macio_device(dev);
+       if (!macio_dev)
+               return -ENODEV;
+
+       of = &macio_dev->ofdev;
+
+       /* stuff we want to pass to /sbin/hotplug */
+       envp[i++] = scratch = buffer;
+       length = scnprintf (scratch, buffer_size, "OF_NAME=%s", of->node->name);
+       ++length;
+       buffer_size -= length;
+       if ((buffer_size <= 0) || (i >= num_envp))
+               return -ENOMEM;
+       scratch += length;
+
+       envp[i++] = scratch;
+       length = scnprintf (scratch, buffer_size, "OF_TYPE=%s", of->node->type);
+       ++length;
+       buffer_size -= length;
+       if ((buffer_size <= 0) || (i >= num_envp))
+               return -ENOMEM;
+       scratch += length;
+
+        /* Since the compatible field can contain pretty much anything
+         * it's not really legal to split it out with commas. We split it
+         * up using a number of environment variables instead. */
+
+       compat = (char *) get_property(of->node, "compatible", &cplen);
+       compat2 = compat;
+       cplen2= cplen;
+       while (compat && cplen > 0) {
+                envp[i++] = scratch;
+               length = scnprintf (scratch, buffer_size,
+                                    "OF_COMPATIBLE_%d=%s", seen, compat);
+               ++length;
+               buffer_size -= length;
+               if ((buffer_size <= 0) || (i >= num_envp))
+                       return -ENOMEM;
+               scratch += length;
+               length = strlen (compat) + 1;
+               compat += length;
+               cplen -= length;
+               seen++;
+       }
+
+       envp[i++] = scratch;
+       length = scnprintf (scratch, buffer_size, "OF_COMPATIBLE_N=%d", seen);
+       ++length;
+       buffer_size -= length;
+       if ((buffer_size <= 0) || (i >= num_envp))
+               return -ENOMEM;
+       scratch += length;
+
+       envp[i++] = scratch;
+       length = scnprintf (scratch, buffer_size, "MODALIAS=of:N%sT%s",
+                       of->node->name, of->node->type);
+       /* overwrite '\0' */
+       buffer_size -= length;
+       if ((buffer_size <= 0) || (i >= num_envp))
+               return -ENOMEM;
+       scratch += length;
+
+       if (!compat2) {
+               compat2 = "";
+               cplen2 = 1;
+       }
+       while (cplen2 > 0) {
+               length = snprintf (scratch, buffer_size, "C%s", compat2);
+               buffer_size -= length;
+               if (buffer_size <= 0)
+                       return -ENOMEM;
+               scratch += length;
+               length = strlen (compat2) + 1;
+               compat2 += length;
+               cplen2 -= length;
+       }
+
+       envp[i] = NULL;
+
+       return 0;
+}
+
+extern struct device_attribute macio_dev_attrs[];
+
 struct bus_type macio_bus_type = {
        .name   = "macio",
        .match  = macio_bus_match,
+       .uevent = macio_uevent,
+       .probe  = macio_device_probe,
+       .remove = macio_device_remove,
+       .shutdown = macio_device_shutdown,
        .suspend        = macio_device_suspend,
        .resume = macio_device_resume,
+       .dev_attrs = macio_dev_attrs,
 };
 
 static int __init macio_bus_driver_init(void)
@@ -142,12 +252,14 @@ postcore_initcall(macio_bus_driver_init);
 
 
 /**
- * macio_release_dev - free a macio device structure when all users of it are finished.
+ * macio_release_dev - free a macio device structure when all users of it are
+ * finished.
  * @dev: device that's been disconnected
  *
- * Will be called only by the device core when all users of this macio device are
- * done. This currently means never as we don't hot remove any macio device yet,
- * though that will happen with mediabay based devices in a later implementation.
+ * Will be called only by the device core when all users of this macio device
+ * are done. This currently means never as we don't hot remove any macio
+ * device yet, though that will happen with mediabay based devices in a later
+ * implementation.
  */
 static void macio_release_dev(struct device *dev)
 {
@@ -166,49 +278,114 @@ static void macio_release_dev(struct device *dev)
  * If this routine returns non-null, then the resource is completely
  * skipped.
  */
-static int macio_resource_quirks(struct device_node *np, struct resource *res, int index)
+static int macio_resource_quirks(struct device_node *np, struct resource *res,
+                                int index)
 {
        if (res->flags & IORESOURCE_MEM) {
                /* Grand Central has too large resource 0 on some machines */
-               if (index == 0 && !strcmp(np->name, "gc")) {
-                       np->addrs[0].size = 0x20000;
+               if (index == 0 && !strcmp(np->name, "gc"))
                        res->end = res->start + 0x1ffff;
-               }
+
                /* Airport has bogus resource 2 */
                if (index >= 2 && !strcmp(np->name, "radio"))
                        return 1;
+
+#ifndef CONFIG_PPC64
                /* DBDMAs may have bogus sizes */
-               if ((res->start & 0x0001f000) == 0x00008000) {
-                       np->addrs[index].size = 0x100;
+               if ((res->start & 0x0001f000) == 0x00008000)
                        res->end = res->start + 0xff;
-               }
-               /* ESCC parent eats child resources. We could have added a level of hierarchy,
-                * but I don't really feel the need for it */
+#endif /* CONFIG_PPC64 */
+
+               /* ESCC parent eats child resources. We could have added a
+                * level of hierarchy, but I don't really feel the need
+                * for it
+                */
                if (!strcmp(np->name, "escc"))
                        return 1;
+
                /* ESCC has bogus resources >= 3 */
-               if (index >= 3 && !(strcmp(np->name, "ch-a") && strcmp(np->name, "ch-b")))
+               if (index >= 3 && !(strcmp(np->name, "ch-a") &&
+                                   strcmp(np->name, "ch-b")))
                        return 1;
+
                /* Media bay has too many resources, keep only first one */
                if (index > 0 && !strcmp(np->name, "media-bay"))
                        return 1;
+
                /* Some older IDE resources have bogus sizes */
                if (!(strcmp(np->name, "IDE") && strcmp(np->name, "ATA") &&
                      strcmp(np->type, "ide") && strcmp(np->type, "ata"))) {
-                       if (index == 0 && np->addrs[0].size > 0x1000) {
-                               np->addrs[0].size = 0x1000;
+                       if (index == 0 && (res->end - res->start) > 0xfff)
                                res->end = res->start + 0xfff;
-                       }
-                       if (index == 1 && np->addrs[1].size > 0x100) {
-                               np->addrs[1].size = 0x100;
+                       if (index == 1 && (res->end - res->start) > 0xff)
                                res->end = res->start + 0xff;
-                       }
                }
        }
        return 0;
 }
 
 
+static void macio_setup_interrupts(struct macio_dev *dev)
+{
+       struct device_node *np = dev->ofdev.node;
+       int i,j;
+
+       /* For now, we use pre-parsed entries in the device-tree for
+        * interrupt routing and addresses, but we should change that
+        * to dynamically parsed entries and so get rid of most of the
+        * clutter in struct device_node
+        */
+       for (i = j = 0; i < np->n_intrs; i++) {
+               struct resource *res = &dev->interrupt[j];
+
+               if (j >= MACIO_DEV_COUNT_IRQS)
+                       break;
+               res->start = np->intrs[i].line;
+               res->flags = IORESOURCE_IO;
+               if (np->intrs[j].sense)
+                       res->flags |= IORESOURCE_IRQ_LOWLEVEL;
+               else
+                       res->flags |= IORESOURCE_IRQ_HIGHEDGE;
+               res->name = dev->ofdev.dev.bus_id;
+               if (macio_resource_quirks(np, res, i))
+                       memset(res, 0, sizeof(struct resource));
+               else
+                       j++;
+       }
+       dev->n_interrupts = j;
+}
+
+static void macio_setup_resources(struct macio_dev *dev,
+                                 struct resource *parent_res)
+{
+       struct device_node *np = dev->ofdev.node;
+       struct resource r;
+       int index;
+
+       for (index = 0; of_address_to_resource(np, index, &r) == 0; index++) {
+               struct resource *res = &dev->resource[index];
+               if (index >= MACIO_DEV_COUNT_RESOURCES)
+                       break;
+               *res = r;
+               res->name = dev->ofdev.dev.bus_id;
+
+               if (macio_resource_quirks(np, res, index)) {
+                       memset(res, 0, sizeof(struct resource));
+                       continue;
+               }
+               /* Currently, we consider failure as harmless, this may
+                * change in the future, once I've found all the device
+                * tree bugs in older machines & worked around them
+                */
+               if (insert_resource(parent_res, res)) {
+                       printk(KERN_WARNING "Can't request resource "
+                              "%d for MacIO device %s\n",
+                              index, dev->ofdev.dev.bus_id);
+               }
+       }
+       dev->n_resources = index;
+}
+
 /**
  * macio_add_one_device - Add one device from OF node to the device tree
  * @chip: pointer to the macio_chip holding the device
@@ -218,12 +395,13 @@ static int macio_resource_quirks(struct device_node *np, struct resource *res, i
  * When media-bay is changed to hotswap drivers, this function will
  * be exposed to the bay driver some way...
  */
-static struct macio_dev * macio_add_one_device(struct macio_chip *chip, struct device *parent,
-                                              struct device_node *np, struct macio_dev *in_bay,
+static struct macio_dev * macio_add_one_device(struct macio_chip *chip,
+                                              struct device *parent,
+                                              struct device_node *np,
+                                              struct macio_dev *in_bay,
                                               struct resource *parent_res)
 {
        struct macio_dev *dev;
-       int i, j;
        u32 *reg;
        
        if (np == NULL)
@@ -250,7 +428,8 @@ static struct macio_dev * macio_add_one_device(struct macio_chip *chip, struct d
 
        /* MacIO itself has a different reg, we use it's PCI base */
        if (np == chip->of_node) {
-               sprintf(dev->ofdev.dev.bus_id, "%1d.%08lx:%.*s", chip->lbus.index,
+               sprintf(dev->ofdev.dev.bus_id, "%1d.%08lx:%.*s",
+                       chip->lbus.index,
 #ifdef CONFIG_PCI
                        pci_resource_start(chip->lbus.pdev, 0),
 #else
@@ -259,57 +438,16 @@ static struct macio_dev * macio_add_one_device(struct macio_chip *chip, struct d
                        MAX_NODE_NAME_SIZE, np->name);
        } else {
                reg = (u32 *)get_property(np, "reg", NULL);
-               sprintf(dev->ofdev.dev.bus_id, "%1d.%08x:%.*s", chip->lbus.index,
+               sprintf(dev->ofdev.dev.bus_id, "%1d.%08x:%.*s",
+                       chip->lbus.index,
                        reg ? *reg : 0, MAX_NODE_NAME_SIZE, np->name);
        }
 
-       /* For now, we use pre-parsed entries in the device-tree for
-        * interrupt routing and addresses, but we should change that
-        * to dynamically parsed entries and so get rid of most of the
-        * clutter in struct device_node
-        */
-       for (i = j = 0; i < np->n_intrs; i++) {
-               struct resource *res = &dev->interrupt[j];
-
-               if (j >= MACIO_DEV_COUNT_IRQS)
-                       break;
-               res->start = np->intrs[i].line;
-               res->flags = IORESOURCE_IO;
-               if (np->intrs[j].sense)
-                       res->flags |= IORESOURCE_IRQ_LOWLEVEL;
-               else
-                       res->flags |= IORESOURCE_IRQ_HIGHEDGE;
-               res->name = dev->ofdev.dev.bus_id;
-               if (macio_resource_quirks(np, res, i))
-                       memset(res, 0, sizeof(struct resource));
-               else
-                       j++;
-       }
-       dev->n_interrupts = j;
-       for (i = j = 0; i < np->n_addrs; i++) {
-               struct resource *res = &dev->resource[j];
-               
-               if (j >= MACIO_DEV_COUNT_RESOURCES)
-                       break;
-               res->start = np->addrs[i].address;
-               res->end = np->addrs[i].address + np->addrs[i].size - 1;
-               res->flags = IORESOURCE_MEM;
-               res->name = dev->ofdev.dev.bus_id;
-               if (macio_resource_quirks(np, res, i))
-                       memset(res, 0, sizeof(struct resource));
-               else {
-                       j++;
-                       /* Currently, we consider failure as harmless, this may
-                        * change in the future, once I've found all the device
-                        * tree bugs in older machines & worked around them
-                        */
-                       if (insert_resource(parent_res, res))
-                                       printk(KERN_WARNING "Can't request resource %d for MacIO"
-                                      " device %s\n", i, dev->ofdev.dev.bus_id);
-               }
-       }
-       dev->n_resources = j;
+       /* Setup interrupts & resources */
+       macio_setup_interrupts(dev);
+       macio_setup_resources(dev, parent_res);
 
+       /* Register with core */
        if (of_device_register(&dev->ofdev) != 0) {
                printk(KERN_DEBUG"macio: device registration error for %s!\n",
                       dev->ofdev.dev.bus_id);
@@ -366,36 +504,42 @@ static void macio_pci_add_devices(struct macio_chip *chip)
 
        /* First scan 1st level */
        for (np = NULL; (np = of_get_next_child(pnode, np)) != NULL;) {
-               if (!macio_skip_device(np)) {
-                       of_node_get(np);
-                       mdev = macio_add_one_device(chip, &rdev->ofdev.dev, np, NULL, root_res);
-                       if (mdev == NULL)
-                               of_node_put(np);
-                       else if (strncmp(np->name, "media-bay", 9) == 0)
-                               mbdev = mdev;
-                       else if (strncmp(np->name, "escc", 4) == 0)
-                               sdev = mdev;
-               }
+               if (macio_skip_device(np))
+                       continue;
+               of_node_get(np);
+               mdev = macio_add_one_device(chip, &rdev->ofdev.dev, np, NULL,
+                                           root_res);
+               if (mdev == NULL)
+                       of_node_put(np);
+               else if (strncmp(np->name, "media-bay", 9) == 0)
+                       mbdev = mdev;
+               else if (strncmp(np->name, "escc", 4) == 0)
+                       sdev = mdev;
        }
 
        /* Add media bay devices if any */
        if (mbdev)
-               for (np = NULL; (np = of_get_next_child(mbdev->ofdev.node, np)) != NULL;)
-                       if (!macio_skip_device(np)) {
-                               of_node_get(np);
-                               if (macio_add_one_device(chip, &mbdev->ofdev.dev, np, mbdev,
-                                                        root_res) == NULL)
-                                       of_node_put(np);
-                       }
+               for (np = NULL; (np = of_get_next_child(mbdev->ofdev.node, np))
+                            != NULL;) {
+                       if (macio_skip_device(np))
+                               continue;
+                       of_node_get(np);
+                       if (macio_add_one_device(chip, &mbdev->ofdev.dev, np,
+                                                mbdev,  root_res) == NULL)
+                               of_node_put(np);
+               }
+
        /* Add serial ports if any */
        if (sdev) {
-               for (np = NULL; (np = of_get_next_child(sdev->ofdev.node, np)) != NULL;)
-                       if (!macio_skip_device(np)) {
-                               of_node_get(np);
-                               if (macio_add_one_device(chip, &sdev->ofdev.dev, np, NULL,
-                                                        root_res) == NULL)
-                                       of_node_put(np);
-                       }
+               for (np = NULL; (np = of_get_next_child(sdev->ofdev.node, np))
+                            != NULL;) {
+                       if (macio_skip_device(np))
+                               continue;
+                       of_node_get(np);
+                       if (macio_add_one_device(chip, &sdev->ofdev.dev, np,
+                                                NULL, root_res) == NULL)
+                               of_node_put(np);
+               }
        }
 }
 
@@ -406,18 +550,12 @@ static void macio_pci_add_devices(struct macio_chip *chip)
  */
 int macio_register_driver(struct macio_driver *drv)
 {
-       int count = 0;
-
        /* initialize common driver fields */
        drv->driver.name = drv->name;
        drv->driver.bus = &macio_bus_type;
-       drv->driver.probe = macio_device_probe;
-       drv->driver.remove = macio_device_remove;
-       drv->driver.shutdown = macio_device_shutdown;
 
        /* register with core */
-       count = driver_register(&drv->driver);
-       return count ? count : 1;
+       return driver_register(&drv->driver);
 }
 
 /**
@@ -443,7 +581,8 @@ void macio_unregister_driver(struct macio_driver *drv)
  *     Returns 0 on success, or %EBUSY on error.  A warning
  *     message is also printed on failure.
  */
-int macio_request_resource(struct macio_dev *dev, int resource_no, const char *name)
+int macio_request_resource(struct macio_dev *dev, int resource_no,
+                          const char *name)
 {
        if (macio_resource_len(dev, resource_no) == 0)
                return 0;
@@ -530,20 +669,20 @@ static int __devinit macio_pci_probe(struct pci_dev *pdev, const struct pci_devi
        if (ent->vendor != PCI_VENDOR_ID_APPLE)
                return -ENODEV;
 
-       /* Note regarding refcounting: We assume pci_device_to_OF_node() is ported
-        * to new OF APIs and returns a node with refcount incremented. This isn't
-        * the case today, but on the other hand ppc32 doesn't do refcounting. This
-        * will have to be fixed when going to ppc64. --BenH.
+       /* Note regarding refcounting: We assume pci_device_to_OF_node() is
+        * ported to new OF APIs and returns a node with refcount incremented.
         */
        np = pci_device_to_OF_node(pdev);
        if (np == NULL)
                return -ENODEV;
 
-       /* This assumption is wrong, fix that here for now until I fix the arch */
+       /* The above assumption is wrong !!!
+        * fix that here for now until I fix the arch code
+        */
        of_node_get(np);
 
-       /* We also assume that pmac_feature will have done a get() on nodes stored
-        * in the macio chips array
+       /* We also assume that pmac_feature will have done a get() on nodes
+        * stored in the macio chips array
         */
        chip = macio_find(np, macio_unknown);
                of_node_put(np);
@@ -563,9 +702,9 @@ static int __devinit macio_pci_probe(struct pci_dev *pdev, const struct pci_devi
 
        /*
         * HACK ALERT: The WallStreet PowerBook and some OHare based machines
-        * have 2 macio ASICs. I must probe the "main" one first or IDE ordering
-        * will be incorrect. So I put on "hold" the second one since it seem to
-        * appear first on PCI
+        * have 2 macio ASICs. I must probe the "main" one first or IDE
+        * ordering will be incorrect. So I put on "hold" the second one since
+        * it seem to appear first on PCI
         */
        if (chip->type == macio_gatwick || chip->type == macio_ohareII)
                if (macio_chips[0].lbus.pdev == NULL) {