Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Interface for Dynamic Logical Partitioning of I/O Slots on |
| 3 | * RPA-compliant PPC64 platform. |
| 4 | * |
| 5 | * John Rose <johnrose@austin.ibm.com> |
| 6 | * Linda Xie <lxie@us.ibm.com> |
| 7 | * |
| 8 | * October 2003 |
| 9 | * |
| 10 | * Copyright (C) 2003 IBM. |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License |
| 14 | * as published by the Free Software Foundation; either version |
| 15 | * 2 of the License, or (at your option) any later version. |
| 16 | */ |
Benjamin Herrenschmidt | fd6852c | 2008-10-27 19:48:52 +0000 | [diff] [blame] | 17 | |
| 18 | #undef DEBUG |
| 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/init.h> |
Paul Gortmaker | eefa9cf | 2011-05-27 09:42:30 -0400 | [diff] [blame] | 21 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/pci.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 23 | #include <linux/string.h> |
Benjamin Herrenschmidt | b4a26be | 2010-04-06 15:03:40 +0000 | [diff] [blame] | 24 | #include <linux/vmalloc.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <asm/pci-bridge.h> |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 27 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <asm/rtas.h> |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 29 | #include <asm/vio.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include "../pci.h" |
| 32 | #include "rpaphp.h" |
| 33 | #include "rpadlpar.h" |
| 34 | |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 35 | static DEFINE_MUTEX(rpadlpar_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 37 | #define DLPAR_MODULE_NAME "rpadlpar_io" |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #define NODE_TYPE_VIO 1 |
| 40 | #define NODE_TYPE_SLOT 2 |
| 41 | #define NODE_TYPE_PHB 3 |
| 42 | |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 43 | static struct device_node *find_vio_slot_node(char *drc_name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | struct device_node *parent = of_find_node_by_name(NULL, "vdevice"); |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 46 | struct device_node *dn = NULL; |
| 47 | char *name; |
| 48 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | if (!parent) |
| 51 | return NULL; |
| 52 | |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 53 | while ((dn = of_get_next_child(parent, dn))) { |
| 54 | rc = rpaphp_get_drc_props(dn, NULL, &name, NULL, NULL); |
| 55 | if ((rc == 0) && (!strcmp(drc_name, name))) |
| 56 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | } |
| 58 | |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 59 | return dn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | /* Find dlpar-capable pci node that contains the specified name and type */ |
| 63 | static struct device_node *find_php_slot_pci_node(char *drc_name, |
| 64 | char *drc_type) |
| 65 | { |
| 66 | struct device_node *np = NULL; |
| 67 | char *name; |
| 68 | char *type; |
| 69 | int rc; |
| 70 | |
John Rose | a57ed79 | 2006-11-13 15:12:52 -0800 | [diff] [blame] | 71 | while ((np = of_find_node_by_name(np, "pci"))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | rc = rpaphp_get_drc_props(np, NULL, &name, &type, NULL); |
| 73 | if (rc == 0) |
| 74 | if (!strcmp(drc_name, name) && !strcmp(drc_type, type)) |
| 75 | break; |
| 76 | } |
| 77 | |
| 78 | return np; |
| 79 | } |
| 80 | |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 81 | static struct device_node *find_dlpar_node(char *drc_name, int *node_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | { |
| 83 | struct device_node *dn; |
| 84 | |
| 85 | dn = find_php_slot_pci_node(drc_name, "SLOT"); |
| 86 | if (dn) { |
| 87 | *node_type = NODE_TYPE_SLOT; |
| 88 | return dn; |
| 89 | } |
| 90 | |
| 91 | dn = find_php_slot_pci_node(drc_name, "PHB"); |
| 92 | if (dn) { |
| 93 | *node_type = NODE_TYPE_PHB; |
| 94 | return dn; |
| 95 | } |
| 96 | |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 97 | dn = find_vio_slot_node(drc_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | if (dn) { |
| 99 | *node_type = NODE_TYPE_VIO; |
| 100 | return dn; |
| 101 | } |
| 102 | |
| 103 | return NULL; |
| 104 | } |
| 105 | |
Linas Vepstas | 8485d1a | 2007-04-13 15:34:21 -0700 | [diff] [blame] | 106 | /** |
| 107 | * find_php_slot - return hotplug slot structure for device node |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 108 | * @dn: target &device_node |
Linas Vepstas | 8485d1a | 2007-04-13 15:34:21 -0700 | [diff] [blame] | 109 | * |
| 110 | * This routine will return the hotplug slot structure |
| 111 | * for a given device node. Note that built-in PCI slots |
| 112 | * may be dlpar-able, but not hot-pluggable, so this routine |
| 113 | * will return NULL for built-in PCI slots. |
| 114 | */ |
| 115 | static struct slot *find_php_slot(struct device_node *dn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | { |
| 117 | struct list_head *tmp, *n; |
| 118 | struct slot *slot; |
| 119 | |
linas@austin.ibm.com | 8737d6a | 2006-01-12 18:35:23 -0600 | [diff] [blame] | 120 | list_for_each_safe(tmp, n, &rpaphp_slot_head) { |
| 121 | slot = list_entry(tmp, struct slot, rpaphp_slot_list); |
| 122 | if (slot->dn == dn) |
| 123 | return slot; |
| 124 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
linas@austin.ibm.com | 8737d6a | 2006-01-12 18:35:23 -0600 | [diff] [blame] | 126 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | } |
| 128 | |
John Rose | 0945cd5 | 2005-07-25 10:16:53 -0500 | [diff] [blame] | 129 | static struct pci_dev *dlpar_find_new_dev(struct pci_bus *parent, |
| 130 | struct device_node *dev_dn) |
| 131 | { |
| 132 | struct pci_dev *tmp = NULL; |
| 133 | struct device_node *child_dn; |
| 134 | |
| 135 | list_for_each_entry(tmp, &parent->devices, bus_list) { |
| 136 | child_dn = pci_device_to_OF_node(tmp); |
| 137 | if (child_dn == dev_dn) |
| 138 | return tmp; |
| 139 | } |
| 140 | return NULL; |
| 141 | } |
| 142 | |
linas@austin.ibm.com | 8737d6a | 2006-01-12 18:35:23 -0600 | [diff] [blame] | 143 | static void dlpar_pci_add_bus(struct device_node *dn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | { |
linas@austin.ibm.com | 8737d6a | 2006-01-12 18:35:23 -0600 | [diff] [blame] | 145 | struct pci_dn *pdn = PCI_DN(dn); |
John Rose | 5fa80fc | 2005-11-04 15:38:50 -0600 | [diff] [blame] | 146 | struct pci_controller *phb = pdn->phb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | struct pci_dev *dev = NULL; |
| 148 | |
linas@austin.ibm.com | d681db4 | 2005-12-01 18:56:14 -0600 | [diff] [blame] | 149 | eeh_add_device_tree_early(dn); |
| 150 | |
John Rose | 5fa80fc | 2005-11-04 15:38:50 -0600 | [diff] [blame] | 151 | /* Add EADS device to PHB bus, adding new entry to bus->devices */ |
| 152 | dev = of_create_pci_dev(dn, phb->bus, pdn->devfn); |
| 153 | if (!dev) { |
| 154 | printk(KERN_ERR "%s: failed to create pci dev for %s\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 155 | __func__, dn->full_name); |
linas@austin.ibm.com | 8737d6a | 2006-01-12 18:35:23 -0600 | [diff] [blame] | 156 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | } |
| 158 | |
Benjamin Herrenschmidt | fd6852c | 2008-10-27 19:48:52 +0000 | [diff] [blame] | 159 | /* Scan below the new bridge */ |
John Rose | 5fa80fc | 2005-11-04 15:38:50 -0600 | [diff] [blame] | 160 | if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE || |
| 161 | dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) |
Benjamin Herrenschmidt | 98d9f30 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 162 | of_scan_pci_bridge(dev); |
John Rose | 5fa80fc | 2005-11-04 15:38:50 -0600 | [diff] [blame] | 163 | |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 164 | /* Map IO space for child bus, which may or may not succeed */ |
| 165 | pcibios_map_io_space(dev->subordinate); |
John Rose | 5fa80fc | 2005-11-04 15:38:50 -0600 | [diff] [blame] | 166 | |
Benjamin Herrenschmidt | fd6852c | 2008-10-27 19:48:52 +0000 | [diff] [blame] | 167 | /* Finish adding it : resource allocation, adding devices, etc... |
| 168 | * Note that we need to perform the finish pass on the -parent- |
| 169 | * bus of the EADS bridge so the bridge device itself gets |
| 170 | * properly added |
| 171 | */ |
| 172 | pcibios_finish_adding_to_bus(phb->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
John Rose | 940903c | 2005-07-25 10:16:58 -0500 | [diff] [blame] | 175 | static int dlpar_add_pci_slot(char *drc_name, struct device_node *dn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | { |
| 177 | struct pci_dev *dev; |
linas@austin.ibm.com | 8737d6a | 2006-01-12 18:35:23 -0600 | [diff] [blame] | 178 | struct pci_controller *phb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
linas@austin.ibm.com | 0165786 | 2006-01-12 18:18:26 -0600 | [diff] [blame] | 180 | if (pcibios_find_pci_bus(dn)) |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 181 | return -EINVAL; |
| 182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | /* Add pci bus */ |
linas@austin.ibm.com | 8737d6a | 2006-01-12 18:35:23 -0600 | [diff] [blame] | 184 | dlpar_pci_add_bus(dn); |
| 185 | |
| 186 | /* Confirm new bridge dev was created */ |
| 187 | phb = PCI_DN(dn)->phb; |
| 188 | dev = dlpar_find_new_dev(phb->bus, dn); |
| 189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | if (!dev) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 191 | printk(KERN_ERR "%s: unable to add bus %s\n", __func__, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | drc_name); |
| 193 | return -EIO; |
| 194 | } |
| 195 | |
linas@austin.ibm.com | 8737d6a | 2006-01-12 18:35:23 -0600 | [diff] [blame] | 196 | if (dev->hdr_type != PCI_HEADER_TYPE_BRIDGE) { |
| 197 | printk(KERN_ERR "%s: unexpected header type %d, unable to add bus %s\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 198 | __func__, dev->hdr_type, drc_name); |
linas@austin.ibm.com | 8737d6a | 2006-01-12 18:35:23 -0600 | [diff] [blame] | 199 | return -EIO; |
| 200 | } |
| 201 | |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 202 | /* Add hotplug slot */ |
| 203 | if (rpaphp_add_slot(dn)) { |
| 204 | printk(KERN_ERR "%s: unable to add hotplug slot %s\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 205 | __func__, drc_name); |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 206 | return -EIO; |
| 207 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | return 0; |
| 209 | } |
| 210 | |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 211 | static int dlpar_remove_phb(char *drc_name, struct device_node *dn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | { |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 213 | struct slot *slot; |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 214 | struct pci_dn *pdn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | int rc = 0; |
| 216 | |
linas@austin.ibm.com | 0165786 | 2006-01-12 18:18:26 -0600 | [diff] [blame] | 217 | if (!pcibios_find_pci_bus(dn)) |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 218 | return -EINVAL; |
| 219 | |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 220 | /* If pci slot is hotpluggable, use hotplug to remove it */ |
Linas Vepstas | 8485d1a | 2007-04-13 15:34:21 -0700 | [diff] [blame] | 221 | slot = find_php_slot(dn); |
Benjamin Herrenschmidt | fd6852c | 2008-10-27 19:48:52 +0000 | [diff] [blame] | 222 | if (slot && rpaphp_deregister_slot(slot)) { |
| 223 | printk(KERN_ERR "%s: unable to remove hotplug slot %s\n", |
| 224 | __func__, drc_name); |
| 225 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | } |
| 227 | |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 228 | pdn = dn->data; |
| 229 | BUG_ON(!pdn || !pdn->phb); |
Benjamin Herrenschmidt | fd6852c | 2008-10-27 19:48:52 +0000 | [diff] [blame] | 230 | rc = remove_phb_dynamic(pdn->phb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | if (rc < 0) |
| 232 | return rc; |
| 233 | |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 234 | pdn->phb = NULL; |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | return 0; |
| 237 | } |
| 238 | |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 239 | static int dlpar_add_phb(char *drc_name, struct device_node *dn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | { |
| 241 | struct pci_controller *phb; |
| 242 | |
Linas Vepstas | fe98aea | 2005-11-03 18:51:17 -0600 | [diff] [blame] | 243 | if (PCI_DN(dn) && PCI_DN(dn)->phb) { |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 244 | /* PHB already exists */ |
| 245 | return -EINVAL; |
| 246 | } |
| 247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | phb = init_phb_dynamic(dn); |
| 249 | if (!phb) |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 250 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 252 | if (rpaphp_add_slot(dn)) { |
| 253 | printk(KERN_ERR "%s: unable to add hotplug slot %s\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 254 | __func__, drc_name); |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 255 | return -EIO; |
| 256 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | return 0; |
| 258 | } |
| 259 | |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 260 | static int dlpar_add_vio_slot(char *drc_name, struct device_node *dn) |
| 261 | { |
| 262 | if (vio_find_node(dn)) |
| 263 | return -EINVAL; |
| 264 | |
| 265 | if (!vio_register_device_node(dn)) { |
| 266 | printk(KERN_ERR |
| 267 | "%s: failed to register vio node %s\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 268 | __func__, drc_name); |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 269 | return -EIO; |
| 270 | } |
| 271 | return 0; |
| 272 | } |
| 273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | /** |
| 275 | * dlpar_add_slot - DLPAR add an I/O Slot |
| 276 | * @drc_name: drc-name of newly added slot |
| 277 | * |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 278 | * Make the hotplug module and the kernel aware of a newly added I/O Slot. |
| 279 | * Return Codes: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | * 0 Success |
| 281 | * -ENODEV Not a valid drc_name |
| 282 | * -EINVAL Slot already added |
| 283 | * -ERESTARTSYS Signalled before obtaining lock |
| 284 | * -EIO Internal PCI Error |
| 285 | */ |
| 286 | int dlpar_add_slot(char *drc_name) |
| 287 | { |
| 288 | struct device_node *dn = NULL; |
| 289 | int node_type; |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 290 | int rc = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 292 | if (mutex_lock_interruptible(&rpadlpar_mutex)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | return -ERESTARTSYS; |
| 294 | |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 295 | /* Find newly added node */ |
| 296 | dn = find_dlpar_node(drc_name, &node_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | if (!dn) { |
| 298 | rc = -ENODEV; |
| 299 | goto exit; |
| 300 | } |
| 301 | |
| 302 | switch (node_type) { |
| 303 | case NODE_TYPE_VIO: |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 304 | rc = dlpar_add_vio_slot(drc_name, dn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | break; |
| 306 | case NODE_TYPE_SLOT: |
| 307 | rc = dlpar_add_pci_slot(drc_name, dn); |
| 308 | break; |
| 309 | case NODE_TYPE_PHB: |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 310 | rc = dlpar_add_phb(drc_name, dn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | } |
| 313 | |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 314 | printk(KERN_INFO "%s: slot %s added\n", DLPAR_MODULE_NAME, drc_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | exit: |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 316 | mutex_unlock(&rpadlpar_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | return rc; |
| 318 | } |
| 319 | |
| 320 | /** |
| 321 | * dlpar_remove_vio_slot - DLPAR remove a virtual I/O Slot |
| 322 | * @drc_name: drc-name of newly added slot |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 323 | * @dn: &device_node |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | * |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 325 | * Remove the kernel and hotplug representations of an I/O Slot. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | * Return Codes: |
| 327 | * 0 Success |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 328 | * -EINVAL Vio dev doesn't exist |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | */ |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 330 | static int dlpar_remove_vio_slot(char *drc_name, struct device_node *dn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | { |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 332 | struct vio_dev *vio_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 334 | vio_dev = vio_find_node(dn); |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 335 | if (!vio_dev) |
| 336 | return -EINVAL; |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 337 | |
| 338 | vio_unregister_device(vio_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | return 0; |
| 340 | } |
| 341 | |
| 342 | /** |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 343 | * dlpar_remove_pci_slot - DLPAR remove a PCI I/O Slot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | * @drc_name: drc-name of newly added slot |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 345 | * @dn: &device_node |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | * |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 347 | * Remove the kernel and hotplug representations of a PCI I/O Slot. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | * Return Codes: |
| 349 | * 0 Success |
| 350 | * -ENODEV Not a valid drc_name |
| 351 | * -EIO Internal PCI Error |
| 352 | */ |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 353 | int dlpar_remove_pci_slot(char *drc_name, struct device_node *dn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | { |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 355 | struct pci_bus *bus; |
| 356 | struct slot *slot; |
Rafael J. Wysocki | c4ec84c | 2014-01-14 12:03:14 -0700 | [diff] [blame] | 357 | int ret = 0; |
| 358 | |
| 359 | pci_lock_rescan_remove(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
linas@austin.ibm.com | 0165786 | 2006-01-12 18:18:26 -0600 | [diff] [blame] | 361 | bus = pcibios_find_pci_bus(dn); |
Rafael J. Wysocki | c4ec84c | 2014-01-14 12:03:14 -0700 | [diff] [blame] | 362 | if (!bus) { |
| 363 | ret = -EINVAL; |
| 364 | goto out; |
| 365 | } |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 366 | |
Benjamin Herrenschmidt | fd6852c | 2008-10-27 19:48:52 +0000 | [diff] [blame] | 367 | pr_debug("PCI: Removing PCI slot below EADS bridge %s\n", |
| 368 | bus->self ? pci_name(bus->self) : "<!PHB!>"); |
| 369 | |
Linas Vepstas | 8485d1a | 2007-04-13 15:34:21 -0700 | [diff] [blame] | 370 | slot = find_php_slot(dn); |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 371 | if (slot) { |
Benjamin Herrenschmidt | fd6852c | 2008-10-27 19:48:52 +0000 | [diff] [blame] | 372 | pr_debug("PCI: Removing hotplug slot for %04x:%02x...\n", |
| 373 | pci_domain_nr(bus), bus->number); |
| 374 | |
linas@austin.ibm.com | f6afbad | 2006-01-12 18:31:01 -0600 | [diff] [blame] | 375 | if (rpaphp_deregister_slot(slot)) { |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 376 | printk(KERN_ERR |
| 377 | "%s: unable to remove hotplug slot %s\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 378 | __func__, drc_name); |
Rafael J. Wysocki | c4ec84c | 2014-01-14 12:03:14 -0700 | [diff] [blame] | 379 | ret = -EIO; |
| 380 | goto out; |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 381 | } |
Benjamin Herrenschmidt | fd6852c | 2008-10-27 19:48:52 +0000 | [diff] [blame] | 382 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | |
Benjamin Herrenschmidt | fd6852c | 2008-10-27 19:48:52 +0000 | [diff] [blame] | 384 | /* Remove all devices below slot */ |
| 385 | pcibios_remove_pci_devices(bus); |
| 386 | |
| 387 | /* Unmap PCI IO space */ |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 388 | if (pcibios_unmap_io_space(bus)) { |
John Rose | 9c209c9 | 2005-07-25 11:13:38 -0500 | [diff] [blame] | 389 | printk(KERN_ERR "%s: failed to unmap bus range\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 390 | __func__); |
Rafael J. Wysocki | c4ec84c | 2014-01-14 12:03:14 -0700 | [diff] [blame] | 391 | ret = -ERANGE; |
| 392 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | } |
John Rose | 9c209c9 | 2005-07-25 11:13:38 -0500 | [diff] [blame] | 394 | |
Benjamin Herrenschmidt | fd6852c | 2008-10-27 19:48:52 +0000 | [diff] [blame] | 395 | /* Remove the EADS bridge device itself */ |
John Rose | 9c209c9 | 2005-07-25 11:13:38 -0500 | [diff] [blame] | 396 | BUG_ON(!bus->self); |
Benjamin Herrenschmidt | fd6852c | 2008-10-27 19:48:52 +0000 | [diff] [blame] | 397 | pr_debug("PCI: Now removing bridge device %s\n", pci_name(bus->self)); |
Yinghai Lu | 210647a | 2012-02-25 13:54:20 -0800 | [diff] [blame] | 398 | pci_stop_and_remove_bus_device(bus->self); |
Benjamin Herrenschmidt | fd6852c | 2008-10-27 19:48:52 +0000 | [diff] [blame] | 399 | |
Rafael J. Wysocki | c4ec84c | 2014-01-14 12:03:14 -0700 | [diff] [blame] | 400 | out: |
| 401 | pci_unlock_rescan_remove(); |
| 402 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | /** |
| 406 | * dlpar_remove_slot - DLPAR remove an I/O Slot |
| 407 | * @drc_name: drc-name of newly added slot |
| 408 | * |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 409 | * Remove the kernel and hotplug representations of an I/O Slot. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | * Return Codes: |
| 411 | * 0 Success |
| 412 | * -ENODEV Not a valid drc_name |
| 413 | * -EINVAL Slot already removed |
| 414 | * -ERESTARTSYS Signalled before obtaining lock |
| 415 | * -EIO Internal Error |
| 416 | */ |
| 417 | int dlpar_remove_slot(char *drc_name) |
| 418 | { |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 419 | struct device_node *dn; |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 420 | int node_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | int rc = 0; |
| 422 | |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 423 | if (mutex_lock_interruptible(&rpadlpar_mutex)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | return -ERESTARTSYS; |
| 425 | |
John Rose | 5eeb8c6 | 2005-07-25 10:16:42 -0500 | [diff] [blame] | 426 | dn = find_dlpar_node(drc_name, &node_type); |
| 427 | if (!dn) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | rc = -ENODEV; |
| 429 | goto exit; |
| 430 | } |
| 431 | |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 432 | switch (node_type) { |
| 433 | case NODE_TYPE_VIO: |
| 434 | rc = dlpar_remove_vio_slot(drc_name, dn); |
| 435 | break; |
| 436 | case NODE_TYPE_PHB: |
| 437 | rc = dlpar_remove_phb(drc_name, dn); |
| 438 | break; |
| 439 | case NODE_TYPE_SLOT: |
| 440 | rc = dlpar_remove_pci_slot(drc_name, dn); |
| 441 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | } |
Benjamin Herrenschmidt | b4a26be | 2010-04-06 15:03:40 +0000 | [diff] [blame] | 443 | vm_unmap_aliases(); |
| 444 | |
John Rose | 56d8456 | 2005-07-25 10:17:03 -0500 | [diff] [blame] | 445 | printk(KERN_INFO "%s: slot %s removed\n", DLPAR_MODULE_NAME, drc_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | exit: |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 447 | mutex_unlock(&rpadlpar_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | return rc; |
| 449 | } |
| 450 | |
| 451 | static inline int is_dlpar_capable(void) |
| 452 | { |
| 453 | int rc = rtas_token("ibm,configure-connector"); |
| 454 | |
| 455 | return (int) (rc != RTAS_UNKNOWN_SERVICE); |
| 456 | } |
| 457 | |
| 458 | int __init rpadlpar_io_init(void) |
| 459 | { |
| 460 | int rc = 0; |
| 461 | |
| 462 | if (!is_dlpar_capable()) { |
| 463 | printk(KERN_WARNING "%s: partition not DLPAR capable\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 464 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | return -EPERM; |
| 466 | } |
| 467 | |
| 468 | rc = dlpar_sysfs_init(); |
| 469 | return rc; |
| 470 | } |
| 471 | |
| 472 | void rpadlpar_io_exit(void) |
| 473 | { |
| 474 | dlpar_sysfs_exit(); |
| 475 | return; |
| 476 | } |
| 477 | |
| 478 | module_init(rpadlpar_io_init); |
| 479 | module_exit(rpadlpar_io_exit); |
| 480 | MODULE_LICENSE("GPL"); |