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