Merge branch 'next' into for-linus
[GitHub/mt8127/android_kernel_alcatel_ttab.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
a17a75e2
MW
16#include <linux/module.h>
17#include <linux/moduleparam.h>
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
MW
42static void __exit vme_exit(void);
43static int __init vme_init(void);
a17a75e2 44
8f966dc4 45static struct vme_dev *dev_to_vme_dev(struct device *dev)
a17a75e2 46{
8f966dc4 47 return container_of(dev, struct vme_dev, dev);
a17a75e2
MW
48}
49
50/*
51 * Find the bridge that the resource is associated with.
52 */
53static struct vme_bridge *find_bridge(struct vme_resource *resource)
54{
55 /* Get list to search */
56 switch (resource->type) {
57 case VME_MASTER:
58 return list_entry(resource->entry, struct vme_master_resource,
59 list)->parent;
60 break;
61 case VME_SLAVE:
62 return list_entry(resource->entry, struct vme_slave_resource,
63 list)->parent;
64 break;
65 case VME_DMA:
66 return list_entry(resource->entry, struct vme_dma_resource,
67 list)->parent;
68 break;
42fb5031
MW
69 case VME_LM:
70 return list_entry(resource->entry, struct vme_lm_resource,
71 list)->parent;
72 break;
a17a75e2
MW
73 default:
74 printk(KERN_ERR "Unknown resource type\n");
75 return NULL;
76 break;
77 }
78}
79
80/*
81 * Allocate a contiguous block of memory for use by the driver. This is used to
82 * create the buffers for the slave windows.
a17a75e2 83 */
ead1f3e3 84void *vme_alloc_consistent(struct vme_resource *resource, size_t size,
a17a75e2
MW
85 dma_addr_t *dma)
86{
87 struct vme_bridge *bridge;
a17a75e2 88
ead1f3e3
MW
89 if (resource == NULL) {
90 printk(KERN_ERR "No resource\n");
a17a75e2
MW
91 return NULL;
92 }
93
94 bridge = find_bridge(resource);
ead1f3e3
MW
95 if (bridge == NULL) {
96 printk(KERN_ERR "Can't find bridge\n");
a17a75e2
MW
97 return NULL;
98 }
99
a17a75e2 100 if (bridge->parent == NULL) {
25958ce3 101 printk(KERN_ERR "Dev entry NULL for bridge %s\n", bridge->name);
7f58f025
MV
102 return NULL;
103 }
104
105 if (bridge->alloc_consistent == NULL) {
25958ce3
GKH
106 printk(KERN_ERR "alloc_consistent not supported by bridge %s\n",
107 bridge->name);
a17a75e2
MW
108 return NULL;
109 }
a17a75e2 110
7f58f025 111 return bridge->alloc_consistent(bridge->parent, size, dma);
a17a75e2
MW
112}
113EXPORT_SYMBOL(vme_alloc_consistent);
114
115/*
116 * Free previously allocated contiguous block of memory.
a17a75e2
MW
117 */
118void vme_free_consistent(struct vme_resource *resource, size_t size,
119 void *vaddr, dma_addr_t dma)
120{
121 struct vme_bridge *bridge;
a17a75e2 122
ead1f3e3
MW
123 if (resource == NULL) {
124 printk(KERN_ERR "No resource\n");
a17a75e2
MW
125 return;
126 }
127
128 bridge = find_bridge(resource);
ead1f3e3
MW
129 if (bridge == NULL) {
130 printk(KERN_ERR "Can't find bridge\n");
a17a75e2
MW
131 return;
132 }
133
7f58f025 134 if (bridge->parent == NULL) {
25958ce3 135 printk(KERN_ERR "Dev entry NULL for bridge %s\n", bridge->name);
7f58f025
MV
136 return;
137 }
138
139 if (bridge->free_consistent == NULL) {
25958ce3
GKH
140 printk(KERN_ERR "free_consistent not supported by bridge %s\n",
141 bridge->name);
7f58f025
MV
142 return;
143 }
a17a75e2 144
7f58f025 145 bridge->free_consistent(bridge->parent, size, vaddr, dma);
a17a75e2
MW
146}
147EXPORT_SYMBOL(vme_free_consistent);
148
149size_t vme_get_size(struct vme_resource *resource)
150{
151 int enabled, retval;
152 unsigned long long base, size;
153 dma_addr_t buf_base;
6af04b06 154 u32 aspace, cycle, dwidth;
a17a75e2
MW
155
156 switch (resource->type) {
157 case VME_MASTER:
158 retval = vme_master_get(resource, &enabled, &base, &size,
159 &aspace, &cycle, &dwidth);
160
161 return size;
162 break;
163 case VME_SLAVE:
164 retval = vme_slave_get(resource, &enabled, &base, &size,
165 &buf_base, &aspace, &cycle);
166
167 return size;
168 break;
169 case VME_DMA:
170 return 0;
171 break;
172 default:
173 printk(KERN_ERR "Unknown resource type\n");
174 return 0;
175 break;
176 }
177}
178EXPORT_SYMBOL(vme_get_size);
179
6af04b06 180static int vme_check_window(u32 aspace, unsigned long long vme_base,
a17a75e2
MW
181 unsigned long long size)
182{
183 int retval = 0;
184
185 switch (aspace) {
186 case VME_A16:
187 if (((vme_base + size) > VME_A16_MAX) ||
188 (vme_base > VME_A16_MAX))
189 retval = -EFAULT;
190 break;
191 case VME_A24:
192 if (((vme_base + size) > VME_A24_MAX) ||
193 (vme_base > VME_A24_MAX))
194 retval = -EFAULT;
195 break;
196 case VME_A32:
197 if (((vme_base + size) > VME_A32_MAX) ||
198 (vme_base > VME_A32_MAX))
199 retval = -EFAULT;
200 break;
201 case VME_A64:
202 /*
203 * Any value held in an unsigned long long can be used as the
204 * base
205 */
206 break;
207 case VME_CRCSR:
208 if (((vme_base + size) > VME_CRCSR_MAX) ||
209 (vme_base > VME_CRCSR_MAX))
210 retval = -EFAULT;
211 break;
212 case VME_USER1:
213 case VME_USER2:
214 case VME_USER3:
215 case VME_USER4:
216 /* User Defined */
217 break;
218 default:
ead1f3e3 219 printk(KERN_ERR "Invalid address space\n");
a17a75e2
MW
220 retval = -EINVAL;
221 break;
222 }
223
224 return retval;
225}
226
227/*
228 * Request a slave image with specific attributes, return some unique
229 * identifier.
230 */
6af04b06
MW
231struct vme_resource *vme_slave_request(struct vme_dev *vdev, u32 address,
232 u32 cycle)
a17a75e2
MW
233{
234 struct vme_bridge *bridge;
235 struct list_head *slave_pos = NULL;
236 struct vme_slave_resource *allocated_image = NULL;
237 struct vme_slave_resource *slave_image = NULL;
238 struct vme_resource *resource = NULL;
239
8f966dc4 240 bridge = vdev->bridge;
a17a75e2
MW
241 if (bridge == NULL) {
242 printk(KERN_ERR "Can't find VME bus\n");
243 goto err_bus;
244 }
245
246 /* Loop through slave resources */
886953e9 247 list_for_each(slave_pos, &bridge->slave_resources) {
a17a75e2
MW
248 slave_image = list_entry(slave_pos,
249 struct vme_slave_resource, list);
250
251 if (slave_image == NULL) {
ead1f3e3 252 printk(KERN_ERR "Registered NULL Slave resource\n");
a17a75e2
MW
253 continue;
254 }
255
256 /* Find an unlocked and compatible image */
886953e9 257 mutex_lock(&slave_image->mtx);
ead1f3e3 258 if (((slave_image->address_attr & address) == address) &&
a17a75e2
MW
259 ((slave_image->cycle_attr & cycle) == cycle) &&
260 (slave_image->locked == 0)) {
261
262 slave_image->locked = 1;
886953e9 263 mutex_unlock(&slave_image->mtx);
a17a75e2
MW
264 allocated_image = slave_image;
265 break;
266 }
886953e9 267 mutex_unlock(&slave_image->mtx);
a17a75e2
MW
268 }
269
270 /* No free image */
271 if (allocated_image == NULL)
272 goto err_image;
273
274 resource = kmalloc(sizeof(struct vme_resource), GFP_KERNEL);
275 if (resource == NULL) {
276 printk(KERN_WARNING "Unable to allocate resource structure\n");
277 goto err_alloc;
278 }
279 resource->type = VME_SLAVE;
886953e9 280 resource->entry = &allocated_image->list;
a17a75e2
MW
281
282 return resource;
283
284err_alloc:
285 /* Unlock image */
886953e9 286 mutex_lock(&slave_image->mtx);
a17a75e2 287 slave_image->locked = 0;
886953e9 288 mutex_unlock(&slave_image->mtx);
a17a75e2
MW
289err_image:
290err_bus:
291 return NULL;
292}
293EXPORT_SYMBOL(vme_slave_request);
294
ead1f3e3 295int vme_slave_set(struct vme_resource *resource, int enabled,
a17a75e2 296 unsigned long long vme_base, unsigned long long size,
6af04b06 297 dma_addr_t buf_base, u32 aspace, u32 cycle)
a17a75e2
MW
298{
299 struct vme_bridge *bridge = find_bridge(resource);
300 struct vme_slave_resource *image;
301 int retval;
302
303 if (resource->type != VME_SLAVE) {
ead1f3e3 304 printk(KERN_ERR "Not a slave resource\n");
a17a75e2
MW
305 return -EINVAL;
306 }
307
308 image = list_entry(resource->entry, struct vme_slave_resource, list);
309
310 if (bridge->slave_set == NULL) {
ead1f3e3 311 printk(KERN_ERR "Function not supported\n");
a17a75e2
MW
312 return -ENOSYS;
313 }
314
ead1f3e3 315 if (!(((image->address_attr & aspace) == aspace) &&
a17a75e2 316 ((image->cycle_attr & cycle) == cycle))) {
ead1f3e3 317 printk(KERN_ERR "Invalid attributes\n");
a17a75e2
MW
318 return -EINVAL;
319 }
320
321 retval = vme_check_window(aspace, vme_base, size);
ead1f3e3 322 if (retval)
a17a75e2
MW
323 return retval;
324
325 return bridge->slave_set(image, enabled, vme_base, size, buf_base,
326 aspace, cycle);
327}
328EXPORT_SYMBOL(vme_slave_set);
329
ead1f3e3 330int vme_slave_get(struct vme_resource *resource, int *enabled,
a17a75e2 331 unsigned long long *vme_base, unsigned long long *size,
6af04b06 332 dma_addr_t *buf_base, u32 *aspace, u32 *cycle)
a17a75e2
MW
333{
334 struct vme_bridge *bridge = find_bridge(resource);
335 struct vme_slave_resource *image;
336
337 if (resource->type != VME_SLAVE) {
ead1f3e3 338 printk(KERN_ERR "Not a slave resource\n");
a17a75e2
MW
339 return -EINVAL;
340 }
341
342 image = list_entry(resource->entry, struct vme_slave_resource, list);
343
51a569f7 344 if (bridge->slave_get == NULL) {
ead1f3e3 345 printk(KERN_ERR "vme_slave_get not supported\n");
a17a75e2
MW
346 return -EINVAL;
347 }
348
349 return bridge->slave_get(image, enabled, vme_base, size, buf_base,
350 aspace, cycle);
351}
352EXPORT_SYMBOL(vme_slave_get);
353
354void vme_slave_free(struct vme_resource *resource)
355{
356 struct vme_slave_resource *slave_image;
357
358 if (resource->type != VME_SLAVE) {
ead1f3e3 359 printk(KERN_ERR "Not a slave resource\n");
a17a75e2
MW
360 return;
361 }
362
363 slave_image = list_entry(resource->entry, struct vme_slave_resource,
364 list);
365 if (slave_image == NULL) {
ead1f3e3 366 printk(KERN_ERR "Can't find slave resource\n");
a17a75e2
MW
367 return;
368 }
369
370 /* Unlock image */
886953e9 371 mutex_lock(&slave_image->mtx);
a17a75e2
MW
372 if (slave_image->locked == 0)
373 printk(KERN_ERR "Image is already free\n");
374
375 slave_image->locked = 0;
886953e9 376 mutex_unlock(&slave_image->mtx);
a17a75e2
MW
377
378 /* Free up resource memory */
379 kfree(resource);
380}
381EXPORT_SYMBOL(vme_slave_free);
382
383/*
384 * Request a master image with specific attributes, return some unique
385 * identifier.
386 */
6af04b06
MW
387struct vme_resource *vme_master_request(struct vme_dev *vdev, u32 address,
388 u32 cycle, u32 dwidth)
a17a75e2
MW
389{
390 struct vme_bridge *bridge;
391 struct list_head *master_pos = NULL;
392 struct vme_master_resource *allocated_image = NULL;
393 struct vme_master_resource *master_image = NULL;
394 struct vme_resource *resource = NULL;
395
8f966dc4 396 bridge = vdev->bridge;
a17a75e2
MW
397 if (bridge == NULL) {
398 printk(KERN_ERR "Can't find VME bus\n");
399 goto err_bus;
400 }
401
402 /* Loop through master resources */
886953e9 403 list_for_each(master_pos, &bridge->master_resources) {
a17a75e2
MW
404 master_image = list_entry(master_pos,
405 struct vme_master_resource, list);
406
407 if (master_image == NULL) {
408 printk(KERN_WARNING "Registered NULL master resource\n");
409 continue;
410 }
411
412 /* Find an unlocked and compatible image */
886953e9 413 spin_lock(&master_image->lock);
ead1f3e3 414 if (((master_image->address_attr & address) == address) &&
a17a75e2
MW
415 ((master_image->cycle_attr & cycle) == cycle) &&
416 ((master_image->width_attr & dwidth) == dwidth) &&
417 (master_image->locked == 0)) {
418
419 master_image->locked = 1;
886953e9 420 spin_unlock(&master_image->lock);
a17a75e2
MW
421 allocated_image = master_image;
422 break;
423 }
886953e9 424 spin_unlock(&master_image->lock);
a17a75e2
MW
425 }
426
427 /* Check to see if we found a resource */
428 if (allocated_image == NULL) {
429 printk(KERN_ERR "Can't find a suitable resource\n");
430 goto err_image;
431 }
432
433 resource = kmalloc(sizeof(struct vme_resource), GFP_KERNEL);
434 if (resource == NULL) {
435 printk(KERN_ERR "Unable to allocate resource structure\n");
436 goto err_alloc;
437 }
438 resource->type = VME_MASTER;
886953e9 439 resource->entry = &allocated_image->list;
a17a75e2
MW
440
441 return resource;
442
a17a75e2
MW
443err_alloc:
444 /* Unlock image */
886953e9 445 spin_lock(&master_image->lock);
a17a75e2 446 master_image->locked = 0;
886953e9 447 spin_unlock(&master_image->lock);
a17a75e2
MW
448err_image:
449err_bus:
450 return NULL;
451}
452EXPORT_SYMBOL(vme_master_request);
453
ead1f3e3 454int vme_master_set(struct vme_resource *resource, int enabled,
6af04b06
MW
455 unsigned long long vme_base, unsigned long long size, u32 aspace,
456 u32 cycle, u32 dwidth)
a17a75e2
MW
457{
458 struct vme_bridge *bridge = find_bridge(resource);
459 struct vme_master_resource *image;
460 int retval;
461
462 if (resource->type != VME_MASTER) {
ead1f3e3 463 printk(KERN_ERR "Not a master resource\n");
a17a75e2
MW
464 return -EINVAL;
465 }
466
467 image = list_entry(resource->entry, struct vme_master_resource, list);
468
469 if (bridge->master_set == NULL) {
ead1f3e3 470 printk(KERN_WARNING "vme_master_set not supported\n");
a17a75e2
MW
471 return -EINVAL;
472 }
473
ead1f3e3 474 if (!(((image->address_attr & aspace) == aspace) &&
a17a75e2
MW
475 ((image->cycle_attr & cycle) == cycle) &&
476 ((image->width_attr & dwidth) == dwidth))) {
ead1f3e3 477 printk(KERN_WARNING "Invalid attributes\n");
a17a75e2
MW
478 return -EINVAL;
479 }
480
481 retval = vme_check_window(aspace, vme_base, size);
ead1f3e3 482 if (retval)
a17a75e2
MW
483 return retval;
484
485 return bridge->master_set(image, enabled, vme_base, size, aspace,
486 cycle, dwidth);
487}
488EXPORT_SYMBOL(vme_master_set);
489
ead1f3e3 490int vme_master_get(struct vme_resource *resource, int *enabled,
6af04b06
MW
491 unsigned long long *vme_base, unsigned long long *size, u32 *aspace,
492 u32 *cycle, u32 *dwidth)
a17a75e2
MW
493{
494 struct vme_bridge *bridge = find_bridge(resource);
495 struct vme_master_resource *image;
496
497 if (resource->type != VME_MASTER) {
ead1f3e3 498 printk(KERN_ERR "Not a master resource\n");
a17a75e2
MW
499 return -EINVAL;
500 }
501
502 image = list_entry(resource->entry, struct vme_master_resource, list);
503
51a569f7 504 if (bridge->master_get == NULL) {
ead1f3e3 505 printk(KERN_WARNING "vme_master_set not supported\n");
a17a75e2
MW
506 return -EINVAL;
507 }
508
509 return bridge->master_get(image, enabled, vme_base, size, aspace,
510 cycle, dwidth);
511}
512EXPORT_SYMBOL(vme_master_get);
513
514/*
515 * Read data out of VME space into a buffer.
516 */
ead1f3e3 517ssize_t vme_master_read(struct vme_resource *resource, void *buf, size_t count,
a17a75e2
MW
518 loff_t offset)
519{
520 struct vme_bridge *bridge = find_bridge(resource);
521 struct vme_master_resource *image;
522 size_t length;
523
524 if (bridge->master_read == NULL) {
ead1f3e3 525 printk(KERN_WARNING "Reading from resource not supported\n");
a17a75e2
MW
526 return -EINVAL;
527 }
528
529 if (resource->type != VME_MASTER) {
ead1f3e3 530 printk(KERN_ERR "Not a master resource\n");
a17a75e2
MW
531 return -EINVAL;
532 }
533
534 image = list_entry(resource->entry, struct vme_master_resource, list);
535
536 length = vme_get_size(resource);
537
538 if (offset > length) {
ead1f3e3 539 printk(KERN_WARNING "Invalid Offset\n");
a17a75e2
MW
540 return -EFAULT;
541 }
542
543 if ((offset + count) > length)
544 count = length - offset;
545
546 return bridge->master_read(image, buf, count, offset);
547
548}
549EXPORT_SYMBOL(vme_master_read);
550
551/*
552 * Write data out to VME space from a buffer.
553 */
ead1f3e3 554ssize_t vme_master_write(struct vme_resource *resource, void *buf,
a17a75e2
MW
555 size_t count, loff_t offset)
556{
557 struct vme_bridge *bridge = find_bridge(resource);
558 struct vme_master_resource *image;
559 size_t length;
560
561 if (bridge->master_write == NULL) {
ead1f3e3 562 printk(KERN_WARNING "Writing to resource not supported\n");
a17a75e2
MW
563 return -EINVAL;
564 }
565
566 if (resource->type != VME_MASTER) {
ead1f3e3 567 printk(KERN_ERR "Not a master resource\n");
a17a75e2
MW
568 return -EINVAL;
569 }
570
571 image = list_entry(resource->entry, struct vme_master_resource, list);
572
573 length = vme_get_size(resource);
574
575 if (offset > length) {
ead1f3e3 576 printk(KERN_WARNING "Invalid Offset\n");
a17a75e2
MW
577 return -EFAULT;
578 }
579
580 if ((offset + count) > length)
581 count = length - offset;
582
583 return bridge->master_write(image, buf, count, offset);
584}
585EXPORT_SYMBOL(vme_master_write);
586
587/*
588 * Perform RMW cycle to provided location.
589 */
ead1f3e3 590unsigned int vme_master_rmw(struct vme_resource *resource, unsigned int mask,
a17a75e2
MW
591 unsigned int compare, unsigned int swap, loff_t offset)
592{
593 struct vme_bridge *bridge = find_bridge(resource);
594 struct vme_master_resource *image;
595
596 if (bridge->master_rmw == NULL) {
ead1f3e3 597 printk(KERN_WARNING "Writing to resource not supported\n");
a17a75e2
MW
598 return -EINVAL;
599 }
600
601 if (resource->type != VME_MASTER) {
ead1f3e3 602 printk(KERN_ERR "Not a master resource\n");
a17a75e2
MW
603 return -EINVAL;
604 }
605
606 image = list_entry(resource->entry, struct vme_master_resource, list);
607
608 return bridge->master_rmw(image, mask, compare, swap, offset);
609}
610EXPORT_SYMBOL(vme_master_rmw);
611
612void vme_master_free(struct vme_resource *resource)
613{
614 struct vme_master_resource *master_image;
615
616 if (resource->type != VME_MASTER) {
ead1f3e3 617 printk(KERN_ERR "Not a master resource\n");
a17a75e2
MW
618 return;
619 }
620
621 master_image = list_entry(resource->entry, struct vme_master_resource,
622 list);
623 if (master_image == NULL) {
ead1f3e3 624 printk(KERN_ERR "Can't find master resource\n");
a17a75e2
MW
625 return;
626 }
627
628 /* Unlock image */
886953e9 629 spin_lock(&master_image->lock);
a17a75e2
MW
630 if (master_image->locked == 0)
631 printk(KERN_ERR "Image is already free\n");
632
633 master_image->locked = 0;
886953e9 634 spin_unlock(&master_image->lock);
a17a75e2
MW
635
636 /* Free up resource memory */
637 kfree(resource);
638}
639EXPORT_SYMBOL(vme_master_free);
640
641/*
642 * Request a DMA controller with specific attributes, return some unique
643 * identifier.
644 */
6af04b06 645struct vme_resource *vme_dma_request(struct vme_dev *vdev, u32 route)
a17a75e2
MW
646{
647 struct vme_bridge *bridge;
648 struct list_head *dma_pos = NULL;
649 struct vme_dma_resource *allocated_ctrlr = NULL;
650 struct vme_dma_resource *dma_ctrlr = NULL;
651 struct vme_resource *resource = NULL;
652
653 /* XXX Not checking resource attributes */
654 printk(KERN_ERR "No VME resource Attribute tests done\n");
655
8f966dc4 656 bridge = vdev->bridge;
a17a75e2
MW
657 if (bridge == NULL) {
658 printk(KERN_ERR "Can't find VME bus\n");
659 goto err_bus;
660 }
661
662 /* Loop through DMA resources */
886953e9 663 list_for_each(dma_pos, &bridge->dma_resources) {
a17a75e2
MW
664 dma_ctrlr = list_entry(dma_pos,
665 struct vme_dma_resource, list);
666
667 if (dma_ctrlr == NULL) {
ead1f3e3 668 printk(KERN_ERR "Registered NULL DMA resource\n");
a17a75e2
MW
669 continue;
670 }
671
4f723df4 672 /* Find an unlocked and compatible controller */
886953e9 673 mutex_lock(&dma_ctrlr->mtx);
4f723df4
MW
674 if (((dma_ctrlr->route_attr & route) == route) &&
675 (dma_ctrlr->locked == 0)) {
676
a17a75e2 677 dma_ctrlr->locked = 1;
886953e9 678 mutex_unlock(&dma_ctrlr->mtx);
a17a75e2
MW
679 allocated_ctrlr = dma_ctrlr;
680 break;
681 }
886953e9 682 mutex_unlock(&dma_ctrlr->mtx);
a17a75e2
MW
683 }
684
685 /* Check to see if we found a resource */
686 if (allocated_ctrlr == NULL)
687 goto err_ctrlr;
688
689 resource = kmalloc(sizeof(struct vme_resource), GFP_KERNEL);
690 if (resource == NULL) {
691 printk(KERN_WARNING "Unable to allocate resource structure\n");
692 goto err_alloc;
693 }
694 resource->type = VME_DMA;
886953e9 695 resource->entry = &allocated_ctrlr->list;
a17a75e2
MW
696
697 return resource;
698
699err_alloc:
700 /* Unlock image */
886953e9 701 mutex_lock(&dma_ctrlr->mtx);
a17a75e2 702 dma_ctrlr->locked = 0;
886953e9 703 mutex_unlock(&dma_ctrlr->mtx);
a17a75e2
MW
704err_ctrlr:
705err_bus:
706 return NULL;
707}
58e50798 708EXPORT_SYMBOL(vme_dma_request);
a17a75e2
MW
709
710/*
711 * Start new list
712 */
713struct vme_dma_list *vme_new_dma_list(struct vme_resource *resource)
714{
715 struct vme_dma_resource *ctrlr;
716 struct vme_dma_list *dma_list;
717
718 if (resource->type != VME_DMA) {
ead1f3e3 719 printk(KERN_ERR "Not a DMA resource\n");
a17a75e2
MW
720 return NULL;
721 }
722
723 ctrlr = list_entry(resource->entry, struct vme_dma_resource, list);
724
ead1f3e3
MW
725 dma_list = kmalloc(sizeof(struct vme_dma_list), GFP_KERNEL);
726 if (dma_list == NULL) {
727 printk(KERN_ERR "Unable to allocate memory for new dma list\n");
a17a75e2
MW
728 return NULL;
729 }
886953e9 730 INIT_LIST_HEAD(&dma_list->entries);
a17a75e2 731 dma_list->parent = ctrlr;
886953e9 732 mutex_init(&dma_list->mtx);
a17a75e2
MW
733
734 return dma_list;
735}
736EXPORT_SYMBOL(vme_new_dma_list);
737
738/*
739 * Create "Pattern" type attributes
740 */
6af04b06 741struct vme_dma_attr *vme_dma_pattern_attribute(u32 pattern, u32 type)
a17a75e2
MW
742{
743 struct vme_dma_attr *attributes;
744 struct vme_dma_pattern *pattern_attr;
745
ead1f3e3
MW
746 attributes = kmalloc(sizeof(struct vme_dma_attr), GFP_KERNEL);
747 if (attributes == NULL) {
25958ce3 748 printk(KERN_ERR "Unable to allocate memory for attributes structure\n");
a17a75e2
MW
749 goto err_attr;
750 }
751
ead1f3e3
MW
752 pattern_attr = kmalloc(sizeof(struct vme_dma_pattern), GFP_KERNEL);
753 if (pattern_attr == NULL) {
25958ce3 754 printk(KERN_ERR "Unable to allocate memory for pattern attributes\n");
a17a75e2
MW
755 goto err_pat;
756 }
757
758 attributes->type = VME_DMA_PATTERN;
759 attributes->private = (void *)pattern_attr;
760
761 pattern_attr->pattern = pattern;
762 pattern_attr->type = type;
763
764 return attributes;
765
a17a75e2
MW
766err_pat:
767 kfree(attributes);
768err_attr:
769 return NULL;
770}
771EXPORT_SYMBOL(vme_dma_pattern_attribute);
772
773/*
774 * Create "PCI" type attributes
775 */
776struct vme_dma_attr *vme_dma_pci_attribute(dma_addr_t address)
777{
778 struct vme_dma_attr *attributes;
779 struct vme_dma_pci *pci_attr;
780
781 /* XXX Run some sanity checks here */
782
ead1f3e3
MW
783 attributes = kmalloc(sizeof(struct vme_dma_attr), GFP_KERNEL);
784 if (attributes == NULL) {
25958ce3 785 printk(KERN_ERR "Unable to allocate memory for attributes structure\n");
a17a75e2
MW
786 goto err_attr;
787 }
788
ead1f3e3
MW
789 pci_attr = kmalloc(sizeof(struct vme_dma_pci), GFP_KERNEL);
790 if (pci_attr == NULL) {
25958ce3 791 printk(KERN_ERR "Unable to allocate memory for pci attributes\n");
a17a75e2
MW
792 goto err_pci;
793 }
794
795
796
797 attributes->type = VME_DMA_PCI;
798 attributes->private = (void *)pci_attr;
799
800 pci_attr->address = address;
801
802 return attributes;
803
a17a75e2
MW
804err_pci:
805 kfree(attributes);
806err_attr:
807 return NULL;
808}
809EXPORT_SYMBOL(vme_dma_pci_attribute);
810
811/*
812 * Create "VME" type attributes
813 */
814struct vme_dma_attr *vme_dma_vme_attribute(unsigned long long address,
6af04b06 815 u32 aspace, u32 cycle, u32 dwidth)
a17a75e2
MW
816{
817 struct vme_dma_attr *attributes;
818 struct vme_dma_vme *vme_attr;
819
ead1f3e3 820 attributes = kmalloc(
a17a75e2 821 sizeof(struct vme_dma_attr), GFP_KERNEL);
ead1f3e3 822 if (attributes == NULL) {
25958ce3 823 printk(KERN_ERR "Unable to allocate memory for attributes structure\n");
a17a75e2
MW
824 goto err_attr;
825 }
826
ead1f3e3
MW
827 vme_attr = kmalloc(sizeof(struct vme_dma_vme), GFP_KERNEL);
828 if (vme_attr == NULL) {
25958ce3 829 printk(KERN_ERR "Unable to allocate memory for vme attributes\n");
a17a75e2
MW
830 goto err_vme;
831 }
832
833 attributes->type = VME_DMA_VME;
834 attributes->private = (void *)vme_attr;
835
836 vme_attr->address = address;
837 vme_attr->aspace = aspace;
838 vme_attr->cycle = cycle;
839 vme_attr->dwidth = dwidth;
840
841 return attributes;
842
a17a75e2
MW
843err_vme:
844 kfree(attributes);
845err_attr:
846 return NULL;
847}
848EXPORT_SYMBOL(vme_dma_vme_attribute);
849
850/*
851 * Free attribute
852 */
853void vme_dma_free_attribute(struct vme_dma_attr *attributes)
854{
855 kfree(attributes->private);
856 kfree(attributes);
857}
858EXPORT_SYMBOL(vme_dma_free_attribute);
859
860int vme_dma_list_add(struct vme_dma_list *list, struct vme_dma_attr *src,
861 struct vme_dma_attr *dest, size_t count)
862{
863 struct vme_bridge *bridge = list->parent->parent;
864 int retval;
865
866 if (bridge->dma_list_add == NULL) {
ead1f3e3 867 printk(KERN_WARNING "Link List DMA generation not supported\n");
a17a75e2
MW
868 return -EINVAL;
869 }
870
886953e9 871 if (!mutex_trylock(&list->mtx)) {
ead1f3e3 872 printk(KERN_ERR "Link List already submitted\n");
a17a75e2
MW
873 return -EINVAL;
874 }
875
876 retval = bridge->dma_list_add(list, src, dest, count);
877
886953e9 878 mutex_unlock(&list->mtx);
a17a75e2
MW
879
880 return retval;
881}
882EXPORT_SYMBOL(vme_dma_list_add);
883
884int vme_dma_list_exec(struct vme_dma_list *list)
885{
886 struct vme_bridge *bridge = list->parent->parent;
887 int retval;
888
889 if (bridge->dma_list_exec == NULL) {
ead1f3e3 890 printk(KERN_ERR "Link List DMA execution not supported\n");
a17a75e2
MW
891 return -EINVAL;
892 }
893
886953e9 894 mutex_lock(&list->mtx);
a17a75e2
MW
895
896 retval = bridge->dma_list_exec(list);
897
886953e9 898 mutex_unlock(&list->mtx);
a17a75e2
MW
899
900 return retval;
901}
902EXPORT_SYMBOL(vme_dma_list_exec);
903
904int vme_dma_list_free(struct vme_dma_list *list)
905{
906 struct vme_bridge *bridge = list->parent->parent;
907 int retval;
908
909 if (bridge->dma_list_empty == NULL) {
ead1f3e3 910 printk(KERN_WARNING "Emptying of Link Lists not supported\n");
a17a75e2
MW
911 return -EINVAL;
912 }
913
886953e9 914 if (!mutex_trylock(&list->mtx)) {
ead1f3e3 915 printk(KERN_ERR "Link List in use\n");
a17a75e2
MW
916 return -EINVAL;
917 }
918
919 /*
920 * Empty out all of the entries from the dma list. We need to go to the
921 * low level driver as dma entries are driver specific.
922 */
923 retval = bridge->dma_list_empty(list);
924 if (retval) {
ead1f3e3 925 printk(KERN_ERR "Unable to empty link-list entries\n");
886953e9 926 mutex_unlock(&list->mtx);
a17a75e2
MW
927 return retval;
928 }
886953e9 929 mutex_unlock(&list->mtx);
a17a75e2
MW
930 kfree(list);
931
932 return retval;
933}
934EXPORT_SYMBOL(vme_dma_list_free);
935
936int vme_dma_free(struct vme_resource *resource)
937{
938 struct vme_dma_resource *ctrlr;
939
940 if (resource->type != VME_DMA) {
ead1f3e3 941 printk(KERN_ERR "Not a DMA resource\n");
a17a75e2
MW
942 return -EINVAL;
943 }
944
945 ctrlr = list_entry(resource->entry, struct vme_dma_resource, list);
946
886953e9 947 if (!mutex_trylock(&ctrlr->mtx)) {
ead1f3e3 948 printk(KERN_ERR "Resource busy, can't free\n");
a17a75e2
MW
949 return -EBUSY;
950 }
951
886953e9 952 if (!(list_empty(&ctrlr->pending) && list_empty(&ctrlr->running))) {
ead1f3e3 953 printk(KERN_WARNING "Resource still processing transfers\n");
886953e9 954 mutex_unlock(&ctrlr->mtx);
a17a75e2
MW
955 return -EBUSY;
956 }
957
958 ctrlr->locked = 0;
959
886953e9 960 mutex_unlock(&ctrlr->mtx);
a17a75e2
MW
961
962 return 0;
963}
964EXPORT_SYMBOL(vme_dma_free);
965
c813f592
MW
966void vme_irq_handler(struct vme_bridge *bridge, int level, int statid)
967{
968 void (*call)(int, int, void *);
969 void *priv_data;
970
971 call = bridge->irq[level - 1].callback[statid].func;
972 priv_data = bridge->irq[level - 1].callback[statid].priv_data;
973
974 if (call != NULL)
975 call(level, statid, priv_data);
976 else
25958ce3
GKH
977 printk(KERN_WARNING "Spurilous VME interrupt, level:%x, vector:%x\n",
978 level, statid);
c813f592
MW
979}
980EXPORT_SYMBOL(vme_irq_handler);
981
8f966dc4 982int vme_irq_request(struct vme_dev *vdev, int level, int statid,
29848ac9 983 void (*callback)(int, int, void *),
a17a75e2
MW
984 void *priv_data)
985{
986 struct vme_bridge *bridge;
987
8f966dc4 988 bridge = vdev->bridge;
a17a75e2
MW
989 if (bridge == NULL) {
990 printk(KERN_ERR "Can't find VME bus\n");
991 return -EINVAL;
992 }
993
ead1f3e3 994 if ((level < 1) || (level > 7)) {
c813f592 995 printk(KERN_ERR "Invalid interrupt level\n");
a17a75e2
MW
996 return -EINVAL;
997 }
998
c813f592
MW
999 if (bridge->irq_set == NULL) {
1000 printk(KERN_ERR "Configuring interrupts not supported\n");
a17a75e2
MW
1001 return -EINVAL;
1002 }
1003
886953e9 1004 mutex_lock(&bridge->irq_mtx);
c813f592
MW
1005
1006 if (bridge->irq[level - 1].callback[statid].func) {
886953e9 1007 mutex_unlock(&bridge->irq_mtx);
c813f592
MW
1008 printk(KERN_WARNING "VME Interrupt already taken\n");
1009 return -EBUSY;
1010 }
1011
1012 bridge->irq[level - 1].count++;
1013 bridge->irq[level - 1].callback[statid].priv_data = priv_data;
1014 bridge->irq[level - 1].callback[statid].func = callback;
1015
1016 /* Enable IRQ level */
29848ac9 1017 bridge->irq_set(bridge, level, 1, 1);
c813f592 1018
886953e9 1019 mutex_unlock(&bridge->irq_mtx);
c813f592
MW
1020
1021 return 0;
a17a75e2 1022}
c813f592 1023EXPORT_SYMBOL(vme_irq_request);
a17a75e2 1024
8f966dc4 1025void vme_irq_free(struct vme_dev *vdev, int level, int statid)
a17a75e2
MW
1026{
1027 struct vme_bridge *bridge;
1028
8f966dc4 1029 bridge = vdev->bridge;
a17a75e2
MW
1030 if (bridge == NULL) {
1031 printk(KERN_ERR "Can't find VME bus\n");
1032 return;
1033 }
1034
ead1f3e3 1035 if ((level < 1) || (level > 7)) {
c813f592 1036 printk(KERN_ERR "Invalid interrupt level\n");
a17a75e2
MW
1037 return;
1038 }
1039
c813f592
MW
1040 if (bridge->irq_set == NULL) {
1041 printk(KERN_ERR "Configuring interrupts not supported\n");
a17a75e2
MW
1042 return;
1043 }
1044
886953e9 1045 mutex_lock(&bridge->irq_mtx);
c813f592
MW
1046
1047 bridge->irq[level - 1].count--;
1048
1049 /* Disable IRQ level if no more interrupts attached at this level*/
1050 if (bridge->irq[level - 1].count == 0)
29848ac9 1051 bridge->irq_set(bridge, level, 0, 1);
c813f592
MW
1052
1053 bridge->irq[level - 1].callback[statid].func = NULL;
1054 bridge->irq[level - 1].callback[statid].priv_data = NULL;
1055
886953e9 1056 mutex_unlock(&bridge->irq_mtx);
a17a75e2 1057}
c813f592 1058EXPORT_SYMBOL(vme_irq_free);
a17a75e2 1059
8f966dc4 1060int vme_irq_generate(struct vme_dev *vdev, int level, int statid)
a17a75e2
MW
1061{
1062 struct vme_bridge *bridge;
1063
8f966dc4 1064 bridge = vdev->bridge;
a17a75e2
MW
1065 if (bridge == NULL) {
1066 printk(KERN_ERR "Can't find VME bus\n");
1067 return -EINVAL;
1068 }
1069
ead1f3e3 1070 if ((level < 1) || (level > 7)) {
a17a75e2
MW
1071 printk(KERN_WARNING "Invalid interrupt level\n");
1072 return -EINVAL;
1073 }
1074
c813f592 1075 if (bridge->irq_generate == NULL) {
ead1f3e3 1076 printk(KERN_WARNING "Interrupt generation not supported\n");
a17a75e2
MW
1077 return -EINVAL;
1078 }
1079
29848ac9 1080 return bridge->irq_generate(bridge, level, statid);
a17a75e2 1081}
c813f592 1082EXPORT_SYMBOL(vme_irq_generate);
a17a75e2 1083
42fb5031
MW
1084/*
1085 * Request the location monitor, return resource or NULL
1086 */
8f966dc4 1087struct vme_resource *vme_lm_request(struct vme_dev *vdev)
a17a75e2
MW
1088{
1089 struct vme_bridge *bridge;
42fb5031
MW
1090 struct list_head *lm_pos = NULL;
1091 struct vme_lm_resource *allocated_lm = NULL;
1092 struct vme_lm_resource *lm = NULL;
1093 struct vme_resource *resource = NULL;
a17a75e2 1094
8f966dc4 1095 bridge = vdev->bridge;
a17a75e2
MW
1096 if (bridge == NULL) {
1097 printk(KERN_ERR "Can't find VME bus\n");
42fb5031
MW
1098 goto err_bus;
1099 }
1100
1101 /* Loop through DMA resources */
886953e9 1102 list_for_each(lm_pos, &bridge->lm_resources) {
42fb5031
MW
1103 lm = list_entry(lm_pos,
1104 struct vme_lm_resource, list);
1105
1106 if (lm == NULL) {
25958ce3 1107 printk(KERN_ERR "Registered NULL Location Monitor resource\n");
42fb5031
MW
1108 continue;
1109 }
1110
1111 /* Find an unlocked controller */
886953e9 1112 mutex_lock(&lm->mtx);
42fb5031
MW
1113 if (lm->locked == 0) {
1114 lm->locked = 1;
886953e9 1115 mutex_unlock(&lm->mtx);
42fb5031
MW
1116 allocated_lm = lm;
1117 break;
1118 }
886953e9 1119 mutex_unlock(&lm->mtx);
42fb5031
MW
1120 }
1121
1122 /* Check to see if we found a resource */
1123 if (allocated_lm == NULL)
1124 goto err_lm;
1125
1126 resource = kmalloc(sizeof(struct vme_resource), GFP_KERNEL);
1127 if (resource == NULL) {
1128 printk(KERN_ERR "Unable to allocate resource structure\n");
1129 goto err_alloc;
1130 }
1131 resource->type = VME_LM;
886953e9 1132 resource->entry = &allocated_lm->list;
42fb5031
MW
1133
1134 return resource;
1135
1136err_alloc:
1137 /* Unlock image */
886953e9 1138 mutex_lock(&lm->mtx);
42fb5031 1139 lm->locked = 0;
886953e9 1140 mutex_unlock(&lm->mtx);
42fb5031
MW
1141err_lm:
1142err_bus:
1143 return NULL;
1144}
1145EXPORT_SYMBOL(vme_lm_request);
1146
1147int vme_lm_count(struct vme_resource *resource)
1148{
1149 struct vme_lm_resource *lm;
1150
1151 if (resource->type != VME_LM) {
1152 printk(KERN_ERR "Not a Location Monitor resource\n");
1153 return -EINVAL;
1154 }
1155
1156 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1157
1158 return lm->monitors;
1159}
1160EXPORT_SYMBOL(vme_lm_count);
1161
1162int vme_lm_set(struct vme_resource *resource, unsigned long long lm_base,
6af04b06 1163 u32 aspace, u32 cycle)
42fb5031
MW
1164{
1165 struct vme_bridge *bridge = find_bridge(resource);
1166 struct vme_lm_resource *lm;
1167
1168 if (resource->type != VME_LM) {
1169 printk(KERN_ERR "Not a Location Monitor resource\n");
a17a75e2
MW
1170 return -EINVAL;
1171 }
1172
42fb5031
MW
1173 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1174
a17a75e2 1175 if (bridge->lm_set == NULL) {
42fb5031 1176 printk(KERN_ERR "vme_lm_set not supported\n");
a17a75e2
MW
1177 return -EINVAL;
1178 }
1179
8be9226c 1180 return bridge->lm_set(lm, lm_base, aspace, cycle);
a17a75e2
MW
1181}
1182EXPORT_SYMBOL(vme_lm_set);
1183
42fb5031 1184int vme_lm_get(struct vme_resource *resource, unsigned long long *lm_base,
6af04b06 1185 u32 *aspace, u32 *cycle)
a17a75e2 1186{
42fb5031
MW
1187 struct vme_bridge *bridge = find_bridge(resource);
1188 struct vme_lm_resource *lm;
a17a75e2 1189
42fb5031
MW
1190 if (resource->type != VME_LM) {
1191 printk(KERN_ERR "Not a Location Monitor resource\n");
a17a75e2
MW
1192 return -EINVAL;
1193 }
1194
42fb5031
MW
1195 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1196
a17a75e2 1197 if (bridge->lm_get == NULL) {
42fb5031 1198 printk(KERN_ERR "vme_lm_get not supported\n");
a17a75e2
MW
1199 return -EINVAL;
1200 }
1201
42fb5031 1202 return bridge->lm_get(lm, lm_base, aspace, cycle);
a17a75e2
MW
1203}
1204EXPORT_SYMBOL(vme_lm_get);
1205
42fb5031
MW
1206int vme_lm_attach(struct vme_resource *resource, int monitor,
1207 void (*callback)(int))
a17a75e2 1208{
42fb5031
MW
1209 struct vme_bridge *bridge = find_bridge(resource);
1210 struct vme_lm_resource *lm;
a17a75e2 1211
42fb5031
MW
1212 if (resource->type != VME_LM) {
1213 printk(KERN_ERR "Not a Location Monitor resource\n");
a17a75e2
MW
1214 return -EINVAL;
1215 }
1216
42fb5031
MW
1217 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1218
a17a75e2 1219 if (bridge->lm_attach == NULL) {
42fb5031 1220 printk(KERN_ERR "vme_lm_attach not supported\n");
a17a75e2
MW
1221 return -EINVAL;
1222 }
1223
42fb5031 1224 return bridge->lm_attach(lm, monitor, callback);
a17a75e2
MW
1225}
1226EXPORT_SYMBOL(vme_lm_attach);
1227
42fb5031 1228int vme_lm_detach(struct vme_resource *resource, int monitor)
a17a75e2 1229{
42fb5031
MW
1230 struct vme_bridge *bridge = find_bridge(resource);
1231 struct vme_lm_resource *lm;
a17a75e2 1232
42fb5031
MW
1233 if (resource->type != VME_LM) {
1234 printk(KERN_ERR "Not a Location Monitor resource\n");
a17a75e2
MW
1235 return -EINVAL;
1236 }
1237
42fb5031
MW
1238 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1239
a17a75e2 1240 if (bridge->lm_detach == NULL) {
42fb5031 1241 printk(KERN_ERR "vme_lm_detach not supported\n");
a17a75e2
MW
1242 return -EINVAL;
1243 }
1244
42fb5031 1245 return bridge->lm_detach(lm, monitor);
a17a75e2
MW
1246}
1247EXPORT_SYMBOL(vme_lm_detach);
1248
42fb5031
MW
1249void vme_lm_free(struct vme_resource *resource)
1250{
1251 struct vme_lm_resource *lm;
1252
1253 if (resource->type != VME_LM) {
1254 printk(KERN_ERR "Not a Location Monitor resource\n");
1255 return;
1256 }
1257
1258 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1259
886953e9 1260 mutex_lock(&lm->mtx);
42fb5031 1261
8be9226c
MW
1262 /* XXX
1263 * Check to see that there aren't any callbacks still attached, if
1264 * there are we should probably be detaching them!
1265 */
42fb5031
MW
1266
1267 lm->locked = 0;
1268
886953e9 1269 mutex_unlock(&lm->mtx);
8be9226c
MW
1270
1271 kfree(resource);
42fb5031
MW
1272}
1273EXPORT_SYMBOL(vme_lm_free);
1274
8f966dc4 1275int vme_slot_get(struct vme_dev *vdev)
a17a75e2
MW
1276{
1277 struct vme_bridge *bridge;
1278
8f966dc4 1279 bridge = vdev->bridge;
a17a75e2
MW
1280 if (bridge == NULL) {
1281 printk(KERN_ERR "Can't find VME bus\n");
1282 return -EINVAL;
1283 }
1284
1285 if (bridge->slot_get == NULL) {
ead1f3e3 1286 printk(KERN_WARNING "vme_slot_get not supported\n");
a17a75e2
MW
1287 return -EINVAL;
1288 }
1289
29848ac9 1290 return bridge->slot_get(bridge);
a17a75e2
MW
1291}
1292EXPORT_SYMBOL(vme_slot_get);
1293
1294
1295/* - Bridge Registration --------------------------------------------------- */
1296
5b93c2a2
MV
1297static void vme_dev_release(struct device *dev)
1298{
1299 kfree(dev_to_vme_dev(dev));
1300}
1301
1302int vme_register_bridge(struct vme_bridge *bridge)
a17a75e2
MW
1303{
1304 int i;
733e3ef0 1305 int ret = -1;
a17a75e2 1306
733e3ef0 1307 mutex_lock(&vme_buses_lock);
a17a75e2 1308 for (i = 0; i < sizeof(vme_bus_numbers) * 8; i++) {
733e3ef0
MV
1309 if ((vme_bus_numbers & (1 << i)) == 0) {
1310 vme_bus_numbers |= (1 << i);
1311 bridge->num = i;
5d6abf37 1312 INIT_LIST_HEAD(&bridge->devices);
733e3ef0
MV
1313 list_add_tail(&bridge->bus_list, &vme_bus_list);
1314 ret = 0;
a17a75e2
MW
1315 break;
1316 }
1317 }
733e3ef0 1318 mutex_unlock(&vme_buses_lock);
a17a75e2 1319
733e3ef0 1320 return ret;
a17a75e2 1321}
5b93c2a2 1322EXPORT_SYMBOL(vme_register_bridge);
a17a75e2 1323
5b93c2a2 1324void vme_unregister_bridge(struct vme_bridge *bridge)
a17a75e2 1325{
5d6abf37
MV
1326 struct vme_dev *vdev;
1327 struct vme_dev *tmp;
1328
733e3ef0
MV
1329 mutex_lock(&vme_buses_lock);
1330 vme_bus_numbers &= ~(1 << bridge->num);
5d6abf37
MV
1331 list_for_each_entry_safe(vdev, tmp, &bridge->devices, bridge_list) {
1332 list_del(&vdev->drv_list);
1333 list_del(&vdev->bridge_list);
1334 device_unregister(&vdev->dev);
1335 }
733e3ef0
MV
1336 list_del(&bridge->bus_list);
1337 mutex_unlock(&vme_buses_lock);
a17a75e2 1338}
5d6abf37 1339EXPORT_SYMBOL(vme_unregister_bridge);
a17a75e2 1340
5d6abf37
MV
1341/* - Driver Registration --------------------------------------------------- */
1342
1343static int __vme_register_driver_bus(struct vme_driver *drv,
1344 struct vme_bridge *bridge, unsigned int ndevs)
1345{
1346 int err;
1347 unsigned int i;
1348 struct vme_dev *vdev;
1349 struct vme_dev *tmp;
1350
1351 for (i = 0; i < ndevs; i++) {
1352 vdev = kzalloc(sizeof(struct vme_dev), GFP_KERNEL);
1353 if (!vdev) {
1354 err = -ENOMEM;
f6c39d4f
MV
1355 goto err_devalloc;
1356 }
a916a391 1357 vdev->num = i;
8f966dc4 1358 vdev->bridge = bridge;
5d6abf37
MV
1359 vdev->dev.platform_data = drv;
1360 vdev->dev.release = vme_dev_release;
8f966dc4
MV
1361 vdev->dev.parent = bridge->parent;
1362 vdev->dev.bus = &vme_bus_type;
a916a391
MV
1363 dev_set_name(&vdev->dev, "%s.%u-%u", drv->name, bridge->num,
1364 vdev->num);
a17a75e2 1365
5d6abf37
MV
1366 err = device_register(&vdev->dev);
1367 if (err)
a17a75e2 1368 goto err_reg;
a17a75e2 1369
5d6abf37
MV
1370 if (vdev->dev.platform_data) {
1371 list_add_tail(&vdev->drv_list, &drv->devices);
1372 list_add_tail(&vdev->bridge_list, &bridge->devices);
1373 } else
1374 device_unregister(&vdev->dev);
1375 }
1376 return 0;
a17a75e2 1377
a17a75e2 1378err_reg:
def1820d 1379 put_device(&vdev->dev);
8f966dc4 1380 kfree(vdev);
f6c39d4f 1381err_devalloc:
5d6abf37
MV
1382 list_for_each_entry_safe(vdev, tmp, &drv->devices, drv_list) {
1383 list_del(&vdev->drv_list);
1384 list_del(&vdev->bridge_list);
8f966dc4 1385 device_unregister(&vdev->dev);
a17a75e2 1386 }
5d6abf37 1387 return err;
a17a75e2 1388}
a17a75e2 1389
5d6abf37 1390static int __vme_register_driver(struct vme_driver *drv, unsigned int ndevs)
a17a75e2 1391{
5d6abf37
MV
1392 struct vme_bridge *bridge;
1393 int err = 0;
a17a75e2 1394
5d6abf37
MV
1395 mutex_lock(&vme_buses_lock);
1396 list_for_each_entry(bridge, &vme_bus_list, bus_list) {
1397 /*
1398 * This cannot cause trouble as we already have vme_buses_lock
1399 * and if the bridge is removed, it will have to go through
1400 * vme_unregister_bridge() to do it (which calls remove() on
1401 * the bridge which in turn tries to acquire vme_buses_lock and
c26f6112 1402 * will have to wait).
5d6abf37
MV
1403 */
1404 err = __vme_register_driver_bus(drv, bridge, ndevs);
1405 if (err)
1406 break;
a17a75e2 1407 }
5d6abf37
MV
1408 mutex_unlock(&vme_buses_lock);
1409 return err;
a17a75e2 1410}
a17a75e2 1411
5d6abf37 1412int vme_register_driver(struct vme_driver *drv, unsigned int ndevs)
a17a75e2 1413{
5d6abf37
MV
1414 int err;
1415
a17a75e2
MW
1416 drv->driver.name = drv->name;
1417 drv->driver.bus = &vme_bus_type;
5d6abf37
MV
1418 INIT_LIST_HEAD(&drv->devices);
1419
1420 err = driver_register(&drv->driver);
1421 if (err)
1422 return err;
a17a75e2 1423
5d6abf37
MV
1424 err = __vme_register_driver(drv, ndevs);
1425 if (err)
1426 driver_unregister(&drv->driver);
1427
1428 return err;
a17a75e2
MW
1429}
1430EXPORT_SYMBOL(vme_register_driver);
1431
ead1f3e3 1432void vme_unregister_driver(struct vme_driver *drv)
a17a75e2 1433{
5d6abf37
MV
1434 struct vme_dev *dev, *dev_tmp;
1435
1436 mutex_lock(&vme_buses_lock);
1437 list_for_each_entry_safe(dev, dev_tmp, &drv->devices, drv_list) {
1438 list_del(&dev->drv_list);
1439 list_del(&dev->bridge_list);
1440 device_unregister(&dev->dev);
1441 }
1442 mutex_unlock(&vme_buses_lock);
1443
a17a75e2
MW
1444 driver_unregister(&drv->driver);
1445}
1446EXPORT_SYMBOL(vme_unregister_driver);
1447
1448/* - Bus Registration ------------------------------------------------------ */
1449
a17a75e2
MW
1450static int vme_bus_match(struct device *dev, struct device_driver *drv)
1451{
5d6abf37 1452 struct vme_driver *vme_drv;
a17a75e2 1453
5d6abf37 1454 vme_drv = container_of(drv, struct vme_driver, driver);
a17a75e2 1455
5d6abf37
MV
1456 if (dev->platform_data == vme_drv) {
1457 struct vme_dev *vdev = dev_to_vme_dev(dev);
a17a75e2 1458
5d6abf37
MV
1459 if (vme_drv->match && vme_drv->match(vdev))
1460 return 1;
a37b0dad 1461
5d6abf37 1462 dev->platform_data = NULL;
a17a75e2 1463 }
a17a75e2
MW
1464 return 0;
1465}
1466
1467static int vme_bus_probe(struct device *dev)
1468{
a17a75e2 1469 int retval = -ENODEV;
5d6abf37
MV
1470 struct vme_driver *driver;
1471 struct vme_dev *vdev = dev_to_vme_dev(dev);
a17a75e2 1472
5d6abf37 1473 driver = dev->platform_data;
a17a75e2 1474
ead1f3e3 1475 if (driver->probe != NULL)
8f966dc4 1476 retval = driver->probe(vdev);
a17a75e2
MW
1477
1478 return retval;
1479}
1480
1481static int vme_bus_remove(struct device *dev)
1482{
a17a75e2 1483 int retval = -ENODEV;
5d6abf37
MV
1484 struct vme_driver *driver;
1485 struct vme_dev *vdev = dev_to_vme_dev(dev);
a17a75e2 1486
5d6abf37 1487 driver = dev->platform_data;
a17a75e2 1488
ead1f3e3 1489 if (driver->remove != NULL)
8f966dc4 1490 retval = driver->remove(vdev);
a17a75e2
MW
1491
1492 return retval;
1493}
1494
1495struct bus_type vme_bus_type = {
1496 .name = "vme",
1497 .match = vme_bus_match,
1498 .probe = vme_bus_probe,
1499 .remove = vme_bus_remove,
1500};
1501EXPORT_SYMBOL(vme_bus_type);
1502
ead1f3e3 1503static int __init vme_init(void)
a17a75e2
MW
1504{
1505 return bus_register(&vme_bus_type);
1506}
1507
ead1f3e3 1508static void __exit vme_exit(void)
a17a75e2
MW
1509{
1510 bus_unregister(&vme_bus_type);
1511}
1512
1513MODULE_DESCRIPTION("VME bridge driver framework");
66bd8db5 1514MODULE_AUTHOR("Martyn Welch <martyn.welch@ge.com");
a17a75e2
MW
1515MODULE_LICENSE("GPL");
1516
1517module_init(vme_init);
1518module_exit(vme_exit);