rpadlpar_core.c 10.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Interface for Dynamic Logical Partitioning of I/O Slots on
 * RPA-compliant PPC64 platform.
 *
 * John Rose <johnrose@austin.ibm.com>
 * Linda Xie <lxie@us.ibm.com>
 *
 * October 2003
 *
 * Copyright (C) 2003 IBM.
 *
 *      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.
 */
#include <linux/init.h>
#include <linux/pci.h>
T
Tim Schmielau 已提交
19 20
#include <linux/string.h>

L
Linus Torvalds 已提交
21
#include <asm/pci-bridge.h>
22
#include <linux/mutex.h>
L
Linus Torvalds 已提交
23
#include <asm/rtas.h>
24
#include <asm/vio.h>
T
Tim Schmielau 已提交
25

L
Linus Torvalds 已提交
26 27 28 29
#include "../pci.h"
#include "rpaphp.h"
#include "rpadlpar.h"

30
static DEFINE_MUTEX(rpadlpar_mutex);
L
Linus Torvalds 已提交
31

32 33
#define DLPAR_MODULE_NAME "rpadlpar_io"

L
Linus Torvalds 已提交
34 35 36 37
#define NODE_TYPE_VIO  1
#define NODE_TYPE_SLOT 2
#define NODE_TYPE_PHB  3

38
static struct device_node *find_vio_slot_node(char *drc_name)
L
Linus Torvalds 已提交
39 40
{
	struct device_node *parent = of_find_node_by_name(NULL, "vdevice");
41 42 43
	struct device_node *dn = NULL;
	char *name;
	int rc;
L
Linus Torvalds 已提交
44 45 46 47

	if (!parent)
		return NULL;

48 49 50 51
	while ((dn = of_get_next_child(parent, dn))) {
		rc = rpaphp_get_drc_props(dn, NULL, &name, NULL, NULL);
		if ((rc == 0) && (!strcmp(drc_name, name)))
			break;
L
Linus Torvalds 已提交
52 53
	}

54
	return dn;
L
Linus Torvalds 已提交
55 56 57 58 59 60 61 62 63 64 65
}

/* Find dlpar-capable pci node that contains the specified name and type */
static struct device_node *find_php_slot_pci_node(char *drc_name,
						  char *drc_type)
{
	struct device_node *np = NULL;
	char *name;
	char *type;
	int rc;

66
	while ((np = of_find_node_by_name(np, "pci"))) {
L
Linus Torvalds 已提交
67 68 69 70 71 72 73 74 75
		rc = rpaphp_get_drc_props(np, NULL, &name, &type, NULL);
		if (rc == 0)
			if (!strcmp(drc_name, name) && !strcmp(drc_type, type))
				break;
	}

	return np;
}

76
static struct device_node *find_dlpar_node(char *drc_name, int *node_type)
L
Linus Torvalds 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
{
	struct device_node *dn;

	dn = find_php_slot_pci_node(drc_name, "SLOT");
	if (dn) {
		*node_type = NODE_TYPE_SLOT;
		return dn;
	}

	dn = find_php_slot_pci_node(drc_name, "PHB");
	if (dn) {
		*node_type = NODE_TYPE_PHB;
		return dn;
	}

92
	dn = find_vio_slot_node(drc_name);
L
Linus Torvalds 已提交
93 94 95 96 97 98 99 100
	if (dn) {
		*node_type = NODE_TYPE_VIO;
		return dn;
	}

	return NULL;
}

101 102
/**
 * find_php_slot - return hotplug slot structure for device node
R
Randy Dunlap 已提交
103
 * @dn: target &device_node
104 105 106 107 108 109 110
 *
 * This routine will return the hotplug slot structure
 * for a given device node. Note that built-in PCI slots
 * may be dlpar-able, but not hot-pluggable, so this routine
 * will return NULL for built-in PCI slots.
 */
static struct slot *find_php_slot(struct device_node *dn)
L
Linus Torvalds 已提交
111 112 113 114
{
	struct list_head *tmp, *n;
	struct slot *slot;

115 116 117 118 119
	list_for_each_safe(tmp, n, &rpaphp_slot_head) {
		slot = list_entry(tmp, struct slot, rpaphp_slot_list);
		if (slot->dn == dn)
			return slot;
	}
L
Linus Torvalds 已提交
120

121
	return NULL;
L
Linus Torvalds 已提交
122 123
}

124 125 126 127 128 129 130 131 132 133 134 135 136 137
static struct pci_dev *dlpar_find_new_dev(struct pci_bus *parent,
					struct device_node *dev_dn)
{
	struct pci_dev *tmp = NULL;
	struct device_node *child_dn;

