vio.c 10.7 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 16 17 18 19 20 21 22 23
 *
 *      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/console.h>
#include <linux/module.h>
#include <linux/mm.h>
#include <linux/dma-mapping.h>
#include <asm/iommu.h>
#include <asm/dma.h>
#include <asm/vio.h>
24
#include <asm/prom.h>
25
#include <asm/firmware.h>
L
Linus Torvalds 已提交
26

27
struct vio_dev vio_bus_device  = { /* fake "parent" device */
28 29 30 31
	.name = vio_bus_device.dev.bus_id,
	.type = "",
	.dev.bus_id = "vio",
	.dev.bus = &vio_bus_type,
L
Linus Torvalds 已提交
32
};
33

S
Stephen Rothwell 已提交
34
static struct vio_bus_ops vio_bus_ops;
L
Linus Torvalds 已提交
35

36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
/**
 * 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') {
		if (vio_bus_ops.match(ids, dev))
			return ids;
		ids++;
	}
	return NULL;
}

57 58
/*
 * Convert from struct device to struct vio_dev and pass to driver.
L
Linus Torvalds 已提交
59
 * dev->driver has already been set by generic code because vio_bus_match
60 61
 * succeeded.
 */
L
Linus Torvalds 已提交
62 63 64 65 66 67 68 69 70 71 72
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);
73
	if (id)
L
Linus Torvalds 已提交
74 75 76 77 78 79 80 81 82 83 84
		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);

85
	if (viodrv->remove)
L
Linus Torvalds 已提交
86 87 88 89 90 91
		return viodrv->remove(viodev);

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

92 93 94 95 96 97
/* 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);

98
	if (dev->driver && viodrv->shutdown)
99 100 101
		viodrv->shutdown(viodev);
}

L
Linus Torvalds 已提交
102 103 104 105 106 107 108
/**
 * 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__,
109
		viodrv->driver.name);
L
Linus Torvalds 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128

	/* 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);

/**
129 130
 * vio_register_device_node: - Register a new vio device.
 * @of_node:	The OF node for this device.
L
Linus Torvalds 已提交
131
 *
132 133 134 135
 * Creates and initializes a vio_dev structure from the data in
 * of_node (dev.platform_data) and adds it to the list of virtual devices.
 * Returns a pointer to the created vio_dev or NULL if node has
 * NULL device_type or compatible fields.
L
Linus Torvalds 已提交
136
 */
137
struct vio_dev * __devinit vio_register_device_node(struct device_node *of_node)
L
Linus Torvalds 已提交
138
{
139 140 141 142 143 144 145 146 147 148
	struct vio_dev *viodev;
	unsigned int *unit_address;
	unsigned int *irq_p;

	/* 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 已提交
149
	}
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196

	unit_address = (unsigned int *)get_property(of_node, "reg", NULL);
	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;

	viodev->dev.platform_data = of_node_get(of_node);

	viodev->irq = NO_IRQ;
	irq_p = (unsigned int *)get_property(of_node, "interrupts", NULL);
	if (irq_p) {
		int virq = virt_irq_create_mapping(*irq_p);
		if (virq == NO_IRQ) {
			printk(KERN_ERR "Unable to allocate interrupt "
			       "number for %s\n", of_node->full_name);
		} else
			viodev->irq = irq_offset_up(virq);
	}

	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)) {
		unit_address = (unsigned int *)get_property(of_node,
				"linux,unit_address", NULL);
		if (unit_address != NULL)
			viodev->unit_address = *unit_address;
	}
	viodev->iommu_table = vio_bus_ops.build_iommu_table(viodev);

	/* register with generic device framework */
	if (vio_register_device(viodev) == NULL) {
		/* XXX free TCE table */
		kfree(viodev);
		return NULL;
	}

	return viodev;
L
Linus Torvalds 已提交
197
}
198
EXPORT_SYMBOL(vio_register_device_node);
L
Linus Torvalds 已提交
199 200 201 202

/**
 * vio_bus_init: - Initialize the virtual IO bus
 */
S
Stephen Rothwell 已提交
203
int __init vio_bus_init(struct vio_bus_ops *ops)
L
Linus Torvalds 已提交
204 205
{
	int err;
206
	struct device_node *node_vroot;
L
Linus Torvalds 已提交
207

S
Stephen Rothwell 已提交
208
	vio_bus_ops = *ops;
209

L
Linus Torvalds 已提交
210 211 212 213 214 215
	err = bus_register(&vio_bus_type);
	if (err) {
		printk(KERN_ERR "failed to register VIO bus\n");
		return err;
	}

216 217
	/*
	 * The fake parent of all vio devices, just to give us
218 219
	 * a nice directory
	 */
220
	err = device_register(&vio_bus_device.dev);
L
Linus Torvalds 已提交
221
	if (err) {
222 223
		printk(KERN_WARNING "%s: device_register returned %i\n",
				__FUNCTION__, err);
L
Linus Torvalds 已提交
224 225 226
		return err;
	}

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
	node_vroot = find_devices("vdevice");
	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);
		}
	}

