linux/arch/powerpc/kernel/rtas_pci.c
<<
>>
Prefs
   1/*
   2 * Copyright (C) 2001 Dave Engebretsen, IBM Corporation
   3 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
   4 *
   5 * RTAS specific routines for PCI.
   6 *
   7 * Based on code from pci.c, chrp_pci.c and pSeries_pci.c
   8 *
   9 * This program is free software; you can redistribute it and/or modify
  10 * it under the terms of the GNU General Public License as published by
  11 * the Free Software Foundation; either version 2 of the License, or
  12 * (at your option) any later version.
  13 *
  14 * This program is distributed in the hope that it will be useful,
  15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17 * GNU General Public License for more details.
  18 *
  19 * You should have received a copy of the GNU General Public License
  20 * along with this program; if not, write to the Free Software
  21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  22 */
  23
  24#include <linux/kernel.h>
  25#include <linux/threads.h>
  26#include <linux/pci.h>
  27#include <linux/string.h>
  28#include <linux/init.h>
  29#include <linux/bootmem.h>
  30
  31#include <asm/io.h>
  32#include <asm/pgtable.h>
  33#include <asm/irq.h>
  34#include <asm/prom.h>
  35#include <asm/machdep.h>
  36#include <asm/pci-bridge.h>
  37#include <asm/iommu.h>
  38#include <asm/rtas.h>
  39#include <asm/mpic.h>
  40#include <asm/ppc-pci.h>
  41#include <asm/eeh.h>
  42
  43/* RTAS tokens */
  44static int read_pci_config;
  45static int write_pci_config;
  46static int ibm_read_pci_config;
  47static int ibm_write_pci_config;
  48
  49static inline int config_access_valid(struct pci_dn *dn, int where)
  50{
  51        if (where < 256)
  52                return 1;
  53        if (where < 4096 && dn->pci_ext_config_space)
  54                return 1;
  55
  56        return 0;
  57}
  58
  59int rtas_read_config(struct pci_dn *pdn, int where, int size, u32 *val)
  60{
  61        int returnval = -1;
  62        unsigned long buid, addr;
  63        int ret;
  64
  65        if (!pdn)
  66                return PCIBIOS_DEVICE_NOT_FOUND;
  67        if (!config_access_valid(pdn, where))
  68                return PCIBIOS_BAD_REGISTER_NUMBER;
  69#ifdef CONFIG_EEH
  70        if (pdn->edev && pdn->edev->pe &&
  71            (pdn->edev->pe->state & EEH_PE_CFG_BLOCKED))
  72                return PCIBIOS_SET_FAILED;
  73#endif
  74
  75        addr = rtas_config_addr(pdn->busno, pdn->devfn, where);
  76        buid = pdn->phb->buid;
  77        if (buid) {
  78                ret = rtas_call(ibm_read_pci_config, 4, 2, &returnval,
  79                                addr, BUID_HI(buid), BUID_LO(buid), size);
  80        } else {
  81                ret = rtas_call(read_pci_config, 2, 2, &returnval, addr, size);
  82        }
  83        *val = returnval;
  84
  85        if (ret)
  86                return PCIBIOS_DEVICE_NOT_FOUND;
  87
  88        return PCIBIOS_SUCCESSFUL;
  89}
  90
  91static int rtas_pci_read_config(struct pci_bus *bus,
  92                                unsigned int devfn,
  93                                int where, int size, u32 *val)
  94{
  95        struct device_node *busdn, *dn;
  96        struct pci_dn *pdn;
  97        bool found = false;
  98        int ret;
  99
 100        /* Search only direct children of the bus */
 101        *val = 0xFFFFFFFF;
 102        busdn = pci_bus_to_OF_node(bus);
 103        for (dn = busdn->child; dn; dn = dn->sibling) {
 104                pdn = PCI_DN(dn);
 105                if (pdn && pdn->devfn == devfn
 106                    && of_device_is_available(dn)) {
 107                        found = true;
 108                        break;
 109                }
 110        }
 111
 112        if (!found)
 113                return PCIBIOS_DEVICE_NOT_FOUND;
 114
 115        ret = rtas_read_config(pdn, where, size, val);
 116        if (*val == EEH_IO_ERROR_VALUE(size) &&
 117            eeh_dev_check_failure(of_node_to_eeh_dev(dn)))
 118                return PCIBIOS_DEVICE_NOT_FOUND;
 119
 120        return ret;
 121}
 122
 123int rtas_write_config(struct pci_dn *pdn, int where, int size, u32 val)
 124{
 125        unsigned long buid, addr;
 126        int ret;
 127
 128        if (!pdn)
 129                return PCIBIOS_DEVICE_NOT_FOUND;
 130        if (!config_access_valid(pdn, where))
 131                return PCIBIOS_BAD_REGISTER_NUMBER;
 132#ifdef CONFIG_EEH
 133        if (pdn->edev && pdn->edev->pe &&
 134            (pdn->edev->pe->state & EEH_PE_CFG_BLOCKED))
 135                return PCIBIOS_SET_FAILED;
 136#endif
 137
 138        addr = rtas_config_addr(pdn->busno, pdn->devfn, where);
 139        buid = pdn->phb->buid;
 140        if (buid) {
 141                ret = rtas_call(ibm_write_pci_config, 5, 1, NULL, addr,
 142                        BUID_HI(buid), BUID_LO(buid), size, (ulong) val);
 143        } else {
 144                ret = rtas_call(write_pci_config, 3, 1, NULL, addr, size, (ulong)val);
 145        }
 146
 147        if (ret)
 148                return PCIBIOS_DEVICE_NOT_FOUND;
 149
 150        return PCIBIOS_SUCCESSFUL;
 151}
 152
 153static int rtas_pci_write_config(struct pci_bus *bus,
 154                                 unsigned int devfn,
 155                                 int where, int size, u32 val)
 156{
 157        struct device_node *busdn, *dn;
 158        struct pci_dn *pdn;
 159        bool found = false;
 160
 161        /* Search only direct children of the bus */
 162        busdn = pci_bus_to_OF_node(bus);
 163        for (dn = busdn->child; dn; dn = dn->sibling) {
 164                pdn = PCI_DN(dn);
 165                if (pdn && pdn->devfn == devfn
 166                    && of_device_is_available(dn)) {
 167                        found = true;
 168                        break;
 169                }
 170        }
 171
 172        if (!found)
 173                return PCIBIOS_DEVICE_NOT_FOUND;
 174
 175        return rtas_write_config(pdn, where, size, val);
 176}
 177
 178static struct pci_ops rtas_pci_ops = {
 179        .read = rtas_pci_read_config,
 180        .write = rtas_pci_write_config,
 181};
 182
 183static int is_python(struct device_node *dev)
 184{
 185        const char *model = of_get_property(dev, "model", NULL);
 186
 187        if (model && strstr(model, "Python"))
 188                return 1;
 189
 190        return 0;
 191}
 192
 193static void python_countermeasures(struct device_node *dev)
 194{
 195        struct resource registers;
 196        void __iomem *chip_regs;
 197        volatile u32 val;
 198
 199        if (of_address_to_resource(dev, 0, &registers)) {
 200                printk(KERN_ERR "Can't get address for Python workarounds !\n");
 201                return;
 202        }
 203
 204        /* Python's register file is 1 MB in size. */
 205        chip_regs = ioremap(registers.start & ~(0xfffffUL), 0x100000);
 206
 207        /*
 208         * Firmware doesn't always clear this bit which is critical
 209         * for good performance - Anton
 210         */
 211
 212#define PRG_CL_RESET_VALID 0x00010000
 213
 214        val = in_be32(chip_regs + 0xf6030);
 215        if (val & PRG_CL_RESET_VALID) {
 216                printk(KERN_INFO "Python workaround: ");
 217                val &= ~PRG_CL_RESET_VALID;
 218                out_be32(chip_regs + 0xf6030, val);
 219                /*
 220                 * We must read it back for changes to
 221                 * take effect
 222                 */
 223                val = in_be32(chip_regs + 0xf6030);
 224                printk("reg0: %x\n", val);
 225        }
 226
 227        iounmap(chip_regs);
 228}
 229
 230void __init init_pci_config_tokens(void)
 231{
 232        read_pci_config = rtas_token("read-pci-config");
 233        write_pci_config = rtas_token("write-pci-config");
 234        ibm_read_pci_config = rtas_token("ibm,read-pci-config");
 235        ibm_write_pci_config = rtas_token("ibm,write-pci-config");
 236}
 237
 238unsigned long get_phb_buid(struct device_node *phb)
 239{
 240        struct resource r;
 241
 242        if (ibm_read_pci_config == -1)
 243                return 0;
 244        if (of_address_to_resource(phb, 0, &r))
 245                return 0;
 246        return r.start;
 247}
 248
 249static int phb_set_bus_ranges(struct device_node *dev,
 250                              struct pci_controller *phb)
 251{
 252        const __be32 *bus_range;
 253        unsigned int len;
 254
 255        bus_range = of_get_property(dev, "bus-range", &len);
 256        if (bus_range == NULL || len < 2 * sizeof(int)) {
 257                return 1;
 258        }
 259
 260        phb->first_busno = be32_to_cpu(bus_range[0]);
 261        phb->last_busno  = be32_to_cpu(bus_range[1]);
 262
 263        return 0;
 264}
 265
 266int rtas_setup_phb(struct pci_controller *phb)
 267{
 268        struct device_node *dev = phb->dn;
 269
 270        if (is_python(dev))
 271                python_countermeasures(dev);
 272
 273        if (phb_set_bus_ranges(dev, phb))
 274                return 1;
 275
 276        phb->ops = &rtas_pci_ops;
 277        phb->buid = get_phb_buid(dev);
 278
 279        return 0;
 280}
 281
 282void __init find_and_init_phbs(void)
 283{
 284        struct device_node *node;
 285        struct pci_controller *phb;
 286        struct device_node *root = of_find_node_by_path("/");
 287
 288        for_each_child_of_node(root, node) {
 289                if (node->type == NULL || (strcmp(node->type, "pci") != 0 &&
 290                                           strcmp(node->type, "pciex") != 0))
 291                        continue;
 292
 293                phb = pcibios_alloc_controller(node);
 294                if (!phb)
 295                        continue;
 296                rtas_setup_phb(phb);
 297                pci_process_bridge_OF_ranges(phb, node, 0);
 298                isa_bridge_find_early(phb);
 299        }
 300
 301        of_node_put(root);
 302        pci_devs_phb_init();
 303
 304        /*
 305         * PCI_PROBE_ONLY and PCI_REASSIGN_ALL_BUS can be set via properties
 306         * in chosen.
 307         */
 308        if (of_chosen) {
 309                const int *prop;
 310
 311                prop = of_get_property(of_chosen,
 312                                "linux,pci-probe-only", NULL);
 313                if (prop) {
 314                        if (*prop)
 315                                pci_add_flags(PCI_PROBE_ONLY);
 316                        else
 317                                pci_clear_flags(PCI_PROBE_ONLY);
 318                }
 319
 320#ifdef CONFIG_PPC32 /* Will be made generic soon */
 321                prop = of_get_property(of_chosen,
 322                                "linux,pci-assign-all-buses", NULL);
 323                if (prop && *prop)
 324                        pci_add_flags(PCI_REASSIGN_ALL_BUS);
 325#endif /* CONFIG_PPC32 */
 326        }
 327}
 328