	list_for_each_entry(tmp, &parent->devices, bus_list) {
		child_dn = pci_device_to_OF_node(tmp);
		if (child_dn == dev_dn)
			return tmp;
	}
	return NULL;
}

138
static void dlpar_pci_add_bus(struct device_node *dn)
L
Linus Torvalds 已提交
139
{
140
	struct pci_dn *pdn = PCI_DN(dn);
141
	struct pci_controller *phb = pdn->phb;
L
Linus Torvalds 已提交
142 143
	struct pci_dev *dev = NULL;

144 145
	eeh_add_device_tree_early(dn);

146 147 148 149 150
	/* Add EADS device to PHB bus, adding new entry to bus->devices */
	dev = of_create_pci_dev(dn, phb->bus, pdn->devfn);
	if (!dev) {
		printk(KERN_ERR "%s: failed to create pci dev for %s\n",
				__FUNCTION__, dn->full_name);
151
		return;
L
Linus Torvalds 已提交
152 153
	}

154 155 156 157
	if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
	    dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
		of_scan_pci_bridge(dn, dev);

158
	pcibios_fixup_new_pci_devices(dev->subordinate);
159 160

	/* Claim new bus resources */
161
	pcibios_claim_one_bus(dev->bus);
162

163 164
	/* Map IO space for child bus, which may or may not succeed */
	pcibios_map_io_space(dev->subordinate);
165

L
Linus Torvalds 已提交
166
	/* Add new devices to global lists.  Register in proc, sysfs. */
167
	pci_bus_add_devices(phb->bus);
L
Linus Torvalds 已提交
168 169
}

170
static int dlpar_add_pci_slot(char *drc_name, struct device_node *dn)
L
Linus Torvalds 已提交
171 172
{
	struct pci_dev *dev;
173
	struct pci_controller *phb;
L
Linus Torvalds 已提交
174

175
	if (pcibios_find_pci_bus(dn))
176 177
		return -EINVAL;

L
Linus Torvalds 已提交
178
	/* Add pci bus */
179 180 181 182 183 184
	dlpar_pci_add_bus(dn);

	/* Confirm new bridge dev was created */
	phb = PCI_DN(dn)->phb;
	dev = dlpar_find_new_dev(phb->bus, dn);

L
Linus Torvalds 已提交
185 186 187 188 189 190
	if (!dev) {
		printk(KERN_ERR "%s: unable to add bus %s\n", __FUNCTION__,
			drc_name);
		return -EIO;
	}

191 192 193 194 195 196
	if (dev->hdr_type != PCI_HEADER_TYPE_BRIDGE) {
		printk(KERN_ERR "%s: unexpected header type %d, unable to add bus %s\n",
			__FUNCTION__, dev->hdr_type, drc_name);
		return -EIO;
	}

197 198 199 200 201 202
	/* Add hotplug slot */
	if (rpaphp_add_slot(dn)) {
		printk(KERN_ERR "%s: unable to add hotplug slot %s\n",
			__FUNCTION__, drc_name);
		return -EIO;
	}
L
Linus Torvalds 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
	return 0;
}

static int dlpar_remove_root_bus(struct pci_controller *phb)
{
	struct pci_bus *phb_bus;
	int rc;

	phb_bus = phb->bus;
	if (!(list_empty(&phb_bus->children) &&
	      list_empty(&phb_bus->devices))) {
		return -EBUSY;
	}

	rc = pcibios_remove_root_bus(phb);
	if (rc)
		return -EIO;

	device_unregister(phb_bus->bridge);
	pci_remove_bus(phb_bus);

	return 0;
}

227
static int dlpar_remove_phb(char *drc_name, struct device_node *dn)
L
Linus Torvalds 已提交
228
{
229
	struct slot *slot;
230
	struct pci_dn *pdn;
L
Linus Torvalds 已提交
231 232
	int rc = 0;

233
	if (!pcibios_find_pci_bus(dn))
234
		return -EINVAL;
L
Linus Torvalds 已提交
235

236 237
	/* If pci slot is hotplugable, use hotplug to remove it */
	slot = find_php_slot(dn);
238
	if (slot) {
239
		if (rpaphp_deregister_slot(slot)) {
240 241 242 243 244
			printk(KERN_ERR
				"%s: unable to remove hotplug slot %s\n",
				__FUNCTION__, drc_name);
			return -EIO;
		}
L
Linus Torvalds 已提交
245 246
	}

247 248 249
	pdn = dn->data;
	BUG_ON(!pdn || !pdn->phb);
	rc = dlpar_remove_root_bus(pdn->phb);
L
Linus Torvalds 已提交
250 251 252
	if (rc < 0)
		return rc;

253
	pdn->phb = NULL;
254

L
Linus Torvalds 已提交
255 256 257
	return 0;
}

