vio.c 13.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/* vio.c: Virtual I/O channel devices probing infrastructure.
 *
 *    Copyright (c) 2003-2005 IBM Corp.
 *     Dave Engebretsen engebret@us.ibm.com
 *     Santiago Leon santil@us.ibm.com
 *     Hollis Blanchard <hollisb@us.ibm.com>
 *     Stephen Rothwell
 *
 * Adapted to sparc64 by David S. Miller davem@davemloft.net
 */

#include <linux/kernel.h>
13
#include <linux/slab.h>
14
#include <linux/irq.h>
15
#include <linux/export.h>
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
#include <linux/init.h>

#include <asm/mdesc.h>
#include <asm/vio.h>

static const struct vio_device_id *vio_match_device(
	const struct vio_device_id *matches,
	const struct vio_dev *dev)
{
	const char *type, *compat;
	int len;

	type = dev->type;
	compat = dev->compat;
	len = dev->compat_len;

	while (matches->type[0] || matches->compat[0]) {
		int match = 1;
34 35 36
		if (matches->type[0])
			match &= !strcmp(matches->type, type);

37
		if (matches->compat[0]) {
38
			match &= len &&
39
				of_find_in_proplist(compat, matches->compat, len);
40 41 42 43 44 45 46 47
		}
		if (match)
			return matches;
		matches++;
	}
	return NULL;
}

48 49 50 51 52 53 54 55
static int vio_hotplug(struct device *dev, struct kobj_uevent_env *env)
{
	const struct vio_dev *vio_dev = to_vio_dev(dev);

	add_uevent_var(env, "MODALIAS=vio:T%sS%s", vio_dev->type, vio_dev->compat);
	return 0;
}

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
static int vio_bus_match(struct device *dev, struct device_driver *drv)
{
	struct vio_dev *vio_dev = to_vio_dev(dev);
	struct vio_driver *vio_drv = to_vio_driver(drv);
	const struct vio_device_id *matches = vio_drv->id_table;

	if (!matches)
		return 0;

	return vio_match_device(matches, vio_dev) != NULL;
}

static int vio_device_probe(struct device *dev)
{
	struct vio_dev *vdev = to_vio_dev(dev);
	struct vio_driver *drv = to_vio_driver(dev->driver);
	const struct vio_device_id *id;

J
Jag Raman 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
	if (!drv->probe)
		return -ENODEV;

	id = vio_match_device(drv->id_table, vdev);
	if (!id)
		return -ENODEV;

	/* alloc irqs (unless the driver specified not to) */
	if (!drv->no_irq) {
		if (vdev->tx_irq == 0 && vdev->tx_ino != ~0UL)
			vdev->tx_irq = sun4v_build_virq(vdev->cdev_handle,
							vdev->tx_ino);

		if (vdev->rx_irq == 0 && vdev->rx_ino != ~0UL)
			vdev->rx_irq = sun4v_build_virq(vdev->cdev_handle,
							vdev->rx_ino);
90 91
	}

J
Jag Raman 已提交
92
	return drv->probe(vdev, id);
93 94 95 96 97 98 99
}

static int vio_device_remove(struct device *dev)
{
	struct vio_dev *vdev = to_vio_dev(dev);
	struct vio_driver *drv = to_vio_driver(dev->driver);

J
Jag Raman 已提交
100 101 102 103 104 105 106
	if (drv->remove) {
		/*
		 * Ideally, we would remove/deallocate tx/rx virqs
		 * here - however, there are currently no support
		 * routines to do so at the moment. TBD
		 */

107
		return drv->remove(vdev);
J
Jag Raman 已提交
108
	}
109 110 111 112 113 114 115 116 117 118

	return 1;
}

static ssize_t devspec_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	struct vio_dev *vdev = to_vio_dev(dev);
	const char *str = "none";

119
	if (!strcmp(vdev->type, "vnet-port"))
120
		str = "vnet";
121
	else if (!strcmp(vdev->type, "vdc-port"))
