]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/vme/vme.c
powerpc: sys_pkey_alloc() and sys_pkey_free() system calls
[mirror_ubuntu-bionic-kernel.git] / drivers / vme / vme.c
CommitLineData
a17a75e2
MW
1/*
2 * VME Bridge Framework
3 *
66bd8db5
MW
4 * Author: Martyn Welch <martyn.welch@ge.com>
5 * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.
a17a75e2
MW
6 *
7 * Based on work by Tom Armistead and Ajit Prem
8 * Copyright 2004 Motorola Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
14 */
15
050c3d52
PG
16#include <linux/init.h>
17#include <linux/export.h>
a17a75e2
MW
18#include <linux/mm.h>
19#include <linux/types.h>
20#include <linux/kernel.h>
21#include <linux/errno.h>
22#include <linux/pci.h>
23#include <linux/poll.h>
24#include <linux/highmem.h>
25#include <linux/interrupt.h>
26#include <linux/pagemap.h>
27#include <linux/device.h>
28#include <linux/dma-mapping.h>
29#include <linux/syscalls.h>
400822fe 30#include <linux/mutex.h>
a17a75e2 31#include <linux/spinlock.h>
5a0e3ad6 32#include <linux/slab.h>
db3b9e99 33#include <linux/vme.h>
a17a75e2 34
a17a75e2
MW
35#include "vme_bridge.h"
36
733e3ef0 37/* Bitmask and list of registered buses both protected by common mutex */
a17a75e2 38static unsigned int vme_bus_numbers;
733e3ef0
MV
39static LIST_HEAD(vme_bus_list);
40static DEFINE_MUTEX(vme_buses_lock);
a17a75e2 41
ead1f3e3 42static int __init vme_init(void);
a17a75e2 43
8f966dc4 44static struct vme_dev *dev_to_vme_dev(struct device *dev)
a17a75e2 45{
8f966dc4 46 return container_of(dev, struct vme_dev, dev);
a17a75e2
MW
47}
48
49/*
50 * Find the bridge that the resource is associated with.
51 */
52static struct vme_bridge *find_bridge(struct vme_resource *resource)
53{
54 /* Get list to search */
55 switch (resource->type) {
56 case VME_MASTER:
57 return list_entry(resource->entry, struct vme_master_resource,
58 list)->parent;
59 break;
60 case VME_SLAVE:
61 return list_entry(resource->entry, struct vme_slave_resource,
62 list)->parent;
63 break;
64 case VME_DMA:
65 return list_entry(resource->entry, struct vme_dma_resource,
66 list)->parent;
67 break;
42fb5031
MW
68 case VME_LM:
69 return list_entry(resource->entry, struct vme_lm_resource,
70 list)->parent;
71 break;
a17a75e2
MW
72 default:
73 printk(KERN_ERR "Unknown resource type\n");
74 return NULL;
75 break;
76 }
77}
78
b5bc980a
MW
79/**
80 * vme_free_consistent - Allocate contiguous memory.
81 * @resource: Pointer to VME resource.
82 * @size: Size of allocation required.
83 * @dma: Pointer to variable to store physical address of allocation.
84 *
a17a75e2
MW
85 * Allocate a contiguous block of memory for use by the driver. This is used to
86 * create the buffers for the slave windows.
b5bc980a
MW
87 *
88 * Return: Virtual address of allocation on success, NULL on failure.
a17a75e2 89 */
ead1f3e3 90void *vme_alloc_consistent(struct vme_resource *resource, size_t size,
a17a75e2
MW
91 dma_addr_t *dma)
92{
93 struct vme_bridge *bridge;
a17a75e2 94
61282c04 95 if (!resource) {
ead1f3e3 96 printk(KERN_ERR "No resource\n");
a17a75e2
MW
97 return NULL;
98 }
99
100 bridge = find_bridge(resource);
61282c04 101 if (!bridge) {
ead1f3e3 102 printk(KERN_ERR "Can't find bridge\n");
a17a75e2
MW
103 return NULL;
104 }
105
61282c04 106 if (!bridge->parent) {
25958ce3 107 printk(KERN_ERR "Dev entry NULL for bridge %s\n", bridge->name);
7f58f025
MV
108 return NULL;
109 }
110
61282c04 111 if (!bridge->alloc_consistent) {
25958ce3
GKH
112 printk(KERN_ERR "alloc_consistent not supported by bridge %s\n",
113 bridge->name);
a17a75e2
MW
114 return NULL;
115 }
a17a75e2 116
7f58f025 117 return bridge->alloc_consistent(bridge->parent, size, dma);
a17a75e2
MW
118}
119EXPORT_SYMBOL(vme_alloc_consistent);
120
b5bc980a
MW
121/**
122 * vme_free_consistent - Free previously allocated memory.
123 * @resource: Pointer to VME resource.
124 * @size: Size of allocation to free.
125 * @vaddr: Virtual address of allocation.
126 * @dma: Physical address of allocation.
127 *
128 * Free previously allocated block of contiguous memory.
a17a75e2
MW
129 */
130void vme_free_consistent(struct vme_resource *resource, size_t size,
131 void *vaddr, dma_addr_t dma)
132{
133 struct vme_bridge *bridge;
a17a75e2 134
61282c04 135 if (!resource) {
ead1f3e3 136 printk(KERN_ERR "No resource\n");
a17a75e2
MW
137 return;
138 }
139
140 bridge = find_bridge(resource);
61282c04 141 if (!bridge) {
ead1f3e3 142 printk(KERN_ERR "Can't find bridge\n");
a17a75e2
MW
143 return;
144 }
145
61282c04 146 if (!bridge->parent) {
25958ce3 147 printk(KERN_ERR "Dev entry NULL for bridge %s\n", bridge->name);
7f58f025
MV
148 return;
149 }
150
61282c04 151 if (!bridge->free_consistent) {
25958ce3
GKH
152 printk(KERN_ERR "free_consistent not supported by bridge %s\n",
153 bridge->name);
7f58f025
MV
154 return;
155 }
a17a75e2 156
7f58f025 157 bridge->free_consistent(bridge->parent, size, vaddr, dma);
a17a75e2
MW
158}
159EXPORT_SYMBOL(vme_free_consistent);
160
b5bc980a
MW
161/**
162 * vme_get_size - Helper function returning size of a VME window
163 * @resource: Pointer to VME slave or master resource.
164 *
165 * Determine the size of the VME window provided. This is a helper
166 * function, wrappering the call to vme_master_get or vme_slave_get
167 * depending on the type of window resource handed to it.
168 *
169 * Return: Size of the window on success, zero on failure.
170 */
a17a75e2
MW
171size_t vme_get_size(struct vme_resource *resource)
172{
173 int enabled, retval;
174 unsigned long long base, size;
175 dma_addr_t buf_base;
6af04b06 176 u32 aspace, cycle, dwidth;
a17a75e2
MW
177
178 switch (resource->type) {
179 case VME_MASTER:
180 retval = vme_master_get(resource, &enabled, &base, &size,
181 &aspace, &cycle, &dwidth);
6ad37567
MW
182 if (retval)
183 return 0;
a17a75e2
MW
184
185 return size;
186 break;
187 case VME_SLAVE:
188 retval = vme_slave_get(resource, &enabled, &base, &size,
189 &buf_base, &aspace, &cycle);
6ad37567
MW
190 if (retval)
191 return 0;
a17a75e2
MW
192
193 return size;
194 break;
195 case VME_DMA:
196 return 0;
197 break;
198 default:
199 printk(KERN_ERR "Unknown resource type\n");
200 return 0;
201 break;
202 }
203}
204EXPORT_SYMBOL(vme_get_size);
205
ef73f886
DK
206int vme_check_window(u32 aspace, unsigned long long vme_base,
207 unsigned long long size)
a17a75e2
MW
208{
209 int retval = 0;
210
bd147986
DC
211 if (vme_base + size < size)
212 return -EINVAL;
213
a17a75e2
MW
214 switch (aspace) {
215 case VME_A16:
bd147986 216 if (vme_base + size > VME_A16_MAX)
a17a75e2
MW
217 retval = -EFAULT;
218 break;
219 case VME_A24:
bd147986 220 if (vme_base + size > VME_A24_MAX)
a17a75e2
MW
221 retval = -EFAULT;
222 break;
223 case VME_A32:
bd147986 224 if (vme_base + size > VME_A32_MAX)
a17a75e2
MW
225 retval = -EFAULT;
226 break;
227 case VME_A64:
bd147986 228 /* The VME_A64_MAX limit is actually U64_MAX + 1 */
a17a75e2
MW
229 break;
230 case VME_CRCSR:
bd147986 231 if (vme_base + size > VME_CRCSR_MAX)
a17a75e2
MW
232 retval = -EFAULT;
233 break;
234 case VME_USER1:
235 case VME_USER2:
236 case VME_USER3:
237 case VME_USER4:
238 /* User Defined */
239 break;
240 default:
ead1f3e3 241 printk(KERN_ERR "Invalid address space\n");
a17a75e2
MW
242 retval = -EINVAL;
243 break;
244 }
245
246 return retval;
247}
ef73f886 248EXPORT_SYMBOL(vme_check_window);
a17a75e2 249
472f16f3
DK
250static u32 vme_get_aspace(int am)
251{
252 switch (am) {
253 case 0x29:
254 case 0x2D:
255 return VME_A16;
256 case 0x38:
257 case 0x39:
258 case 0x3A:
259 case 0x3B:
260 case 0x3C:
261 case 0x3D:
262 case 0x3E:
263 case 0x3F:
264 return VME_A24;
265 case 0x8:
266 case 0x9:
267 case 0xA:
268 case 0xB:
269 case 0xC:
270 case 0xD:
271 case 0xE:
272 case 0xF:
273 return VME_A32;
274 case 0x0:
275 case 0x1:
276 case 0x3:
277 return VME_A64;
278 }
279
280 return 0;
281}
282
b5bc980a
MW
283/**
284 * vme_slave_request - Request a VME slave window resource.
285 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
286 * @address: Required VME address space.
287 * @cycle: Required VME data transfer cycle type.
288 *
289 * Request use of a VME window resource capable of being set for the requested
290 * address space and data transfer cycle.
291 *
292 * Return: Pointer to VME resource on success, NULL on failure.
a17a75e2 293 */
6af04b06
MW
294struct vme_resource *vme_slave_request(struct vme_dev *vdev, u32 address,
295 u32 cycle)
a17a75e2
MW
296{
297 struct vme_bridge *bridge;
298 struct list_head *slave_pos = NULL;
299 struct vme_slave_resource *allocated_image = NULL;
300 struct vme_slave_resource *slave_image = NULL;
301 struct vme_resource *resource = NULL;
302
8f966dc4 303 bridge = vdev->bridge;
61282c04 304 if (!bridge) {
a17a75e2
MW
305 printk(KERN_ERR "Can't find VME bus\n");
306 goto err_bus;
307 }
308
309 /* Loop through slave resources */
886953e9 310 list_for_each(slave_pos, &bridge->slave_resources) {
a17a75e2
MW
311 slave_image = list_entry(slave_pos,
312 struct vme_slave_resource, list);
313
61282c04 314 if (!slave_image) {
ead1f3e3 315 printk(KERN_ERR "Registered NULL Slave resource\n");
a17a75e2
MW
316 continue;
317 }
318
319 /* Find an unlocked and compatible image */
886953e9 320 mutex_lock(&slave_image->mtx);
ead1f3e3 321 if (((slave_image->address_attr & address) == address) &&
a17a75e2
MW
322 ((slave_image->cycle_attr & cycle) == cycle) &&
323 (slave_image->locked == 0)) {
324
325 slave_image->locked = 1;
886953e9 326 mutex_unlock(&slave_image->mtx);
a17a75e2
MW
327 allocated_image = slave_image;
328 break;
329 }
886953e9 330 mutex_unlock(&slave_image->mtx);
a17a75e2
MW
331 }
332
333 /* No free image */
61282c04 334 if (!allocated_image)
a17a75e2
MW
335 goto err_image;
336
1ff0a19c 337 resource = kmalloc(sizeof(*resource), GFP_KERNEL);
94eefcc1 338 if (!resource)
a17a75e2 339 goto err_alloc;
94eefcc1 340
a17a75e2 341 resource->type = VME_SLAVE;
886953e9 342 resource->entry = &allocated_image->list;
a17a75e2
MW
343
344 return resource;
345
346err_alloc:
347 /* Unlock image */
886953e9 348 mutex_lock(&slave_image->mtx);
a17a75e2 349 slave_image->locked = 0;
886953e9 350 mutex_unlock(&slave_image->mtx);
a17a75e2
MW
351err_image:
352err_bus:
353 return NULL;
354}
355EXPORT_SYMBOL(vme_slave_request);
356
b5bc980a
MW
357/**
358 * vme_slave_set - Set VME slave window configuration.
359 * @resource: Pointer to VME slave resource.
360 * @enabled: State to which the window should be configured.
361 * @vme_base: Base address for the window.
362 * @size: Size of the VME window.
363 * @buf_base: Based address of buffer used to provide VME slave window storage.
364 * @aspace: VME address space for the VME window.
365 * @cycle: VME data transfer cycle type for the VME window.
366 *
367 * Set configuration for provided VME slave window.
368 *
369 * Return: Zero on success, -EINVAL if operation is not supported on this
370 * device, if an invalid resource has been provided or invalid
371 * attributes are provided. Hardware specific errors may also be
372 * returned.
373 */
ead1f3e3 374int vme_slave_set(struct vme_resource *resource, int enabled,
a17a75e2 375 unsigned long long vme_base, unsigned long long size,
6af04b06 376 dma_addr_t buf_base, u32 aspace, u32 cycle)
a17a75e2
MW
377{
378 struct vme_bridge *bridge = find_bridge(resource);
379 struct vme_slave_resource *image;
380 int retval;
381
382 if (resource->type != VME_SLAVE) {
ead1f3e3 383 printk(KERN_ERR "Not a slave resource\n");
a17a75e2
MW
384 return -EINVAL;
385 }
386
387 image = list_entry(resource->entry, struct vme_slave_resource, list);
388
61282c04 389 if (!bridge->slave_set) {
ead1f3e3 390 printk(KERN_ERR "Function not supported\n");
a17a75e2
MW
391 return -ENOSYS;
392 }
393
ead1f3e3 394 if (!(((image->address_attr & aspace) == aspace) &&
a17a75e2 395 ((image->cycle_attr & cycle) == cycle))) {
ead1f3e3 396 printk(KERN_ERR "Invalid attributes\n");
a17a75e2
MW
397 return -EINVAL;
398 }
399
400 retval = vme_check_window(aspace, vme_base, size);
ead1f3e3 401 if (retval)
a17a75e2
MW
402 return retval;
403
404 return bridge->slave_set(image, enabled, vme_base, size, buf_base,
405 aspace, cycle);
406}
407EXPORT_SYMBOL(vme_slave_set);
408
b5bc980a
MW
409/**
410 * vme_slave_get - Retrieve VME slave window configuration.
411 * @resource: Pointer to VME slave resource.
412 * @enabled: Pointer to variable for storing state.
413 * @vme_base: Pointer to variable for storing window base address.
414 * @size: Pointer to variable for storing window size.
415 * @buf_base: Pointer to variable for storing slave buffer base address.
416 * @aspace: Pointer to variable for storing VME address space.
417 * @cycle: Pointer to variable for storing VME data transfer cycle type.
418 *
419 * Return configuration for provided VME slave window.
420 *
421 * Return: Zero on success, -EINVAL if operation is not supported on this
422 * device or if an invalid resource has been provided.
423 */
ead1f3e3 424int vme_slave_get(struct vme_resource *resource, int *enabled,
a17a75e2 425 unsigned long long *vme_base, unsigned long long *size,
6af04b06 426 dma_addr_t *buf_base, u32 *aspace, u32 *cycle)
a17a75e2
MW
427{
428 struct vme_bridge *bridge = find_bridge(resource);
429 struct vme_slave_resource *image;
430
431 if (resource->type != VME_SLAVE) {
ead1f3e3 432 printk(KERN_ERR "Not a slave resource\n");
a17a75e2
MW
433 return -EINVAL;
434 }
435
436 image = list_entry(resource->entry, struct vme_slave_resource, list);
437
61282c04 438 if (!bridge->slave_get) {
ead1f3e3 439 printk(KERN_ERR "vme_slave_get not supported\n");
a17a75e2
MW
440 return -EINVAL;
441 }
442
443 return bridge->slave_get(image, enabled, vme_base, size, buf_base,
444 aspace, cycle);
445}
446EXPORT_SYMBOL(vme_slave_get);
447
b5bc980a
MW
448/**
449 * vme_slave_free - Free VME slave window
450 * @resource: Pointer to VME slave resource.
451 *
452 * Free the provided slave resource so that it may be reallocated.
453 */
a17a75e2
MW
454void vme_slave_free(struct vme_resource *resource)
455{
456 struct vme_slave_resource *slave_image;
457
458 if (resource->type != VME_SLAVE) {
ead1f3e3 459 printk(KERN_ERR "Not a slave resource\n");
a17a75e2
MW
460 return;
461 }
462
463 slave_image = list_entry(resource->entry, struct vme_slave_resource,
464 list);
61282c04 465 if (!slave_image) {
ead1f3e3 466 printk(KERN_ERR "Can't find slave resource\n");
a17a75e2
MW
467 return;
468 }
469
470 /* Unlock image */
886953e9 471 mutex_lock(&slave_image->mtx);
a17a75e2
MW
472 if (slave_image->locked == 0)
473 printk(KERN_ERR "Image is already free\n");
474
475 slave_image->locked = 0;
886953e9 476 mutex_unlock(&slave_image->mtx);
a17a75e2
MW
477
478 /* Free up resource memory */
479 kfree(resource);
480}
481EXPORT_SYMBOL(vme_slave_free);
482
b5bc980a
MW
483/**
484 * vme_master_request - Request a VME master window resource.
485 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
486 * @address: Required VME address space.
487 * @cycle: Required VME data transfer cycle type.
488 * @dwidth: Required VME data transfer width.
489 *
490 * Request use of a VME window resource capable of being set for the requested
491 * address space, data transfer cycle and width.
492 *
493 * Return: Pointer to VME resource on success, NULL on failure.
a17a75e2 494 */
6af04b06
MW
495struct vme_resource *vme_master_request(struct vme_dev *vdev, u32 address,
496 u32 cycle, u32 dwidth)
a17a75e2
MW
497{
498 struct vme_bridge *bridge;
499 struct list_head *master_pos = NULL;
500 struct vme_master_resource *allocated_image = NULL;
501 struct vme_master_resource *master_image = NULL;
502 struct vme_resource *resource = NULL;
503
8f966dc4 504 bridge = vdev->bridge;
61282c04 505 if (!bridge) {
a17a75e2
MW
506 printk(KERN_ERR "Can't find VME bus\n");
507 goto err_bus;
508 }
509
510 /* Loop through master resources */
886953e9 511 list_for_each(master_pos, &bridge->master_resources) {
a17a75e2
MW
512 master_image = list_entry(master_pos,
513 struct vme_master_resource, list);
514
61282c04 515 if (!master_image) {
a17a75e2
MW
516 printk(KERN_WARNING "Registered NULL master resource\n");
517 continue;
518 }
519
520 /* Find an unlocked and compatible image */
886953e9 521 spin_lock(&master_image->lock);
ead1f3e3 522 if (((master_image->address_attr & address) == address) &&
a17a75e2
MW
523 ((master_image->cycle_attr & cycle) == cycle) &&
524 ((master_image->width_attr & dwidth) == dwidth) &&
525 (master_image->locked == 0)) {
526
527 master_image->locked = 1;
886953e9 528 spin_unlock(&master_image->lock);
a17a75e2
MW
529 allocated_image = master_image;
530 break;
531 }
886953e9 532 spin_unlock(&master_image->lock);
a17a75e2
MW
533 }
534
535 /* Check to see if we found a resource */
61282c04 536 if (!allocated_image) {
a17a75e2
MW
537 printk(KERN_ERR "Can't find a suitable resource\n");
538 goto err_image;
539 }
540
1ff0a19c 541 resource = kmalloc(sizeof(*resource), GFP_KERNEL);
94eefcc1 542 if (!resource)
a17a75e2 543 goto err_alloc;
94eefcc1 544
a17a75e2 545 resource->type = VME_MASTER;
886953e9 546 resource->entry = &allocated_image->list;
a17a75e2
MW
547
548 return resource;
549
a17a75e2
MW
550err_alloc:
551 /* Unlock image */
886953e9 552 spin_lock(&master_image->lock);
a17a75e2 553 master_image->locked = 0;
886953e9 554 spin_unlock(&master_image->lock);
a17a75e2
MW
555err_image:
556err_bus:
557 return NULL;
558}
559EXPORT_SYMBOL(vme_master_request);
560
b5bc980a
MW
561/**
562 * vme_master_set - Set VME master window configuration.
563 * @resource: Pointer to VME master resource.
564 * @enabled: State to which the window should be configured.
565 * @vme_base: Base address for the window.
566 * @size: Size of the VME window.
567 * @aspace: VME address space for the VME window.
568 * @cycle: VME data transfer cycle type for the VME window.
569 * @dwidth: VME data transfer width for the VME window.
570 *
571 * Set configuration for provided VME master window.
572 *
573 * Return: Zero on success, -EINVAL if operation is not supported on this
574 * device, if an invalid resource has been provided or invalid
575 * attributes are provided. Hardware specific errors may also be
576 * returned.
577 */
ead1f3e3 578int vme_master_set(struct vme_resource *resource, int enabled,
6af04b06
MW
579 unsigned long long vme_base, unsigned long long size, u32 aspace,
580 u32 cycle, u32 dwidth)
a17a75e2
MW
581{
582 struct vme_bridge *bridge = find_bridge(resource);
583 struct vme_master_resource *image;
584 int retval;
585
586 if (resource->type != VME_MASTER) {
ead1f3e3 587 printk(KERN_ERR "Not a master resource\n");
a17a75e2
MW
588 return -EINVAL;
589 }
590
591 image = list_entry(resource->entry, struct vme_master_resource, list);
592
61282c04 593 if (!bridge->master_set) {
ead1f3e3 594 printk(KERN_WARNING "vme_master_set not supported\n");
a17a75e2
MW
595 return -EINVAL;
596 }
597
ead1f3e3 598 if (!(((image->address_attr & aspace) == aspace) &&
a17a75e2
MW
599 ((image->cycle_attr & cycle) == cycle) &&
600 ((image->width_attr & dwidth) == dwidth))) {
ead1f3e3 601 printk(KERN_WARNING "Invalid attributes\n");
a17a75e2
MW
602 return -EINVAL;
603 }
604
605 retval = vme_check_window(aspace, vme_base, size);
ead1f3e3 606 if (retval)
a17a75e2
MW
607 return retval;
608
609 return bridge->master_set(image, enabled, vme_base, size, aspace,
610 cycle, dwidth);
611}
612EXPORT_SYMBOL(vme_master_set);
613
b5bc980a
MW
614/**
615 * vme_master_get - Retrieve VME master window configuration.
616 * @resource: Pointer to VME master resource.
617 * @enabled: Pointer to variable for storing state.
618 * @vme_base: Pointer to variable for storing window base address.
619 * @size: Pointer to variable for storing window size.
620 * @aspace: Pointer to variable for storing VME address space.
621 * @cycle: Pointer to variable for storing VME data transfer cycle type.
622 * @dwidth: Pointer to variable for storing VME data transfer width.
623 *
624 * Return configuration for provided VME master window.
625 *
626 * Return: Zero on success, -EINVAL if operation is not supported on this
627 * device or if an invalid resource has been provided.
628 */
ead1f3e3 629int vme_master_get(struct vme_resource *resource, int *enabled,
6af04b06
MW
630 unsigned long long *vme_base, unsigned long long *size, u32 *aspace,
631 u32 *cycle, u32 *dwidth)
a17a75e2
MW
632{
633 struct vme_bridge *bridge = find_bridge(resource);
634 struct vme_master_resource *image;
635
636 if (resource->type != VME_MASTER) {
ead1f3e3 637 printk(KERN_ERR "Not a master resource\n");
a17a75e2
MW
638 return -EINVAL;
639 }
640
641 image = list_entry(resource->entry, struct vme_master_resource, list);
642
61282c04 643 if (!bridge->master_get) {
c1038307 644 printk(KERN_WARNING "%s not supported\n", __func__);
a17a75e2
MW
645 return -EINVAL;
646 }
647
648 return bridge->master_get(image, enabled, vme_base, size, aspace,
649 cycle, dwidth);
650}
651EXPORT_SYMBOL(vme_master_get);
652
b5bc980a
MW
653/**
654 * vme_master_write - Read data from VME space into a buffer.
655 * @resource: Pointer to VME master resource.
656 * @buf: Pointer to buffer where data should be transferred.
657 * @count: Number of bytes to transfer.
658 * @offset: Offset into VME master window at which to start transfer.
659 *
660 * Perform read of count bytes of data from location on VME bus which maps into
661 * the VME master window at offset to buf.
662 *
663 * Return: Number of bytes read, -EINVAL if resource is not a VME master
664 * resource or read operation is not supported. -EFAULT returned if
665 * invalid offset is provided. Hardware specific errors may also be
666 * returned.
a17a75e2 667 */
ead1f3e3 668ssize_t vme_master_read(struct vme_resource *resource, void *buf, size_t count,
a17a75e2
MW
669 loff_t offset)
670{
671 struct vme_bridge *bridge = find_bridge(resource);
672 struct vme_master_resource *image;
673 size_t length;
674
61282c04 675 if (!bridge->master_read) {
ead1f3e3 676 printk(KERN_WARNING "Reading from resource not supported\n");
a17a75e2
MW
677 return -EINVAL;
678 }
679
680 if (resource->type != VME_MASTER) {
ead1f3e3 681 printk(KERN_ERR "Not a master resource\n");
a17a75e2
MW
682 return -EINVAL;
683 }
684
685 image = list_entry(resource->entry, struct vme_master_resource, list);
686
687 length = vme_get_size(resource);
688
689 if (offset > length) {
ead1f3e3 690 printk(KERN_WARNING "Invalid Offset\n");
a17a75e2
MW
691 return -EFAULT;
692 }
693
694 if ((offset + count) > length)
695 count = length - offset;
696
697 return bridge->master_read(image, buf, count, offset);
698
699}
700EXPORT_SYMBOL(vme_master_read);
701
b5bc980a
MW
702/**
703 * vme_master_write - Write data out to VME space from a buffer.
704 * @resource: Pointer to VME master resource.
705 * @buf: Pointer to buffer holding data to transfer.
706 * @count: Number of bytes to transfer.
707 * @offset: Offset into VME master window at which to start transfer.
708 *
709 * Perform write of count bytes of data from buf to location on VME bus which
710 * maps into the VME master window at offset.
711 *
712 * Return: Number of bytes written, -EINVAL if resource is not a VME master
713 * resource or write operation is not supported. -EFAULT returned if
714 * invalid offset is provided. Hardware specific errors may also be
715 * returned.
a17a75e2 716 */
ead1f3e3 717ssize_t vme_master_write(struct vme_resource *resource, void *buf,
a17a75e2
MW
718 size_t count, loff_t offset)
719{
720 struct vme_bridge *bridge = find_bridge(resource);
721 struct vme_master_resource *image;
722 size_t length;
723
61282c04 724 if (!bridge->master_write) {
ead1f3e3 725 printk(KERN_WARNING "Writing to resource not supported\n");
a17a75e2
MW
726 return -EINVAL;
727 }
728
729 if (resource->type != VME_MASTER) {
ead1f3e3 730 printk(KERN_ERR "Not a master resource\n");
a17a75e2
MW
731 return -EINVAL;
732 }
733
734 image = list_entry(resource->entry, struct vme_master_resource, list);
735
736 length = vme_get_size(resource);
737
738 if (offset > length) {
ead1f3e3 739 printk(KERN_WARNING "Invalid Offset\n");
a17a75e2
MW
740 return -EFAULT;
741 }
742
743 if ((offset + count) > length)
744 count = length - offset;
745
746 return bridge->master_write(image, buf, count, offset);
747}
748EXPORT_SYMBOL(vme_master_write);
749
b5bc980a
MW
750/**
751 * vme_master_rmw - Perform read-modify-write cycle.
752 * @resource: Pointer to VME master resource.
753 * @mask: Bits to be compared and swapped in operation.
754 * @compare: Bits to be compared with data read from offset.
755 * @swap: Bits to be swapped in data read from offset.
756 * @offset: Offset into VME master window at which to perform operation.
757 *
758 * Perform read-modify-write cycle on provided location:
759 * - Location on VME bus is read.
760 * - Bits selected by mask are compared with compare.
761 * - Where a selected bit matches that in compare and are selected in swap,
762 * the bit is swapped.
763 * - Result written back to location on VME bus.
764 *
765 * Return: Bytes written on success, -EINVAL if resource is not a VME master
766 * resource or RMW operation is not supported. Hardware specific
767 * errors may also be returned.
a17a75e2 768 */
ead1f3e3 769unsigned int vme_master_rmw(struct vme_resource *resource, unsigned int mask,
a17a75e2
MW
770 unsigned int compare, unsigned int swap, loff_t offset)
771{
772 struct vme_bridge *bridge = find_bridge(resource);
773 struct vme_master_resource *image;
774
61282c04 775 if (!bridge->master_rmw) {
ead1f3e3 776 printk(KERN_WARNING "Writing to resource not supported\n");
a17a75e2
MW
777 return -EINVAL;
778 }
779
780 if (resource->type != VME_MASTER) {
ead1f3e3 781 printk(KERN_ERR "Not a master resource\n");
a17a75e2
MW
782 return -EINVAL;
783 }
784
785 image = list_entry(resource->entry, struct vme_master_resource, list);
786
787 return bridge->master_rmw(image, mask, compare, swap, offset);
788}
789EXPORT_SYMBOL(vme_master_rmw);
790
b5bc980a
MW
791/**
792 * vme_master_mmap - Mmap region of VME master window.
793 * @resource: Pointer to VME master resource.
794 * @vma: Pointer to definition of user mapping.
795 *
796 * Memory map a region of the VME master window into user space.
797 *
798 * Return: Zero on success, -EINVAL if resource is not a VME master
799 * resource or -EFAULT if map exceeds window size. Other generic mmap
800 * errors may also be returned.
801 */
c74a804f
DK
802int vme_master_mmap(struct vme_resource *resource, struct vm_area_struct *vma)
803{
804 struct vme_master_resource *image;
805 phys_addr_t phys_addr;
806 unsigned long vma_size;
807
808 if (resource->type != VME_MASTER) {
809 pr_err("Not a master resource\n");
810 return -EINVAL;
811 }
812
813 image = list_entry(resource->entry, struct vme_master_resource, list);
814 phys_addr = image->bus_resource.start + (vma->vm_pgoff << PAGE_SHIFT);
815 vma_size = vma->vm_end - vma->vm_start;
816
817 if (phys_addr + vma_size > image->bus_resource.end + 1) {
818 pr_err("Map size cannot exceed the window size\n");
819 return -EFAULT;
820 }
821
822 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
823
824 return vm_iomap_memory(vma, phys_addr, vma->vm_end - vma->vm_start);
825}
826EXPORT_SYMBOL(vme_master_mmap);
827
b5bc980a
MW
828/**
829 * vme_master_free - Free VME master window
830 * @resource: Pointer to VME master resource.
831 *
832 * Free the provided master resource so that it may be reallocated.
833 */
a17a75e2
MW
834void vme_master_free(struct vme_resource *resource)
835{
836 struct vme_master_resource *master_image;
837
838 if (resource->type != VME_MASTER) {
ead1f3e3 839 printk(KERN_ERR "Not a master resource\n");
a17a75e2
MW
840 return;
841 }
842
843 master_image = list_entry(resource->entry, struct vme_master_resource,
844 list);
61282c04 845 if (!master_image) {
ead1f3e3 846 printk(KERN_ERR "Can't find master resource\n");
a17a75e2
MW
847 return;
848 }
849
850 /* Unlock image */
886953e9 851 spin_lock(&master_image->lock);
a17a75e2
MW
852 if (master_image->locked == 0)
853 printk(KERN_ERR "Image is already free\n");
854
855 master_image->locked = 0;
886953e9 856 spin_unlock(&master_image->lock);
a17a75e2
MW
857
858 /* Free up resource memory */
859 kfree(resource);
860}
861EXPORT_SYMBOL(vme_master_free);
862
b5bc980a
MW
863/**
864 * vme_dma_request - Request a DMA controller.
865 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
866 * @route: Required src/destination combination.
867 *
868 * Request a VME DMA controller with capability to perform transfers bewteen
869 * requested source/destination combination.
870 *
871 * Return: Pointer to VME DMA resource on success, NULL on failure.
a17a75e2 872 */
6af04b06 873struct vme_resource *vme_dma_request(struct vme_dev *vdev, u32 route)
a17a75e2
MW
874{
875 struct vme_bridge *bridge;
876 struct list_head *dma_pos = NULL;
877 struct vme_dma_resource *allocated_ctrlr = NULL;
878 struct vme_dma_resource *dma_ctrlr = NULL;
879 struct vme_resource *resource = NULL;
880
881 /* XXX Not checking resource attributes */
882 printk(KERN_ERR "No VME resource Attribute tests done\n");
883
8f966dc4 884 bridge = vdev->bridge;
61282c04 885 if (!bridge) {
a17a75e2
MW
886 printk(KERN_ERR "Can't find VME bus\n");
887 goto err_bus;
888 }
889
890 /* Loop through DMA resources */
886953e9 891 list_for_each(dma_pos, &bridge->dma_resources) {
a17a75e2
MW
892 dma_ctrlr = list_entry(dma_pos,
893 struct vme_dma_resource, list);
61282c04 894 if (!dma_ctrlr) {
ead1f3e3 895 printk(KERN_ERR "Registered NULL DMA resource\n");
a17a75e2
MW
896 continue;
897 }
898
4f723df4 899 /* Find an unlocked and compatible controller */
886953e9 900 mutex_lock(&dma_ctrlr->mtx);
4f723df4
MW
901 if (((dma_ctrlr->route_attr & route) == route) &&
902 (dma_ctrlr->locked == 0)) {
903
a17a75e2 904 dma_ctrlr->locked = 1;
886953e9 905 mutex_unlock(&dma_ctrlr->mtx);
a17a75e2
MW
906 allocated_ctrlr = dma_ctrlr;
907 break;
908 }
886953e9 909 mutex_unlock(&dma_ctrlr->mtx);
a17a75e2
MW
910 }
911
912 /* Check to see if we found a resource */
61282c04 913 if (!allocated_ctrlr)
a17a75e2
MW
914 goto err_ctrlr;
915
1ff0a19c 916 resource = kmalloc(sizeof(*resource), GFP_KERNEL);
94eefcc1 917 if (!resource)
a17a75e2 918 goto err_alloc;
94eefcc1 919
a17a75e2 920 resource->type = VME_DMA;
886953e9 921 resource->entry = &allocated_ctrlr->list;
a17a75e2
MW
922
923 return resource;
924
925err_alloc:
926 /* Unlock image */
886953e9 927 mutex_lock(&dma_ctrlr->mtx);
a17a75e2 928 dma_ctrlr->locked = 0;
886953e9 929 mutex_unlock(&dma_ctrlr->mtx);
a17a75e2
MW
930err_ctrlr:
931err_bus:
932 return NULL;
933}
58e50798 934EXPORT_SYMBOL(vme_dma_request);
a17a75e2 935
b5bc980a
MW
936/**
937 * vme_new_dma_list - Create new VME DMA list.
938 * @resource: Pointer to VME DMA resource.
939 *
940 * Create a new VME DMA list. It is the responsibility of the user to free
941 * the list once it is no longer required with vme_dma_list_free().
942 *
943 * Return: Pointer to new VME DMA list, NULL on allocation failure or invalid
944 * VME DMA resource.
a17a75e2
MW
945 */
946struct vme_dma_list *vme_new_dma_list(struct vme_resource *resource)
947{
a17a75e2
MW
948 struct vme_dma_list *dma_list;
949
950 if (resource->type != VME_DMA) {
ead1f3e3 951 printk(KERN_ERR "Not a DMA resource\n");
a17a75e2
MW
952 return NULL;
953 }
954
1ff0a19c 955 dma_list = kmalloc(sizeof(*dma_list), GFP_KERNEL);
94eefcc1 956 if (!dma_list)
a17a75e2 957 return NULL;
94eefcc1 958
886953e9 959 INIT_LIST_HEAD(&dma_list->entries);
a384b2cc
ME
960 dma_list->parent = list_entry(resource->entry,
961 struct vme_dma_resource,
962 list);
886953e9 963 mutex_init(&dma_list->mtx);
a17a75e2
MW
964
965 return dma_list;
966}
967EXPORT_SYMBOL(vme_new_dma_list);
968
b5bc980a
MW
969/**
970 * vme_dma_pattern_attribute - Create "Pattern" type VME DMA list attribute.
971 * @pattern: Value to use used as pattern
972 * @type: Type of pattern to be written.
973 *
974 * Create VME DMA list attribute for pattern generation. It is the
975 * responsibility of the user to free used attributes using
976 * vme_dma_free_attribute().
977 *
978 * Return: Pointer to VME DMA attribute, NULL on failure.
a17a75e2 979 */
6af04b06 980struct vme_dma_attr *vme_dma_pattern_attribute(u32 pattern, u32 type)
a17a75e2
MW
981{
982 struct vme_dma_attr *attributes;
983 struct vme_dma_pattern *pattern_attr;
984
1ff0a19c 985 attributes = kmalloc(sizeof(*attributes), GFP_KERNEL);
94eefcc1 986 if (!attributes)
a17a75e2 987 goto err_attr;
a17a75e2 988
1ff0a19c 989 pattern_attr = kmalloc(sizeof(*pattern_attr), GFP_KERNEL);
94eefcc1 990 if (!pattern_attr)
a17a75e2 991 goto err_pat;
a17a75e2
MW
992
993 attributes->type = VME_DMA_PATTERN;
994 attributes->private = (void *)pattern_attr;
995
996 pattern_attr->pattern = pattern;
997 pattern_attr->type = type;
998
999 return attributes;
1000
a17a75e2
MW
1001err_pat:
1002 kfree(attributes);
1003err_attr:
1004 return NULL;
1005}
1006EXPORT_SYMBOL(vme_dma_pattern_attribute);
1007
b5bc980a
MW
1008/**
1009 * vme_dma_pci_attribute - Create "PCI" type VME DMA list attribute.
1010 * @address: PCI base address for DMA transfer.
1011 *
1012 * Create VME DMA list attribute pointing to a location on PCI for DMA
1013 * transfers. It is the responsibility of the user to free used attributes
1014 * using vme_dma_free_attribute().
1015 *
1016 * Return: Pointer to VME DMA attribute, NULL on failure.
a17a75e2
MW
1017 */
1018struct vme_dma_attr *vme_dma_pci_attribute(dma_addr_t address)
1019{
1020 struct vme_dma_attr *attributes;
1021 struct vme_dma_pci *pci_attr;
1022
1023 /* XXX Run some sanity checks here */
1024
1ff0a19c 1025 attributes = kmalloc(sizeof(*attributes), GFP_KERNEL);
94eefcc1 1026 if (!attributes)
a17a75e2 1027 goto err_attr;
a17a75e2 1028
1ff0a19c 1029 pci_attr = kmalloc(sizeof(*pci_attr), GFP_KERNEL);
94eefcc1 1030 if (!pci_attr)
a17a75e2 1031 goto err_pci;
a17a75e2
MW
1032
1033 attributes->type = VME_DMA_PCI;
1034 attributes->private = (void *)pci_attr;
1035
1036 pci_attr->address = address;
1037
1038 return attributes;
1039
a17a75e2
MW
1040err_pci:
1041 kfree(attributes);
1042err_attr:
1043 return NULL;
1044}
1045EXPORT_SYMBOL(vme_dma_pci_attribute);
1046
b5bc980a
MW
1047/**
1048 * vme_dma_vme_attribute - Create "VME" type VME DMA list attribute.
1049 * @address: VME base address for DMA transfer.
1050 * @aspace: VME address space to use for DMA transfer.
1051 * @cycle: VME bus cycle to use for DMA transfer.
1052 * @dwidth: VME data width to use for DMA transfer.
1053 *
1054 * Create VME DMA list attribute pointing to a location on the VME bus for DMA
1055 * transfers. It is the responsibility of the user to free used attributes
1056 * using vme_dma_free_attribute().
1057 *
1058 * Return: Pointer to VME DMA attribute, NULL on failure.
a17a75e2
MW
1059 */
1060struct vme_dma_attr *vme_dma_vme_attribute(unsigned long long address,
6af04b06 1061 u32 aspace, u32 cycle, u32 dwidth)
a17a75e2
MW
1062{
1063 struct vme_dma_attr *attributes;
1064 struct vme_dma_vme *vme_attr;
1065
1ff0a19c 1066 attributes = kmalloc(sizeof(*attributes), GFP_KERNEL);
94eefcc1 1067 if (!attributes)
a17a75e2 1068 goto err_attr;
a17a75e2 1069
1ff0a19c 1070 vme_attr = kmalloc(sizeof(*vme_attr), GFP_KERNEL);
94eefcc1 1071 if (!vme_attr)
a17a75e2 1072 goto err_vme;
a17a75e2
MW
1073
1074 attributes->type = VME_DMA_VME;
1075 attributes->private = (void *)vme_attr;
1076
1077 vme_attr->address = address;
1078 vme_attr->aspace = aspace;
1079 vme_attr->cycle = cycle;
1080 vme_attr->dwidth = dwidth;
1081
1082 return attributes;
1083
a17a75e2
MW
1084err_vme:
1085 kfree(attributes);
1086err_attr:
1087 return NULL;
1088}
1089EXPORT_SYMBOL(vme_dma_vme_attribute);
1090
b5bc980a
MW
1091/**
1092 * vme_dma_free_attribute - Free DMA list attribute.
1093 * @attributes: Pointer to DMA list attribute.
1094 *
1095 * Free VME DMA list attribute. VME DMA list attributes can be safely freed
1096 * once vme_dma_list_add() has returned.
a17a75e2
MW
1097 */
1098void vme_dma_free_attribute(struct vme_dma_attr *attributes)
1099{
1100 kfree(attributes->private);
1101 kfree(attributes);
1102}
1103EXPORT_SYMBOL(vme_dma_free_attribute);
1104
b5bc980a
MW
1105/**
1106 * vme_dma_list_add - Add enty to a VME DMA list.
1107 * @list: Pointer to VME list.
1108 * @src: Pointer to DMA list attribute to use as source.
1109 * @dest: Pointer to DMA list attribute to use as destination.
1110 * @count: Number of bytes to transfer.
1111 *
1112 * Add an entry to the provided VME DMA list. Entry requires pointers to source
1113 * and destination DMA attributes and a count.
1114 *
1115 * Please note, the attributes supported as source and destinations for
1116 * transfers are hardware dependent.
1117 *
1118 * Return: Zero on success, -EINVAL if operation is not supported on this
1119 * device or if the link list has already been submitted for execution.
1120 * Hardware specific errors also possible.
1121 */
a17a75e2
MW
1122int vme_dma_list_add(struct vme_dma_list *list, struct vme_dma_attr *src,
1123 struct vme_dma_attr *dest, size_t count)
1124{
1125 struct vme_bridge *bridge = list->parent->parent;
1126 int retval;
1127
61282c04 1128 if (!bridge->dma_list_add) {
ead1f3e3 1129 printk(KERN_WARNING "Link List DMA generation not supported\n");
a17a75e2
MW
1130 return -EINVAL;
1131 }
1132
886953e9 1133 if (!mutex_trylock(&list->mtx)) {
ead1f3e3 1134 printk(KERN_ERR "Link List already submitted\n");
a17a75e2
MW
1135 return -EINVAL;
1136 }
1137
1138 retval = bridge->dma_list_add(list, src, dest, count);
1139
886953e9 1140 mutex_unlock(&list->mtx);
a17a75e2
MW
1141
1142 return retval;
1143}
1144EXPORT_SYMBOL(vme_dma_list_add);
1145
b5bc980a
MW
1146/**
1147 * vme_dma_list_exec - Queue a VME DMA list for execution.
1148 * @list: Pointer to VME list.
1149 *
1150 * Queue the provided VME DMA list for execution. The call will return once the
1151 * list has been executed.
1152 *
1153 * Return: Zero on success, -EINVAL if operation is not supported on this
1154 * device. Hardware specific errors also possible.
1155 */
a17a75e2
MW
1156int vme_dma_list_exec(struct vme_dma_list *list)
1157{
1158 struct vme_bridge *bridge = list->parent->parent;
1159 int retval;
1160
61282c04 1161 if (!bridge->dma_list_exec) {
ead1f3e3 1162 printk(KERN_ERR "Link List DMA execution not supported\n");
a17a75e2
MW
1163 return -EINVAL;
1164 }
1165
886953e9 1166 mutex_lock(&list->mtx);
a17a75e2
MW
1167
1168 retval = bridge->dma_list_exec(list);
1169
886953e9 1170 mutex_unlock(&list->mtx);
a17a75e2
MW
1171
1172 return retval;
1173}
1174EXPORT_SYMBOL(vme_dma_list_exec);
1175
b5bc980a
MW
1176/**
1177 * vme_dma_list_free - Free a VME DMA list.
1178 * @list: Pointer to VME list.
1179 *
1180 * Free the provided DMA list and all its entries.
1181 *
1182 * Return: Zero on success, -EINVAL on invalid VME resource, -EBUSY if resource
1183 * is still in use. Hardware specific errors also possible.
1184 */
a17a75e2
MW
1185int vme_dma_list_free(struct vme_dma_list *list)
1186{
1187 struct vme_bridge *bridge = list->parent->parent;
1188 int retval;
1189
61282c04 1190 if (!bridge->dma_list_empty) {
ead1f3e3 1191 printk(KERN_WARNING "Emptying of Link Lists not supported\n");
a17a75e2
MW
1192 return -EINVAL;
1193 }
1194
886953e9 1195 if (!mutex_trylock(&list->mtx)) {
ead1f3e3 1196 printk(KERN_ERR "Link List in use\n");
f13d1a8a 1197 return -EBUSY;
a17a75e2
MW
1198 }
1199
1200 /*
f56c3d4f
AS
1201 * Empty out all of the entries from the DMA list. We need to go to the
1202 * low level driver as DMA entries are driver specific.
a17a75e2
MW
1203 */
1204 retval = bridge->dma_list_empty(list);
1205 if (retval) {
ead1f3e3 1206 printk(KERN_ERR "Unable to empty link-list entries\n");
886953e9 1207 mutex_unlock(&list->mtx);
a17a75e2
MW
1208 return retval;
1209 }
886953e9 1210 mutex_unlock(&list->mtx);
a17a75e2
MW
1211 kfree(list);
1212
1213 return retval;
1214}
1215EXPORT_SYMBOL(vme_dma_list_free);
1216
b5bc980a
MW
1217/**
1218 * vme_dma_free - Free a VME DMA resource.
1219 * @resource: Pointer to VME DMA resource.
1220 *
1221 * Free the provided DMA resource so that it may be reallocated.
1222 *
1223 * Return: Zero on success, -EINVAL on invalid VME resource, -EBUSY if resource
1224 * is still active.
1225 */
a17a75e2
MW
1226int vme_dma_free(struct vme_resource *resource)
1227{
1228 struct vme_dma_resource *ctrlr;
1229
1230 if (resource->type != VME_DMA) {
ead1f3e3 1231 printk(KERN_ERR "Not a DMA resource\n");
a17a75e2
MW
1232 return -EINVAL;
1233 }
1234
1235 ctrlr = list_entry(resource->entry, struct vme_dma_resource, list);
1236
886953e9 1237 if (!mutex_trylock(&ctrlr->mtx)) {
ead1f3e3 1238 printk(KERN_ERR "Resource busy, can't free\n");
a17a75e2
MW
1239 return -EBUSY;
1240 }
1241
886953e9 1242 if (!(list_empty(&ctrlr->pending) && list_empty(&ctrlr->running))) {
ead1f3e3 1243 printk(KERN_WARNING "Resource still processing transfers\n");
886953e9 1244 mutex_unlock(&ctrlr->mtx);
a17a75e2
MW
1245 return -EBUSY;
1246 }
1247
1248 ctrlr->locked = 0;
1249
886953e9 1250 mutex_unlock(&ctrlr->mtx);
a17a75e2 1251
fd5c2561
MW
1252 kfree(resource);
1253
a17a75e2
MW
1254 return 0;
1255}
1256EXPORT_SYMBOL(vme_dma_free);
1257
e2c6393f 1258void vme_bus_error_handler(struct vme_bridge *bridge,
472f16f3 1259 unsigned long long address, int am)
e2c6393f 1260{
0b049662
DK
1261 struct list_head *handler_pos = NULL;
1262 struct vme_error_handler *handler;
448535a3 1263 int handler_triggered = 0;
0b049662
DK
1264 u32 aspace = vme_get_aspace(am);
1265
1266 list_for_each(handler_pos, &bridge->vme_error_handlers) {
1267 handler = list_entry(handler_pos, struct vme_error_handler,
1268 list);
1269 if ((aspace == handler->aspace) &&
1270 (address >= handler->start) &&
1271 (address < handler->end)) {
1272 if (!handler->num_errors)
1273 handler->first_error = address;
1274 if (handler->num_errors != UINT_MAX)
1275 handler->num_errors++;
448535a3 1276 handler_triggered = 1;
0b049662 1277 }
e2c6393f 1278 }
448535a3
DK
1279
1280 if (!handler_triggered)
1281 dev_err(bridge->parent,
1282 "Unhandled VME access error at address 0x%llx\n",
1283 address);
e2c6393f
DK
1284}
1285EXPORT_SYMBOL(vme_bus_error_handler);
1286
0b049662
DK
1287struct vme_error_handler *vme_register_error_handler(
1288 struct vme_bridge *bridge, u32 aspace,
1289 unsigned long long address, size_t len)
e2c6393f 1290{
0b049662 1291 struct vme_error_handler *handler;
e2c6393f 1292
0b049662
DK
1293 handler = kmalloc(sizeof(*handler), GFP_KERNEL);
1294 if (!handler)
1295 return NULL;
e2c6393f 1296
0b049662
DK
1297 handler->aspace = aspace;
1298 handler->start = address;
1299 handler->end = address + len;
1300 handler->num_errors = 0;
1301 handler->first_error = 0;
1302 list_add_tail(&handler->list, &bridge->vme_error_handlers);
e2c6393f 1303
0b049662 1304 return handler;
e2c6393f 1305}
0b049662 1306EXPORT_SYMBOL(vme_register_error_handler);
e2c6393f 1307
0b049662 1308void vme_unregister_error_handler(struct vme_error_handler *handler)
e2c6393f 1309{
0b049662
DK
1310 list_del(&handler->list);
1311 kfree(handler);
e2c6393f 1312}
0b049662 1313EXPORT_SYMBOL(vme_unregister_error_handler);
e2c6393f 1314
c813f592
MW
1315void vme_irq_handler(struct vme_bridge *bridge, int level, int statid)
1316{
1317 void (*call)(int, int, void *);
1318 void *priv_data;
1319
1320 call = bridge->irq[level - 1].callback[statid].func;
1321 priv_data = bridge->irq[level - 1].callback[statid].priv_data;
61282c04 1322 if (call)
c813f592
MW
1323 call(level, statid, priv_data);
1324 else
f56c3d4f 1325 printk(KERN_WARNING "Spurious VME interrupt, level:%x, vector:%x\n",
25958ce3 1326 level, statid);
c813f592
MW
1327}
1328EXPORT_SYMBOL(vme_irq_handler);
1329
b5bc980a
MW
1330/**
1331 * vme_irq_request - Request a specific VME interrupt.
1332 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1333 * @level: Interrupt priority being requested.
1334 * @statid: Interrupt vector being requested.
1335 * @callback: Pointer to callback function called when VME interrupt/vector
1336 * received.
1337 * @priv_data: Generic pointer that will be passed to the callback function.
1338 *
1339 * Request callback to be attached as a handler for VME interrupts with provided
1340 * level and statid.
1341 *
1342 * Return: Zero on success, -EINVAL on invalid vme device, level or if the
1343 * function is not supported, -EBUSY if the level/statid combination is
1344 * already in use. Hardware specific errors also possible.
1345 */
8f966dc4 1346int vme_irq_request(struct vme_dev *vdev, int level, int statid,
29848ac9 1347 void (*callback)(int, int, void *),
a17a75e2
MW
1348 void *priv_data)
1349{
1350 struct vme_bridge *bridge;
1351
8f966dc4 1352 bridge = vdev->bridge;
61282c04 1353 if (!bridge) {
a17a75e2
MW
1354 printk(KERN_ERR "Can't find VME bus\n");
1355 return -EINVAL;
1356 }
1357
ead1f3e3 1358 if ((level < 1) || (level > 7)) {
c813f592 1359 printk(KERN_ERR "Invalid interrupt level\n");
a17a75e2
MW
1360 return -EINVAL;
1361 }
1362
61282c04 1363 if (!bridge->irq_set) {
c813f592 1364 printk(KERN_ERR "Configuring interrupts not supported\n");
a17a75e2
MW
1365 return -EINVAL;
1366 }
1367
886953e9 1368 mutex_lock(&bridge->irq_mtx);
c813f592
MW
1369
1370 if (bridge->irq[level - 1].callback[statid].func) {
886953e9 1371 mutex_unlock(&bridge->irq_mtx);
c813f592
MW
1372 printk(KERN_WARNING "VME Interrupt already taken\n");
1373 return -EBUSY;
1374 }
1375
1376 bridge->irq[level - 1].count++;
1377 bridge->irq[level - 1].callback[statid].priv_data = priv_data;
1378 bridge->irq[level - 1].callback[statid].func = callback;
1379
1380 /* Enable IRQ level */
29848ac9 1381 bridge->irq_set(bridge, level, 1, 1);
c813f592 1382
886953e9 1383 mutex_unlock(&bridge->irq_mtx);
c813f592
MW
1384
1385 return 0;
a17a75e2 1386}
c813f592 1387EXPORT_SYMBOL(vme_irq_request);
a17a75e2 1388
b5bc980a
MW
1389/**
1390 * vme_irq_free - Free a VME interrupt.
1391 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1392 * @level: Interrupt priority of interrupt being freed.
1393 * @statid: Interrupt vector of interrupt being freed.
1394 *
1395 * Remove previously attached callback from VME interrupt priority/vector.
1396 */
8f966dc4 1397void vme_irq_free(struct vme_dev *vdev, int level, int statid)
a17a75e2
MW
1398{
1399 struct vme_bridge *bridge;
1400
8f966dc4 1401 bridge = vdev->bridge;
61282c04 1402 if (!bridge) {
a17a75e2
MW
1403 printk(KERN_ERR "Can't find VME bus\n");
1404 return;
1405 }
1406
ead1f3e3 1407 if ((level < 1) || (level > 7)) {
c813f592 1408 printk(KERN_ERR "Invalid interrupt level\n");
a17a75e2
MW
1409 return;
1410 }
1411
61282c04 1412 if (!bridge->irq_set) {
c813f592 1413 printk(KERN_ERR "Configuring interrupts not supported\n");
a17a75e2
MW
1414 return;
1415 }
1416
886953e9 1417 mutex_lock(&bridge->irq_mtx);
c813f592
MW
1418
1419 bridge->irq[level - 1].count--;
1420
1421 /* Disable IRQ level if no more interrupts attached at this level*/
1422 if (bridge->irq[level - 1].count == 0)
29848ac9 1423 bridge->irq_set(bridge, level, 0, 1);
c813f592
MW
1424
1425 bridge->irq[level - 1].callback[statid].func = NULL;
1426 bridge->irq[level - 1].callback[statid].priv_data = NULL;
1427
886953e9 1428 mutex_unlock(&bridge->irq_mtx);
a17a75e2 1429}
c813f592 1430EXPORT_SYMBOL(vme_irq_free);
a17a75e2 1431
b5bc980a
MW
1432/**
1433 * vme_irq_generate - Generate VME interrupt.
1434 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1435 * @level: Interrupt priority at which to assert the interrupt.
1436 * @statid: Interrupt vector to associate with the interrupt.
1437 *
1438 * Generate a VME interrupt of the provided level and with the provided
1439 * statid.
1440 *
1441 * Return: Zero on success, -EINVAL on invalid vme device, level or if the
1442 * function is not supported. Hardware specific errors also possible.
1443 */
8f966dc4 1444int vme_irq_generate(struct vme_dev *vdev, int level, int statid)
a17a75e2
MW
1445{
1446 struct vme_bridge *bridge;
1447
8f966dc4 1448 bridge = vdev->bridge;
61282c04 1449 if (!bridge) {
a17a75e2
MW
1450 printk(KERN_ERR "Can't find VME bus\n");
1451 return -EINVAL;
1452 }
1453
ead1f3e3 1454 if ((level < 1) || (level > 7)) {
a17a75e2
MW
1455 printk(KERN_WARNING "Invalid interrupt level\n");
1456 return -EINVAL;
1457 }
1458
61282c04 1459 if (!bridge->irq_generate) {
ead1f3e3 1460 printk(KERN_WARNING "Interrupt generation not supported\n");
a17a75e2
MW
1461 return -EINVAL;
1462 }
1463
29848ac9 1464 return bridge->irq_generate(bridge, level, statid);
a17a75e2 1465}
c813f592 1466EXPORT_SYMBOL(vme_irq_generate);
a17a75e2 1467
b5bc980a
MW
1468/**
1469 * vme_lm_request - Request a VME location monitor
1470 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1471 *
1472 * Allocate a location monitor resource to the driver. A location monitor
1473 * allows the driver to monitor accesses to a contiguous number of
1474 * addresses on the VME bus.
1475 *
1476 * Return: Pointer to a VME resource on success or NULL on failure.
42fb5031 1477 */
8f966dc4 1478struct vme_resource *vme_lm_request(struct vme_dev *vdev)
a17a75e2
MW
1479{
1480 struct vme_bridge *bridge;
42fb5031
MW
1481 struct list_head *lm_pos = NULL;
1482 struct vme_lm_resource *allocated_lm = NULL;
1483 struct vme_lm_resource *lm = NULL;
1484 struct vme_resource *resource = NULL;
a17a75e2 1485
8f966dc4 1486 bridge = vdev->bridge;
61282c04 1487 if (!bridge) {
a17a75e2 1488 printk(KERN_ERR "Can't find VME bus\n");
42fb5031
MW
1489 goto err_bus;
1490 }
1491
b5bc980a 1492 /* Loop through LM resources */
886953e9 1493 list_for_each(lm_pos, &bridge->lm_resources) {
42fb5031
MW
1494 lm = list_entry(lm_pos,
1495 struct vme_lm_resource, list);
61282c04 1496 if (!lm) {
25958ce3 1497 printk(KERN_ERR "Registered NULL Location Monitor resource\n");
42fb5031
MW
1498 continue;
1499 }
1500
1501 /* Find an unlocked controller */
886953e9 1502 mutex_lock(&lm->mtx);
42fb5031
MW
1503 if (lm->locked == 0) {
1504 lm->locked = 1;
886953e9 1505 mutex_unlock(&lm->mtx);
42fb5031
MW
1506 allocated_lm = lm;
1507 break;
1508 }
886953e9 1509 mutex_unlock(&lm->mtx);
42fb5031
MW
1510 }
1511
1512 /* Check to see if we found a resource */
61282c04 1513 if (!allocated_lm)
42fb5031
MW
1514 goto err_lm;
1515
1ff0a19c 1516 resource = kmalloc(sizeof(*resource), GFP_KERNEL);
94eefcc1 1517 if (!resource)
42fb5031 1518 goto err_alloc;
94eefcc1 1519
42fb5031 1520 resource->type = VME_LM;
886953e9 1521 resource->entry = &allocated_lm->list;
42fb5031
MW
1522
1523 return resource;
1524
1525err_alloc:
1526 /* Unlock image */
886953e9 1527 mutex_lock(&lm->mtx);
42fb5031 1528 lm->locked = 0;
886953e9 1529 mutex_unlock(&lm->mtx);
42fb5031
MW
1530err_lm:
1531err_bus:
1532 return NULL;
1533}
1534EXPORT_SYMBOL(vme_lm_request);
1535
b5bc980a
MW
1536/**
1537 * vme_lm_count - Determine number of VME Addresses monitored
1538 * @resource: Pointer to VME location monitor resource.
1539 *
1540 * The number of contiguous addresses monitored is hardware dependent.
1541 * Return the number of contiguous addresses monitored by the
1542 * location monitor.
1543 *
1544 * Return: Count of addresses monitored or -EINVAL when provided with an
1545 * invalid location monitor resource.
1546 */
42fb5031
MW
1547int vme_lm_count(struct vme_resource *resource)
1548{
1549 struct vme_lm_resource *lm;
1550
1551 if (resource->type != VME_LM) {
1552 printk(KERN_ERR "Not a Location Monitor resource\n");
1553 return -EINVAL;
1554 }
1555
1556 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1557
1558 return lm->monitors;
1559}
1560EXPORT_SYMBOL(vme_lm_count);
1561
b5bc980a
MW
1562/**
1563 * vme_lm_set - Configure location monitor
1564 * @resource: Pointer to VME location monitor resource.
1565 * @lm_base: Base address to monitor.
1566 * @aspace: VME address space to monitor.
1567 * @cycle: VME bus cycle type to monitor.
1568 *
1569 * Set the base address, address space and cycle type of accesses to be
1570 * monitored by the location monitor.
1571 *
1572 * Return: Zero on success, -EINVAL when provided with an invalid location
1573 * monitor resource or function is not supported. Hardware specific
1574 * errors may also be returned.
1575 */
42fb5031 1576int vme_lm_set(struct vme_resource *resource, unsigned long long lm_base,
6af04b06 1577 u32 aspace, u32 cycle)
42fb5031
MW
1578{
1579 struct vme_bridge *bridge = find_bridge(resource);
1580 struct vme_lm_resource *lm;
1581
1582 if (resource->type != VME_LM) {
1583 printk(KERN_ERR "Not a Location Monitor resource\n");
a17a75e2
MW
1584 return -EINVAL;
1585 }
1586
42fb5031
MW
1587 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1588
61282c04 1589 if (!bridge->lm_set) {
42fb5031 1590 printk(KERN_ERR "vme_lm_set not supported\n");
a17a75e2
MW
1591 return -EINVAL;
1592 }
1593
8be9226c 1594 return bridge->lm_set(lm, lm_base, aspace, cycle);
a17a75e2
MW
1595}
1596EXPORT_SYMBOL(vme_lm_set);
1597
b5bc980a
MW
1598/**
1599 * vme_lm_get - Retrieve location monitor settings
1600 * @resource: Pointer to VME location monitor resource.
1601 * @lm_base: Pointer used to output the base address monitored.
1602 * @aspace: Pointer used to output the address space monitored.
1603 * @cycle: Pointer used to output the VME bus cycle type monitored.
1604 *
1605 * Retrieve the base address, address space and cycle type of accesses to
1606 * be monitored by the location monitor.
1607 *
1608 * Return: Zero on success, -EINVAL when provided with an invalid location
1609 * monitor resource or function is not supported. Hardware specific
1610 * errors may also be returned.
1611 */
42fb5031 1612int vme_lm_get(struct vme_resource *resource, unsigned long long *lm_base,
6af04b06 1613 u32 *aspace, u32 *cycle)
a17a75e2 1614{
42fb5031
MW
1615 struct vme_bridge *bridge = find_bridge(resource);
1616 struct vme_lm_resource *lm;
a17a75e2 1617
42fb5031
MW
1618 if (resource->type != VME_LM) {
1619 printk(KERN_ERR "Not a Location Monitor resource\n");
a17a75e2
MW
1620 return -EINVAL;
1621 }
1622
42fb5031
MW
1623 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1624
61282c04 1625 if (!bridge->lm_get) {
42fb5031 1626 printk(KERN_ERR "vme_lm_get not supported\n");
a17a75e2
MW
1627 return -EINVAL;
1628 }
1629
42fb5031 1630 return bridge->lm_get(lm, lm_base, aspace, cycle);
a17a75e2
MW
1631}
1632EXPORT_SYMBOL(vme_lm_get);
1633
b5bc980a
MW
1634/**
1635 * vme_lm_attach - Provide callback for location monitor address
1636 * @resource: Pointer to VME location monitor resource.
1637 * @monitor: Offset to which callback should be attached.
1638 * @callback: Pointer to callback function called when triggered.
1639 * @data: Generic pointer that will be passed to the callback function.
1640 *
1641 * Attach a callback to the specificed offset into the location monitors
1642 * monitored addresses. A generic pointer is provided to allow data to be
1643 * passed to the callback when called.
1644 *
1645 * Return: Zero on success, -EINVAL when provided with an invalid location
1646 * monitor resource or function is not supported. Hardware specific
1647 * errors may also be returned.
1648 */
42fb5031 1649int vme_lm_attach(struct vme_resource *resource, int monitor,
fa54b326 1650 void (*callback)(void *), void *data)
a17a75e2 1651{
42fb5031
MW
1652 struct vme_bridge *bridge = find_bridge(resource);
1653 struct vme_lm_resource *lm;
a17a75e2 1654
42fb5031
MW
1655 if (resource->type != VME_LM) {
1656 printk(KERN_ERR "Not a Location Monitor resource\n");
a17a75e2
MW
1657 return -EINVAL;
1658 }
1659
42fb5031
MW
1660 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1661
61282c04 1662 if (!bridge->lm_attach) {
42fb5031 1663 printk(KERN_ERR "vme_lm_attach not supported\n");
a17a75e2
MW
1664 return -EINVAL;
1665 }
1666
fa54b326 1667 return bridge->lm_attach(lm, monitor, callback, data);
a17a75e2
MW
1668}
1669EXPORT_SYMBOL(vme_lm_attach);
1670
b5bc980a
MW
1671/**
1672 * vme_lm_detach - Remove callback for location monitor address
1673 * @resource: Pointer to VME location monitor resource.
1674 * @monitor: Offset to which callback should be removed.
1675 *
1676 * Remove the callback associated with the specificed offset into the
1677 * location monitors monitored addresses.
1678 *
1679 * Return: Zero on success, -EINVAL when provided with an invalid location
1680 * monitor resource or function is not supported. Hardware specific
1681 * errors may also be returned.
1682 */
42fb5031 1683int vme_lm_detach(struct vme_resource *resource, int monitor)
a17a75e2 1684{
42fb5031
MW
1685 struct vme_bridge *bridge = find_bridge(resource);
1686 struct vme_lm_resource *lm;
a17a75e2 1687
42fb5031
MW
1688 if (resource->type != VME_LM) {
1689 printk(KERN_ERR "Not a Location Monitor resource\n");
a17a75e2
MW
1690 return -EINVAL;
1691 }
1692
42fb5031
MW
1693 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1694
61282c04 1695 if (!bridge->lm_detach) {
42fb5031 1696 printk(KERN_ERR "vme_lm_detach not supported\n");
a17a75e2
MW
1697 return -EINVAL;
1698 }
1699
42fb5031 1700 return bridge->lm_detach(lm, monitor);
a17a75e2
MW
1701}
1702EXPORT_SYMBOL(vme_lm_detach);
1703
b5bc980a
MW
1704/**
1705 * vme_lm_free - Free allocated VME location monitor
1706 * @resource: Pointer to VME location monitor resource.
1707 *
1708 * Free allocation of a VME location monitor.
1709 *
1710 * WARNING: This function currently expects that any callbacks that have
1711 * been attached to the location monitor have been removed.
1712 *
1713 * Return: Zero on success, -EINVAL when provided with an invalid location
1714 * monitor resource.
1715 */
42fb5031
MW
1716void vme_lm_free(struct vme_resource *resource)
1717{
1718 struct vme_lm_resource *lm;
1719
1720 if (resource->type != VME_LM) {
1721 printk(KERN_ERR "Not a Location Monitor resource\n");
1722 return;
1723 }
1724
1725 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1726
886953e9 1727 mutex_lock(&lm->mtx);
42fb5031 1728
8be9226c
MW
1729 /* XXX
1730 * Check to see that there aren't any callbacks still attached, if
1731 * there are we should probably be detaching them!
1732 */
42fb5031
MW
1733
1734 lm->locked = 0;
1735
886953e9 1736 mutex_unlock(&lm->mtx);
8be9226c
MW
1737
1738 kfree(resource);
42fb5031
MW
1739}
1740EXPORT_SYMBOL(vme_lm_free);
1741
b5bc980a
MW
1742/**
1743 * vme_slot_num - Retrieve slot ID
1744 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1745 *
1746 * Retrieve the slot ID associated with the provided VME device.
1747 *
1748 * Return: The slot ID on success, -EINVAL if VME bridge cannot be determined
1749 * or the function is not supported. Hardware specific errors may also
1750 * be returned.
1751 */
d7729f0f 1752int vme_slot_num(struct vme_dev *vdev)
a17a75e2
MW
1753{
1754 struct vme_bridge *bridge;
1755
8f966dc4 1756 bridge = vdev->bridge;
61282c04 1757 if (!bridge) {
a17a75e2
MW
1758 printk(KERN_ERR "Can't find VME bus\n");
1759 return -EINVAL;
1760 }
1761
61282c04 1762 if (!bridge->slot_get) {
d7729f0f 1763 printk(KERN_WARNING "vme_slot_num not supported\n");
a17a75e2
MW
1764 return -EINVAL;
1765 }
1766
29848ac9 1767 return bridge->slot_get(bridge);
a17a75e2 1768}
d7729f0f 1769EXPORT_SYMBOL(vme_slot_num);
a17a75e2 1770
b5bc980a
MW
1771/**
1772 * vme_bus_num - Retrieve bus number
1773 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1774 *
1775 * Retrieve the bus enumeration associated with the provided VME device.
1776 *
1777 * Return: The bus number on success, -EINVAL if VME bridge cannot be
1778 * determined.
1779 */
978f47d6
MW
1780int vme_bus_num(struct vme_dev *vdev)
1781{
1782 struct vme_bridge *bridge;
1783
1784 bridge = vdev->bridge;
61282c04 1785 if (!bridge) {
978f47d6
MW
1786 pr_err("Can't find VME bus\n");
1787 return -EINVAL;
1788 }
1789
1790 return bridge->num;
1791}
1792EXPORT_SYMBOL(vme_bus_num);
a17a75e2
MW
1793
1794/* - Bridge Registration --------------------------------------------------- */
1795
5b93c2a2
MV
1796static void vme_dev_release(struct device *dev)
1797{
1798 kfree(dev_to_vme_dev(dev));
1799}
1800
326071b3
AS
1801/* Common bridge initialization */
1802struct vme_bridge *vme_init_bridge(struct vme_bridge *bridge)
1803{
1804 INIT_LIST_HEAD(&bridge->vme_error_handlers);
1805 INIT_LIST_HEAD(&bridge->master_resources);
1806 INIT_LIST_HEAD(&bridge->slave_resources);
1807 INIT_LIST_HEAD(&bridge->dma_resources);
1808 INIT_LIST_HEAD(&bridge->lm_resources);
1809 mutex_init(&bridge->irq_mtx);
1810
1811 return bridge;
1812}
1813EXPORT_SYMBOL(vme_init_bridge);
1814
5b93c2a2 1815int vme_register_bridge(struct vme_bridge *bridge)
a17a75e2
MW
1816{
1817 int i;
733e3ef0 1818 int ret = -1;
a17a75e2 1819
733e3ef0 1820 mutex_lock(&vme_buses_lock);
a17a75e2 1821 for (i = 0; i < sizeof(vme_bus_numbers) * 8; i++) {
733e3ef0
MV
1822 if ((vme_bus_numbers & (1 << i)) == 0) {
1823 vme_bus_numbers |= (1 << i);
1824 bridge->num = i;
5d6abf37 1825 INIT_LIST_HEAD(&bridge->devices);
733e3ef0
MV
1826 list_add_tail(&bridge->bus_list, &vme_bus_list);
1827 ret = 0;
a17a75e2
MW
1828 break;
1829 }
1830 }
733e3ef0 1831 mutex_unlock(&vme_buses_lock);
a17a75e2 1832
733e3ef0 1833 return ret;
a17a75e2 1834}
5b93c2a2 1835EXPORT_SYMBOL(vme_register_bridge);
a17a75e2 1836
5b93c2a2 1837void vme_unregister_bridge(struct vme_bridge *bridge)
a17a75e2 1838{
5d6abf37
MV
1839 struct vme_dev *vdev;
1840 struct vme_dev *tmp;
1841
733e3ef0
MV
1842 mutex_lock(&vme_buses_lock);
1843 vme_bus_numbers &= ~(1 << bridge->num);
5d6abf37
MV
1844 list_for_each_entry_safe(vdev, tmp, &bridge->devices, bridge_list) {
1845 list_del(&vdev->drv_list);
1846 list_del(&vdev->bridge_list);
1847 device_unregister(&vdev->dev);
1848 }
733e3ef0
MV
1849 list_del(&bridge->bus_list);
1850 mutex_unlock(&vme_buses_lock);
a17a75e2 1851}
5d6abf37 1852EXPORT_SYMBOL(vme_unregister_bridge);
a17a75e2 1853
5d6abf37
MV
1854/* - Driver Registration --------------------------------------------------- */
1855
1856static int __vme_register_driver_bus(struct vme_driver *drv,
1857 struct vme_bridge *bridge, unsigned int ndevs)
1858{
1859 int err;
1860 unsigned int i;
1861 struct vme_dev *vdev;
1862 struct vme_dev *tmp;
1863
1864 for (i = 0; i < ndevs; i++) {
1ff0a19c 1865 vdev = kzalloc(sizeof(*vdev), GFP_KERNEL);
5d6abf37
MV
1866 if (!vdev) {
1867 err = -ENOMEM;
f6c39d4f
MV
1868 goto err_devalloc;
1869 }
a916a391 1870 vdev->num = i;
8f966dc4 1871 vdev->bridge = bridge;
5d6abf37
MV
1872 vdev->dev.platform_data = drv;
1873 vdev->dev.release = vme_dev_release;
8f966dc4
MV
1874 vdev->dev.parent = bridge->parent;
1875 vdev->dev.bus = &vme_bus_type;
a916a391
MV
1876 dev_set_name(&vdev->dev, "%s.%u-%u", drv->name, bridge->num,
1877 vdev->num);
a17a75e2 1878
5d6abf37
MV
1879 err = device_register(&vdev->dev);
1880 if (err)
a17a75e2 1881 goto err_reg;
a17a75e2 1882
5d6abf37
MV
1883 if (vdev->dev.platform_data) {
1884 list_add_tail(&vdev->drv_list, &drv->devices);
1885 list_add_tail(&vdev->bridge_list, &bridge->devices);
1886 } else
1887 device_unregister(&vdev->dev);
1888 }
1889 return 0;
a17a75e2 1890
a17a75e2 1891err_reg:
def1820d 1892 put_device(&vdev->dev);
8f966dc4 1893 kfree(vdev);
f6c39d4f 1894err_devalloc:
5d6abf37
MV
1895 list_for_each_entry_safe(vdev, tmp, &drv->devices, drv_list) {
1896 list_del(&vdev->drv_list);
1897 list_del(&vdev->bridge_list);
8f966dc4 1898 device_unregister(&vdev->dev);
a17a75e2 1899 }
5d6abf37 1900 return err;
a17a75e2 1901}
a17a75e2 1902
5d6abf37 1903static int __vme_register_driver(struct vme_driver *drv, unsigned int ndevs)
a17a75e2 1904{
5d6abf37
MV
1905 struct vme_bridge *bridge;
1906 int err = 0;
a17a75e2 1907
5d6abf37
MV
1908 mutex_lock(&vme_buses_lock);
1909 list_for_each_entry(bridge, &vme_bus_list, bus_list) {
1910 /*
1911 * This cannot cause trouble as we already have vme_buses_lock
1912 * and if the bridge is removed, it will have to go through
1913 * vme_unregister_bridge() to do it (which calls remove() on
1914 * the bridge which in turn tries to acquire vme_buses_lock and
c26f6112 1915 * will have to wait).
5d6abf37
MV
1916 */
1917 err = __vme_register_driver_bus(drv, bridge, ndevs);
1918 if (err)
1919 break;
a17a75e2 1920 }
5d6abf37
MV
1921 mutex_unlock(&vme_buses_lock);
1922 return err;
a17a75e2 1923}
a17a75e2 1924
b5bc980a
MW
1925/**
1926 * vme_register_driver - Register a VME driver
1927 * @drv: Pointer to VME driver structure to register.
1928 * @ndevs: Maximum number of devices to allow to be enumerated.
1929 *
1930 * Register a VME device driver with the VME subsystem.
1931 *
1932 * Return: Zero on success, error value on registration failure.
1933 */
5d6abf37 1934int vme_register_driver(struct vme_driver *drv, unsigned int ndevs)
a17a75e2 1935{
5d6abf37
MV
1936 int err;
1937
a17a75e2
MW
1938 drv->driver.name = drv->name;
1939 drv->driver.bus = &vme_bus_type;
5d6abf37
MV
1940 INIT_LIST_HEAD(&drv->devices);
1941
1942 err = driver_register(&drv->driver);
1943 if (err)
1944 return err;
a17a75e2 1945
5d6abf37
MV
1946 err = __vme_register_driver(drv, ndevs);
1947 if (err)
1948 driver_unregister(&drv->driver);
1949
1950 return err;
a17a75e2
MW
1951}
1952EXPORT_SYMBOL(vme_register_driver);
1953
b5bc980a
MW
1954/**
1955 * vme_unregister_driver - Unregister a VME driver
1956 * @drv: Pointer to VME driver structure to unregister.
1957 *
1958 * Unregister a VME device driver from the VME subsystem.
1959 */
ead1f3e3 1960void vme_unregister_driver(struct vme_driver *drv)
a17a75e2 1961{
5d6abf37
MV
1962 struct vme_dev *dev, *dev_tmp;
1963
1964 mutex_lock(&vme_buses_lock);
1965 list_for_each_entry_safe(dev, dev_tmp, &drv->devices, drv_list) {
1966 list_del(&dev->drv_list);
1967 list_del(&dev->bridge_list);
1968 device_unregister(&dev->dev);
1969 }
1970 mutex_unlock(&vme_buses_lock);
1971
a17a75e2
MW
1972 driver_unregister(&drv->driver);
1973}
1974EXPORT_SYMBOL(vme_unregister_driver);
1975
1976/* - Bus Registration ------------------------------------------------------ */
1977
a17a75e2
MW
1978static int vme_bus_match(struct device *dev, struct device_driver *drv)
1979{
5d6abf37 1980 struct vme_driver *vme_drv;
a17a75e2 1981
5d6abf37 1982 vme_drv = container_of(drv, struct vme_driver, driver);
a17a75e2 1983
5d6abf37
MV
1984 if (dev->platform_data == vme_drv) {
1985 struct vme_dev *vdev = dev_to_vme_dev(dev);
a17a75e2 1986
5d6abf37
MV
1987 if (vme_drv->match && vme_drv->match(vdev))
1988 return 1;
a37b0dad 1989
5d6abf37 1990 dev->platform_data = NULL;
a17a75e2 1991 }
a17a75e2
MW
1992 return 0;
1993}
1994
1995static int vme_bus_probe(struct device *dev)
1996{
5d6abf37
MV
1997 struct vme_driver *driver;
1998 struct vme_dev *vdev = dev_to_vme_dev(dev);
a17a75e2 1999
5d6abf37 2000 driver = dev->platform_data;
61282c04 2001 if (driver->probe)
8af70cd9 2002 return driver->probe(vdev);
a17a75e2 2003
8af70cd9 2004 return -ENODEV;
a17a75e2
MW
2005}
2006
9797484b
SB
2007static int vme_bus_remove(struct device *dev)
2008{
9797484b
SB
2009 struct vme_driver *driver;
2010 struct vme_dev *vdev = dev_to_vme_dev(dev);
2011
2012 driver = dev->platform_data;
61282c04 2013 if (driver->remove)
8af70cd9 2014 return driver->remove(vdev);
9797484b 2015
8af70cd9 2016 return -ENODEV;
9797484b
SB
2017}
2018
a17a75e2
MW
2019struct bus_type vme_bus_type = {
2020 .name = "vme",
2021 .match = vme_bus_match,
2022 .probe = vme_bus_probe,
9797484b 2023 .remove = vme_bus_remove,
a17a75e2
MW
2024};
2025EXPORT_SYMBOL(vme_bus_type);
2026
ead1f3e3 2027static int __init vme_init(void)
a17a75e2
MW
2028{
2029 return bus_register(&vme_bus_type);
2030}
c326cc02 2031subsys_initcall(vme_init);