258
static int dlpar_add_phb(char *drc_name, struct device_node *dn)
L
Linus Torvalds 已提交
259 260 261
{
	struct pci_controller *phb;

262
	if (PCI_DN(dn) && PCI_DN(dn)->phb) {
263 264 265 266
		/* PHB already exists */
		return -EINVAL;
	}

L
Linus Torvalds 已提交
267 268
	phb = init_phb_dynamic(dn);
	if (!phb)
269
		return -EIO;
L
Linus Torvalds 已提交
270

271 272 273 274 275
	if (rpaphp_add_slot(dn)) {
		printk(KERN_ERR "%s: unable to add hotplug slot %s\n",
			__FUNCTION__, drc_name);
		return -EIO;
	}
L
Linus Torvalds 已提交
276 277 278
	return 0;
}

279 280 281 282 283 284 285 286 287 288 289 290 291 292
static int dlpar_add_vio_slot(char *drc_name, struct device_node *dn)
{
	if (vio_find_node(dn))
		return -EINVAL;

	if (!vio_register_device_node(dn)) {
		printk(KERN_ERR
			"%s: failed to register vio node %s\n",
			__FUNCTION__, drc_name);
		return -EIO;
	}
	return 0;
}

L
Linus Torvalds 已提交
293 294 295 296
/**
 * dlpar_add_slot - DLPAR add an I/O Slot
 * @drc_name: drc-name of newly added slot
 *
R
Randy Dunlap 已提交
297 298
 * Make the hotplug module and the kernel aware of a newly added I/O Slot.
 * Return Codes:
L
Linus Torvalds 已提交
299 300 301 302 303 304 305 306 307 308
 * 0			Success
 * -ENODEV		Not a valid drc_name
 * -EINVAL		Slot already added
 * -ERESTARTSYS		Signalled before obtaining lock
 * -EIO			Internal PCI Error
 */
int dlpar_add_slot(char *drc_name)
{
	struct device_node *dn = NULL;
	int node_type;
309
	int rc = -EIO;
L
Linus Torvalds 已提交
310

311
	if (mutex_lock_interruptible(&rpadlpar_mutex))
L
Linus Torvalds 已提交
312 313
		return -ERESTARTSYS;

314 315
	/* Find newly added node */
	dn = find_dlpar_node(drc_name, &node_type);
L
Linus Torvalds 已提交
316 317 318 319 320 321 322
	if (!dn) {
		rc = -ENODEV;
		goto exit;
	}

	switch (node_type) {
		case NODE_TYPE_VIO:
323
			rc = dlpar_add_vio_slot(drc_name, dn);
L
Linus Torvalds 已提交
324 325 326 327 328
			break;
		case NODE_TYPE_SLOT:
			rc = dlpar_add_pci_slot(drc_name, dn);
			break;
		case NODE_TYPE_PHB:
329
			rc = dlpar_add_phb(drc_name, dn);
L
Linus Torvalds 已提交
330 331 332
			break;
	}

333
	printk(KERN_INFO "%s: slot %s added\n", DLPAR_MODULE_NAME, drc_name);
L
Linus Torvalds 已提交
334
exit:
335
	mutex_unlock(&rpadlpar_mutex);
L
Linus Torvalds 已提交
336 337 338 339 340 341
	return rc;
}

/**
 * dlpar_remove_vio_slot - DLPAR remove a virtual I/O Slot
 * @drc_name: drc-name of newly added slot
R
Randy Dunlap 已提交
342
 * @dn: &device_node
L
Linus Torvalds 已提交
343
 *
R
Randy Dunlap 已提交
344
 * Remove the kernel and hotplug representations of an I/O Slot.
L
Linus Torvalds 已提交
345 346
 * Return Codes:
 * 0			Success
347
 * -EINVAL		Vio dev doesn't exist
L
Linus Torvalds 已提交
348
 */
349
static int dlpar_remove_vio_slot(char *drc_name, struct device_node *dn)
L
Linus Torvalds 已提交
350
{
351
	struct vio_dev *vio_dev;
L
Linus Torvalds 已提交
352

353
	vio_dev = vio_find_node(dn);
354 355
	if (!vio_dev)
		return -EINVAL;
356 357

	vio_unregister_device(vio_dev);
L
Linus Torvalds 已提交
358 359 360 361
	return 0;
}