122
		str = "vdisk";
123 124 125

	return sprintf(buf, "%s\n", str);
}
126
static DEVICE_ATTR_RO(devspec);
127

128 129 130 131 132 133
static ssize_t type_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	struct vio_dev *vdev = to_vio_dev(dev);
	return sprintf(buf, "%s\n", vdev->type);
}
134
static DEVICE_ATTR_RO(type);
135

136 137 138 139 140 141 142
static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
			     char *buf)
{
	const struct vio_dev *vdev = to_vio_dev(dev);

	return sprintf(buf, "vio:T%sS%s\n", vdev->type, vdev->compat);
}
143
static DEVICE_ATTR_RO(modalias);
144

145 146 147 148 149 150 151
static struct attribute *vio_dev_attrs[] = {
	&dev_attr_devspec.attr,
	&dev_attr_type.attr,
	&dev_attr_modalias.attr,
	NULL,
 };
ATTRIBUTE_GROUPS(vio_dev);
152 153 154

static struct bus_type vio_bus_type = {
	.name		= "vio",
155
	.dev_groups	= vio_dev_groups,
156
	.uevent         = vio_hotplug,
157 158 159 160 161
	.match		= vio_bus_match,
	.probe		= vio_device_probe,
	.remove		= vio_device_remove,
};

162 163
int __vio_register_driver(struct vio_driver *viodrv, struct module *owner,
			const char *mod_name)
164 165
{
	viodrv->driver.bus = &vio_bus_type;
166 167 168
	viodrv->driver.name = viodrv->name;
	viodrv->driver.owner = owner;
	viodrv->driver.mod_name = mod_name;
169 170 171

	return driver_register(&viodrv->driver);
}
172
EXPORT_SYMBOL(__vio_register_driver);
173 174 175 176 177 178 179

void vio_unregister_driver(struct vio_driver *viodrv)
{
	driver_unregister(&viodrv->driver);
}
EXPORT_SYMBOL(vio_unregister_driver);

180
static void vio_dev_release(struct device *dev)
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
{
	kfree(to_vio_dev(dev));
}

static ssize_t
show_pciobppath_attr(struct device *dev, struct device_attribute *attr,
		     char *buf)
{
	struct vio_dev *vdev;
	struct device_node *dp;

	vdev = to_vio_dev(dev);
	dp = vdev->dp;

	return snprintf (buf, PAGE_SIZE, "%s\n", dp->full_name);
}

static DEVICE_ATTR(obppath, S_IRUSR | S_IRGRP | S_IROTH,
		   show_pciobppath_attr, NULL);

201
static struct device_node *cdev_node;
202 203 204 205

static struct vio_dev *root_vdev;
static u64 cdev_cfg_handle;

206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
static const u64 *vio_cfg_handle(struct mdesc_handle *hp, u64 node)
{
	const u64 *cfg_handle = NULL;
	u64 a;

	mdesc_for_each_arc(a, hp, node, MDESC_ARC_TYPE_BACK) {
		u64 target;

		target = mdesc_arc_target(hp, a);
		cfg_handle = mdesc_get_property(hp, target,
						"cfg-handle", NULL);
		if (cfg_handle)
			break;
	}

	return cfg_handle;
}

224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
/**
 * vio_vdev_node() - Find VDEV node in MD
 * @hp:  Handle to the MD
 * @vdev:  Pointer to VDEV
 *
 * Find the node in the current MD which matches the given vio_dev. This
 * must be done dynamically since the node value can change if the MD
 * is updated.
 *
 * NOTE: the MD must be locked, using mdesc_grab(), when calling this routine
 *
 * Return: The VDEV node in MDESC
 */
u64 vio_vdev_node(struct mdesc_handle *hp, struct vio_dev *vdev)
{
	u64 node;

	if (vdev == NULL)
		return MDESC_NODE_NULL;

	node = mdesc_get_node(hp, (const char *)vdev->node_name,
			      &vdev->md_node_info);

	return node;
}

