GNU Linux-libre 4.9.326-gnu1
[releases.git] / drivers / pci / hotplug / rpadlpar_core.c
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  */
17
18 #undef DEBUG
19
20 #include <linux/init.h>
21 #include <linux/module.h>
22 #include <linux/pci.h>
23 #include <linux/string.h>
24 #include <linux/vmalloc.h>
25
26 #include <asm/pci-bridge.h>
27 #include <linux/mutex.h>
28 #include <asm/rtas.h>
29 #include <asm/vio.h>
30
31 #include "../pci.h"
32 #include "rpaphp.h"
33 #include "rpadlpar.h"
34
35 static DEFINE_MUTEX(rpadlpar_mutex);
36
37 #define DLPAR_MODULE_NAME "rpadlpar_io"
38
39 #define NODE_TYPE_VIO  1
40 #define NODE_TYPE_SLOT 2
41 #define NODE_TYPE_PHB  3
42
43 static struct device_node *find_vio_slot_node(char *drc_name)
44 {
45         struct device_node *parent = of_find_node_by_name(NULL, "vdevice");
46         struct device_node *dn = NULL;
47         char *name;
48         int rc;
49
50         if (!parent)
51                 return NULL;
52
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;
57         }
58         of_node_put(parent);
59
60         return dn;
61 }
62
63 /* Find dlpar-capable pci node that contains the specified name and type */
64 static struct device_node *find_php_slot_pci_node(char *drc_name,
65                                                   char *drc_type)
66 {
67         struct device_node *np = NULL;
68         char *name;
69         char *type;
70         int rc;
71
72         while ((np = of_find_node_by_name(np, "pci"))) {
73                 rc = rpaphp_get_drc_props(np, NULL, &name, &type, NULL);
74                 if (rc == 0)
75                         if (!strcmp(drc_name, name) && !strcmp(drc_type, type))
76                                 break;
77         }
78
79         return np;
80 }
81
82 /* Returns a device_node with its reference count incremented */
83 static struct device_node *find_dlpar_node(char *drc_name, int *node_type)
84 {
85         struct device_node *dn;
86
87         dn = find_php_slot_pci_node(drc_name, "SLOT");
88         if (dn) {
89                 *node_type = NODE_TYPE_SLOT;
90                 return dn;
91         }
92
93         dn = find_php_slot_pci_node(drc_name, "PHB");
94         if (dn) {
95                 *node_type = NODE_TYPE_PHB;
96                 return dn;
97         }
98
99         dn = find_vio_slot_node(drc_name);
100         if (dn) {
101                 *node_type = NODE_TYPE_VIO;
102                 return dn;
103         }
104
105         return NULL;
106 }
107
108 /**
109  * find_php_slot - return hotplug slot structure for device node
110  * @dn: target &device_node
111  *
112  * This routine will return the hotplug slot structure
113  * for a given device node. Note that built-in PCI slots
114  * may be dlpar-able, but not hot-pluggable, so this routine
115  * will return NULL for built-in PCI slots.
116  */
117 static struct slot *find_php_slot(struct device_node *dn)
118 {
119         struct slot *slot, *next;
120
121         list_for_each_entry_safe(slot, next, &rpaphp_slot_head,
122                                  rpaphp_slot_list) {
123                 if (slot->dn == dn)
124                         return slot;
125         }
126
127         return NULL;
128 }
129
130 static struct pci_dev *dlpar_find_new_dev(struct pci_bus *parent,
131                                         struct device_node *dev_dn)
132 {
133         struct pci_dev *tmp = NULL;
134         struct device_node *child_dn;
135
136         list_for_each_entry(tmp, &parent->devices, bus_list) {
137                 child_dn = pci_device_to_OF_node(tmp);
138                 if (child_dn == dev_dn)
139                         return tmp;
140         }
141         return NULL;
142 }
143
144 static void dlpar_pci_add_bus(struct device_node *dn)
145 {
146         struct pci_dn *pdn = PCI_DN(dn);
147         struct pci_controller *phb = pdn->phb;
148         struct pci_dev *dev = NULL;
149
150         eeh_add_device_tree_early(pdn);
151
152         /* Add EADS device to PHB bus, adding new entry to bus->devices */
153         dev = of_create_pci_dev(dn, phb->bus, pdn->devfn);
154         if (!dev) {
155                 printk(KERN_ERR "%s: failed to create pci dev for %s\n",
156                                 __func__, dn->full_name);
157                 return;
158         }
159
160         /* Scan below the new bridge */
161         if (pci_is_bridge(dev))
162                 of_scan_pci_bridge(dev);
163
164         /* Map IO space for child bus, which may or may not succeed */
165         pcibios_map_io_space(dev->subordinate);
166
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);
173 }
174
175 static int dlpar_add_pci_slot(char *drc_name, struct device_node *dn)
176 {
177         struct pci_dev *dev;
178         struct pci_controller *phb;
179
180         if (pci_find_bus_by_node(dn))
181                 return -EINVAL;
182
183         /* Add pci bus */
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
190         if (!dev) {
191                 printk(KERN_ERR "%s: unable to add bus %s\n", __func__,
192                         drc_name);
193                 return -EIO;
194         }
195
196         if (dev->hdr_type != PCI_HEADER_TYPE_BRIDGE) {
197                 printk(KERN_ERR "%s: unexpected header type %d, unable to add bus %s\n",
198                         __func__, dev->hdr_type, drc_name);
199                 return -EIO;
200         }
201
202         /* Add hotplug slot */
203         if (rpaphp_add_slot(dn)) {
204                 printk(KERN_ERR "%s: unable to add hotplug slot %s\n",
205                         __func__, drc_name);
206                 return -EIO;
207         }
208         return 0;
209 }
210
211 static int dlpar_remove_phb(char *drc_name, struct device_node *dn)
212 {
213         struct slot *slot;
214         struct pci_dn *pdn;
215         int rc = 0;
216
217         if (!pci_find_bus_by_node(dn))
218                 return -EINVAL;
219
220         /* If pci slot is hotpluggable, use hotplug to remove it */
221         slot = find_php_slot(dn);
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;
226         }
227
228         pdn = dn->data;
229         BUG_ON(!pdn || !pdn->phb);
230         rc = remove_phb_dynamic(pdn->phb);
231         if (rc < 0)
232                 return rc;
233
234         pdn->phb = NULL;
235
236         return 0;
237 }
238
239 static int dlpar_add_phb(char *drc_name, struct device_node *dn)
240 {
241         struct pci_controller *phb;
242
243         if (PCI_DN(dn) && PCI_DN(dn)->phb) {
244                 /* PHB already exists */
245                 return -EINVAL;
246         }
247
248         phb = init_phb_dynamic(dn);
249         if (!phb)
250                 return -EIO;
251
252         if (rpaphp_add_slot(dn)) {
253                 printk(KERN_ERR "%s: unable to add hotplug slot %s\n",
254                         __func__, drc_name);
255                 return -EIO;
256         }
257         return 0;
258 }
259
260 static int dlpar_add_vio_slot(char *drc_name, struct device_node *dn)
261 {
262         struct vio_dev *vio_dev;
263
264         vio_dev = vio_find_node(dn);
265         if (vio_dev) {
266                 put_device(&vio_dev->dev);
267                 return -EINVAL;
268         }
269
270         if (!vio_register_device_node(dn)) {
271                 printk(KERN_ERR
272                         "%s: failed to register vio node %s\n",
273                         __func__, drc_name);
274                 return -EIO;
275         }
276         return 0;
277 }
278
279 /**
280  * dlpar_add_slot - DLPAR add an I/O Slot
281  * @drc_name: drc-name of newly added slot
282  *
283  * Make the hotplug module and the kernel aware of a newly added I/O Slot.
284  * Return Codes:
285  * 0                    Success
286  * -ENODEV              Not a valid drc_name
287  * -EINVAL              Slot already added
288  * -ERESTARTSYS         Signalled before obtaining lock
289  * -EIO                 Internal PCI Error
290  */
291 int dlpar_add_slot(char *drc_name)
292 {
293         struct device_node *dn = NULL;
294         int node_type;
295         int rc = -EIO;
296
297         if (mutex_lock_interruptible(&rpadlpar_mutex))
298                 return -ERESTARTSYS;
299
300         /* Find newly added node */
301         dn = find_dlpar_node(drc_name, &node_type);
302         if (!dn) {
303                 rc = -ENODEV;
304                 goto exit;
305         }
306
307         switch (node_type) {
308                 case NODE_TYPE_VIO:
309                         rc = dlpar_add_vio_slot(drc_name, dn);
310                         break;
311                 case NODE_TYPE_SLOT:
312                         rc = dlpar_add_pci_slot(drc_name, dn);
313                         break;
314                 case NODE_TYPE_PHB:
315                         rc = dlpar_add_phb(drc_name, dn);
316                         break;
317         }
318         of_node_put(dn);
319
320         printk(KERN_INFO "%s: slot %s added\n", DLPAR_MODULE_NAME, drc_name);
321 exit:
322         mutex_unlock(&rpadlpar_mutex);
323         return rc;
324 }
325
326 /**
327  * dlpar_remove_vio_slot - DLPAR remove a virtual I/O Slot
328  * @drc_name: drc-name of newly added slot
329  * @dn: &device_node
330  *
331  * Remove the kernel and hotplug representations of an I/O Slot.
332  * Return Codes:
333  * 0                    Success
334  * -EINVAL              Vio dev doesn't exist
335  */
336 static int dlpar_remove_vio_slot(char *drc_name, struct device_node *dn)
337 {
338         struct vio_dev *vio_dev;
339
340         vio_dev = vio_find_node(dn);
341         if (!vio_dev)
342                 return -EINVAL;
343
344         vio_unregister_device(vio_dev);
345
346         put_device(&vio_dev->dev);
347
348         return 0;
349 }
350
351 /**
352  * dlpar_remove_pci_slot - DLPAR remove a PCI I/O Slot
353  * @drc_name: drc-name of newly added slot
354  * @dn: &device_node
355  *
356  * Remove the kernel and hotplug representations of a PCI I/O Slot.
357  * Return Codes:
358  * 0                    Success
359  * -ENODEV              Not a valid drc_name
360  * -EIO                 Internal PCI Error
361  */
362 int dlpar_remove_pci_slot(char *drc_name, struct device_node *dn)
363 {
364         struct pci_bus *bus;
365         struct slot *slot;
366         int ret = 0;
367
368         pci_lock_rescan_remove();
369
370         bus = pci_find_bus_by_node(dn);
371         if (!bus) {
372                 ret = -EINVAL;
373                 goto out;
374         }
375
376         pr_debug("PCI: Removing PCI slot below EADS bridge %s\n",
377                  bus->self ? pci_name(bus->self) : "<!PHB!>");
378
379         slot = find_php_slot(dn);
380         if (slot) {
381                 pr_debug("PCI: Removing hotplug slot for %04x:%02x...\n",
382                          pci_domain_nr(bus), bus->number);
383
384                 if (rpaphp_deregister_slot(slot)) {
385                         printk(KERN_ERR
386                                 "%s: unable to remove hotplug slot %s\n",
387                                 __func__, drc_name);
388                         ret = -EIO;
389                         goto out;
390                 }
391         }
392
393         /* Remove all devices below slot */
394         pci_hp_remove_devices(bus);
395
396         /* Unmap PCI IO space */
397         if (pcibios_unmap_io_space(bus)) {
398                 printk(KERN_ERR "%s: failed to unmap bus range\n",
399                         __func__);
400                 ret = -ERANGE;
401                 goto out;
402         }
403
404         /* Remove the EADS bridge device itself */
405         BUG_ON(!bus->self);
406         pr_debug("PCI: Now removing bridge device %s\n", pci_name(bus->self));
407         pci_stop_and_remove_bus_device(bus->self);
408
409  out:
410         pci_unlock_rescan_remove();
411         return ret;
412 }
413
414 /**
415  * dlpar_remove_slot - DLPAR remove an I/O Slot
416  * @drc_name: drc-name of newly added slot
417  *
418  * Remove the kernel and hotplug representations of an I/O Slot.
419  * Return Codes:
420  * 0                    Success
421  * -ENODEV              Not a valid drc_name
422  * -EINVAL              Slot already removed
423  * -ERESTARTSYS         Signalled before obtaining lock
424  * -EIO                 Internal Error
425  */
426 int dlpar_remove_slot(char *drc_name)
427 {
428         struct device_node *dn;
429         int node_type;
430         int rc = 0;
431
432         if (mutex_lock_interruptible(&rpadlpar_mutex))
433                 return -ERESTARTSYS;
434
435         dn = find_dlpar_node(drc_name, &node_type);
436         if (!dn) {
437                 rc = -ENODEV;
438                 goto exit;
439         }
440
441         switch (node_type) {
442                 case NODE_TYPE_VIO:
443                         rc = dlpar_remove_vio_slot(drc_name, dn);
444                         break;
445                 case NODE_TYPE_PHB:
446                         rc = dlpar_remove_phb(drc_name, dn);
447                         break;
448                 case NODE_TYPE_SLOT:
449                         rc = dlpar_remove_pci_slot(drc_name, dn);
450                         break;
451         }
452         of_node_put(dn);
453         vm_unmap_aliases();
454
455         printk(KERN_INFO "%s: slot %s removed\n", DLPAR_MODULE_NAME, drc_name);
456 exit:
457         mutex_unlock(&rpadlpar_mutex);
458         return rc;
459 }
460
461 static inline int is_dlpar_capable(void)
462 {
463         int rc = rtas_token("ibm,configure-connector");
464
465         return (int) (rc != RTAS_UNKNOWN_SERVICE);
466 }
467
468 int __init rpadlpar_io_init(void)
469 {
470         int rc = 0;
471
472         if (!is_dlpar_capable()) {
473                 printk(KERN_WARNING "%s: partition not DLPAR capable\n",
474                         __func__);
475                 return -EPERM;
476         }
477
478         rc = dlpar_sysfs_init();
479         return rc;
480 }
481
482 void rpadlpar_io_exit(void)
483 {
484         dlpar_sysfs_exit();
485         return;
486 }
487
488 module_init(rpadlpar_io_init);
489 module_exit(rpadlpar_io_exit);
490 MODULE_LICENSE("GPL");