[PATCH] PCI Hotplug/powerpc: remove duplicated code
[linux-2.6/libata-dev.git] / drivers / pci / hotplug / rpadlpar_core.c
blob0173641c4149972cf459718a577b32ee7059be6e
1 /*
2 * Interface for Dynamic Logical Partitioning of I/O Slots on
3 * RPA-compliant PPC64 platform.
5 * John Rose <johnrose@austin.ibm.com>
6 * Linda Xie <lxie@us.ibm.com>
8 * October 2003
10 * Copyright (C) 2003 IBM.
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.
17 #include <linux/init.h>
18 #include <linux/pci.h>
19 #include <linux/string.h>
21 #include <asm/pci-bridge.h>
22 #include <asm/semaphore.h>
23 #include <asm/rtas.h>
24 #include <asm/vio.h>
26 #include "../pci.h"
27 #include "rpaphp.h"
28 #include "rpadlpar.h"
30 static DECLARE_MUTEX(rpadlpar_sem);
32 #define DLPAR_MODULE_NAME "rpadlpar_io"
34 #define NODE_TYPE_VIO 1
35 #define NODE_TYPE_SLOT 2
36 #define NODE_TYPE_PHB 3
38 static struct device_node *find_vio_slot_node(char *drc_name)
40 struct device_node *parent = of_find_node_by_name(NULL, "vdevice");
41 struct device_node *dn = NULL;
42 char *name;
43 int rc;
45 if (!parent)
46 return NULL;
48 while ((dn = of_get_next_child(parent, dn))) {
49 rc = rpaphp_get_drc_props(dn, NULL, &name, NULL, NULL);
50 if ((rc == 0) && (!strcmp(drc_name, name)))
51 break;
54 return dn;
57 /* Find dlpar-capable pci node that contains the specified name and type */
58 static struct device_node *find_php_slot_pci_node(char *drc_name,
59 char *drc_type)
61 struct device_node *np = NULL;
62 char *name;
63 char *type;
64 int rc;
66 while ((np = of_find_node_by_type(np, "pci"))) {
67 rc = rpaphp_get_drc_props(np, NULL, &name, &type, NULL);
68 if (rc == 0)
69 if (!strcmp(drc_name, name) && !strcmp(drc_type, type))
70 break;
73 return np;
76 static struct device_node *find_dlpar_node(char *drc_name, int *node_type)
78 struct device_node *dn;
80 dn = find_php_slot_pci_node(drc_name, "SLOT");
81 if (dn) {
82 *node_type = NODE_TYPE_SLOT;
83 return dn;
86 dn = find_php_slot_pci_node(drc_name, "PHB");
87 if (dn) {
88 *node_type = NODE_TYPE_PHB;
89 return dn;
92 dn = find_vio_slot_node(drc_name);
93 if (dn) {
94 *node_type = NODE_TYPE_VIO;
95 return dn;
98 return NULL;
101 static struct slot *find_slot(struct device_node *dn)
103 struct list_head *tmp, *n;
104 struct slot *slot;
106 list_for_each_safe(tmp, n, &rpaphp_slot_head) {
107 slot = list_entry(tmp, struct slot, rpaphp_slot_list);
108 if (slot->dn == dn)
109 return slot;
112 return NULL;
115 static void rpadlpar_claim_one_bus(struct pci_bus *b)
117 struct list_head *ld;
118 struct pci_bus *child_bus;
120 for (ld = b->devices.next; ld != &b->devices; ld = ld->next) {
121 struct pci_dev *dev = pci_dev_b(ld);
122 int i;
124 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
125 struct resource *r = &dev->resource[i];
127 if (r->parent || !r->start || !r->flags)
128 continue;
129 rpaphp_claim_resource(dev, i);
133 list_for_each_entry(child_bus, &b->children, node)
134 rpadlpar_claim_one_bus(child_bus);
137 static struct pci_dev *dlpar_find_new_dev(struct pci_bus *parent,
138 struct device_node *dev_dn)
140 struct pci_dev *tmp = NULL;
141 struct device_node *child_dn;
143 list_for_each_entry(tmp, &parent->devices, bus_list) {
144 child_dn = pci_device_to_OF_node(tmp);
145 if (child_dn == dev_dn)
146 return tmp;
148 return NULL;
151 static struct pci_dev *dlpar_pci_add_bus(struct device_node *dn)
153 struct pci_dn *pdn = dn->data;
154 struct pci_controller *phb = pdn->phb;
155 struct pci_dev *dev = NULL;
157 eeh_add_device_tree_early(dn);
159 /* Add EADS device to PHB bus, adding new entry to bus->devices */
160 dev = of_create_pci_dev(dn, phb->bus, pdn->devfn);
161 if (!dev) {
162 printk(KERN_ERR "%s: failed to create pci dev for %s\n",
163 __FUNCTION__, dn->full_name);
164 return NULL;
167 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
168 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
169 of_scan_pci_bridge(dn, dev);
171 rpaphp_init_new_devs(dev->subordinate);
173 /* Claim new bus resources */
174 rpadlpar_claim_one_bus(dev->bus);
176 /* ioremap() for child bus, which may or may not succeed */
177 (void) remap_bus_range(dev->bus);
179 /* Add new devices to global lists. Register in proc, sysfs. */
180 pci_bus_add_devices(phb->bus);
182 /* Confirm new bridge dev was created */
183 dev = dlpar_find_new_dev(phb->bus, dn);
184 if (dev) {
185 if (dev->hdr_type != PCI_HEADER_TYPE_BRIDGE) {
186 printk(KERN_ERR "%s: unexpected header type %d\n",
187 __FUNCTION__, dev->hdr_type);
188 return NULL;
192 return dev;
195 static int dlpar_add_pci_slot(char *drc_name, struct device_node *dn)
197 struct pci_dev *dev;
199 if (rpaphp_find_pci_bus(dn))
200 return -EINVAL;
202 /* Add pci bus */
203 dev = dlpar_pci_add_bus(dn);
204 if (!dev) {
205 printk(KERN_ERR "%s: unable to add bus %s\n", __FUNCTION__,
206 drc_name);
207 return -EIO;
210 /* Add hotplug slot */
211 if (rpaphp_add_slot(dn)) {
212 printk(KERN_ERR "%s: unable to add hotplug slot %s\n",
213 __FUNCTION__, drc_name);
214 return -EIO;
216 return 0;
219 static int dlpar_remove_root_bus(struct pci_controller *phb)
221 struct pci_bus *phb_bus;
222 int rc;
224 phb_bus = phb->bus;
225 if (!(list_empty(&phb_bus->children) &&
226 list_empty(&phb_bus->devices))) {
227 return -EBUSY;
230 rc = pcibios_remove_root_bus(phb);
231 if (rc)
232 return -EIO;
234 device_unregister(phb_bus->bridge);
235 pci_remove_bus(phb_bus);
237 return 0;
240 static int dlpar_remove_phb(char *drc_name, struct device_node *dn)
242 struct slot *slot;
243 struct pci_dn *pdn;
244 int rc = 0;
246 if (!rpaphp_find_pci_bus(dn))
247 return -EINVAL;
249 slot = find_slot(dn);
250 if (slot) {
251 /* Remove hotplug slot */
252 if (rpaphp_remove_slot(slot)) {
253 printk(KERN_ERR
254 "%s: unable to remove hotplug slot %s\n",
255 __FUNCTION__, drc_name);
256 return -EIO;
260 pdn = dn->data;
261 BUG_ON(!pdn || !pdn->phb);
262 rc = dlpar_remove_root_bus(pdn->phb);
263 if (rc < 0)
264 return rc;
266 pdn->phb = NULL;
268 return 0;
271 static int dlpar_add_phb(char *drc_name, struct device_node *dn)
273 struct pci_controller *phb;
275 if (PCI_DN(dn) && PCI_DN(dn)->phb) {
276 /* PHB already exists */
277 return -EINVAL;
280 phb = init_phb_dynamic(dn);
281 if (!phb)
282 return -EIO;
284 if (rpaphp_add_slot(dn)) {
285 printk(KERN_ERR "%s: unable to add hotplug slot %s\n",
286 __FUNCTION__, drc_name);
287 return -EIO;
289 return 0;
292 static int dlpar_add_vio_slot(char *drc_name, struct device_node *dn)
294 if (vio_find_node(dn))
295 return -EINVAL;
297 if (!vio_register_device_node(dn)) {
298 printk(KERN_ERR
299 "%s: failed to register vio node %s\n",
300 __FUNCTION__, drc_name);
301 return -EIO;
303 return 0;
307 * dlpar_add_slot - DLPAR add an I/O Slot
308 * @drc_name: drc-name of newly added slot
310 * Make the hotplug module and the kernel aware
311 * of a newly added I/O Slot.
312 * Return Codes -
313 * 0 Success
314 * -ENODEV Not a valid drc_name
315 * -EINVAL Slot already added
316 * -ERESTARTSYS Signalled before obtaining lock
317 * -EIO Internal PCI Error
319 int dlpar_add_slot(char *drc_name)
321 struct device_node *dn = NULL;
322 int node_type;
323 int rc = -EIO;
325 if (down_interruptible(&rpadlpar_sem))
326 return -ERESTARTSYS;
328 /* Find newly added node */
329 dn = find_dlpar_node(drc_name, &node_type);
330 if (!dn) {
331 rc = -ENODEV;
332 goto exit;
335 switch (node_type) {
336 case NODE_TYPE_VIO:
337 rc = dlpar_add_vio_slot(drc_name, dn);
338 break;
339 case NODE_TYPE_SLOT:
340 rc = dlpar_add_pci_slot(drc_name, dn);
341 break;
342 case NODE_TYPE_PHB:
343 rc = dlpar_add_phb(drc_name, dn);
344 break;
347 printk(KERN_INFO "%s: slot %s added\n", DLPAR_MODULE_NAME, drc_name);
348 exit:
349 up(&rpadlpar_sem);
350 return rc;
354 * dlpar_remove_vio_slot - DLPAR remove a virtual I/O Slot
355 * @drc_name: drc-name of newly added slot
357 * Remove the kernel and hotplug representations
358 * of an I/O Slot.
359 * Return Codes:
360 * 0 Success
361 * -EINVAL Vio dev doesn't exist
363 static int dlpar_remove_vio_slot(char *drc_name, struct device_node *dn)
365 struct vio_dev *vio_dev;
367 vio_dev = vio_find_node(dn);
368 if (!vio_dev)
369 return -EINVAL;
371 vio_unregister_device(vio_dev);
372 return 0;
376 * dlpar_remove_slot - DLPAR remove a PCI I/O Slot
377 * @drc_name: drc-name of newly added slot
379 * Remove the kernel and hotplug representations
380 * of a PCI I/O Slot.
381 * Return Codes:
382 * 0 Success
383 * -ENODEV Not a valid drc_name
384 * -EIO Internal PCI Error
386 int dlpar_remove_pci_slot(char *drc_name, struct device_node *dn)
388 struct pci_bus *bus;
389 struct slot *slot;
391 bus = rpaphp_find_pci_bus(dn);
392 if (!bus)
393 return -EINVAL;
395 slot = find_slot(dn);
396 if (slot) {
397 /* Remove hotplug slot */
398 if (rpaphp_remove_slot(slot)) {
399 printk(KERN_ERR
400 "%s: unable to remove hotplug slot %s\n",
401 __FUNCTION__, drc_name);
402 return -EIO;
404 } else {
405 rpaphp_unconfig_pci_adapter(bus);
408 if (unmap_bus_range(bus)) {
409 printk(KERN_ERR "%s: failed to unmap bus range\n",
410 __FUNCTION__);
411 return -ERANGE;
414 BUG_ON(!bus->self);
415 pci_remove_bus_device(bus->self);
416 return 0;
420 * dlpar_remove_slot - DLPAR remove an I/O Slot
421 * @drc_name: drc-name of newly added slot
423 * Remove the kernel and hotplug representations
424 * of an I/O Slot.
425 * Return Codes:
426 * 0 Success
427 * -ENODEV Not a valid drc_name
428 * -EINVAL Slot already removed
429 * -ERESTARTSYS Signalled before obtaining lock
430 * -EIO Internal Error
432 int dlpar_remove_slot(char *drc_name)
434 struct device_node *dn;
435 int node_type;
436 int rc = 0;
438 if (down_interruptible(&rpadlpar_sem))
439 return -ERESTARTSYS;
441 dn = find_dlpar_node(drc_name, &node_type);
442 if (!dn) {
443 rc = -ENODEV;
444 goto exit;
447 switch (node_type) {
448 case NODE_TYPE_VIO:
449 rc = dlpar_remove_vio_slot(drc_name, dn);
450 break;
451 case NODE_TYPE_PHB:
452 rc = dlpar_remove_phb(drc_name, dn);
453 break;
454 case NODE_TYPE_SLOT:
455 rc = dlpar_remove_pci_slot(drc_name, dn);
456 break;
458 printk(KERN_INFO "%s: slot %s removed\n", DLPAR_MODULE_NAME, drc_name);
459 exit:
460 up(&rpadlpar_sem);
461 return rc;
464 static inline int is_dlpar_capable(void)
466 int rc = rtas_token("ibm,configure-connector");
468 return (int) (rc != RTAS_UNKNOWN_SERVICE);
471 int __init rpadlpar_io_init(void)
473 int rc = 0;
475 if (!is_dlpar_capable()) {
476 printk(KERN_WARNING "%s: partition not DLPAR capable\n",
477 __FUNCTION__);
478 return -EPERM;
481 rc = dlpar_sysfs_init();
482 return rc;
485 void rpadlpar_io_exit(void)
487 dlpar_sysfs_exit();
488 return;
491 module_init(rpadlpar_io_init);
492 module_exit(rpadlpar_io_exit);
493 MODULE_LICENSE("GPL");