250 251 252 253 254
static void vio_fill_channel_info(struct mdesc_handle *hp, u64 mp,
				  struct vio_dev *vdev)
{
	u64 a;

J
Jag Raman 已提交
255 256 257
	vdev->tx_ino = ~0UL;
	vdev->rx_ino = ~0UL;
	vdev->channel_id = ~0UL;
258 259 260 261 262 263 264 265 266
	mdesc_for_each_arc(a, hp, mp, MDESC_ARC_TYPE_FWD) {
		const u64 *chan_id;
		const u64 *irq;
		u64 target;

		target = mdesc_arc_target(hp, a);

		irq = mdesc_get_property(hp, target, "tx-ino", NULL);
		if (irq)
J
Jag Raman 已提交
267
			vdev->tx_ino = *irq;
268 269

		irq = mdesc_get_property(hp, target, "rx-ino", NULL);
J
Jag Raman 已提交
270
		if (irq)
271
			vdev->rx_ino = *irq;
272 273 274 275 276

		chan_id = mdesc_get_property(hp, target, "id", NULL);
		if (chan_id)
			vdev->channel_id = *chan_id;
	}
J
Jag Raman 已提交
277 278

	vdev->cdev_handle = cdev_cfg_handle;
279 280
}

281 282 283 284 285 286 287 288 289
int vio_set_intr(unsigned long dev_ino, int state)
{
	int err;

	err = sun4v_vintr_set_valid(cdev_cfg_handle, dev_ino, state);
	return err;
}
EXPORT_SYMBOL(vio_set_intr);

290
static struct vio_dev *vio_create_one(struct mdesc_handle *hp, u64 mp,
291
				      const char *node_name,
292 293
				      struct device *parent)
{
294
	const char *type, *compat;
295 296
	struct device_node *dp;
	struct vio_dev *vdev;
297
	int err, tlen, clen;
298
	const u64 *id, *cfg_handle;
299

300
	type = mdesc_get_property(hp, mp, "device-type", &tlen);
301
	if (!type) {
302 303
		type = mdesc_get_property(hp, mp, "name", &tlen);
		if (!type) {
304
			type = mdesc_node_name(hp, mp);
305 306 307
			tlen = strlen(type) + 1;
		}
	}
308
	if (tlen > VIO_MAX_TYPE_LEN || strlen(type) >= VIO_MAX_TYPE_LEN) {
309 310 311
		printk(KERN_ERR "VIO: Type string [%s] is too long.\n",
		       type);
		return NULL;
312
	}
313

314
	id = mdesc_get_property(hp, mp, "id", NULL);
315

316
	cfg_handle = vio_cfg_handle(hp, mp);
317

318
	compat = mdesc_get_property(hp, mp, "device-type", &clen);
319 320 321 322 323 324 325
	if (!compat) {
		clen = 0;
	} else if (clen > VIO_MAX_COMPAT_LEN) {
		printk(KERN_ERR "VIO: Compat len %d for [%s] is too long.\n",
		       clen, type);
		return NULL;
	}
326 327 328 329 330 331 332 333

	vdev = kzalloc(sizeof(*vdev), GFP_KERNEL);
	if (!vdev) {
		printk(KERN_ERR "VIO: Could not allocate vio_dev\n");
		return NULL;
	}

