blob: 53e87af8e0b8b1310f1a0e79cc074563ca797dd9 [file] [log] [blame]
Martyn Welcha17a75e2009-07-31 09:28:17 +01001/*
2 * VME Bridge Framework
3 *
Martyn Welch66bd8db2010-02-18 15:12:52 +00004 * Author: Martyn Welch <martyn.welch@ge.com>
5 * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.
Martyn Welcha17a75e2009-07-31 09:28:17 +01006 *
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
Paul Gortmaker050c3d52016-07-03 14:05:56 -040016#include <linux/init.h>
17#include <linux/export.h>
Martyn Welcha17a75e2009-07-31 09:28:17 +010018#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>
Martyn Welch400822f2009-08-11 16:20:22 +010030#include <linux/mutex.h>
Martyn Welcha17a75e2009-07-31 09:28:17 +010031#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Greg Kroah-Hartmandb3b9e92012-04-26 12:34:58 -070033#include <linux/vme.h>
Martyn Welcha17a75e2009-07-31 09:28:17 +010034
Martyn Welcha17a75e2009-07-31 09:28:17 +010035#include "vme_bridge.h"
36
Manohar Vanga733e3ef2011-08-12 12:30:48 +020037/* Bitmask and list of registered buses both protected by common mutex */
Martyn Welcha17a75e2009-07-31 09:28:17 +010038static unsigned int vme_bus_numbers;
Manohar Vanga733e3ef2011-08-12 12:30:48 +020039static LIST_HEAD(vme_bus_list);
40static DEFINE_MUTEX(vme_buses_lock);
Martyn Welcha17a75e2009-07-31 09:28:17 +010041
Martyn Welchead1f3e2009-12-15 08:43:02 +000042static int __init vme_init(void);
Martyn Welcha17a75e2009-07-31 09:28:17 +010043
Manohar Vanga8f966dc2011-09-26 11:27:15 +020044static struct vme_dev *dev_to_vme_dev(struct device *dev)
Martyn Welcha17a75e2009-07-31 09:28:17 +010045{
Manohar Vanga8f966dc2011-09-26 11:27:15 +020046 return container_of(dev, struct vme_dev, dev);
Martyn Welcha17a75e2009-07-31 09:28:17 +010047}
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;
Martyn Welch42fb5032009-08-11 17:44:56 +010068 case VME_LM:
69 return list_entry(resource->entry, struct vme_lm_resource,
70 list)->parent;
71 break;
Martyn Welcha17a75e2009-07-31 09:28:17 +010072 default:
73 printk(KERN_ERR "Unknown resource type\n");
74 return NULL;
75 break;
76 }
77}
78
Martyn Welchb5bc9802017-03-04 00:34:29 +000079/**
80 * vme_free_consistent - Allocate contiguous memory.
81 * @resource: Pointer to VME resource.
82 * @size: Size of allocation required.
83 * @dma: Pointer to variable to store physical address of allocation.
84 *
Martyn Welcha17a75e2009-07-31 09:28:17 +010085 * Allocate a contiguous block of memory for use by the driver. This is used to
86 * create the buffers for the slave windows.
Martyn Welchb5bc9802017-03-04 00:34:29 +000087 *
88 * Return: Virtual address of allocation on success, NULL on failure.
Martyn Welcha17a75e2009-07-31 09:28:17 +010089 */
Martyn Welchead1f3e2009-12-15 08:43:02 +000090void *vme_alloc_consistent(struct vme_resource *resource, size_t size,
Martyn Welcha17a75e2009-07-31 09:28:17 +010091 dma_addr_t *dma)
92{
93 struct vme_bridge *bridge;
Martyn Welcha17a75e2009-07-31 09:28:17 +010094
Martyn Welchead1f3e2009-12-15 08:43:02 +000095 if (resource == NULL) {
96 printk(KERN_ERR "No resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +010097 return NULL;
98 }
99
100 bridge = find_bridge(resource);
Martyn Welchead1f3e2009-12-15 08:43:02 +0000101 if (bridge == NULL) {
102 printk(KERN_ERR "Can't find bridge\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100103 return NULL;
104 }
105
Martyn Welcha17a75e2009-07-31 09:28:17 +0100106 if (bridge->parent == NULL) {
Greg Kroah-Hartman25958ce2012-04-25 11:25:46 -0700107 printk(KERN_ERR "Dev entry NULL for bridge %s\n", bridge->name);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100108 return NULL;
109 }
Martyn Welcha17a75e2009-07-31 09:28:17 +0100110
Manohar Vanga7f58f022011-08-10 11:33:46 +0200111 if (bridge->alloc_consistent == NULL) {
Greg Kroah-Hartman25958ce2012-04-25 11:25:46 -0700112 printk(KERN_ERR "alloc_consistent not supported by bridge %s\n",
113 bridge->name);
Manohar Vanga7f58f022011-08-10 11:33:46 +0200114 return NULL;
115 }
116
117 return bridge->alloc_consistent(bridge->parent, size, dma);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100118}
119EXPORT_SYMBOL(vme_alloc_consistent);
120
Martyn Welchb5bc9802017-03-04 00:34:29 +0000121/**
122 * vme_free_consistent - Free previously allocated memory.
123 * @resource: Pointer to VME resource.
124 * @size: Size of allocation to free.
125 * @vaddr: Virtual address of allocation.
126 * @dma: Physical address of allocation.
127 *
128 * Free previously allocated block of contiguous memory.
Martyn Welcha17a75e2009-07-31 09:28:17 +0100129 */
130void vme_free_consistent(struct vme_resource *resource, size_t size,
131 void *vaddr, dma_addr_t dma)
132{
133 struct vme_bridge *bridge;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100134
Martyn Welchead1f3e2009-12-15 08:43:02 +0000135 if (resource == NULL) {
136 printk(KERN_ERR "No resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100137 return;
138 }
139
140 bridge = find_bridge(resource);
Martyn Welchead1f3e2009-12-15 08:43:02 +0000141 if (bridge == NULL) {
142 printk(KERN_ERR "Can't find bridge\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100143 return;
144 }
145
Manohar Vanga7f58f022011-08-10 11:33:46 +0200146 if (bridge->parent == NULL) {
Greg Kroah-Hartman25958ce2012-04-25 11:25:46 -0700147 printk(KERN_ERR "Dev entry NULL for bridge %s\n", bridge->name);
Manohar Vanga7f58f022011-08-10 11:33:46 +0200148 return;
149 }
Martyn Welcha17a75e2009-07-31 09:28:17 +0100150
Manohar Vanga7f58f022011-08-10 11:33:46 +0200151 if (bridge->free_consistent == NULL) {
Greg Kroah-Hartman25958ce2012-04-25 11:25:46 -0700152 printk(KERN_ERR "free_consistent not supported by bridge %s\n",
153 bridge->name);
Manohar Vanga7f58f022011-08-10 11:33:46 +0200154 return;
155 }
156
157 bridge->free_consistent(bridge->parent, size, vaddr, dma);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100158}
159EXPORT_SYMBOL(vme_free_consistent);
160
Martyn Welchb5bc9802017-03-04 00:34:29 +0000161/**
162 * vme_get_size - Helper function returning size of a VME window
163 * @resource: Pointer to VME slave or master resource.
164 *
165 * Determine the size of the VME window provided. This is a helper
166 * function, wrappering the call to vme_master_get or vme_slave_get
167 * depending on the type of window resource handed to it.
168 *
169 * Return: Size of the window on success, zero on failure.
170 */
Martyn Welcha17a75e2009-07-31 09:28:17 +0100171size_t vme_get_size(struct vme_resource *resource)
172{
173 int enabled, retval;
174 unsigned long long base, size;
175 dma_addr_t buf_base;
Martyn Welch6af04b02011-12-01 17:06:29 +0000176 u32 aspace, cycle, dwidth;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100177
178 switch (resource->type) {
179 case VME_MASTER:
180 retval = vme_master_get(resource, &enabled, &base, &size,
181 &aspace, &cycle, &dwidth);
Martyn Welch6ad37562016-10-21 17:36:19 +0100182 if (retval)
183 return 0;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100184
185 return size;
186 break;
187 case VME_SLAVE:
188 retval = vme_slave_get(resource, &enabled, &base, &size,
189 &buf_base, &aspace, &cycle);
Martyn Welch6ad37562016-10-21 17:36:19 +0100190 if (retval)
191 return 0;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100192
193 return size;
194 break;
195 case VME_DMA:
196 return 0;
197 break;
198 default:
199 printk(KERN_ERR "Unknown resource type\n");
200 return 0;
201 break;
202 }
203}
204EXPORT_SYMBOL(vme_get_size);
205
Dmitry Kalinkinef73f882015-05-28 15:07:04 +0300206int vme_check_window(u32 aspace, unsigned long long vme_base,
207 unsigned long long size)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100208{
209 int retval = 0;
210
211 switch (aspace) {
212 case VME_A16:
213 if (((vme_base + size) > VME_A16_MAX) ||
214 (vme_base > VME_A16_MAX))
215 retval = -EFAULT;
216 break;
217 case VME_A24:
218 if (((vme_base + size) > VME_A24_MAX) ||
219 (vme_base > VME_A24_MAX))
220 retval = -EFAULT;
221 break;
222 case VME_A32:
223 if (((vme_base + size) > VME_A32_MAX) ||
224 (vme_base > VME_A32_MAX))
225 retval = -EFAULT;
226 break;
227 case VME_A64:
Dmitry Kalinkine7fd80c2015-05-28 15:07:03 +0300228 if ((size != 0) && (vme_base > U64_MAX + 1 - size))
229 retval = -EFAULT;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100230 break;
231 case VME_CRCSR:
232 if (((vme_base + size) > VME_CRCSR_MAX) ||
233 (vme_base > VME_CRCSR_MAX))
234 retval = -EFAULT;
235 break;
236 case VME_USER1:
237 case VME_USER2:
238 case VME_USER3:
239 case VME_USER4:
240 /* User Defined */
241 break;
242 default:
Martyn Welchead1f3e2009-12-15 08:43:02 +0000243 printk(KERN_ERR "Invalid address space\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100244 retval = -EINVAL;
245 break;
246 }
247
248 return retval;
249}
Dmitry Kalinkinef73f882015-05-28 15:07:04 +0300250EXPORT_SYMBOL(vme_check_window);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100251
Dmitry Kalinkin472f16f2015-09-18 02:01:43 +0300252static u32 vme_get_aspace(int am)
253{
254 switch (am) {
255 case 0x29:
256 case 0x2D:
257 return VME_A16;
258 case 0x38:
259 case 0x39:
260 case 0x3A:
261 case 0x3B:
262 case 0x3C:
263 case 0x3D:
264 case 0x3E:
265 case 0x3F:
266 return VME_A24;
267 case 0x8:
268 case 0x9:
269 case 0xA:
270 case 0xB:
271 case 0xC:
272 case 0xD:
273 case 0xE:
274 case 0xF:
275 return VME_A32;
276 case 0x0:
277 case 0x1:
278 case 0x3:
279 return VME_A64;
280 }
281
282 return 0;
283}
284
Martyn Welchb5bc9802017-03-04 00:34:29 +0000285/**
286 * vme_slave_request - Request a VME slave window resource.
287 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
288 * @address: Required VME address space.
289 * @cycle: Required VME data transfer cycle type.
290 *
291 * Request use of a VME window resource capable of being set for the requested
292 * address space and data transfer cycle.
293 *
294 * Return: Pointer to VME resource on success, NULL on failure.
Martyn Welcha17a75e2009-07-31 09:28:17 +0100295 */
Martyn Welch6af04b02011-12-01 17:06:29 +0000296struct vme_resource *vme_slave_request(struct vme_dev *vdev, u32 address,
297 u32 cycle)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100298{
299 struct vme_bridge *bridge;
300 struct list_head *slave_pos = NULL;
301 struct vme_slave_resource *allocated_image = NULL;
302 struct vme_slave_resource *slave_image = NULL;
303 struct vme_resource *resource = NULL;
304
Manohar Vanga8f966dc2011-09-26 11:27:15 +0200305 bridge = vdev->bridge;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100306 if (bridge == NULL) {
307 printk(KERN_ERR "Can't find VME bus\n");
308 goto err_bus;
309 }
310
311 /* Loop through slave resources */
Emilio G. Cota886953e2010-11-12 11:14:07 +0000312 list_for_each(slave_pos, &bridge->slave_resources) {
Martyn Welcha17a75e2009-07-31 09:28:17 +0100313 slave_image = list_entry(slave_pos,
314 struct vme_slave_resource, list);
315
316 if (slave_image == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000317 printk(KERN_ERR "Registered NULL Slave resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100318 continue;
319 }
320
321 /* Find an unlocked and compatible image */
Emilio G. Cota886953e2010-11-12 11:14:07 +0000322 mutex_lock(&slave_image->mtx);
Martyn Welchead1f3e2009-12-15 08:43:02 +0000323 if (((slave_image->address_attr & address) == address) &&
Martyn Welcha17a75e2009-07-31 09:28:17 +0100324 ((slave_image->cycle_attr & cycle) == cycle) &&
325 (slave_image->locked == 0)) {
326
327 slave_image->locked = 1;
Emilio G. Cota886953e2010-11-12 11:14:07 +0000328 mutex_unlock(&slave_image->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100329 allocated_image = slave_image;
330 break;
331 }
Emilio G. Cota886953e2010-11-12 11:14:07 +0000332 mutex_unlock(&slave_image->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100333 }
334
335 /* No free image */
336 if (allocated_image == NULL)
337 goto err_image;
338
339 resource = kmalloc(sizeof(struct vme_resource), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +0200340 if (!resource)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100341 goto err_alloc;
Markus Elfring94eefcc2017-08-24 21:38:20 +0200342
Martyn Welcha17a75e2009-07-31 09:28:17 +0100343 resource->type = VME_SLAVE;
Emilio G. Cota886953e2010-11-12 11:14:07 +0000344 resource->entry = &allocated_image->list;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100345
346 return resource;
347
348err_alloc:
349 /* Unlock image */
Emilio G. Cota886953e2010-11-12 11:14:07 +0000350 mutex_lock(&slave_image->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100351 slave_image->locked = 0;
Emilio G. Cota886953e2010-11-12 11:14:07 +0000352 mutex_unlock(&slave_image->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100353err_image:
354err_bus:
355 return NULL;
356}
357EXPORT_SYMBOL(vme_slave_request);
358
Martyn Welchb5bc9802017-03-04 00:34:29 +0000359/**
360 * vme_slave_set - Set VME slave window configuration.
361 * @resource: Pointer to VME slave resource.
362 * @enabled: State to which the window should be configured.
363 * @vme_base: Base address for the window.
364 * @size: Size of the VME window.
365 * @buf_base: Based address of buffer used to provide VME slave window storage.
366 * @aspace: VME address space for the VME window.
367 * @cycle: VME data transfer cycle type for the VME window.
368 *
369 * Set configuration for provided VME slave window.
370 *
371 * Return: Zero on success, -EINVAL if operation is not supported on this
372 * device, if an invalid resource has been provided or invalid
373 * attributes are provided. Hardware specific errors may also be
374 * returned.
375 */
Martyn Welchead1f3e2009-12-15 08:43:02 +0000376int vme_slave_set(struct vme_resource *resource, int enabled,
Martyn Welcha17a75e2009-07-31 09:28:17 +0100377 unsigned long long vme_base, unsigned long long size,
Martyn Welch6af04b02011-12-01 17:06:29 +0000378 dma_addr_t buf_base, u32 aspace, u32 cycle)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100379{
380 struct vme_bridge *bridge = find_bridge(resource);
381 struct vme_slave_resource *image;
382 int retval;
383
384 if (resource->type != VME_SLAVE) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000385 printk(KERN_ERR "Not a slave resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100386 return -EINVAL;
387 }
388
389 image = list_entry(resource->entry, struct vme_slave_resource, list);
390
391 if (bridge->slave_set == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000392 printk(KERN_ERR "Function not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100393 return -ENOSYS;
394 }
395
Martyn Welchead1f3e2009-12-15 08:43:02 +0000396 if (!(((image->address_attr & aspace) == aspace) &&
Martyn Welcha17a75e2009-07-31 09:28:17 +0100397 ((image->cycle_attr & cycle) == cycle))) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000398 printk(KERN_ERR "Invalid attributes\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100399 return -EINVAL;
400 }
401
402 retval = vme_check_window(aspace, vme_base, size);
Martyn Welchead1f3e2009-12-15 08:43:02 +0000403 if (retval)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100404 return retval;
405
406 return bridge->slave_set(image, enabled, vme_base, size, buf_base,
407 aspace, cycle);
408}
409EXPORT_SYMBOL(vme_slave_set);
410
Martyn Welchb5bc9802017-03-04 00:34:29 +0000411/**
412 * vme_slave_get - Retrieve VME slave window configuration.
413 * @resource: Pointer to VME slave resource.
414 * @enabled: Pointer to variable for storing state.
415 * @vme_base: Pointer to variable for storing window base address.
416 * @size: Pointer to variable for storing window size.
417 * @buf_base: Pointer to variable for storing slave buffer base address.
418 * @aspace: Pointer to variable for storing VME address space.
419 * @cycle: Pointer to variable for storing VME data transfer cycle type.
420 *
421 * Return configuration for provided VME slave window.
422 *
423 * Return: Zero on success, -EINVAL if operation is not supported on this
424 * device or if an invalid resource has been provided.
425 */
Martyn Welchead1f3e2009-12-15 08:43:02 +0000426int vme_slave_get(struct vme_resource *resource, int *enabled,
Martyn Welcha17a75e2009-07-31 09:28:17 +0100427 unsigned long long *vme_base, unsigned long long *size,
Martyn Welch6af04b02011-12-01 17:06:29 +0000428 dma_addr_t *buf_base, u32 *aspace, u32 *cycle)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100429{
430 struct vme_bridge *bridge = find_bridge(resource);
431 struct vme_slave_resource *image;
432
433 if (resource->type != VME_SLAVE) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000434 printk(KERN_ERR "Not a slave resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100435 return -EINVAL;
436 }
437
438 image = list_entry(resource->entry, struct vme_slave_resource, list);
439
Emilio G. Cota51a569f2009-08-10 16:52:42 +0200440 if (bridge->slave_get == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000441 printk(KERN_ERR "vme_slave_get not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100442 return -EINVAL;
443 }
444
445 return bridge->slave_get(image, enabled, vme_base, size, buf_base,
446 aspace, cycle);
447}
448EXPORT_SYMBOL(vme_slave_get);
449
Martyn Welchb5bc9802017-03-04 00:34:29 +0000450/**
451 * vme_slave_free - Free VME slave window
452 * @resource: Pointer to VME slave resource.
453 *
454 * Free the provided slave resource so that it may be reallocated.
455 */
Martyn Welcha17a75e2009-07-31 09:28:17 +0100456void vme_slave_free(struct vme_resource *resource)
457{
458 struct vme_slave_resource *slave_image;
459
460 if (resource->type != VME_SLAVE) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000461 printk(KERN_ERR "Not a slave resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100462 return;
463 }
464
465 slave_image = list_entry(resource->entry, struct vme_slave_resource,
466 list);
467 if (slave_image == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000468 printk(KERN_ERR "Can't find slave resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100469 return;
470 }
471
472 /* Unlock image */
Emilio G. Cota886953e2010-11-12 11:14:07 +0000473 mutex_lock(&slave_image->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100474 if (slave_image->locked == 0)
475 printk(KERN_ERR "Image is already free\n");
476
477 slave_image->locked = 0;
Emilio G. Cota886953e2010-11-12 11:14:07 +0000478 mutex_unlock(&slave_image->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100479
480 /* Free up resource memory */
481 kfree(resource);
482}
483EXPORT_SYMBOL(vme_slave_free);
484
Martyn Welchb5bc9802017-03-04 00:34:29 +0000485/**
486 * vme_master_request - Request a VME master window resource.
487 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
488 * @address: Required VME address space.
489 * @cycle: Required VME data transfer cycle type.
490 * @dwidth: Required VME data transfer width.
491 *
492 * Request use of a VME window resource capable of being set for the requested
493 * address space, data transfer cycle and width.
494 *
495 * Return: Pointer to VME resource on success, NULL on failure.
Martyn Welcha17a75e2009-07-31 09:28:17 +0100496 */
Martyn Welch6af04b02011-12-01 17:06:29 +0000497struct vme_resource *vme_master_request(struct vme_dev *vdev, u32 address,
498 u32 cycle, u32 dwidth)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100499{
500 struct vme_bridge *bridge;
501 struct list_head *master_pos = NULL;
502 struct vme_master_resource *allocated_image = NULL;
503 struct vme_master_resource *master_image = NULL;
504 struct vme_resource *resource = NULL;
505
Manohar Vanga8f966dc2011-09-26 11:27:15 +0200506 bridge = vdev->bridge;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100507 if (bridge == NULL) {
508 printk(KERN_ERR "Can't find VME bus\n");
509 goto err_bus;
510 }
511
512 /* Loop through master resources */
Emilio G. Cota886953e2010-11-12 11:14:07 +0000513 list_for_each(master_pos, &bridge->master_resources) {
Martyn Welcha17a75e2009-07-31 09:28:17 +0100514 master_image = list_entry(master_pos,
515 struct vme_master_resource, list);
516
517 if (master_image == NULL) {
518 printk(KERN_WARNING "Registered NULL master resource\n");
519 continue;
520 }
521
522 /* Find an unlocked and compatible image */
Emilio G. Cota886953e2010-11-12 11:14:07 +0000523 spin_lock(&master_image->lock);
Martyn Welchead1f3e2009-12-15 08:43:02 +0000524 if (((master_image->address_attr & address) == address) &&
Martyn Welcha17a75e2009-07-31 09:28:17 +0100525 ((master_image->cycle_attr & cycle) == cycle) &&
526 ((master_image->width_attr & dwidth) == dwidth) &&
527 (master_image->locked == 0)) {
528
529 master_image->locked = 1;
Emilio G. Cota886953e2010-11-12 11:14:07 +0000530 spin_unlock(&master_image->lock);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100531 allocated_image = master_image;
532 break;
533 }
Emilio G. Cota886953e2010-11-12 11:14:07 +0000534 spin_unlock(&master_image->lock);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100535 }
536
537 /* Check to see if we found a resource */
538 if (allocated_image == NULL) {
539 printk(KERN_ERR "Can't find a suitable resource\n");
540 goto err_image;
541 }
542
543 resource = kmalloc(sizeof(struct vme_resource), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +0200544 if (!resource)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100545 goto err_alloc;
Markus Elfring94eefcc2017-08-24 21:38:20 +0200546
Martyn Welcha17a75e2009-07-31 09:28:17 +0100547 resource->type = VME_MASTER;
Emilio G. Cota886953e2010-11-12 11:14:07 +0000548 resource->entry = &allocated_image->list;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100549
550 return resource;
551
Martyn Welcha17a75e2009-07-31 09:28:17 +0100552err_alloc:
553 /* Unlock image */
Emilio G. Cota886953e2010-11-12 11:14:07 +0000554 spin_lock(&master_image->lock);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100555 master_image->locked = 0;
Emilio G. Cota886953e2010-11-12 11:14:07 +0000556 spin_unlock(&master_image->lock);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100557err_image:
558err_bus:
559 return NULL;
560}
561EXPORT_SYMBOL(vme_master_request);
562
Martyn Welchb5bc9802017-03-04 00:34:29 +0000563/**
564 * vme_master_set - Set VME master window configuration.
565 * @resource: Pointer to VME master resource.
566 * @enabled: State to which the window should be configured.
567 * @vme_base: Base address for the window.
568 * @size: Size of the VME window.
569 * @aspace: VME address space for the VME window.
570 * @cycle: VME data transfer cycle type for the VME window.
571 * @dwidth: VME data transfer width for the VME window.
572 *
573 * Set configuration for provided VME master window.
574 *
575 * Return: Zero on success, -EINVAL if operation is not supported on this
576 * device, if an invalid resource has been provided or invalid
577 * attributes are provided. Hardware specific errors may also be
578 * returned.
579 */
Martyn Welchead1f3e2009-12-15 08:43:02 +0000580int vme_master_set(struct vme_resource *resource, int enabled,
Martyn Welch6af04b02011-12-01 17:06:29 +0000581 unsigned long long vme_base, unsigned long long size, u32 aspace,
582 u32 cycle, u32 dwidth)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100583{
584 struct vme_bridge *bridge = find_bridge(resource);
585 struct vme_master_resource *image;
586 int retval;
587
588 if (resource->type != VME_MASTER) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000589 printk(KERN_ERR "Not a master resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100590 return -EINVAL;
591 }
592
593 image = list_entry(resource->entry, struct vme_master_resource, list);
594
595 if (bridge->master_set == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000596 printk(KERN_WARNING "vme_master_set not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100597 return -EINVAL;
598 }
599
Martyn Welchead1f3e2009-12-15 08:43:02 +0000600 if (!(((image->address_attr & aspace) == aspace) &&
Martyn Welcha17a75e2009-07-31 09:28:17 +0100601 ((image->cycle_attr & cycle) == cycle) &&
602 ((image->width_attr & dwidth) == dwidth))) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000603 printk(KERN_WARNING "Invalid attributes\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100604 return -EINVAL;
605 }
606
607 retval = vme_check_window(aspace, vme_base, size);
Martyn Welchead1f3e2009-12-15 08:43:02 +0000608 if (retval)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100609 return retval;
610
611 return bridge->master_set(image, enabled, vme_base, size, aspace,
612 cycle, dwidth);
613}
614EXPORT_SYMBOL(vme_master_set);
615
Martyn Welchb5bc9802017-03-04 00:34:29 +0000616/**
617 * vme_master_get - Retrieve VME master window configuration.
618 * @resource: Pointer to VME master resource.
619 * @enabled: Pointer to variable for storing state.
620 * @vme_base: Pointer to variable for storing window base address.
621 * @size: Pointer to variable for storing window size.
622 * @aspace: Pointer to variable for storing VME address space.
623 * @cycle: Pointer to variable for storing VME data transfer cycle type.
624 * @dwidth: Pointer to variable for storing VME data transfer width.
625 *
626 * Return configuration for provided VME master window.
627 *
628 * Return: Zero on success, -EINVAL if operation is not supported on this
629 * device or if an invalid resource has been provided.
630 */
Martyn Welchead1f3e2009-12-15 08:43:02 +0000631int vme_master_get(struct vme_resource *resource, int *enabled,
Martyn Welch6af04b02011-12-01 17:06:29 +0000632 unsigned long long *vme_base, unsigned long long *size, u32 *aspace,
633 u32 *cycle, u32 *dwidth)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100634{
635 struct vme_bridge *bridge = find_bridge(resource);
636 struct vme_master_resource *image;
637
638 if (resource->type != VME_MASTER) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000639 printk(KERN_ERR "Not a master resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100640 return -EINVAL;
641 }
642
643 image = list_entry(resource->entry, struct vme_master_resource, list);
644
Emilio G. Cota51a569f2009-08-10 16:52:42 +0200645 if (bridge->master_get == NULL) {
Julia Lawallc1038302014-12-07 20:20:53 +0100646 printk(KERN_WARNING "%s not supported\n", __func__);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100647 return -EINVAL;
648 }
649
650 return bridge->master_get(image, enabled, vme_base, size, aspace,
651 cycle, dwidth);
652}
653EXPORT_SYMBOL(vme_master_get);
654
Martyn Welchb5bc9802017-03-04 00:34:29 +0000655/**
656 * vme_master_write - Read data from VME space into a buffer.
657 * @resource: Pointer to VME master resource.
658 * @buf: Pointer to buffer where data should be transferred.
659 * @count: Number of bytes to transfer.
660 * @offset: Offset into VME master window at which to start transfer.
661 *
662 * Perform read of count bytes of data from location on VME bus which maps into
663 * the VME master window at offset to buf.
664 *
665 * Return: Number of bytes read, -EINVAL if resource is not a VME master
666 * resource or read operation is not supported. -EFAULT returned if
667 * invalid offset is provided. Hardware specific errors may also be
668 * returned.
Martyn Welcha17a75e2009-07-31 09:28:17 +0100669 */
Martyn Welchead1f3e2009-12-15 08:43:02 +0000670ssize_t vme_master_read(struct vme_resource *resource, void *buf, size_t count,
Martyn Welcha17a75e2009-07-31 09:28:17 +0100671 loff_t offset)
672{
673 struct vme_bridge *bridge = find_bridge(resource);
674 struct vme_master_resource *image;
675 size_t length;
676
677 if (bridge->master_read == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000678 printk(KERN_WARNING "Reading from resource not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100679 return -EINVAL;
680 }
681
682 if (resource->type != VME_MASTER) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000683 printk(KERN_ERR "Not a master resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100684 return -EINVAL;
685 }
686
687 image = list_entry(resource->entry, struct vme_master_resource, list);
688
689 length = vme_get_size(resource);
690
691 if (offset > length) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000692 printk(KERN_WARNING "Invalid Offset\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100693 return -EFAULT;
694 }
695
696 if ((offset + count) > length)
697 count = length - offset;
698
699 return bridge->master_read(image, buf, count, offset);
700
701}
702EXPORT_SYMBOL(vme_master_read);
703
Martyn Welchb5bc9802017-03-04 00:34:29 +0000704/**
705 * vme_master_write - Write data out to VME space from a buffer.
706 * @resource: Pointer to VME master resource.
707 * @buf: Pointer to buffer holding data to transfer.
708 * @count: Number of bytes to transfer.
709 * @offset: Offset into VME master window at which to start transfer.
710 *
711 * Perform write of count bytes of data from buf to location on VME bus which
712 * maps into the VME master window at offset.
713 *
714 * Return: Number of bytes written, -EINVAL if resource is not a VME master
715 * resource or write operation is not supported. -EFAULT returned if
716 * invalid offset is provided. Hardware specific errors may also be
717 * returned.
Martyn Welcha17a75e2009-07-31 09:28:17 +0100718 */
Martyn Welchead1f3e2009-12-15 08:43:02 +0000719ssize_t vme_master_write(struct vme_resource *resource, void *buf,
Martyn Welcha17a75e2009-07-31 09:28:17 +0100720 size_t count, loff_t offset)
721{
722 struct vme_bridge *bridge = find_bridge(resource);
723 struct vme_master_resource *image;
724 size_t length;
725
726 if (bridge->master_write == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000727 printk(KERN_WARNING "Writing to resource not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100728 return -EINVAL;
729 }
730
731 if (resource->type != VME_MASTER) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000732 printk(KERN_ERR "Not a master resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100733 return -EINVAL;
734 }
735
736 image = list_entry(resource->entry, struct vme_master_resource, list);
737
738 length = vme_get_size(resource);
739
740 if (offset > length) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000741 printk(KERN_WARNING "Invalid Offset\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100742 return -EFAULT;
743 }
744
745 if ((offset + count) > length)
746 count = length - offset;
747
748 return bridge->master_write(image, buf, count, offset);
749}
750EXPORT_SYMBOL(vme_master_write);
751
Martyn Welchb5bc9802017-03-04 00:34:29 +0000752/**
753 * vme_master_rmw - Perform read-modify-write cycle.
754 * @resource: Pointer to VME master resource.
755 * @mask: Bits to be compared and swapped in operation.
756 * @compare: Bits to be compared with data read from offset.
757 * @swap: Bits to be swapped in data read from offset.
758 * @offset: Offset into VME master window at which to perform operation.
759 *
760 * Perform read-modify-write cycle on provided location:
761 * - Location on VME bus is read.
762 * - Bits selected by mask are compared with compare.
763 * - Where a selected bit matches that in compare and are selected in swap,
764 * the bit is swapped.
765 * - Result written back to location on VME bus.
766 *
767 * Return: Bytes written on success, -EINVAL if resource is not a VME master
768 * resource or RMW operation is not supported. Hardware specific
769 * errors may also be returned.
Martyn Welcha17a75e2009-07-31 09:28:17 +0100770 */
Martyn Welchead1f3e2009-12-15 08:43:02 +0000771unsigned int vme_master_rmw(struct vme_resource *resource, unsigned int mask,
Martyn Welcha17a75e2009-07-31 09:28:17 +0100772 unsigned int compare, unsigned int swap, loff_t offset)
773{
774 struct vme_bridge *bridge = find_bridge(resource);
775 struct vme_master_resource *image;
776
777 if (bridge->master_rmw == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000778 printk(KERN_WARNING "Writing to resource not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100779 return -EINVAL;
780 }
781
782 if (resource->type != VME_MASTER) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000783 printk(KERN_ERR "Not a master resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100784 return -EINVAL;
785 }
786
787 image = list_entry(resource->entry, struct vme_master_resource, list);
788
789 return bridge->master_rmw(image, mask, compare, swap, offset);
790}
791EXPORT_SYMBOL(vme_master_rmw);
792
Martyn Welchb5bc9802017-03-04 00:34:29 +0000793/**
794 * vme_master_mmap - Mmap region of VME master window.
795 * @resource: Pointer to VME master resource.
796 * @vma: Pointer to definition of user mapping.
797 *
798 * Memory map a region of the VME master window into user space.
799 *
800 * Return: Zero on success, -EINVAL if resource is not a VME master
801 * resource or -EFAULT if map exceeds window size. Other generic mmap
802 * errors may also be returned.
803 */
Dmitry Kalinkinc74a8042015-02-26 18:53:10 +0300804int vme_master_mmap(struct vme_resource *resource, struct vm_area_struct *vma)
805{
806 struct vme_master_resource *image;
807 phys_addr_t phys_addr;
808 unsigned long vma_size;
809
810 if (resource->type != VME_MASTER) {
811 pr_err("Not a master resource\n");
812 return -EINVAL;
813 }
814
815 image = list_entry(resource->entry, struct vme_master_resource, list);
816 phys_addr = image->bus_resource.start + (vma->vm_pgoff << PAGE_SHIFT);
817 vma_size = vma->vm_end - vma->vm_start;
818
819 if (phys_addr + vma_size > image->bus_resource.end + 1) {
820 pr_err("Map size cannot exceed the window size\n");
821 return -EFAULT;
822 }
823
824 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
825
826 return vm_iomap_memory(vma, phys_addr, vma->vm_end - vma->vm_start);
827}
828EXPORT_SYMBOL(vme_master_mmap);
829
Martyn Welchb5bc9802017-03-04 00:34:29 +0000830/**
831 * vme_master_free - Free VME master window
832 * @resource: Pointer to VME master resource.
833 *
834 * Free the provided master resource so that it may be reallocated.
835 */
Martyn Welcha17a75e2009-07-31 09:28:17 +0100836void vme_master_free(struct vme_resource *resource)
837{
838 struct vme_master_resource *master_image;
839
840 if (resource->type != VME_MASTER) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000841 printk(KERN_ERR "Not a master resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100842 return;
843 }
844
845 master_image = list_entry(resource->entry, struct vme_master_resource,
846 list);
847 if (master_image == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000848 printk(KERN_ERR "Can't find master resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100849 return;
850 }
851
852 /* Unlock image */
Emilio G. Cota886953e2010-11-12 11:14:07 +0000853 spin_lock(&master_image->lock);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100854 if (master_image->locked == 0)
855 printk(KERN_ERR "Image is already free\n");
856
857 master_image->locked = 0;
Emilio G. Cota886953e2010-11-12 11:14:07 +0000858 spin_unlock(&master_image->lock);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100859
860 /* Free up resource memory */
861 kfree(resource);
862}
863EXPORT_SYMBOL(vme_master_free);
864
Martyn Welchb5bc9802017-03-04 00:34:29 +0000865/**
866 * vme_dma_request - Request a DMA controller.
867 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
868 * @route: Required src/destination combination.
869 *
870 * Request a VME DMA controller with capability to perform transfers bewteen
871 * requested source/destination combination.
872 *
873 * Return: Pointer to VME DMA resource on success, NULL on failure.
Martyn Welcha17a75e2009-07-31 09:28:17 +0100874 */
Martyn Welch6af04b02011-12-01 17:06:29 +0000875struct vme_resource *vme_dma_request(struct vme_dev *vdev, u32 route)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100876{
877 struct vme_bridge *bridge;
878 struct list_head *dma_pos = NULL;
879 struct vme_dma_resource *allocated_ctrlr = NULL;
880 struct vme_dma_resource *dma_ctrlr = NULL;
881 struct vme_resource *resource = NULL;
882
883 /* XXX Not checking resource attributes */
884 printk(KERN_ERR "No VME resource Attribute tests done\n");
885
Manohar Vanga8f966dc2011-09-26 11:27:15 +0200886 bridge = vdev->bridge;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100887 if (bridge == NULL) {
888 printk(KERN_ERR "Can't find VME bus\n");
889 goto err_bus;
890 }
891
892 /* Loop through DMA resources */
Emilio G. Cota886953e2010-11-12 11:14:07 +0000893 list_for_each(dma_pos, &bridge->dma_resources) {
Martyn Welcha17a75e2009-07-31 09:28:17 +0100894 dma_ctrlr = list_entry(dma_pos,
895 struct vme_dma_resource, list);
896
897 if (dma_ctrlr == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000898 printk(KERN_ERR "Registered NULL DMA resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100899 continue;
900 }
901
Martyn Welch4f723df2010-02-18 15:12:58 +0000902 /* Find an unlocked and compatible controller */
Emilio G. Cota886953e2010-11-12 11:14:07 +0000903 mutex_lock(&dma_ctrlr->mtx);
Martyn Welch4f723df2010-02-18 15:12:58 +0000904 if (((dma_ctrlr->route_attr & route) == route) &&
905 (dma_ctrlr->locked == 0)) {
906
Martyn Welcha17a75e2009-07-31 09:28:17 +0100907 dma_ctrlr->locked = 1;
Emilio G. Cota886953e2010-11-12 11:14:07 +0000908 mutex_unlock(&dma_ctrlr->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100909 allocated_ctrlr = dma_ctrlr;
910 break;
911 }
Emilio G. Cota886953e2010-11-12 11:14:07 +0000912 mutex_unlock(&dma_ctrlr->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100913 }
914
915 /* Check to see if we found a resource */
916 if (allocated_ctrlr == NULL)
917 goto err_ctrlr;
918
919 resource = kmalloc(sizeof(struct vme_resource), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +0200920 if (!resource)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100921 goto err_alloc;
Markus Elfring94eefcc2017-08-24 21:38:20 +0200922
Martyn Welcha17a75e2009-07-31 09:28:17 +0100923 resource->type = VME_DMA;
Emilio G. Cota886953e2010-11-12 11:14:07 +0000924 resource->entry = &allocated_ctrlr->list;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100925
926 return resource;
927
928err_alloc:
929 /* Unlock image */
Emilio G. Cota886953e2010-11-12 11:14:07 +0000930 mutex_lock(&dma_ctrlr->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100931 dma_ctrlr->locked = 0;
Emilio G. Cota886953e2010-11-12 11:14:07 +0000932 mutex_unlock(&dma_ctrlr->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100933err_ctrlr:
934err_bus:
935 return NULL;
936}
Martyn Welch58e50792009-10-29 16:35:20 +0000937EXPORT_SYMBOL(vme_dma_request);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100938
Martyn Welchb5bc9802017-03-04 00:34:29 +0000939/**
940 * vme_new_dma_list - Create new VME DMA list.
941 * @resource: Pointer to VME DMA resource.
942 *
943 * Create a new VME DMA list. It is the responsibility of the user to free
944 * the list once it is no longer required with vme_dma_list_free().
945 *
946 * Return: Pointer to new VME DMA list, NULL on allocation failure or invalid
947 * VME DMA resource.
Martyn Welcha17a75e2009-07-31 09:28:17 +0100948 */
949struct vme_dma_list *vme_new_dma_list(struct vme_resource *resource)
950{
951 struct vme_dma_resource *ctrlr;
952 struct vme_dma_list *dma_list;
953
954 if (resource->type != VME_DMA) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000955 printk(KERN_ERR "Not a DMA resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100956 return NULL;
957 }
958
959 ctrlr = list_entry(resource->entry, struct vme_dma_resource, list);
960
Martyn Welchead1f3e2009-12-15 08:43:02 +0000961 dma_list = kmalloc(sizeof(struct vme_dma_list), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +0200962 if (!dma_list)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100963 return NULL;
Markus Elfring94eefcc2017-08-24 21:38:20 +0200964
Emilio G. Cota886953e2010-11-12 11:14:07 +0000965 INIT_LIST_HEAD(&dma_list->entries);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100966 dma_list->parent = ctrlr;
Emilio G. Cota886953e2010-11-12 11:14:07 +0000967 mutex_init(&dma_list->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100968
969 return dma_list;
970}
971EXPORT_SYMBOL(vme_new_dma_list);
972
Martyn Welchb5bc9802017-03-04 00:34:29 +0000973/**
974 * vme_dma_pattern_attribute - Create "Pattern" type VME DMA list attribute.
975 * @pattern: Value to use used as pattern
976 * @type: Type of pattern to be written.
977 *
978 * Create VME DMA list attribute for pattern generation. It is the
979 * responsibility of the user to free used attributes using
980 * vme_dma_free_attribute().
981 *
982 * Return: Pointer to VME DMA attribute, NULL on failure.
Martyn Welcha17a75e2009-07-31 09:28:17 +0100983 */
Martyn Welch6af04b02011-12-01 17:06:29 +0000984struct vme_dma_attr *vme_dma_pattern_attribute(u32 pattern, u32 type)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100985{
986 struct vme_dma_attr *attributes;
987 struct vme_dma_pattern *pattern_attr;
988
Martyn Welchead1f3e2009-12-15 08:43:02 +0000989 attributes = kmalloc(sizeof(struct vme_dma_attr), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +0200990 if (!attributes)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100991 goto err_attr;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100992
Martyn Welchead1f3e2009-12-15 08:43:02 +0000993 pattern_attr = kmalloc(sizeof(struct vme_dma_pattern), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +0200994 if (!pattern_attr)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100995 goto err_pat;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100996
997 attributes->type = VME_DMA_PATTERN;
998 attributes->private = (void *)pattern_attr;
999
1000 pattern_attr->pattern = pattern;
1001 pattern_attr->type = type;
1002
1003 return attributes;
1004
Martyn Welcha17a75e2009-07-31 09:28:17 +01001005err_pat:
1006 kfree(attributes);
1007err_attr:
1008 return NULL;
1009}
1010EXPORT_SYMBOL(vme_dma_pattern_attribute);
1011
Martyn Welchb5bc9802017-03-04 00:34:29 +00001012/**
1013 * vme_dma_pci_attribute - Create "PCI" type VME DMA list attribute.
1014 * @address: PCI base address for DMA transfer.
1015 *
1016 * Create VME DMA list attribute pointing to a location on PCI for DMA
1017 * transfers. It is the responsibility of the user to free used attributes
1018 * using vme_dma_free_attribute().
1019 *
1020 * Return: Pointer to VME DMA attribute, NULL on failure.
Martyn Welcha17a75e2009-07-31 09:28:17 +01001021 */
1022struct vme_dma_attr *vme_dma_pci_attribute(dma_addr_t address)
1023{
1024 struct vme_dma_attr *attributes;
1025 struct vme_dma_pci *pci_attr;
1026
1027 /* XXX Run some sanity checks here */
1028
Martyn Welchead1f3e2009-12-15 08:43:02 +00001029 attributes = kmalloc(sizeof(struct vme_dma_attr), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +02001030 if (!attributes)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001031 goto err_attr;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001032
Martyn Welchead1f3e2009-12-15 08:43:02 +00001033 pci_attr = kmalloc(sizeof(struct vme_dma_pci), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +02001034 if (!pci_attr)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001035 goto err_pci;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001036
1037 attributes->type = VME_DMA_PCI;
1038 attributes->private = (void *)pci_attr;
1039
1040 pci_attr->address = address;
1041
1042 return attributes;
1043
Martyn Welcha17a75e2009-07-31 09:28:17 +01001044err_pci:
1045 kfree(attributes);
1046err_attr:
1047 return NULL;
1048}
1049EXPORT_SYMBOL(vme_dma_pci_attribute);
1050
Martyn Welchb5bc9802017-03-04 00:34:29 +00001051/**
1052 * vme_dma_vme_attribute - Create "VME" type VME DMA list attribute.
1053 * @address: VME base address for DMA transfer.
1054 * @aspace: VME address space to use for DMA transfer.
1055 * @cycle: VME bus cycle to use for DMA transfer.
1056 * @dwidth: VME data width to use for DMA transfer.
1057 *
1058 * Create VME DMA list attribute pointing to a location on the VME bus for DMA
1059 * transfers. It is the responsibility of the user to free used attributes
1060 * using vme_dma_free_attribute().
1061 *
1062 * Return: Pointer to VME DMA attribute, NULL on failure.
Martyn Welcha17a75e2009-07-31 09:28:17 +01001063 */
1064struct vme_dma_attr *vme_dma_vme_attribute(unsigned long long address,
Martyn Welch6af04b02011-12-01 17:06:29 +00001065 u32 aspace, u32 cycle, u32 dwidth)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001066{
1067 struct vme_dma_attr *attributes;
1068 struct vme_dma_vme *vme_attr;
1069
Martyn Welchead1f3e2009-12-15 08:43:02 +00001070 attributes = kmalloc(
Martyn Welcha17a75e2009-07-31 09:28:17 +01001071 sizeof(struct vme_dma_attr), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +02001072 if (!attributes)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001073 goto err_attr;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001074
Martyn Welchead1f3e2009-12-15 08:43:02 +00001075 vme_attr = kmalloc(sizeof(struct vme_dma_vme), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +02001076 if (!vme_attr)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001077 goto err_vme;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001078
1079 attributes->type = VME_DMA_VME;
1080 attributes->private = (void *)vme_attr;
1081
1082 vme_attr->address = address;
1083 vme_attr->aspace = aspace;
1084 vme_attr->cycle = cycle;
1085 vme_attr->dwidth = dwidth;
1086
1087 return attributes;
1088
Martyn Welcha17a75e2009-07-31 09:28:17 +01001089err_vme:
1090 kfree(attributes);
1091err_attr:
1092 return NULL;
1093}
1094EXPORT_SYMBOL(vme_dma_vme_attribute);
1095
Martyn Welchb5bc9802017-03-04 00:34:29 +00001096/**
1097 * vme_dma_free_attribute - Free DMA list attribute.
1098 * @attributes: Pointer to DMA list attribute.
1099 *
1100 * Free VME DMA list attribute. VME DMA list attributes can be safely freed
1101 * once vme_dma_list_add() has returned.
Martyn Welcha17a75e2009-07-31 09:28:17 +01001102 */
1103void vme_dma_free_attribute(struct vme_dma_attr *attributes)
1104{
1105 kfree(attributes->private);
1106 kfree(attributes);
1107}
1108EXPORT_SYMBOL(vme_dma_free_attribute);
1109
Martyn Welchb5bc9802017-03-04 00:34:29 +00001110/**
1111 * vme_dma_list_add - Add enty to a VME DMA list.
1112 * @list: Pointer to VME list.
1113 * @src: Pointer to DMA list attribute to use as source.
1114 * @dest: Pointer to DMA list attribute to use as destination.
1115 * @count: Number of bytes to transfer.
1116 *
1117 * Add an entry to the provided VME DMA list. Entry requires pointers to source
1118 * and destination DMA attributes and a count.
1119 *
1120 * Please note, the attributes supported as source and destinations for
1121 * transfers are hardware dependent.
1122 *
1123 * Return: Zero on success, -EINVAL if operation is not supported on this
1124 * device or if the link list has already been submitted for execution.
1125 * Hardware specific errors also possible.
1126 */
Martyn Welcha17a75e2009-07-31 09:28:17 +01001127int vme_dma_list_add(struct vme_dma_list *list, struct vme_dma_attr *src,
1128 struct vme_dma_attr *dest, size_t count)
1129{
1130 struct vme_bridge *bridge = list->parent->parent;
1131 int retval;
1132
1133 if (bridge->dma_list_add == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001134 printk(KERN_WARNING "Link List DMA generation not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001135 return -EINVAL;
1136 }
1137
Emilio G. Cota886953e2010-11-12 11:14:07 +00001138 if (!mutex_trylock(&list->mtx)) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001139 printk(KERN_ERR "Link List already submitted\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001140 return -EINVAL;
1141 }
1142
1143 retval = bridge->dma_list_add(list, src, dest, count);
1144
Emilio G. Cota886953e2010-11-12 11:14:07 +00001145 mutex_unlock(&list->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001146
1147 return retval;
1148}
1149EXPORT_SYMBOL(vme_dma_list_add);
1150
Martyn Welchb5bc9802017-03-04 00:34:29 +00001151/**
1152 * vme_dma_list_exec - Queue a VME DMA list for execution.
1153 * @list: Pointer to VME list.
1154 *
1155 * Queue the provided VME DMA list for execution. The call will return once the
1156 * list has been executed.
1157 *
1158 * Return: Zero on success, -EINVAL if operation is not supported on this
1159 * device. Hardware specific errors also possible.
1160 */
Martyn Welcha17a75e2009-07-31 09:28:17 +01001161int vme_dma_list_exec(struct vme_dma_list *list)
1162{
1163 struct vme_bridge *bridge = list->parent->parent;
1164 int retval;
1165
1166 if (bridge->dma_list_exec == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001167 printk(KERN_ERR "Link List DMA execution not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001168 return -EINVAL;
1169 }
1170
Emilio G. Cota886953e2010-11-12 11:14:07 +00001171 mutex_lock(&list->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001172
1173 retval = bridge->dma_list_exec(list);
1174
Emilio G. Cota886953e2010-11-12 11:14:07 +00001175 mutex_unlock(&list->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001176
1177 return retval;
1178}
1179EXPORT_SYMBOL(vme_dma_list_exec);
1180
Martyn Welchb5bc9802017-03-04 00:34:29 +00001181/**
1182 * vme_dma_list_free - Free a VME DMA list.
1183 * @list: Pointer to VME list.
1184 *
1185 * Free the provided DMA list and all its entries.
1186 *
1187 * Return: Zero on success, -EINVAL on invalid VME resource, -EBUSY if resource
1188 * is still in use. Hardware specific errors also possible.
1189 */
Martyn Welcha17a75e2009-07-31 09:28:17 +01001190int vme_dma_list_free(struct vme_dma_list *list)
1191{
1192 struct vme_bridge *bridge = list->parent->parent;
1193 int retval;
1194
1195 if (bridge->dma_list_empty == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001196 printk(KERN_WARNING "Emptying of Link Lists not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001197 return -EINVAL;
1198 }
1199
Emilio G. Cota886953e2010-11-12 11:14:07 +00001200 if (!mutex_trylock(&list->mtx)) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001201 printk(KERN_ERR "Link List in use\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001202 return -EINVAL;
1203 }
1204
1205 /*
Aaron Sierraf56c3d42016-04-21 11:18:22 -05001206 * Empty out all of the entries from the DMA list. We need to go to the
1207 * low level driver as DMA entries are driver specific.
Martyn Welcha17a75e2009-07-31 09:28:17 +01001208 */
1209 retval = bridge->dma_list_empty(list);
1210 if (retval) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001211 printk(KERN_ERR "Unable to empty link-list entries\n");
Emilio G. Cota886953e2010-11-12 11:14:07 +00001212 mutex_unlock(&list->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001213 return retval;
1214 }
Emilio G. Cota886953e2010-11-12 11:14:07 +00001215 mutex_unlock(&list->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001216 kfree(list);
1217
1218 return retval;
1219}
1220EXPORT_SYMBOL(vme_dma_list_free);
1221
Martyn Welchb5bc9802017-03-04 00:34:29 +00001222/**
1223 * vme_dma_free - Free a VME DMA resource.
1224 * @resource: Pointer to VME DMA resource.
1225 *
1226 * Free the provided DMA resource so that it may be reallocated.
1227 *
1228 * Return: Zero on success, -EINVAL on invalid VME resource, -EBUSY if resource
1229 * is still active.
1230 */
Martyn Welcha17a75e2009-07-31 09:28:17 +01001231int vme_dma_free(struct vme_resource *resource)
1232{
1233 struct vme_dma_resource *ctrlr;
1234
1235 if (resource->type != VME_DMA) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001236 printk(KERN_ERR "Not a DMA resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001237 return -EINVAL;
1238 }
1239
1240 ctrlr = list_entry(resource->entry, struct vme_dma_resource, list);
1241
Emilio G. Cota886953e2010-11-12 11:14:07 +00001242 if (!mutex_trylock(&ctrlr->mtx)) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001243 printk(KERN_ERR "Resource busy, can't free\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001244 return -EBUSY;
1245 }
1246
Emilio G. Cota886953e2010-11-12 11:14:07 +00001247 if (!(list_empty(&ctrlr->pending) && list_empty(&ctrlr->running))) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001248 printk(KERN_WARNING "Resource still processing transfers\n");
Emilio G. Cota886953e2010-11-12 11:14:07 +00001249 mutex_unlock(&ctrlr->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001250 return -EBUSY;
1251 }
1252
1253 ctrlr->locked = 0;
1254
Emilio G. Cota886953e2010-11-12 11:14:07 +00001255 mutex_unlock(&ctrlr->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001256
Martyn Welchfd5c2562013-06-06 12:29:16 +01001257 kfree(resource);
1258
Martyn Welcha17a75e2009-07-31 09:28:17 +01001259 return 0;
1260}
1261EXPORT_SYMBOL(vme_dma_free);
1262
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001263void vme_bus_error_handler(struct vme_bridge *bridge,
Dmitry Kalinkin472f16f2015-09-18 02:01:43 +03001264 unsigned long long address, int am)
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001265{
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001266 struct list_head *handler_pos = NULL;
1267 struct vme_error_handler *handler;
Dmitry Kalinkin448535a2015-09-18 02:01:45 +03001268 int handler_triggered = 0;
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001269 u32 aspace = vme_get_aspace(am);
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001270
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001271 list_for_each(handler_pos, &bridge->vme_error_handlers) {
1272 handler = list_entry(handler_pos, struct vme_error_handler,
1273 list);
1274 if ((aspace == handler->aspace) &&
1275 (address >= handler->start) &&
1276 (address < handler->end)) {
1277 if (!handler->num_errors)
1278 handler->first_error = address;
1279 if (handler->num_errors != UINT_MAX)
1280 handler->num_errors++;
Dmitry Kalinkin448535a2015-09-18 02:01:45 +03001281 handler_triggered = 1;
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001282 }
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001283 }
Dmitry Kalinkin448535a2015-09-18 02:01:45 +03001284
1285 if (!handler_triggered)
1286 dev_err(bridge->parent,
1287 "Unhandled VME access error at address 0x%llx\n",
1288 address);
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001289}
1290EXPORT_SYMBOL(vme_bus_error_handler);
1291
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001292struct vme_error_handler *vme_register_error_handler(
1293 struct vme_bridge *bridge, u32 aspace,
1294 unsigned long long address, size_t len)
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001295{
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001296 struct vme_error_handler *handler;
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001297
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001298 handler = kmalloc(sizeof(*handler), GFP_KERNEL);
1299 if (!handler)
1300 return NULL;
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001301
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001302 handler->aspace = aspace;
1303 handler->start = address;
1304 handler->end = address + len;
1305 handler->num_errors = 0;
1306 handler->first_error = 0;
1307 list_add_tail(&handler->list, &bridge->vme_error_handlers);
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001308
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001309 return handler;
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001310}
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001311EXPORT_SYMBOL(vme_register_error_handler);
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001312
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001313void vme_unregister_error_handler(struct vme_error_handler *handler)
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001314{
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001315 list_del(&handler->list);
1316 kfree(handler);
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001317}
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001318EXPORT_SYMBOL(vme_unregister_error_handler);
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001319
Martyn Welchc813f592009-10-29 16:34:54 +00001320void vme_irq_handler(struct vme_bridge *bridge, int level, int statid)
1321{
1322 void (*call)(int, int, void *);
1323 void *priv_data;
1324
1325 call = bridge->irq[level - 1].callback[statid].func;
1326 priv_data = bridge->irq[level - 1].callback[statid].priv_data;
1327
1328 if (call != NULL)
1329 call(level, statid, priv_data);
1330 else
Aaron Sierraf56c3d42016-04-21 11:18:22 -05001331 printk(KERN_WARNING "Spurious VME interrupt, level:%x, vector:%x\n",
Greg Kroah-Hartman25958ce2012-04-25 11:25:46 -07001332 level, statid);
Martyn Welchc813f592009-10-29 16:34:54 +00001333}
1334EXPORT_SYMBOL(vme_irq_handler);
1335
Martyn Welchb5bc9802017-03-04 00:34:29 +00001336/**
1337 * vme_irq_request - Request a specific VME interrupt.
1338 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1339 * @level: Interrupt priority being requested.
1340 * @statid: Interrupt vector being requested.
1341 * @callback: Pointer to callback function called when VME interrupt/vector
1342 * received.
1343 * @priv_data: Generic pointer that will be passed to the callback function.
1344 *
1345 * Request callback to be attached as a handler for VME interrupts with provided
1346 * level and statid.
1347 *
1348 * Return: Zero on success, -EINVAL on invalid vme device, level or if the
1349 * function is not supported, -EBUSY if the level/statid combination is
1350 * already in use. Hardware specific errors also possible.
1351 */
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001352int vme_irq_request(struct vme_dev *vdev, int level, int statid,
Martyn Welch29848ac2010-02-18 15:13:05 +00001353 void (*callback)(int, int, void *),
Martyn Welcha17a75e2009-07-31 09:28:17 +01001354 void *priv_data)
1355{
1356 struct vme_bridge *bridge;
1357
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001358 bridge = vdev->bridge;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001359 if (bridge == NULL) {
1360 printk(KERN_ERR "Can't find VME bus\n");
1361 return -EINVAL;
1362 }
1363
Martyn Welchead1f3e2009-12-15 08:43:02 +00001364 if ((level < 1) || (level > 7)) {
Martyn Welchc813f592009-10-29 16:34:54 +00001365 printk(KERN_ERR "Invalid interrupt level\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001366 return -EINVAL;
1367 }
1368
Martyn Welchc813f592009-10-29 16:34:54 +00001369 if (bridge->irq_set == NULL) {
1370 printk(KERN_ERR "Configuring interrupts not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001371 return -EINVAL;
1372 }
1373
Emilio G. Cota886953e2010-11-12 11:14:07 +00001374 mutex_lock(&bridge->irq_mtx);
Martyn Welchc813f592009-10-29 16:34:54 +00001375
1376 if (bridge->irq[level - 1].callback[statid].func) {
Emilio G. Cota886953e2010-11-12 11:14:07 +00001377 mutex_unlock(&bridge->irq_mtx);
Martyn Welchc813f592009-10-29 16:34:54 +00001378 printk(KERN_WARNING "VME Interrupt already taken\n");
1379 return -EBUSY;
1380 }
1381
1382 bridge->irq[level - 1].count++;
1383 bridge->irq[level - 1].callback[statid].priv_data = priv_data;
1384 bridge->irq[level - 1].callback[statid].func = callback;
1385
1386 /* Enable IRQ level */
Martyn Welch29848ac2010-02-18 15:13:05 +00001387 bridge->irq_set(bridge, level, 1, 1);
Martyn Welchc813f592009-10-29 16:34:54 +00001388
Emilio G. Cota886953e2010-11-12 11:14:07 +00001389 mutex_unlock(&bridge->irq_mtx);
Martyn Welchc813f592009-10-29 16:34:54 +00001390
1391 return 0;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001392}
Martyn Welchc813f592009-10-29 16:34:54 +00001393EXPORT_SYMBOL(vme_irq_request);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001394
Martyn Welchb5bc9802017-03-04 00:34:29 +00001395/**
1396 * vme_irq_free - Free a VME interrupt.
1397 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1398 * @level: Interrupt priority of interrupt being freed.
1399 * @statid: Interrupt vector of interrupt being freed.
1400 *
1401 * Remove previously attached callback from VME interrupt priority/vector.
1402 */
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001403void vme_irq_free(struct vme_dev *vdev, int level, int statid)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001404{
1405 struct vme_bridge *bridge;
1406
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001407 bridge = vdev->bridge;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001408 if (bridge == NULL) {
1409 printk(KERN_ERR "Can't find VME bus\n");
1410 return;
1411 }
1412
Martyn Welchead1f3e2009-12-15 08:43:02 +00001413 if ((level < 1) || (level > 7)) {
Martyn Welchc813f592009-10-29 16:34:54 +00001414 printk(KERN_ERR "Invalid interrupt level\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001415 return;
1416 }
1417
Martyn Welchc813f592009-10-29 16:34:54 +00001418 if (bridge->irq_set == NULL) {
1419 printk(KERN_ERR "Configuring interrupts not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001420 return;
1421 }
1422
Emilio G. Cota886953e2010-11-12 11:14:07 +00001423 mutex_lock(&bridge->irq_mtx);
Martyn Welchc813f592009-10-29 16:34:54 +00001424
1425 bridge->irq[level - 1].count--;
1426
1427 /* Disable IRQ level if no more interrupts attached at this level*/
1428 if (bridge->irq[level - 1].count == 0)
Martyn Welch29848ac2010-02-18 15:13:05 +00001429 bridge->irq_set(bridge, level, 0, 1);
Martyn Welchc813f592009-10-29 16:34:54 +00001430
1431 bridge->irq[level - 1].callback[statid].func = NULL;
1432 bridge->irq[level - 1].callback[statid].priv_data = NULL;
1433
Emilio G. Cota886953e2010-11-12 11:14:07 +00001434 mutex_unlock(&bridge->irq_mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001435}
Martyn Welchc813f592009-10-29 16:34:54 +00001436EXPORT_SYMBOL(vme_irq_free);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001437
Martyn Welchb5bc9802017-03-04 00:34:29 +00001438/**
1439 * vme_irq_generate - Generate VME interrupt.
1440 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1441 * @level: Interrupt priority at which to assert the interrupt.
1442 * @statid: Interrupt vector to associate with the interrupt.
1443 *
1444 * Generate a VME interrupt of the provided level and with the provided
1445 * statid.
1446 *
1447 * Return: Zero on success, -EINVAL on invalid vme device, level or if the
1448 * function is not supported. Hardware specific errors also possible.
1449 */
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001450int vme_irq_generate(struct vme_dev *vdev, int level, int statid)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001451{
1452 struct vme_bridge *bridge;
1453
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001454 bridge = vdev->bridge;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001455 if (bridge == NULL) {
1456 printk(KERN_ERR "Can't find VME bus\n");
1457 return -EINVAL;
1458 }
1459
Martyn Welchead1f3e2009-12-15 08:43:02 +00001460 if ((level < 1) || (level > 7)) {
Martyn Welcha17a75e2009-07-31 09:28:17 +01001461 printk(KERN_WARNING "Invalid interrupt level\n");
1462 return -EINVAL;
1463 }
1464
Martyn Welchc813f592009-10-29 16:34:54 +00001465 if (bridge->irq_generate == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001466 printk(KERN_WARNING "Interrupt generation not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001467 return -EINVAL;
1468 }
1469
Martyn Welch29848ac2010-02-18 15:13:05 +00001470 return bridge->irq_generate(bridge, level, statid);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001471}
Martyn Welchc813f592009-10-29 16:34:54 +00001472EXPORT_SYMBOL(vme_irq_generate);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001473
Martyn Welchb5bc9802017-03-04 00:34:29 +00001474/**
1475 * vme_lm_request - Request a VME location monitor
1476 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1477 *
1478 * Allocate a location monitor resource to the driver. A location monitor
1479 * allows the driver to monitor accesses to a contiguous number of
1480 * addresses on the VME bus.
1481 *
1482 * Return: Pointer to a VME resource on success or NULL on failure.
Martyn Welch42fb5032009-08-11 17:44:56 +01001483 */
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001484struct vme_resource *vme_lm_request(struct vme_dev *vdev)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001485{
1486 struct vme_bridge *bridge;
Martyn Welch42fb5032009-08-11 17:44:56 +01001487 struct list_head *lm_pos = NULL;
1488 struct vme_lm_resource *allocated_lm = NULL;
1489 struct vme_lm_resource *lm = NULL;
1490 struct vme_resource *resource = NULL;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001491
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001492 bridge = vdev->bridge;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001493 if (bridge == NULL) {
1494 printk(KERN_ERR "Can't find VME bus\n");
Martyn Welch42fb5032009-08-11 17:44:56 +01001495 goto err_bus;
1496 }
1497
Martyn Welchb5bc9802017-03-04 00:34:29 +00001498 /* Loop through LM resources */
Emilio G. Cota886953e2010-11-12 11:14:07 +00001499 list_for_each(lm_pos, &bridge->lm_resources) {
Martyn Welch42fb5032009-08-11 17:44:56 +01001500 lm = list_entry(lm_pos,
1501 struct vme_lm_resource, list);
1502
1503 if (lm == NULL) {
Greg Kroah-Hartman25958ce2012-04-25 11:25:46 -07001504 printk(KERN_ERR "Registered NULL Location Monitor resource\n");
Martyn Welch42fb5032009-08-11 17:44:56 +01001505 continue;
1506 }
1507
1508 /* Find an unlocked controller */
Emilio G. Cota886953e2010-11-12 11:14:07 +00001509 mutex_lock(&lm->mtx);
Martyn Welch42fb5032009-08-11 17:44:56 +01001510 if (lm->locked == 0) {
1511 lm->locked = 1;
Emilio G. Cota886953e2010-11-12 11:14:07 +00001512 mutex_unlock(&lm->mtx);
Martyn Welch42fb5032009-08-11 17:44:56 +01001513 allocated_lm = lm;
1514 break;
1515 }
Emilio G. Cota886953e2010-11-12 11:14:07 +00001516 mutex_unlock(&lm->mtx);
Martyn Welch42fb5032009-08-11 17:44:56 +01001517 }
1518
1519 /* Check to see if we found a resource */
1520 if (allocated_lm == NULL)
1521 goto err_lm;
1522
1523 resource = kmalloc(sizeof(struct vme_resource), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +02001524 if (!resource)
Martyn Welch42fb5032009-08-11 17:44:56 +01001525 goto err_alloc;
Markus Elfring94eefcc2017-08-24 21:38:20 +02001526
Martyn Welch42fb5032009-08-11 17:44:56 +01001527 resource->type = VME_LM;
Emilio G. Cota886953e2010-11-12 11:14:07 +00001528 resource->entry = &allocated_lm->list;
Martyn Welch42fb5032009-08-11 17:44:56 +01001529
1530 return resource;
1531
1532err_alloc:
1533 /* Unlock image */
Emilio G. Cota886953e2010-11-12 11:14:07 +00001534 mutex_lock(&lm->mtx);
Martyn Welch42fb5032009-08-11 17:44:56 +01001535 lm->locked = 0;
Emilio G. Cota886953e2010-11-12 11:14:07 +00001536 mutex_unlock(&lm->mtx);
Martyn Welch42fb5032009-08-11 17:44:56 +01001537err_lm:
1538err_bus:
1539 return NULL;
1540}
1541EXPORT_SYMBOL(vme_lm_request);
1542
Martyn Welchb5bc9802017-03-04 00:34:29 +00001543/**
1544 * vme_lm_count - Determine number of VME Addresses monitored
1545 * @resource: Pointer to VME location monitor resource.
1546 *
1547 * The number of contiguous addresses monitored is hardware dependent.
1548 * Return the number of contiguous addresses monitored by the
1549 * location monitor.
1550 *
1551 * Return: Count of addresses monitored or -EINVAL when provided with an
1552 * invalid location monitor resource.
1553 */
Martyn Welch42fb5032009-08-11 17:44:56 +01001554int vme_lm_count(struct vme_resource *resource)
1555{
1556 struct vme_lm_resource *lm;
1557
1558 if (resource->type != VME_LM) {
1559 printk(KERN_ERR "Not a Location Monitor resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001560 return -EINVAL;
1561 }
1562
Martyn Welch42fb5032009-08-11 17:44:56 +01001563 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1564
1565 return lm->monitors;
1566}
1567EXPORT_SYMBOL(vme_lm_count);
1568
Martyn Welchb5bc9802017-03-04 00:34:29 +00001569/**
1570 * vme_lm_set - Configure location monitor
1571 * @resource: Pointer to VME location monitor resource.
1572 * @lm_base: Base address to monitor.
1573 * @aspace: VME address space to monitor.
1574 * @cycle: VME bus cycle type to monitor.
1575 *
1576 * Set the base address, address space and cycle type of accesses to be
1577 * monitored by the location monitor.
1578 *
1579 * Return: Zero on success, -EINVAL when provided with an invalid location
1580 * monitor resource or function is not supported. Hardware specific
1581 * errors may also be returned.
1582 */
Martyn Welch42fb5032009-08-11 17:44:56 +01001583int vme_lm_set(struct vme_resource *resource, unsigned long long lm_base,
Martyn Welch6af04b02011-12-01 17:06:29 +00001584 u32 aspace, u32 cycle)
Martyn Welch42fb5032009-08-11 17:44:56 +01001585{
1586 struct vme_bridge *bridge = find_bridge(resource);
1587 struct vme_lm_resource *lm;
1588
1589 if (resource->type != VME_LM) {
1590 printk(KERN_ERR "Not a Location Monitor resource\n");
1591 return -EINVAL;
1592 }
1593
1594 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1595
Martyn Welcha17a75e2009-07-31 09:28:17 +01001596 if (bridge->lm_set == NULL) {
Martyn Welch42fb5032009-08-11 17:44:56 +01001597 printk(KERN_ERR "vme_lm_set not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001598 return -EINVAL;
1599 }
1600
Martyn Welch8be92262009-10-29 16:35:08 +00001601 return bridge->lm_set(lm, lm_base, aspace, cycle);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001602}
1603EXPORT_SYMBOL(vme_lm_set);
1604
Martyn Welchb5bc9802017-03-04 00:34:29 +00001605/**
1606 * vme_lm_get - Retrieve location monitor settings
1607 * @resource: Pointer to VME location monitor resource.
1608 * @lm_base: Pointer used to output the base address monitored.
1609 * @aspace: Pointer used to output the address space monitored.
1610 * @cycle: Pointer used to output the VME bus cycle type monitored.
1611 *
1612 * Retrieve the base address, address space and cycle type of accesses to
1613 * be monitored by the location monitor.
1614 *
1615 * Return: Zero on success, -EINVAL when provided with an invalid location
1616 * monitor resource or function is not supported. Hardware specific
1617 * errors may also be returned.
1618 */
Martyn Welch42fb5032009-08-11 17:44:56 +01001619int vme_lm_get(struct vme_resource *resource, unsigned long long *lm_base,
Martyn Welch6af04b02011-12-01 17:06:29 +00001620 u32 *aspace, u32 *cycle)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001621{
Martyn Welch42fb5032009-08-11 17:44:56 +01001622 struct vme_bridge *bridge = find_bridge(resource);
1623 struct vme_lm_resource *lm;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001624
Martyn Welch42fb5032009-08-11 17:44:56 +01001625 if (resource->type != VME_LM) {
1626 printk(KERN_ERR "Not a Location Monitor resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001627 return -EINVAL;
1628 }
1629
Martyn Welch42fb5032009-08-11 17:44:56 +01001630 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1631
Martyn Welcha17a75e2009-07-31 09:28:17 +01001632 if (bridge->lm_get == NULL) {
Martyn Welch42fb5032009-08-11 17:44:56 +01001633 printk(KERN_ERR "vme_lm_get not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001634 return -EINVAL;
1635 }
1636
Martyn Welch42fb5032009-08-11 17:44:56 +01001637 return bridge->lm_get(lm, lm_base, aspace, cycle);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001638}
1639EXPORT_SYMBOL(vme_lm_get);
1640
Martyn Welchb5bc9802017-03-04 00:34:29 +00001641/**
1642 * vme_lm_attach - Provide callback for location monitor address
1643 * @resource: Pointer to VME location monitor resource.
1644 * @monitor: Offset to which callback should be attached.
1645 * @callback: Pointer to callback function called when triggered.
1646 * @data: Generic pointer that will be passed to the callback function.
1647 *
1648 * Attach a callback to the specificed offset into the location monitors
1649 * monitored addresses. A generic pointer is provided to allow data to be
1650 * passed to the callback when called.
1651 *
1652 * Return: Zero on success, -EINVAL when provided with an invalid location
1653 * monitor resource or function is not supported. Hardware specific
1654 * errors may also be returned.
1655 */
Martyn Welch42fb5032009-08-11 17:44:56 +01001656int vme_lm_attach(struct vme_resource *resource, int monitor,
Aaron Sierrafa54b322016-04-29 16:41:02 -05001657 void (*callback)(void *), void *data)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001658{
Martyn Welch42fb5032009-08-11 17:44:56 +01001659 struct vme_bridge *bridge = find_bridge(resource);
1660 struct vme_lm_resource *lm;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001661
Martyn Welch42fb5032009-08-11 17:44:56 +01001662 if (resource->type != VME_LM) {
1663 printk(KERN_ERR "Not a Location Monitor resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001664 return -EINVAL;
1665 }
1666
Martyn Welch42fb5032009-08-11 17:44:56 +01001667 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1668
Martyn Welcha17a75e2009-07-31 09:28:17 +01001669 if (bridge->lm_attach == NULL) {
Martyn Welch42fb5032009-08-11 17:44:56 +01001670 printk(KERN_ERR "vme_lm_attach not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001671 return -EINVAL;
1672 }
1673
Aaron Sierrafa54b322016-04-29 16:41:02 -05001674 return bridge->lm_attach(lm, monitor, callback, data);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001675}
1676EXPORT_SYMBOL(vme_lm_attach);
1677
Martyn Welchb5bc9802017-03-04 00:34:29 +00001678/**
1679 * vme_lm_detach - Remove callback for location monitor address
1680 * @resource: Pointer to VME location monitor resource.
1681 * @monitor: Offset to which callback should be removed.
1682 *
1683 * Remove the callback associated with the specificed offset into the
1684 * location monitors monitored addresses.
1685 *
1686 * Return: Zero on success, -EINVAL when provided with an invalid location
1687 * monitor resource or function is not supported. Hardware specific
1688 * errors may also be returned.
1689 */
Martyn Welch42fb5032009-08-11 17:44:56 +01001690int vme_lm_detach(struct vme_resource *resource, int monitor)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001691{
Martyn Welch42fb5032009-08-11 17:44:56 +01001692 struct vme_bridge *bridge = find_bridge(resource);
1693 struct vme_lm_resource *lm;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001694
Martyn Welch42fb5032009-08-11 17:44:56 +01001695 if (resource->type != VME_LM) {
1696 printk(KERN_ERR "Not a Location Monitor resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001697 return -EINVAL;
1698 }
1699
Martyn Welch42fb5032009-08-11 17:44:56 +01001700 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1701
Martyn Welcha17a75e2009-07-31 09:28:17 +01001702 if (bridge->lm_detach == NULL) {
Martyn Welch42fb5032009-08-11 17:44:56 +01001703 printk(KERN_ERR "vme_lm_detach not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001704 return -EINVAL;
1705 }
1706
Martyn Welch42fb5032009-08-11 17:44:56 +01001707 return bridge->lm_detach(lm, monitor);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001708}
1709EXPORT_SYMBOL(vme_lm_detach);
1710
Martyn Welchb5bc9802017-03-04 00:34:29 +00001711/**
1712 * vme_lm_free - Free allocated VME location monitor
1713 * @resource: Pointer to VME location monitor resource.
1714 *
1715 * Free allocation of a VME location monitor.
1716 *
1717 * WARNING: This function currently expects that any callbacks that have
1718 * been attached to the location monitor have been removed.
1719 *
1720 * Return: Zero on success, -EINVAL when provided with an invalid location
1721 * monitor resource.
1722 */
Martyn Welch42fb5032009-08-11 17:44:56 +01001723void vme_lm_free(struct vme_resource *resource)
1724{
1725 struct vme_lm_resource *lm;
1726
1727 if (resource->type != VME_LM) {
1728 printk(KERN_ERR "Not a Location Monitor resource\n");
1729 return;
1730 }
1731
1732 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1733
Emilio G. Cota886953e2010-11-12 11:14:07 +00001734 mutex_lock(&lm->mtx);
Martyn Welch42fb5032009-08-11 17:44:56 +01001735
Martyn Welch8be92262009-10-29 16:35:08 +00001736 /* XXX
1737 * Check to see that there aren't any callbacks still attached, if
1738 * there are we should probably be detaching them!
1739 */
Martyn Welch42fb5032009-08-11 17:44:56 +01001740
1741 lm->locked = 0;
1742
Emilio G. Cota886953e2010-11-12 11:14:07 +00001743 mutex_unlock(&lm->mtx);
Martyn Welch8be92262009-10-29 16:35:08 +00001744
1745 kfree(resource);
Martyn Welch42fb5032009-08-11 17:44:56 +01001746}
1747EXPORT_SYMBOL(vme_lm_free);
1748
Martyn Welchb5bc9802017-03-04 00:34:29 +00001749/**
1750 * vme_slot_num - Retrieve slot ID
1751 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1752 *
1753 * Retrieve the slot ID associated with the provided VME device.
1754 *
1755 * Return: The slot ID on success, -EINVAL if VME bridge cannot be determined
1756 * or the function is not supported. Hardware specific errors may also
1757 * be returned.
1758 */
Martyn Welchd7729f02013-11-08 11:58:35 +00001759int vme_slot_num(struct vme_dev *vdev)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001760{
1761 struct vme_bridge *bridge;
1762
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001763 bridge = vdev->bridge;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001764 if (bridge == NULL) {
1765 printk(KERN_ERR "Can't find VME bus\n");
1766 return -EINVAL;
1767 }
1768
1769 if (bridge->slot_get == NULL) {
Martyn Welchd7729f02013-11-08 11:58:35 +00001770 printk(KERN_WARNING "vme_slot_num not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001771 return -EINVAL;
1772 }
1773
Martyn Welch29848ac2010-02-18 15:13:05 +00001774 return bridge->slot_get(bridge);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001775}
Martyn Welchd7729f02013-11-08 11:58:35 +00001776EXPORT_SYMBOL(vme_slot_num);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001777
Martyn Welchb5bc9802017-03-04 00:34:29 +00001778/**
1779 * vme_bus_num - Retrieve bus number
1780 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1781 *
1782 * Retrieve the bus enumeration associated with the provided VME device.
1783 *
1784 * Return: The bus number on success, -EINVAL if VME bridge cannot be
1785 * determined.
1786 */
Martyn Welch978f47d2013-11-08 11:58:34 +00001787int vme_bus_num(struct vme_dev *vdev)
1788{
1789 struct vme_bridge *bridge;
1790
1791 bridge = vdev->bridge;
1792 if (bridge == NULL) {
1793 pr_err("Can't find VME bus\n");
1794 return -EINVAL;
1795 }
1796
1797 return bridge->num;
1798}
1799EXPORT_SYMBOL(vme_bus_num);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001800
1801/* - Bridge Registration --------------------------------------------------- */
1802
Manohar Vanga5b93c2a2011-11-04 11:12:30 +01001803static void vme_dev_release(struct device *dev)
1804{
1805 kfree(dev_to_vme_dev(dev));
1806}
1807
Aaron Sierra326071b2016-04-24 15:11:38 -05001808/* Common bridge initialization */
1809struct vme_bridge *vme_init_bridge(struct vme_bridge *bridge)
1810{
1811 INIT_LIST_HEAD(&bridge->vme_error_handlers);
1812 INIT_LIST_HEAD(&bridge->master_resources);
1813 INIT_LIST_HEAD(&bridge->slave_resources);
1814 INIT_LIST_HEAD(&bridge->dma_resources);
1815 INIT_LIST_HEAD(&bridge->lm_resources);
1816 mutex_init(&bridge->irq_mtx);
1817
1818 return bridge;
1819}
1820EXPORT_SYMBOL(vme_init_bridge);
1821
Manohar Vanga5b93c2a2011-11-04 11:12:30 +01001822int vme_register_bridge(struct vme_bridge *bridge)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001823{
1824 int i;
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001825 int ret = -1;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001826
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001827 mutex_lock(&vme_buses_lock);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001828 for (i = 0; i < sizeof(vme_bus_numbers) * 8; i++) {
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001829 if ((vme_bus_numbers & (1 << i)) == 0) {
1830 vme_bus_numbers |= (1 << i);
1831 bridge->num = i;
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001832 INIT_LIST_HEAD(&bridge->devices);
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001833 list_add_tail(&bridge->bus_list, &vme_bus_list);
1834 ret = 0;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001835 break;
1836 }
1837 }
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001838 mutex_unlock(&vme_buses_lock);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001839
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001840 return ret;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001841}
Manohar Vanga5b93c2a2011-11-04 11:12:30 +01001842EXPORT_SYMBOL(vme_register_bridge);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001843
Manohar Vanga5b93c2a2011-11-04 11:12:30 +01001844void vme_unregister_bridge(struct vme_bridge *bridge)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001845{
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001846 struct vme_dev *vdev;
1847 struct vme_dev *tmp;
1848
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001849 mutex_lock(&vme_buses_lock);
1850 vme_bus_numbers &= ~(1 << bridge->num);
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001851 list_for_each_entry_safe(vdev, tmp, &bridge->devices, bridge_list) {
1852 list_del(&vdev->drv_list);
1853 list_del(&vdev->bridge_list);
1854 device_unregister(&vdev->dev);
1855 }
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001856 list_del(&bridge->bus_list);
1857 mutex_unlock(&vme_buses_lock);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001858}
Martyn Welcha17a75e2009-07-31 09:28:17 +01001859EXPORT_SYMBOL(vme_unregister_bridge);
1860
Martyn Welcha17a75e2009-07-31 09:28:17 +01001861/* - Driver Registration --------------------------------------------------- */
1862
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001863static int __vme_register_driver_bus(struct vme_driver *drv,
1864 struct vme_bridge *bridge, unsigned int ndevs)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001865{
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001866 int err;
1867 unsigned int i;
1868 struct vme_dev *vdev;
1869 struct vme_dev *tmp;
1870
1871 for (i = 0; i < ndevs; i++) {
1872 vdev = kzalloc(sizeof(struct vme_dev), GFP_KERNEL);
1873 if (!vdev) {
1874 err = -ENOMEM;
1875 goto err_devalloc;
1876 }
Manohar Vangaa916a392011-09-26 11:27:17 +02001877 vdev->num = i;
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001878 vdev->bridge = bridge;
1879 vdev->dev.platform_data = drv;
1880 vdev->dev.release = vme_dev_release;
1881 vdev->dev.parent = bridge->parent;
1882 vdev->dev.bus = &vme_bus_type;
Manohar Vangaa916a392011-09-26 11:27:17 +02001883 dev_set_name(&vdev->dev, "%s.%u-%u", drv->name, bridge->num,
1884 vdev->num);
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001885
1886 err = device_register(&vdev->dev);
1887 if (err)
1888 goto err_reg;
1889
1890 if (vdev->dev.platform_data) {
1891 list_add_tail(&vdev->drv_list, &drv->devices);
1892 list_add_tail(&vdev->bridge_list, &bridge->devices);
1893 } else
1894 device_unregister(&vdev->dev);
1895 }
1896 return 0;
1897
1898err_reg:
Emilio G. Cotadef18202013-02-13 13:47:54 -05001899 put_device(&vdev->dev);
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001900 kfree(vdev);
1901err_devalloc:
1902 list_for_each_entry_safe(vdev, tmp, &drv->devices, drv_list) {
1903 list_del(&vdev->drv_list);
1904 list_del(&vdev->bridge_list);
1905 device_unregister(&vdev->dev);
1906 }
1907 return err;
1908}
1909
1910static int __vme_register_driver(struct vme_driver *drv, unsigned int ndevs)
1911{
1912 struct vme_bridge *bridge;
1913 int err = 0;
1914
1915 mutex_lock(&vme_buses_lock);
1916 list_for_each_entry(bridge, &vme_bus_list, bus_list) {
1917 /*
1918 * This cannot cause trouble as we already have vme_buses_lock
1919 * and if the bridge is removed, it will have to go through
1920 * vme_unregister_bridge() to do it (which calls remove() on
1921 * the bridge which in turn tries to acquire vme_buses_lock and
Manohar Vangac26f6112011-11-04 11:12:29 +01001922 * will have to wait).
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001923 */
1924 err = __vme_register_driver_bus(drv, bridge, ndevs);
1925 if (err)
1926 break;
1927 }
1928 mutex_unlock(&vme_buses_lock);
1929 return err;
1930}
1931
Martyn Welchb5bc9802017-03-04 00:34:29 +00001932/**
1933 * vme_register_driver - Register a VME driver
1934 * @drv: Pointer to VME driver structure to register.
1935 * @ndevs: Maximum number of devices to allow to be enumerated.
1936 *
1937 * Register a VME device driver with the VME subsystem.
1938 *
1939 * Return: Zero on success, error value on registration failure.
1940 */
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001941int vme_register_driver(struct vme_driver *drv, unsigned int ndevs)
1942{
1943 int err;
1944
Martyn Welcha17a75e2009-07-31 09:28:17 +01001945 drv->driver.name = drv->name;
1946 drv->driver.bus = &vme_bus_type;
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001947 INIT_LIST_HEAD(&drv->devices);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001948
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001949 err = driver_register(&drv->driver);
1950 if (err)
1951 return err;
1952
1953 err = __vme_register_driver(drv, ndevs);
1954 if (err)
1955 driver_unregister(&drv->driver);
1956
1957 return err;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001958}
1959EXPORT_SYMBOL(vme_register_driver);
1960
Martyn Welchb5bc9802017-03-04 00:34:29 +00001961/**
1962 * vme_unregister_driver - Unregister a VME driver
1963 * @drv: Pointer to VME driver structure to unregister.
1964 *
1965 * Unregister a VME device driver from the VME subsystem.
1966 */
Martyn Welchead1f3e2009-12-15 08:43:02 +00001967void vme_unregister_driver(struct vme_driver *drv)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001968{
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001969 struct vme_dev *dev, *dev_tmp;
1970
1971 mutex_lock(&vme_buses_lock);
1972 list_for_each_entry_safe(dev, dev_tmp, &drv->devices, drv_list) {
1973 list_del(&dev->drv_list);
1974 list_del(&dev->bridge_list);
1975 device_unregister(&dev->dev);
1976 }
1977 mutex_unlock(&vme_buses_lock);
1978
Martyn Welcha17a75e2009-07-31 09:28:17 +01001979 driver_unregister(&drv->driver);
1980}
1981EXPORT_SYMBOL(vme_unregister_driver);
1982
1983/* - Bus Registration ------------------------------------------------------ */
1984
Martyn Welcha17a75e2009-07-31 09:28:17 +01001985static int vme_bus_match(struct device *dev, struct device_driver *drv)
1986{
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001987 struct vme_driver *vme_drv;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001988
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001989 vme_drv = container_of(drv, struct vme_driver, driver);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001990
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001991 if (dev->platform_data == vme_drv) {
1992 struct vme_dev *vdev = dev_to_vme_dev(dev);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001993
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001994 if (vme_drv->match && vme_drv->match(vdev))
1995 return 1;
1996
1997 dev->platform_data = NULL;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001998 }
Martyn Welcha17a75e2009-07-31 09:28:17 +01001999 return 0;
2000}
2001
2002static int vme_bus_probe(struct device *dev)
2003{
Martyn Welcha17a75e2009-07-31 09:28:17 +01002004 int retval = -ENODEV;
Manohar Vanga5d6abf32011-09-26 11:27:16 +02002005 struct vme_driver *driver;
2006 struct vme_dev *vdev = dev_to_vme_dev(dev);
Martyn Welcha17a75e2009-07-31 09:28:17 +01002007
Manohar Vanga5d6abf32011-09-26 11:27:16 +02002008 driver = dev->platform_data;
Martyn Welcha17a75e2009-07-31 09:28:17 +01002009
Martyn Welchead1f3e2009-12-15 08:43:02 +00002010 if (driver->probe != NULL)
Manohar Vanga8f966dc2011-09-26 11:27:15 +02002011 retval = driver->probe(vdev);
Martyn Welcha17a75e2009-07-31 09:28:17 +01002012
2013 return retval;
2014}
2015
Stefano Babic97974842017-01-20 10:38:20 -05002016static int vme_bus_remove(struct device *dev)
2017{
2018 int retval = -ENODEV;
2019 struct vme_driver *driver;
2020 struct vme_dev *vdev = dev_to_vme_dev(dev);
2021
2022 driver = dev->platform_data;
2023
2024 if (driver->remove != NULL)
2025 retval = driver->remove(vdev);
2026
2027 return retval;
2028}
2029
Martyn Welcha17a75e2009-07-31 09:28:17 +01002030struct bus_type vme_bus_type = {
2031 .name = "vme",
2032 .match = vme_bus_match,
2033 .probe = vme_bus_probe,
Stefano Babic97974842017-01-20 10:38:20 -05002034 .remove = vme_bus_remove,
Martyn Welcha17a75e2009-07-31 09:28:17 +01002035};
2036EXPORT_SYMBOL(vme_bus_type);
2037
Martyn Welchead1f3e2009-12-15 08:43:02 +00002038static int __init vme_init(void)
Martyn Welcha17a75e2009-07-31 09:28:17 +01002039{
2040 return bus_register(&vme_bus_type);
2041}
Aaron Sierrac326cc02013-12-09 09:54:42 -06002042subsys_initcall(vme_init);