/**
R
Randy Dunlap 已提交
362
 * dlpar_remove_pci_slot - DLPAR remove a PCI I/O Slot
L
Linus Torvalds 已提交
363
 * @drc_name: drc-name of newly added slot
R
Randy Dunlap 已提交
364
 * @dn: &device_node
L
Linus Torvalds 已提交
365
 *
R
Randy Dunlap 已提交
366
 * Remove the kernel and hotplug representations of a PCI I/O Slot.
L
Linus Torvalds 已提交
367 368 369 370 371
 * Return Codes:
 * 0			Success
 * -ENODEV		Not a valid drc_name
 * -EIO			Internal PCI Error
 */
372
int dlpar_remove_pci_slot(char *drc_name, struct device_node *dn)
L
Linus Torvalds 已提交
373
{
374 375
	struct pci_bus *bus;
	struct slot *slot;
L
Linus Torvalds 已提交
376

377
	bus = pcibios_find_pci_bus(dn);
378 379 380
	if (!bus)
		return -EINVAL;

381 382
	/* If pci slot is hotplugable, use hotplug to remove it */
	slot = find_php_slot(dn);
383
	if (slot) {
384
		if (rpaphp_deregister_slot(slot)) {
385 386 387 388 389
			printk(KERN_ERR
				"%s: unable to remove hotplug slot %s\n",
				__FUNCTION__, drc_name);
			return -EIO;
		}
390 391
	} else
		pcibios_remove_pci_devices(bus);
L
Linus Torvalds 已提交
392

393
	if (pcibios_unmap_io_space(bus)) {
394 395 396
		printk(KERN_ERR "%s: failed to unmap bus range\n",
			__FUNCTION__);
		return -ERANGE;
L
Linus Torvalds 已提交
397
	}
398 399 400

	BUG_ON(!bus->self);
	pci_remove_bus_device(bus->self);
L
Linus Torvalds 已提交
401 402 403 404 405 406 407
	return 0;
}

/**
 * dlpar_remove_slot - DLPAR remove an I/O Slot
 * @drc_name: drc-name of newly added slot
 *
R
Randy Dunlap 已提交
408
 * Remove the kernel and hotplug representations of an I/O Slot.
L
Linus Torvalds 已提交
409 410 411 412 413 414 415 416 417
 * Return Codes:
 * 0			Success
 * -ENODEV		Not a valid drc_name
 * -EINVAL		Slot already removed
 * -ERESTARTSYS		Signalled before obtaining lock
 * -EIO			Internal Error
 */
int dlpar_remove_slot(char *drc_name)
{
418 419
	struct device_node *dn;
	int node_type;
L
Linus Torvalds 已提交
420 421
	int rc = 0;

422
	if (mutex_lock_interruptible(&rpadlpar_mutex))
L
Linus Torvalds 已提交
423 424
		return -ERESTARTSYS;

425 426
	dn = find_dlpar_node(drc_name, &node_type);
	if (!dn) {
L
Linus Torvalds 已提交
427 428 429 430
		rc = -ENODEV;
		goto exit;
	}

431 432 433 434 435 436 437 438 439 440
	switch (node_type) {
		case NODE_TYPE_VIO:
			rc = dlpar_remove_vio_slot(drc_name, dn);
			break;
		case NODE_TYPE_PHB:
			rc = dlpar_remove_phb(drc_name, dn);
			break;
		case NODE_TYPE_SLOT:
			rc = dlpar_remove_pci_slot(drc_name, dn);
			break;
L
Linus Torvalds 已提交
441
	}
442
	printk(KERN_INFO "%s: slot %s removed\n", DLPAR_MODULE_NAME, drc_name);
L
Linus Torvalds 已提交
443
exit:
444
	mutex_unlock(&rpadlpar_mutex);
L
Linus Torvalds 已提交
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
	return rc;
}

static inline int is_dlpar_capable(void)
{
	int rc = rtas_token("ibm,configure-connector");

	return (int) (rc != RTAS_UNKNOWN_SERVICE);
}

int __init rpadlpar_io_init(void)
{
	int rc = 0;

	if (!is_dlpar_capable()) {
		printk(KERN_WARNING "%s: partition not DLPAR capable\n",
			__FUNCTION__);
		return -EPERM;
	}

	rc = dlpar_sysfs_init();
	return rc;
}

void rpadlpar_io_exit(void)
{
	dlpar_sysfs_exit();
	return;
}

module_init(rpadlpar_io_init);
module_exit(rpadlpar_io_exit);
MODULE_LICENSE("GPL");