	vdev->mp = mp;
334 335 336 337 338
	memcpy(vdev->type, type, tlen);
	if (compat)
		memcpy(vdev->compat, compat, clen);
	else
		memset(vdev->compat, 0, sizeof(vdev->compat));
339 340
	vdev->compat_len = clen;

341
	vdev->port_id = ~0UL;
J
Jag Raman 已提交
342 343
	vdev->tx_irq = 0;
	vdev->rx_irq = 0;
344

345
	vio_fill_channel_info(hp, mp, vdev);
346

347
	if (!id) {
348
		dev_set_name(&vdev->dev, "%s", type);
349
		vdev->dev_no = ~(u64)0;
350
	} else if (!cfg_handle) {
351
		dev_set_name(&vdev->dev, "%s-%llu", type, *id);
352
		vdev->dev_no = *id;
353
	} else {
354
		dev_set_name(&vdev->dev, "%s-%llu-%llu", type,
355
			     *cfg_handle, *id);
356
		vdev->dev_no = *cfg_handle;
357
		vdev->port_id = *id;
358
	}
359

360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
	vdev->dev.parent = parent;
	vdev->dev.bus = &vio_bus_type;
	vdev->dev.release = vio_dev_release;

	if (parent == NULL) {
		dp = cdev_node;
	} else if (to_vio_dev(parent) == root_vdev) {
		dp = of_get_next_child(cdev_node, NULL);
		while (dp) {
			if (!strcmp(dp->type, type))
				break;

			dp = of_get_next_child(cdev_node, dp);
		}
	} else {
		dp = to_vio_dev(parent)->dp;
	}
	vdev->dp = dp;

379 380 381 382 383
	/*
	 * node_name is NULL for the parent/channel-devices node and
	 * the parent doesn't require the MD node info.
	 */
	if (node_name != NULL) {
384 385 386
		(void) snprintf(vdev->node_name, VIO_MAX_NAME_LEN, "%s",
				node_name);

387 388 389 390 391 392 393 394 395 396
		err = mdesc_get_node_info(hp, mp, node_name,
					  &vdev->md_node_info);
		if (err) {
			pr_err("VIO: Could not get MD node info %s, err=%d\n",
			       dev_name(&vdev->dev), err);
			kfree(vdev);
			return NULL;
		}
	}

J
Jag Raman 已提交
397 398
	pr_info("VIO: Adding device %s (tx_ino = %llx, rx_ino = %llx)\n",
		dev_name(&vdev->dev), vdev->tx_ino, vdev->rx_ino);
399

400 401 402
	err = device_register(&vdev->dev);
	if (err) {
		printk(KERN_ERR "VIO: Could not register device %s, err=%d\n",
403
		       dev_name(&vdev->dev), err);
404 405 406 407 408 409 410 411 412 413
		kfree(vdev);
		return NULL;
	}
	if (vdev->dp)
		err = sysfs_create_file(&vdev->dev.kobj,
					&dev_attr_obppath.attr);

	return vdev;
}

414 415
static void vio_add(struct mdesc_handle *hp, u64 node,
		    const char *node_name)
416
{
417
	(void) vio_create_one(hp, node, node_name, &root_vdev->dev);
418 419
}

420 421 422
struct vio_remove_node_data {
	struct mdesc_handle *hp;
	u64 node;
423 424
};

425
static int vio_md_node_match(struct device *dev, void *arg)
426
{
427
	struct vio_dev *vdev = to_vio_dev(dev);
428 429
	struct vio_remove_node_data *node_data;
	u64 node;
430

431
	node_data = (struct vio_remove_node_data *)arg;
432

433 434 435 436 437 438
	node = vio_vdev_node(node_data->hp, vdev);

	if (node == node_data->node)
		return 1;
	else
		return 0;
439
}
440

441
static void vio_remove(struct mdesc_handle *hp, u64 node, const char *node_name)
442
{
443
	struct vio_remove_node_data node_data;
444
	struct device *dev;
445

446 447
	node_data.hp = hp;
	node_data.node = node;
448

449
	dev = device_find_child(&root_vdev->dev, (void *)&node_data,
450 451
				vio_md_node_match);
	if (dev) {
452
		printk(KERN_INFO "VIO: Removing device %s\n", dev_name(dev));
453 454

		device_unregister(dev);
455
		put_device(dev);
456
	} else {
457
		pr_err("VIO: %s node not found in MDESC\n", node_name);
458
	}
459 460
}