243 244 245
	return 0;
}

L
Linus Torvalds 已提交
246 247 248
/* vio_dev refcount hit 0 */
static void __devinit vio_dev_release(struct device *dev)
{
249 250 251 252
	if (dev->platform_data) {
		/* XXX free TCE table */
		of_node_put(dev->platform_data);
	}
L
Linus Torvalds 已提交
253 254 255
	kfree(to_vio_dev(dev));
}

256
static ssize_t name_show(struct device *dev,
257
		struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
258 259 260
{
	return sprintf(buf, "%s\n", to_vio_dev(dev)->name);
}
261 262 263 264 265 266 267 268 269 270 271 272 273 274

static ssize_t devspec_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	struct device_node *of_node = dev->platform_data;

	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 已提交
275

276
struct vio_dev * __devinit vio_register_device(struct vio_dev *viodev)
L
Linus Torvalds 已提交
277 278
{
	/* init generic 'struct device' fields: */
279
	viodev->dev.parent = &vio_bus_device.dev;
L
Linus Torvalds 已提交
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
	viodev->dev.bus = &vio_bus_type;
	viodev->dev.release = vio_dev_release;

	/* register with generic device framework */
	if (device_register(&viodev->dev)) {
		printk(KERN_ERR "%s: failed to register device %s\n",
				__FUNCTION__, viodev->dev.bus_id);
		return NULL;
	}

	return viodev;
}

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

static dma_addr_t vio_map_single(struct device *dev, void *vaddr,
			  size_t size, enum dma_data_direction direction)
{
	return iommu_map_single(to_vio_dev(dev)->iommu_table, vaddr, size,
303
			~0ul, direction);
L
Linus Torvalds 已提交
304 305 306 307 308 309 310 311 312 313 314 315 316
}

static void vio_unmap_single(struct device *dev, dma_addr_t dma_handle,
		      size_t size, enum dma_data_direction direction)
{
	iommu_unmap_single(to_vio_dev(dev)->iommu_table, dma_handle, size,
			direction);
}

static int vio_map_sg(struct device *dev, struct scatterlist *sglist,
		int nelems, enum dma_data_direction direction)
{
	return iommu_map_sg(dev, to_vio_dev(dev)->iommu_table, sglist,
317
			nelems, ~0ul, direction);
L
Linus Torvalds 已提交
318 319 320 321 322 323 324 325 326
}

static void vio_unmap_sg(struct device *dev, struct scatterlist *sglist,
		int nelems, enum dma_data_direction direction)
{
	iommu_unmap_sg(to_vio_dev(dev)->iommu_table, sglist, nelems, direction);
}

static void *vio_alloc_coherent(struct device *dev, size_t size,
A
Al Viro 已提交
327
			   dma_addr_t *dma_handle, gfp_t flag)
L
Linus Torvalds 已提交
328 329
{
	return iommu_alloc_coherent(to_vio_dev(dev)->iommu_table, size,
330
			dma_handle, ~0ul, flag);
L
Linus Torvalds 已提交
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
}

static void vio_free_coherent(struct device *dev, size_t size,
			 void *vaddr, dma_addr_t dma_handle)
{
	iommu_free_coherent(to_vio_dev(dev)->iommu_table, size, vaddr,
			dma_handle);
}

static int vio_dma_supported(struct device *dev, u64 mask)
{
	return 1;
}

struct dma_mapping_ops vio_dma_ops = {
	.alloc_coherent = vio_alloc_coherent,
	.free_coherent = vio_free_coherent,
	.map_single = vio_map_single,
	.unmap_single = vio_unmap_single,
	.map_sg = vio_map_sg,
	.unmap_sg = vio_unmap_sg,
	.dma_supported = vio_dma_supported,
};

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;

361
	return (ids != NULL) && (vio_match_device(ids, vio_dev) != NULL);
L
Linus Torvalds 已提交
362 363
}

364 365 366 367
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);
368
	struct device_node *dn = dev->platform_data;
369 370 371 372 373 374
	char *cp;
	int length;

	if (!num_envp)
		return -ENOMEM;

375
	if (!dn)
376
		return -ENODEV;
377
	cp = (char *)get_property(dn, "compatible", &length);
378 379 380 381 382 383
	if (!cp)
		return -ENODEV;

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

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

/**
 * 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).
 *
 * Calls prom.c's get_property() to return the value of the
 * attribute specified by @which
*/
const void *vio_get_attribute(struct vio_dev *vdev, char *which, int *length)
{
	return get_property(vdev->dev.platform_data, which, length);
}
EXPORT_SYMBOL(vio_get_attribute);