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