461 462 463 464 465 466
static struct mdesc_notifier_client vio_device_notifier = {
	.add		= vio_add,
	.remove		= vio_remove,
	.node_name	= "virtual-device-port",
};

467 468 469 470 471
/* We are only interested in domain service ports under the
 * "domain-services" node.  On control nodes there is another port
 * under "openboot" that we should not mess with as aparently that is
 * reserved exclusively for OBP use.
 */
472 473
static void vio_add_ds(struct mdesc_handle *hp, u64 node,
		       const char *node_name)
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
{
	int found;
	u64 a;

	found = 0;
	mdesc_for_each_arc(a, hp, node, MDESC_ARC_TYPE_BACK) {
		u64 target = mdesc_arc_target(hp, a);
		const char *name = mdesc_node_name(hp, target);

		if (!strcmp(name, "domain-services")) {
			found = 1;
			break;
		}
	}

	if (found)
490
		(void) vio_create_one(hp, node, node_name, &root_vdev->dev);
491 492
}

493
static struct mdesc_notifier_client vio_ds_notifier = {
494
	.add		= vio_add_ds,
495 496 497 498
	.remove		= vio_remove,
	.node_name	= "domain-services-port",
};

499 500 501
static const char *channel_devices_node = "channel-devices";
static const char *channel_devices_compat = "SUNW,sun4v-channel-devices";
static const char *cfg_handle_prop = "cfg-handle";
502 503 504

static int __init vio_init(void)
{
505
	struct mdesc_handle *hp;
506 507 508
	const char *compat;
	const u64 *cfg_handle;
	int err, len;
509 510
	u64 root;

511 512 513 514 515 516 517
	err = bus_register(&vio_bus_type);
	if (err) {
		printk(KERN_ERR "VIO: Could not register bus type err=%d\n",
		       err);
		return err;
	}

518 519 520
	hp = mdesc_grab();
	if (!hp)
		return 0;
521

522 523
	root = mdesc_node_by_name(hp, MDESC_NODE_NULL, channel_devices_node);
	if (root == MDESC_NODE_NULL) {
524
		printk(KERN_INFO "VIO: No channel-devices MDESC node.\n");
525
		mdesc_release(hp);
526 527 528 529
		return 0;
	}

	cdev_node = of_find_node_by_name(NULL, "channel-devices");
530
	err = -ENODEV;
531 532
	if (!cdev_node) {
		printk(KERN_INFO "VIO: No channel-devices OBP node.\n");
533
		goto out_release;
534 535
	}

536
	compat = mdesc_get_property(hp, root, "compatible", &len);
537 538 539
	if (!compat) {
		printk(KERN_ERR "VIO: Channel devices lacks compatible "
		       "property\n");
540
		goto out_release;
541
	}
542
	if (!of_find_in_proplist(compat, channel_devices_compat, len)) {
543 544
		printk(KERN_ERR "VIO: Channel devices node lacks (%s) "
		       "compat entry.\n", channel_devices_compat);
545
		goto out_release;
546 547
	}

548
	cfg_handle = mdesc_get_property(hp, root, cfg_handle_prop, NULL);
549 550 551
	if (!cfg_handle) {
		printk(KERN_ERR "VIO: Channel devices lacks %s property\n",
		       cfg_handle_prop);
552
		goto out_release;
553 554 555 556
	}

	cdev_cfg_handle = *cfg_handle;

557
	root_vdev = vio_create_one(hp, root, NULL, NULL);
558 559
	err = -ENODEV;
	if (!root_vdev) {
A
Anatol Pomozov 已提交
560
		printk(KERN_ERR "VIO: Could not create root device.\n");
561 562 563
		goto out_release;
	}

564 565 566
	mdesc_register_notifier(&vio_device_notifier);
	mdesc_register_notifier(&vio_ds_notifier);

567
	mdesc_release(hp);
568

569
	return err;
570 571 572 573

out_release:
	mdesc_release(hp);
	return err;
574 575 576
}

postcore_initcall(vio_init);