vio.c 12.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * IBM PowerPC Virtual I/O Infrastructure Support.
 *
4
 *    Copyright (c) 2003-2005 IBM Corp.
L
Linus Torvalds 已提交
5 6 7
 *     Dave Engebretsen engebret@us.ibm.com
 *     Santiago Leon santil@us.ibm.com
 *     Hollis Blanchard <hollisb@us.ibm.com>
8
 *     Stephen Rothwell
L
Linus Torvalds 已提交
9 10 11 12 13 14 15
 *
 *      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.
 */

16 17
#include <linux/types.h>
#include <linux/device.h>
L
Linus Torvalds 已提交
18 19 20 21 22
#include <linux/init.h>
#include <linux/console.h>
#include <linux/module.h>
#include <linux/mm.h>
#include <linux/dma-mapping.h>
23 24
#include <linux/kobject.h>

L
Linus Torvalds 已提交
25 26 27
#include <asm/iommu.h>
#include <asm/dma.h>
#include <asm/vio.h>
28
#include <asm/prom.h>
29
#include <asm/firmware.h>
30 31 32 33 34 35 36 37 38 39
#include <asm/tce.h>
#include <asm/abs_addr.h>
#include <asm/page.h>
#include <asm/hvcall.h>
#include <asm/iseries/vio.h>
#include <asm/iseries/hv_types.h>
#include <asm/iseries/hv_lp_config.h>
#include <asm/iseries/hv_call_xm.h>
#include <asm/iseries/iommu.h>

40
extern struct kset devices_subsys; /* needed for vio_find_name() */
41 42

static struct vio_dev vio_bus_device  = { /* fake "parent" device */
43 44 45 46
	.name = vio_bus_device.dev.bus_id,
	.type = "",
	.dev.bus_id = "vio",
	.dev.bus = &vio_bus_type,
L
Linus Torvalds 已提交
47
};
48

49 50 51 52 53 54 55 56 57 58 59 60 61 62
#ifdef CONFIG_PPC_ISERIES
struct device *iSeries_vio_dev = &vio_bus_device.dev;
EXPORT_SYMBOL(iSeries_vio_dev);

static struct iommu_table veth_iommu_table;
static struct iommu_table vio_iommu_table;

static void __init iommu_vio_init(void)
{
	iommu_table_getparms_iSeries(255, 0, 0xff, &veth_iommu_table);
	veth_iommu_table.it_size /= 2;
	vio_iommu_table = veth_iommu_table;
	vio_iommu_table.it_offset += veth_iommu_table.it_size;

63
	if (!iommu_init_table(&veth_iommu_table, -1))
64
		printk("Virtual Bus VETH TCE table failed.\n");
65
	if (!iommu_init_table(&vio_iommu_table, -1))
66 67 68 69 70 71 72 73
		printk("Virtual Bus VIO TCE table failed.\n");
}
#endif

static struct iommu_table *vio_build_iommu_table(struct vio_dev *dev)
{
#ifdef CONFIG_PPC_ISERIES
	if (firmware_has_feature(FW_FEATURE_ISERIES)) {
74
		if (strcmp(dev->type, "network") == 0)
75 76 77 78 79
			return &veth_iommu_table;
		return &vio_iommu_table;
	} else
#endif
	{
80
		const unsigned char *dma_window;
81 82
		struct iommu_table *tbl;
		unsigned long offset, size;
83

84
		dma_window = of_get_property(dev->dev.archdata.of_node,
85
					  "ibm,my-dma-window", NULL);
86 87 88
		if (!dma_window)
			return NULL;

89
		tbl = kmalloc(sizeof(*tbl), GFP_KERNEL);
90

91 92
		of_parse_dma_window(dev->dev.archdata.of_node, dma_window,
				    &tbl->it_index, &offset, &size);
93 94

		/* TCE table size - measured in tce entries */
95
		tbl->it_size = size >> IOMMU_PAGE_SHIFT;
96
		/* offset for VIO should always be 0 */
97
		tbl->it_offset = offset >> IOMMU_PAGE_SHIFT;
98 99
		tbl->it_busno = 0;
		tbl->it_type = TCE_VB;
100

101
		return iommu_init_table(tbl, -1);
102 103
	}
}
L
Linus Torvalds 已提交
104

105 106 107 108 109 110 111 112 113 114 115 116 117 118
/**
 * vio_match_device: - Tell if a VIO device has a matching
 *			VIO device id structure.
 * @ids:	array of VIO device id structures to search in
 * @dev:	the VIO device structure to match against
 *
 * Used by a driver to check whether a VIO device present in the
 * system is in its list of supported devices. Returns the matching
 * vio_device_id structure or NULL if there is no match.
 */
