aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc64/kernel/vio.c
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2005-07-12 03:50:26 -0400
committerPaul Mackerras <paulus@samba.org>2005-08-28 20:53:32 -0400
commit19dbd0f6a74f7529d6d49dd50ad6b31adbe0598d (patch)
tree25a20ad9071dea6ccd4a740ddcfff1691151ec84 /arch/ppc64/kernel/vio.c
parent6312236fe82bbd3b0e1dee60b3eb3b270a2f6aeb (diff)
[PATCH] ppc64: split pSeries specific parts out of vio.c
This patch just splits out the pSeries specific parts of vio.c. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc64/kernel/vio.c')
-rw-r--r--arch/ppc64/kernel/vio.c290
1 files changed, 13 insertions, 277 deletions
diff --git a/arch/ppc64/kernel/vio.c b/arch/ppc64/kernel/vio.c
index 8a243cad0f8b..3b790bafcaad 100644
--- a/arch/ppc64/kernel/vio.c
+++ b/arch/ppc64/kernel/vio.c
@@ -1,10 +1,11 @@
1/* 1/*
2 * IBM PowerPC Virtual I/O Infrastructure Support. 2 * IBM PowerPC Virtual I/O Infrastructure Support.
3 * 3 *
4 * Copyright (c) 2003 IBM Corp. 4 * Copyright (c) 2003-2005 IBM Corp.
5 * Dave Engebretsen engebret@us.ibm.com 5 * Dave Engebretsen engebret@us.ibm.com
6 * Santiago Leon santil@us.ibm.com 6 * Santiago Leon santil@us.ibm.com
7 * Hollis Blanchard <hollisb@us.ibm.com> 7 * Hollis Blanchard <hollisb@us.ibm.com>
8 * Stephen Rothwell
8 * 9 *
9 * This program is free software; you can redistribute it and/or 10 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License 11 * modify it under the terms of the GNU General Public License
@@ -14,29 +15,16 @@
14 15
15#include <linux/init.h> 16#include <linux/init.h>
16#include <linux/console.h> 17#include <linux/console.h>
17#include <linux/version.h>
18#include <linux/module.h> 18#include <linux/module.h>
19#include <linux/kobject.h>
20#include <linux/mm.h> 19#include <linux/mm.h>
21#include <linux/dma-mapping.h> 20#include <linux/dma-mapping.h>
22#include <asm/rtas.h>
23#include <asm/iommu.h> 21#include <asm/iommu.h>
24#include <asm/dma.h> 22#include <asm/dma.h>
25#include <asm/ppcdebug.h>
26#include <asm/vio.h> 23#include <asm/vio.h>
27#include <asm/hvcall.h>
28
29#define DBGENTER() pr_debug("%s entered\n", __FUNCTION__)
30
31extern struct subsystem devices_subsys; /* needed for vio_find_name() */
32 24
33static const struct vio_device_id *vio_match_device( 25static const struct vio_device_id *vio_match_device(
34 const struct vio_device_id *, const struct vio_dev *); 26 const struct vio_device_id *, const struct vio_dev *);
35 27
36#ifdef CONFIG_PPC_PSERIES
37static struct iommu_table *vio_build_iommu_table(struct vio_dev *);
38static int vio_num_address_cells;
39#endif
40struct vio_dev vio_bus_device = { /* fake "parent" device */ 28struct vio_dev vio_bus_device = { /* fake "parent" device */
41 .name = vio_bus_device.dev.bus_id, 29 .name = vio_bus_device.dev.bus_id,
42 .type = "", 30 .type = "",
@@ -46,6 +34,8 @@ struct vio_dev vio_bus_device = { /* fake "parent" device */
46 34
47static int (*is_match)(const struct vio_device_id *id, 35static int (*is_match)(const struct vio_device_id *id,
48 const struct vio_dev *dev); 36 const struct vio_dev *dev);
37static void (*unregister_device_callback)(struct vio_dev *dev);
38static void (*release_device_callback)(struct device *dev);
49 39
50/* convert from struct device to struct vio_dev and pass to driver. 40/* convert from struct device to struct vio_dev and pass to driver.
51 * dev->driver has already been set by generic code because vio_bus_match 41 * dev->driver has already been set by generic code because vio_bus_match
@@ -57,8 +47,6 @@ static int vio_bus_probe(struct device *dev)
57 const struct vio_device_id *id; 47 const struct vio_device_id *id;
58 int error = -ENODEV; 48 int error = -ENODEV;
59 49
60 DBGENTER();
61
62 if (!viodrv->probe) 50 if (!viodrv->probe)
63 return error; 51 return error;
64 52
@@ -76,8 +64,6 @@ static int vio_bus_remove(struct device *dev)
76 struct vio_dev *viodev = to_vio_dev(dev); 64 struct vio_dev *viodev = to_vio_dev(dev);
77 struct vio_driver *viodrv = to_vio_driver(dev->driver); 65 struct vio_driver *viodrv = to_vio_driver(dev->driver);
78 66
79 DBGENTER();
80
81 if (viodrv->remove) { 67 if (viodrv->remove) {
82 return viodrv->remove(viodev); 68 return viodrv->remove(viodev);
83 } 69 }
@@ -127,8 +113,6 @@ EXPORT_SYMBOL(vio_unregister_driver);
127static const struct vio_device_id * vio_match_device(const struct vio_device_id *ids, 113static const struct vio_device_id * vio_match_device(const struct vio_device_id *ids,
128 const struct vio_dev *dev) 114 const struct vio_dev *dev)
129{ 115{
130 DBGENTER();
131
132 while (ids->type) { 116 while (ids->type) {
133 if (is_match(ids, dev)) 117 if (is_match(ids, dev))
134 return ids; 118 return ids;
@@ -137,39 +121,19 @@ static const struct vio_device_id * vio_match_device(const struct vio_device_id
137 return NULL; 121 return NULL;
138} 122}
139 123
140#ifdef CONFIG_PPC_PSERIES
141static void probe_bus_pseries(void)
142{
143 struct device_node *node_vroot, *of_node;
144
145 node_vroot = find_devices("vdevice");
146 if ((node_vroot == NULL) || (node_vroot->child == NULL))
147 /* this machine doesn't do virtual IO, and that's ok */
148 return;
149
150 vio_num_address_cells = prom_n_addr_cells(node_vroot->child);
151
152 /*
153 * Create struct vio_devices for each virtual device in the device tree.
154 * Drivers will associate with them later.
155 */
156 for (of_node = node_vroot->child; of_node != NULL;
157 of_node = of_node->sibling) {
158 printk(KERN_DEBUG "%s: processing %p\n", __FUNCTION__, of_node);
159 vio_register_device_node(of_node);
160 }
161}
162#endif
163
164/** 124/**
165 * vio_bus_init: - Initialize the virtual IO bus 125 * vio_bus_init: - Initialize the virtual IO bus
166 */ 126 */
167int __init vio_bus_init(int (*match_func)(const struct vio_device_id *id, 127int __init vio_bus_init(int (*match_func)(const struct vio_device_id *id,
168 const struct vio_dev *dev)) 128 const struct vio_dev *dev),
129 void (*unregister_dev)(struct vio_dev *),
130 void (*release_dev)(struct device *))
169{ 131{
170 int err; 132 int err;
171 133
172 is_match = match_func; 134 is_match = match_func;
135 unregister_device_callback = unregister_dev;
136 release_device_callback = release_dev;
173 137
174 err = bus_register(&vio_bus_type); 138 err = bus_register(&vio_bus_type);
175 if (err) { 139 if (err) {
@@ -190,56 +154,14 @@ int __init vio_bus_init(int (*match_func)(const struct vio_device_id *id,
190 return 0; 154 return 0;
191} 155}
192 156
193#ifdef CONFIG_PPC_PSERIES
194/**
195 * vio_match_device_pseries: - Tell if a pSeries VIO device matches a
196 * vio_device_id
197 */
198static int vio_match_device_pseries(const struct vio_device_id *id,
199 const struct vio_dev *dev)
200{
201 return (strncmp(dev->type, id->type, strlen(id->type)) == 0) &&
202 device_is_compatible(dev->dev.platform_data, id->compat);
203}
204
205/**
206 * vio_bus_init_pseries: - Initialize the pSeries virtual IO bus
207 */
208static int __init vio_bus_init_pseries(void)
209{
210 int err;
211
212 err = vio_bus_init(vio_match_device_pseries);
213 if (err == 0)
214 probe_bus_pseries();
215 return err;
216}
217
218__initcall(vio_bus_init_pseries);
219#endif
220
221/* vio_dev refcount hit 0 */ 157/* vio_dev refcount hit 0 */
222static void __devinit vio_dev_release(struct device *dev) 158static void __devinit vio_dev_release(struct device *dev)
223{ 159{
224 DBGENTER(); 160 if (release_device_callback)
225 161 release_device_callback(dev);
226#ifdef CONFIG_PPC_PSERIES
227 /* XXX free TCE table */
228 of_node_put(dev->platform_data);
229#endif
230 kfree(to_vio_dev(dev)); 162 kfree(to_vio_dev(dev));
231} 163}
232 164
233#ifdef CONFIG_PPC_PSERIES
234static ssize_t viodev_show_devspec(struct device *dev, struct device_attribute *attr, char *buf)
235{
236 struct device_node *of_node = dev->platform_data;
237
238 return sprintf(buf, "%s\n", of_node->full_name);
239}
240DEVICE_ATTR(devspec, S_IRUSR | S_IRGRP | S_IROTH, viodev_show_devspec, NULL);
241#endif
242
243static ssize_t viodev_show_name(struct device *dev, struct device_attribute *attr, char *buf) 165static ssize_t viodev_show_name(struct device *dev, struct device_attribute *attr, char *buf)
244{ 166{
245 return sprintf(buf, "%s\n", to_vio_dev(dev)->name); 167 return sprintf(buf, "%s\n", to_vio_dev(dev)->name);
@@ -250,8 +172,6 @@ struct vio_dev * __devinit vio_register_device_common(
250 struct vio_dev *viodev, char *name, char *type, 172 struct vio_dev *viodev, char *name, char *type,
251 uint32_t unit_address, struct iommu_table *iommu_table) 173 uint32_t unit_address, struct iommu_table *iommu_table)
252{ 174{
253 DBGENTER();
254
255 viodev->name = name; 175 viodev->name = name;
256 viodev->type = type; 176 viodev->type = type;
257 viodev->unit_address = unit_address; 177 viodev->unit_address = unit_address;
@@ -272,197 +192,15 @@ struct vio_dev * __devinit vio_register_device_common(
272 return viodev; 192 return viodev;
273} 193}
274 194
275#ifdef CONFIG_PPC_PSERIES
276/**
277 * vio_register_device_node: - Register a new vio device.
278 * @of_node: The OF node for this device.
279 *
280 * Creates and initializes a vio_dev structure from the data in
281 * of_node (dev.platform_data) and adds it to the list of virtual devices.
282 * Returns a pointer to the created vio_dev or NULL if node has
283 * NULL device_type or compatible fields.
284 */
285struct vio_dev * __devinit vio_register_device_node(struct device_node *of_node)
286{
287 struct vio_dev *viodev;
288 unsigned int *unit_address;
289 unsigned int *irq_p;
290
291 DBGENTER();
292
293 /* we need the 'device_type' property, in order to match with drivers */
294 if ((NULL == of_node->type)) {
295 printk(KERN_WARNING
296 "%s: node %s missing 'device_type'\n", __FUNCTION__,
297 of_node->name ? of_node->name : "<unknown>");
298 return NULL;
299 }
300
301 unit_address = (unsigned int *)get_property(of_node, "reg", NULL);
302 if (!unit_address) {
303 printk(KERN_WARNING "%s: node %s missing 'reg'\n", __FUNCTION__,
304 of_node->name ? of_node->name : "<unknown>");
305 return NULL;
306 }
307
308 /* allocate a vio_dev for this node */
309 viodev = kmalloc(sizeof(struct vio_dev), GFP_KERNEL);
310 if (!viodev) {
311 return NULL;
312 }
313 memset(viodev, 0, sizeof(struct vio_dev));
314
315 viodev->dev.platform_data = of_node_get(of_node);
316
317 viodev->irq = NO_IRQ;
318 irq_p = (unsigned int *)get_property(of_node, "interrupts", NULL);
319 if (irq_p) {
320 int virq = virt_irq_create_mapping(*irq_p);
321 if (virq == NO_IRQ) {
322 printk(KERN_ERR "Unable to allocate interrupt "
323 "number for %s\n", of_node->full_name);
324 } else
325 viodev->irq = irq_offset_up(virq);
326 }
327
328 snprintf(viodev->dev.bus_id, BUS_ID_SIZE, "%x", *unit_address);
329
330 /* register with generic device framework */
331 if (vio_register_device_common(viodev, of_node->name, of_node->type,
332 *unit_address, vio_build_iommu_table(viodev))
333 == NULL) {
334 /* XXX free TCE table */
335 kfree(viodev);
336 return NULL;
337 }
338 device_create_file(&viodev->dev, &dev_attr_devspec);
339
340 return viodev;
341}
342EXPORT_SYMBOL(vio_register_device_node);
343#endif
344
345void __devinit vio_unregister_device(struct vio_dev *viodev) 195void __devinit vio_unregister_device(struct vio_dev *viodev)
346{ 196{
347 DBGENTER(); 197 if (unregister_device_callback)
348#ifdef CONFIG_PPC_PSERIES 198 unregister_device_callback(viodev);
349 device_remove_file(&viodev->dev, &dev_attr_devspec);
350#endif
351 device_remove_file(&viodev->dev, &dev_attr_name); 199 device_remove_file(&viodev->dev, &dev_attr_name);
352 device_unregister(&viodev->dev); 200 device_unregister(&viodev->dev);
353} 201}
354EXPORT_SYMBOL(vio_unregister_device); 202EXPORT_SYMBOL(vio_unregister_device);
355 203
356#ifdef CONFIG_PPC_PSERIES
357/**
358 * vio_get_attribute: - get attribute for virtual device
359 * @vdev: The vio device to get property.
360 * @which: The property/attribute to be extracted.
361 * @length: Pointer to length of returned data size (unused if NULL).
362 *
363 * Calls prom.c's get_property() to return the value of the
364 * attribute specified by the preprocessor constant @which
365*/
366const void * vio_get_attribute(struct vio_dev *vdev, void* which, int* length)
367{
368 return get_property(vdev->dev.platform_data, (char*)which, length);
369}
370EXPORT_SYMBOL(vio_get_attribute);
371
372/* vio_find_name() - internal because only vio.c knows how we formatted the
373 * kobject name
374 * XXX once vio_bus_type.devices is actually used as a kset in
375 * drivers/base/bus.c, this function should be removed in favor of
376 * "device_find(kobj_name, &vio_bus_type)"
377 */
378static struct vio_dev *vio_find_name(const char *kobj_name)
379{
380 struct kobject *found;
381
382 found = kset_find_obj(&devices_subsys.kset, kobj_name);
383 if (!found)
384 return NULL;
385
386 return to_vio_dev(container_of(found, struct device, kobj));
387}
388
389/**
390 * vio_find_node - find an already-registered vio_dev
391 * @vnode: device_node of the virtual device we're looking for
392 */
393struct vio_dev *vio_find_node(struct device_node *vnode)
394{
395 uint32_t *unit_address;
396 char kobj_name[BUS_ID_SIZE];
397
398 /* construct the kobject name from the device node */
399 unit_address = (uint32_t *)get_property(vnode, "reg", NULL);
400 if (!unit_address)
401 return NULL;
402 snprintf(kobj_name, BUS_ID_SIZE, "%x", *unit_address);
403
404 return vio_find_name(kobj_name);
405}
406EXPORT_SYMBOL(vio_find_node);
407
408/**
409 * vio_build_iommu_table: - gets the dma information from OF and builds the TCE tree.
410 * @dev: the virtual device.
411 *
412 * Returns a pointer to the built tce tree, or NULL if it can't
413 * find property.
414*/
415static struct iommu_table * vio_build_iommu_table(struct vio_dev *dev)
416{
417 unsigned int *dma_window;
418 struct iommu_table *newTceTable;
419 unsigned long offset;
420 int dma_window_property_size;
421
422 dma_window = (unsigned int *) get_property(dev->dev.platform_data, "ibm,my-dma-window", &dma_window_property_size);
423 if(!dma_window) {
424 return NULL;
425 }
426
427 newTceTable = (struct iommu_table *) kmalloc(sizeof(struct iommu_table), GFP_KERNEL);
428
429 /* There should be some code to extract the phys-encoded offset
430 using prom_n_addr_cells(). However, according to a comment
431 on earlier versions, it's always zero, so we don't bother */
432 offset = dma_window[1] >> PAGE_SHIFT;
433
434 /* TCE table size - measured in tce entries */
435 newTceTable->it_size = dma_window[4] >> PAGE_SHIFT;
436 /* offset for VIO should always be 0 */
437 newTceTable->it_offset = offset;
438 newTceTable->it_busno = 0;
439 newTceTable->it_index = (unsigned long)dma_window[0];
440 newTceTable->it_type = TCE_VB;
441
442 return iommu_init_table(newTceTable);
443}
444
445int vio_enable_interrupts(struct vio_dev *dev)
446{
447 int rc = h_vio_signal(dev->unit_address, VIO_IRQ_ENABLE);
448 if (rc != H_Success) {
449 printk(KERN_ERR "vio: Error 0x%x enabling interrupts\n", rc);
450 }
451 return rc;
452}
453EXPORT_SYMBOL(vio_enable_interrupts);
454
455int vio_disable_interrupts(struct vio_dev *dev)
456{
457 int rc = h_vio_signal(dev->unit_address, VIO_IRQ_DISABLE);
458 if (rc != H_Success) {
459 printk(KERN_ERR "vio: Error 0x%x disabling interrupts\n", rc);
460 }
461 return rc;
462}
463EXPORT_SYMBOL(vio_disable_interrupts);
464#endif
465
466static dma_addr_t vio_map_single(struct device *dev, void *vaddr, 204static dma_addr_t vio_map_single(struct device *dev, void *vaddr,
467 size_t size, enum dma_data_direction direction) 205 size_t size, enum dma_data_direction direction)
468{ 206{
@@ -526,8 +264,6 @@ static int vio_bus_match(struct device *dev, struct device_driver *drv)
526 const struct vio_device_id *ids = vio_drv->id_table; 264 const struct vio_device_id *ids = vio_drv->id_table;
527 const struct vio_device_id *found_id; 265 const struct vio_device_id *found_id;
528 266
529 DBGENTER();
530
531 if (!ids) 267 if (!ids)
532 return 0; 268 return 0;
533 269