static const struct vio_device_id *vio_match_device(
		const struct vio_device_id *ids, const struct vio_dev *dev)
{
	while (ids->type[0] != '\0') {
119
		if ((strncmp(dev->type, ids->type, strlen(ids->type)) == 0) &&
120
		    of_device_is_compatible(dev->dev.archdata.of_node,
121
					 ids->compat))
122 123 124 125 126 127
			return ids;
		ids++;
	}
	return NULL;
}

128 129
/*
 * Convert from struct device to struct vio_dev and pass to driver.
L
Linus Torvalds 已提交
130
 * dev->driver has already been set by generic code because vio_bus_match
131 132
 * succeeded.
 */
L
Linus Torvalds 已提交
133 134 135 136 137 138 139 140 141 142 143
static int vio_bus_probe(struct device *dev)
{
	struct vio_dev *viodev = to_vio_dev(dev);
	struct vio_driver *viodrv = to_vio_driver(dev->driver);
	const struct vio_device_id *id;
	int error = -ENODEV;

	if (!viodrv->probe)
		return error;

	id = vio_match_device(viodrv->id_table, viodev);
144
	if (id)
L
Linus Torvalds 已提交
145 146 147 148 149 150 151 152 153 154 155
		error = viodrv->probe(viodev, id);

	return error;
}

/* convert from struct device to struct vio_dev and pass to driver. */
static int vio_bus_remove(struct device *dev)
{
	struct vio_dev *viodev = to_vio_dev(dev);
	struct vio_driver *viodrv = to_vio_driver(dev->driver);

156
	if (viodrv->remove)
L
Linus Torvalds 已提交
157 158 159 160 161 162
		return viodrv->remove(viodev);

	/* driver can't remove */
	return 1;
}

163 164 165 166 167 168
/* convert from struct device to struct vio_dev and pass to driver. */
static void vio_bus_shutdown(struct device *dev)
{
	struct vio_dev *viodev = to_vio_dev(dev);
	struct vio_driver *viodrv = to_vio_driver(dev->driver);

169
	if (dev->driver && viodrv->shutdown)
170 171 172
		viodrv->shutdown(viodev);
}

L
Linus Torvalds 已提交
173 174 175 176 177 178 179
/**
 * vio_register_driver: - Register a new vio driver
 * @drv:	The vio_driver structure to be registered.
 */
int vio_register_driver(struct vio_driver *viodrv)
{
	printk(KERN_DEBUG "%s: driver %s registering\n", __FUNCTION__,
180
		viodrv->driver.name);
L
Linus Torvalds 已提交
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198

	/* fill in 'struct driver' fields */
	viodrv->driver.bus = &vio_bus_type;

	return driver_register(&viodrv->driver);
}
EXPORT_SYMBOL(vio_register_driver);

/**
 * vio_unregister_driver - Remove registration of vio driver.
 * @driver:	The vio_driver struct to be removed form registration
 */
void vio_unregister_driver(struct vio_driver *viodrv)
{
	driver_unregister(&viodrv->driver);
}
EXPORT_SYMBOL(vio_unregister_driver);

199 200 201
/* vio_dev refcount hit 0 */
static void __devinit vio_dev_release(struct device *dev)
{
202 203
	/* XXX should free TCE table */
	of_node_put(dev->archdata.of_node);
204 205 206
	kfree(to_vio_dev(dev));
}

L
Linus Torvalds 已提交
207
/**
208 209
 * vio_register_device_node: - Register a new vio device.
 * @of_node:	The OF node for this device.
L
Linus Torvalds 已提交
210
 *
211
 * Creates and initializes a vio_dev structure from the data in
212
 * of_node and adds it to the list of virtual devices.
213 214
 * Returns a pointer to the created vio_dev or NULL if node has
 * NULL device_type or compatible fields.
L
Linus Torvalds 已提交
215
 */
216
struct vio_dev * __devinit vio_register_device_node(struct device_node *of_node)
L
Linus Torvalds 已提交
217
{
218
	struct vio_dev *viodev;
219
	const unsigned int *unit_address;
220 221 222 223 224 225 226

	/* we need the 'device_type' property, in order to match with drivers */
	if (of_node->type == NULL) {
		printk(KERN_WARNING "%s: node %s missing 'device_type'\n",
				__FUNCTION__,
				of_node->name ? of_node->name : "<unknown>");
		return NULL;
L
Linus Torvalds 已提交
227
	}
228

229
	unit_address = of_get_property(of_node, "reg", NULL);
230 231 232 233 234 235 236 237 238 239 240 241
	if (unit_address == NULL) {
		printk(KERN_WARNING "%s: node %s missing 'reg'\n",
				__FUNCTION__,
				of_node->name ? of_node->name : "<unknown>");
		return NULL;
	}

	/* allocate a vio_dev for this node */
	viodev = kzalloc(sizeof(struct vio_dev), GFP_KERNEL);
	if (viodev == NULL)
		return NULL;

242
	viodev->irq = irq_of_parse_and_map(of_node, 0);
243 244 245 246 247 248

	snprintf(viodev->dev.bus_id, BUS_ID_SIZE, "%x", *unit_address);
	viodev->name = of_node->name;
	viodev->type = of_node->type;
	viodev->unit_address = *unit_address;
	if (firmware_has_feature(FW_FEATURE_ISERIES)) {
249
		unit_address = of_get_property(of_node,
250 251 252 253
				"linux,unit_address", NULL);
		if (unit_address != NULL)
			viodev->unit_address = *unit_address;
	}
254 255 256 257
	viodev->dev.archdata.of_node = of_node_get(of_node);
	viodev->dev.archdata.dma_ops = &dma_iommu_ops;
	viodev->dev.archdata.dma_data = vio_build_iommu_table(viodev);
	viodev->dev.archdata.numa_node = of_node_to_nid(of_node);
258 259 260 261 262

	/* init generic 'struct device' fields: */
	viodev->dev.parent = &vio_bus_device.dev;
	viodev->dev.bus = &vio_bus_type;
	viodev->dev.release = vio_dev_release;
263 264

	/* register with generic device framework */
265 266 267
	if (device_register(&viodev->dev)) {
		printk(KERN_ERR "%s: failed to register device %s\n",
				__FUNCTION__, viodev->dev.bus_id);
268 269 270 271 272 273
		/* XXX free TCE table */
		kfree(viodev);
		return NULL;
	}

	return viodev;
L
Linus Torvalds 已提交
274
}
275
EXPORT_SYMBOL(vio_register_device_node);
L
Linus Torvalds 已提交
276 277 278 279

/**
 * vio_bus_init: - Initialize the virtual IO bus
 */
280
static int __init vio_bus_init(void)
L
Linus Torvalds 已提交
281 282
{
	int err;
283
	struct device_node *node_vroot;
L
Linus Torvalds 已提交
284

285 286 287
#ifdef CONFIG_PPC_ISERIES
	if (firmware_has_feature(FW_FEATURE_ISERIES)) {
		iommu_vio_init();
288 289
		vio_bus_device.dev.archdata.dma_ops = &dma_iommu_ops;
		vio_bus_device.dev.archdata.dma_data = &vio_iommu_table;
290 291
		iSeries_vio_dev = &vio_bus_device.dev;
	}
292
#endif /* CONFIG_PPC_ISERIES */
293

L
Linus Torvalds 已提交
294 295 296 297 298 299
	err = bus_register(&vio_bus_type);
	if (err) {
		printk(KERN_ERR "failed to register VIO bus\n");
		return err;
	}

300 301
	/*
	 * The fake parent of all vio devices, just to give us
302 303
	 * a nice directory
	 */
304
	err = device_register(&vio_bus_device.dev);
L
Linus Torvalds 已提交
305
	if (err) {
306 307
		printk(KERN_WARNING "%s: device_register returned %i\n",
				__FUNCTION__, err);
L
Linus Torvalds 已提交
308 309 310
		return err;
	}

311
	node_vroot = of_find_node_by_name(NULL, "vdevice");
312 313 314 315 316 317 318 319 320 321 322 323 324
	if (node_vroot) {
		struct device_node *of_node;

		/*
		 * Create struct vio_devices for each virtual device in
		 * the device tree. Drivers will associate with them later.
		 */
		for (of_node = node_vroot->child; of_node != NULL;
				of_node = of_node->sibling) {
			printk(KERN_DEBUG "%s: processing %p\n",
					__FUNCTION__, of_node);
			vio_register_device_node(of_node);
		}
325
		of_node_put(node_vroot);
326 327
	}

328 329
	return 0;
}
330
__initcall(vio_bus_init);
L
Linus Torvalds 已提交
331

332
static ssize_t name_show(struct device *dev,
333
		struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
334 335 336
{
	return sprintf(buf, "%s\n", to_vio_dev(dev)->name);
}
337 338 339 340

static ssize_t devspec_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
341
	struct device_node *of_node = dev->archdata.of_node;
342 343 344 345 346 347 348 349 350

	return sprintf(buf, "%s\n", of_node ? of_node->full_name : "none");
}

static struct device_attribute vio_dev_attrs[] = {
	__ATTR_RO(name),
	__ATTR_RO(devspec),
	__ATTR_NULL
};
L
Linus Torvalds 已提交
351 352 353 354 355 356 357 358 359 360 361 362 363

void __devinit vio_unregister_device(struct vio_dev *viodev)
{
	device_unregister(&viodev->dev);
}
EXPORT_SYMBOL(vio_unregister_device);

static int vio_bus_match(struct device *dev, struct device_driver *drv)
{
	const struct vio_dev *vio_dev = to_vio_dev(dev);
	struct vio_driver *vio_drv = to_vio_driver(drv);
	const struct vio_device_id *ids = vio_drv->id_table;

364
	return (ids != NULL) && (vio_match_device(ids, vio_dev) != NULL);
L
Linus Torvalds 已提交
365 366
}

367 368 369 370
static int vio_hotplug(struct device *dev, char **envp, int num_envp,
			char *buffer, int buffer_size)
{
	const struct vio_dev *vio_dev = to_vio_dev(dev);
371
	struct device_node *dn;
372
	const char *cp;
373 374 375 376 377
	int length;

	if (!num_envp)
		return -ENOMEM;

378
	dn = dev->archdata.of_node;
379
	if (!dn)
380
		return -ENODEV;
381
	cp = of_get_property(dn, "compatible", &length);
382 383 384 385 386 387
	if (!cp)
		return -ENODEV;

	envp[0] = buffer;
	length = scnprintf(buffer, buffer_size, "MODALIAS=vio:T%sS%s",
				vio_dev->type, cp);
388
	if ((buffer_size - length) <= 0)
389 390 391 392 393
		return -ENOMEM;
	envp[1] = NULL;
	return 0;
}

L
Linus Torvalds 已提交
394 395
struct bus_type vio_bus_type = {
	.name = "vio",
396
	.dev_attrs = vio_dev_attrs,
397
	.uevent = vio_hotplug,
L
Linus Torvalds 已提交
398
	.match = vio_bus_match,
399 400 401
	.probe = vio_bus_probe,
	.remove = vio_bus_remove,
	.shutdown = vio_bus_shutdown,
L
Linus Torvalds 已提交
402
};
403 404 405 406 407 408 409

/**
 * vio_get_attribute: - get attribute for virtual device
 * @vdev:	The vio device to get property.
 * @which:	The property/attribute to be extracted.
 * @length:	Pointer to length of returned data size (unused if NULL).
 *
410
 * Calls prom.c's of_get_property() to return the value of the
411 412 413 414
 * attribute specified by @which
*/
const void *vio_get_attribute(struct vio_dev *vdev, char *which, int *length)
{
415
	return of_get_property(vdev->dev.archdata.of_node, which, length);
416 417
}
EXPORT_SYMBOL(vio_get_attribute);
418 419 420 421 422 423 424 425 426 427 428 429

#ifdef CONFIG_PPC_PSERIES
/* vio_find_name() - internal because only vio.c knows how we formatted the
 * kobject name
 * XXX once vio_bus_type.devices is actually used as a kset in
 * drivers/base/bus.c, this function should be removed in favor of
 * "device_find(kobj_name, &vio_bus_type)"
 */
static struct vio_dev *vio_find_name(const char *kobj_name)
{
	struct kobject *found;

430
	found = kset_find_obj(&devices_subsys, kobj_name);
431 432 433 434 435 436 437 438 439 440 441 442
	if (!found)
		return NULL;

	return to_vio_dev(container_of(found, struct device, kobj));
}

/**
 * vio_find_node - find an already-registered vio_dev
 * @vnode: device_node of the virtual device we're looking for
 */
struct vio_dev *vio_find_node(struct device_node *vnode)
{
443
	const uint32_t *unit_address;
444 445 446
	char kobj_name[BUS_ID_SIZE];

	/* construct the kobject name from the device node */
447
	unit_address = of_get_property(vnode, "reg", NULL);
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
	if (!unit_address)
		return NULL;
	snprintf(kobj_name, BUS_ID_SIZE, "%x", *unit_address);

	return vio_find_name(kobj_name);
}
EXPORT_SYMBOL(vio_find_node);

int vio_enable_interrupts(struct vio_dev *dev)
{
	int rc = h_vio_signal(dev->unit_address, VIO_IRQ_ENABLE);
	if (rc != H_SUCCESS)
		printk(KERN_ERR "vio: Error 0x%x enabling interrupts\n", rc);
	return rc;
}
EXPORT_SYMBOL(vio_enable_interrupts);

int vio_disable_interrupts(struct vio_dev *dev)
{
	int rc = h_vio_signal(dev->unit_address, VIO_IRQ_DISABLE);
	if (rc != H_SUCCESS)
		printk(KERN_ERR "vio: Error 0x%x disabling interrupts\n", rc);
	return rc;
}
EXPORT_SYMBOL(vio_disable_interrupts);
#endif /* CONFIG_PPC_PSERIES */