blob: d890410e472dd6641224b0200cb47a8f86db33eb [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
Markus Elfring1ff0a192017-08-24 21:52:00 +0200339 resource = kmalloc(sizeof(*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
Markus Elfring1ff0a192017-08-24 21:52:00 +0200543 resource = kmalloc(sizeof(*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
Markus Elfring1ff0a192017-08-24 21:52:00 +0200919 resource = kmalloc(sizeof(*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{
Martyn Welcha17a75e2009-07-31 09:28:17 +0100951 struct vme_dma_list *dma_list;
952
953 if (resource->type != VME_DMA) {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000954 printk(KERN_ERR "Not a DMA resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +0100955 return NULL;
956 }
957
Markus Elfring1ff0a192017-08-24 21:52:00 +0200958 dma_list = kmalloc(sizeof(*dma_list), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +0200959 if (!dma_list)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100960 return NULL;
Markus Elfring94eefcc2017-08-24 21:38:20 +0200961
Emilio G. Cota886953e2010-11-12 11:14:07 +0000962 INIT_LIST_HEAD(&dma_list->entries);
Markus Elfringa384b2c2017-08-24 22:04:45 +0200963 dma_list->parent = list_entry(resource->entry,
964 struct vme_dma_resource,
965 list);
Emilio G. Cota886953e2010-11-12 11:14:07 +0000966 mutex_init(&dma_list->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100967
968 return dma_list;
969}
970EXPORT_SYMBOL(vme_new_dma_list);
971
Martyn Welchb5bc9802017-03-04 00:34:29 +0000972/**
973 * vme_dma_pattern_attribute - Create "Pattern" type VME DMA list attribute.
974 * @pattern: Value to use used as pattern
975 * @type: Type of pattern to be written.
976 *
977 * Create VME DMA list attribute for pattern generation. It is the
978 * responsibility of the user to free used attributes using
979 * vme_dma_free_attribute().
980 *
981 * Return: Pointer to VME DMA attribute, NULL on failure.
Martyn Welcha17a75e2009-07-31 09:28:17 +0100982 */
Martyn Welch6af04b02011-12-01 17:06:29 +0000983struct vme_dma_attr *vme_dma_pattern_attribute(u32 pattern, u32 type)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100984{
985 struct vme_dma_attr *attributes;
986 struct vme_dma_pattern *pattern_attr;
987
Markus Elfring1ff0a192017-08-24 21:52:00 +0200988 attributes = kmalloc(sizeof(*attributes), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +0200989 if (!attributes)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100990 goto err_attr;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100991
Markus Elfring1ff0a192017-08-24 21:52:00 +0200992 pattern_attr = kmalloc(sizeof(*pattern_attr), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +0200993 if (!pattern_attr)
Martyn Welcha17a75e2009-07-31 09:28:17 +0100994 goto err_pat;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100995
996 attributes->type = VME_DMA_PATTERN;
997 attributes->private = (void *)pattern_attr;
998
999 pattern_attr->pattern = pattern;
1000 pattern_attr->type = type;
1001
1002 return attributes;
1003
Martyn Welcha17a75e2009-07-31 09:28:17 +01001004err_pat:
1005 kfree(attributes);
1006err_attr:
1007 return NULL;
1008}
1009EXPORT_SYMBOL(vme_dma_pattern_attribute);
1010
Martyn Welchb5bc9802017-03-04 00:34:29 +00001011/**
1012 * vme_dma_pci_attribute - Create "PCI" type VME DMA list attribute.
1013 * @address: PCI base address for DMA transfer.
1014 *
1015 * Create VME DMA list attribute pointing to a location on PCI for DMA
1016 * transfers. It is the responsibility of the user to free used attributes
1017 * using vme_dma_free_attribute().
1018 *
1019 * Return: Pointer to VME DMA attribute, NULL on failure.
Martyn Welcha17a75e2009-07-31 09:28:17 +01001020 */
1021struct vme_dma_attr *vme_dma_pci_attribute(dma_addr_t address)
1022{
1023 struct vme_dma_attr *attributes;
1024 struct vme_dma_pci *pci_attr;
1025
1026 /* XXX Run some sanity checks here */
1027
Markus Elfring1ff0a192017-08-24 21:52:00 +02001028 attributes = kmalloc(sizeof(*attributes), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +02001029 if (!attributes)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001030 goto err_attr;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001031
Markus Elfring1ff0a192017-08-24 21:52:00 +02001032 pci_attr = kmalloc(sizeof(*pci_attr), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +02001033 if (!pci_attr)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001034 goto err_pci;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001035
1036 attributes->type = VME_DMA_PCI;
1037 attributes->private = (void *)pci_attr;
1038
1039 pci_attr->address = address;
1040
1041 return attributes;
1042
Martyn Welcha17a75e2009-07-31 09:28:17 +01001043err_pci:
1044 kfree(attributes);
1045err_attr:
1046 return NULL;
1047}
1048EXPORT_SYMBOL(vme_dma_pci_attribute);
1049
Martyn Welchb5bc9802017-03-04 00:34:29 +00001050/**
1051 * vme_dma_vme_attribute - Create "VME" type VME DMA list attribute.
1052 * @address: VME base address for DMA transfer.
1053 * @aspace: VME address space to use for DMA transfer.
1054 * @cycle: VME bus cycle to use for DMA transfer.
1055 * @dwidth: VME data width to use for DMA transfer.
1056 *
1057 * Create VME DMA list attribute pointing to a location on the VME bus for DMA
1058 * transfers. It is the responsibility of the user to free used attributes
1059 * using vme_dma_free_attribute().
1060 *
1061 * Return: Pointer to VME DMA attribute, NULL on failure.
Martyn Welcha17a75e2009-07-31 09:28:17 +01001062 */
1063struct vme_dma_attr *vme_dma_vme_attribute(unsigned long long address,
Martyn Welch6af04b02011-12-01 17:06:29 +00001064 u32 aspace, u32 cycle, u32 dwidth)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001065{
1066 struct vme_dma_attr *attributes;
1067 struct vme_dma_vme *vme_attr;
1068
Markus Elfring1ff0a192017-08-24 21:52:00 +02001069 attributes = kmalloc(sizeof(*attributes), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +02001070 if (!attributes)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001071 goto err_attr;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001072
Markus Elfring1ff0a192017-08-24 21:52:00 +02001073 vme_attr = kmalloc(sizeof(*vme_attr), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +02001074 if (!vme_attr)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001075 goto err_vme;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001076
1077 attributes->type = VME_DMA_VME;
1078 attributes->private = (void *)vme_attr;
1079
1080 vme_attr->address = address;
1081 vme_attr->aspace = aspace;
1082 vme_attr->cycle = cycle;
1083 vme_attr->dwidth = dwidth;
1084
1085 return attributes;
1086
Martyn Welcha17a75e2009-07-31 09:28:17 +01001087err_vme:
1088 kfree(attributes);
1089err_attr:
1090 return NULL;
1091}
1092EXPORT_SYMBOL(vme_dma_vme_attribute);
1093
Martyn Welchb5bc9802017-03-04 00:34:29 +00001094/**
1095 * vme_dma_free_attribute - Free DMA list attribute.
1096 * @attributes: Pointer to DMA list attribute.
1097 *
1098 * Free VME DMA list attribute. VME DMA list attributes can be safely freed
1099 * once vme_dma_list_add() has returned.
Martyn Welcha17a75e2009-07-31 09:28:17 +01001100 */
1101void vme_dma_free_attribute(struct vme_dma_attr *attributes)
1102{
1103 kfree(attributes->private);
1104 kfree(attributes);
1105}
1106EXPORT_SYMBOL(vme_dma_free_attribute);
1107
Martyn Welchb5bc9802017-03-04 00:34:29 +00001108/**
1109 * vme_dma_list_add - Add enty to a VME DMA list.
1110 * @list: Pointer to VME list.
1111 * @src: Pointer to DMA list attribute to use as source.
1112 * @dest: Pointer to DMA list attribute to use as destination.
1113 * @count: Number of bytes to transfer.
1114 *
1115 * Add an entry to the provided VME DMA list. Entry requires pointers to source
1116 * and destination DMA attributes and a count.
1117 *
1118 * Please note, the attributes supported as source and destinations for
1119 * transfers are hardware dependent.
1120 *
1121 * Return: Zero on success, -EINVAL if operation is not supported on this
1122 * device or if the link list has already been submitted for execution.
1123 * Hardware specific errors also possible.
1124 */
Martyn Welcha17a75e2009-07-31 09:28:17 +01001125int vme_dma_list_add(struct vme_dma_list *list, struct vme_dma_attr *src,
1126 struct vme_dma_attr *dest, size_t count)
1127{
1128 struct vme_bridge *bridge = list->parent->parent;
1129 int retval;
1130
1131 if (bridge->dma_list_add == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001132 printk(KERN_WARNING "Link List DMA generation not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001133 return -EINVAL;
1134 }
1135
Emilio G. Cota886953e2010-11-12 11:14:07 +00001136 if (!mutex_trylock(&list->mtx)) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001137 printk(KERN_ERR "Link List already submitted\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001138 return -EINVAL;
1139 }
1140
1141 retval = bridge->dma_list_add(list, src, dest, count);
1142
Emilio G. Cota886953e2010-11-12 11:14:07 +00001143 mutex_unlock(&list->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001144
1145 return retval;
1146}
1147EXPORT_SYMBOL(vme_dma_list_add);
1148
Martyn Welchb5bc9802017-03-04 00:34:29 +00001149/**
1150 * vme_dma_list_exec - Queue a VME DMA list for execution.
1151 * @list: Pointer to VME list.
1152 *
1153 * Queue the provided VME DMA list for execution. The call will return once the
1154 * list has been executed.
1155 *
1156 * Return: Zero on success, -EINVAL if operation is not supported on this
1157 * device. Hardware specific errors also possible.
1158 */
Martyn Welcha17a75e2009-07-31 09:28:17 +01001159int vme_dma_list_exec(struct vme_dma_list *list)
1160{
1161 struct vme_bridge *bridge = list->parent->parent;
1162 int retval;
1163
1164 if (bridge->dma_list_exec == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001165 printk(KERN_ERR "Link List DMA execution not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001166 return -EINVAL;
1167 }
1168
Emilio G. Cota886953e2010-11-12 11:14:07 +00001169 mutex_lock(&list->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001170
1171 retval = bridge->dma_list_exec(list);
1172
Emilio G. Cota886953e2010-11-12 11:14:07 +00001173 mutex_unlock(&list->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001174
1175 return retval;
1176}
1177EXPORT_SYMBOL(vme_dma_list_exec);
1178
Martyn Welchb5bc9802017-03-04 00:34:29 +00001179/**
1180 * vme_dma_list_free - Free a VME DMA list.
1181 * @list: Pointer to VME list.
1182 *
1183 * Free the provided DMA list and all its entries.
1184 *
1185 * Return: Zero on success, -EINVAL on invalid VME resource, -EBUSY if resource
1186 * is still in use. Hardware specific errors also possible.
1187 */
Martyn Welcha17a75e2009-07-31 09:28:17 +01001188int vme_dma_list_free(struct vme_dma_list *list)
1189{
1190 struct vme_bridge *bridge = list->parent->parent;
1191 int retval;
1192
1193 if (bridge->dma_list_empty == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001194 printk(KERN_WARNING "Emptying of Link Lists not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001195 return -EINVAL;
1196 }
1197
Emilio G. Cota886953e2010-11-12 11:14:07 +00001198 if (!mutex_trylock(&list->mtx)) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001199 printk(KERN_ERR "Link List in use\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001200 return -EINVAL;
1201 }
1202
1203 /*
Aaron Sierraf56c3d42016-04-21 11:18:22 -05001204 * Empty out all of the entries from the DMA list. We need to go to the
1205 * low level driver as DMA entries are driver specific.
Martyn Welcha17a75e2009-07-31 09:28:17 +01001206 */
1207 retval = bridge->dma_list_empty(list);
1208 if (retval) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001209 printk(KERN_ERR "Unable to empty link-list entries\n");
Emilio G. Cota886953e2010-11-12 11:14:07 +00001210 mutex_unlock(&list->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001211 return retval;
1212 }
Emilio G. Cota886953e2010-11-12 11:14:07 +00001213 mutex_unlock(&list->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001214 kfree(list);
1215
1216 return retval;
1217}
1218EXPORT_SYMBOL(vme_dma_list_free);
1219
Martyn Welchb5bc9802017-03-04 00:34:29 +00001220/**
1221 * vme_dma_free - Free a VME DMA resource.
1222 * @resource: Pointer to VME DMA resource.
1223 *
1224 * Free the provided DMA resource so that it may be reallocated.
1225 *
1226 * Return: Zero on success, -EINVAL on invalid VME resource, -EBUSY if resource
1227 * is still active.
1228 */
Martyn Welcha17a75e2009-07-31 09:28:17 +01001229int vme_dma_free(struct vme_resource *resource)
1230{
1231 struct vme_dma_resource *ctrlr;
1232
1233 if (resource->type != VME_DMA) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001234 printk(KERN_ERR "Not a DMA resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001235 return -EINVAL;
1236 }
1237
1238 ctrlr = list_entry(resource->entry, struct vme_dma_resource, list);
1239
Emilio G. Cota886953e2010-11-12 11:14:07 +00001240 if (!mutex_trylock(&ctrlr->mtx)) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001241 printk(KERN_ERR "Resource busy, can't free\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001242 return -EBUSY;
1243 }
1244
Emilio G. Cota886953e2010-11-12 11:14:07 +00001245 if (!(list_empty(&ctrlr->pending) && list_empty(&ctrlr->running))) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001246 printk(KERN_WARNING "Resource still processing transfers\n");
Emilio G. Cota886953e2010-11-12 11:14:07 +00001247 mutex_unlock(&ctrlr->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001248 return -EBUSY;
1249 }
1250
1251 ctrlr->locked = 0;
1252
Emilio G. Cota886953e2010-11-12 11:14:07 +00001253 mutex_unlock(&ctrlr->mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001254
Martyn Welchfd5c2562013-06-06 12:29:16 +01001255 kfree(resource);
1256
Martyn Welcha17a75e2009-07-31 09:28:17 +01001257 return 0;
1258}
1259EXPORT_SYMBOL(vme_dma_free);
1260
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001261void vme_bus_error_handler(struct vme_bridge *bridge,
Dmitry Kalinkin472f16f2015-09-18 02:01:43 +03001262 unsigned long long address, int am)
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001263{
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001264 struct list_head *handler_pos = NULL;
1265 struct vme_error_handler *handler;
Dmitry Kalinkin448535a2015-09-18 02:01:45 +03001266 int handler_triggered = 0;
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001267 u32 aspace = vme_get_aspace(am);
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001268
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001269 list_for_each(handler_pos, &bridge->vme_error_handlers) {
1270 handler = list_entry(handler_pos, struct vme_error_handler,
1271 list);
1272 if ((aspace == handler->aspace) &&
1273 (address >= handler->start) &&
1274 (address < handler->end)) {
1275 if (!handler->num_errors)
1276 handler->first_error = address;
1277 if (handler->num_errors != UINT_MAX)
1278 handler->num_errors++;
Dmitry Kalinkin448535a2015-09-18 02:01:45 +03001279 handler_triggered = 1;
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001280 }
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001281 }
Dmitry Kalinkin448535a2015-09-18 02:01:45 +03001282
1283 if (!handler_triggered)
1284 dev_err(bridge->parent,
1285 "Unhandled VME access error at address 0x%llx\n",
1286 address);
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001287}
1288EXPORT_SYMBOL(vme_bus_error_handler);
1289
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001290struct vme_error_handler *vme_register_error_handler(
1291 struct vme_bridge *bridge, u32 aspace,
1292 unsigned long long address, size_t len)
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001293{
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001294 struct vme_error_handler *handler;
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001295
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001296 handler = kmalloc(sizeof(*handler), GFP_KERNEL);
1297 if (!handler)
1298 return NULL;
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001299
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001300 handler->aspace = aspace;
1301 handler->start = address;
1302 handler->end = address + len;
1303 handler->num_errors = 0;
1304 handler->first_error = 0;
1305 list_add_tail(&handler->list, &bridge->vme_error_handlers);
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001306
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001307 return handler;
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001308}
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001309EXPORT_SYMBOL(vme_register_error_handler);
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001310
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001311void vme_unregister_error_handler(struct vme_error_handler *handler)
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001312{
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001313 list_del(&handler->list);
1314 kfree(handler);
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001315}
Dmitry Kalinkin0b049662015-09-18 02:01:44 +03001316EXPORT_SYMBOL(vme_unregister_error_handler);
Dmitry Kalinkine2c63932015-09-18 02:01:42 +03001317
Martyn Welchc813f592009-10-29 16:34:54 +00001318void vme_irq_handler(struct vme_bridge *bridge, int level, int statid)
1319{
1320 void (*call)(int, int, void *);
1321 void *priv_data;
1322
1323 call = bridge->irq[level - 1].callback[statid].func;
1324 priv_data = bridge->irq[level - 1].callback[statid].priv_data;
1325
1326 if (call != NULL)
1327 call(level, statid, priv_data);
1328 else
Aaron Sierraf56c3d42016-04-21 11:18:22 -05001329 printk(KERN_WARNING "Spurious VME interrupt, level:%x, vector:%x\n",
Greg Kroah-Hartman25958ce2012-04-25 11:25:46 -07001330 level, statid);
Martyn Welchc813f592009-10-29 16:34:54 +00001331}
1332EXPORT_SYMBOL(vme_irq_handler);
1333
Martyn Welchb5bc9802017-03-04 00:34:29 +00001334/**
1335 * vme_irq_request - Request a specific VME interrupt.
1336 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1337 * @level: Interrupt priority being requested.
1338 * @statid: Interrupt vector being requested.
1339 * @callback: Pointer to callback function called when VME interrupt/vector
1340 * received.
1341 * @priv_data: Generic pointer that will be passed to the callback function.
1342 *
1343 * Request callback to be attached as a handler for VME interrupts with provided
1344 * level and statid.
1345 *
1346 * Return: Zero on success, -EINVAL on invalid vme device, level or if the
1347 * function is not supported, -EBUSY if the level/statid combination is
1348 * already in use. Hardware specific errors also possible.
1349 */
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001350int vme_irq_request(struct vme_dev *vdev, int level, int statid,
Martyn Welch29848ac2010-02-18 15:13:05 +00001351 void (*callback)(int, int, void *),
Martyn Welcha17a75e2009-07-31 09:28:17 +01001352 void *priv_data)
1353{
1354 struct vme_bridge *bridge;
1355
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001356 bridge = vdev->bridge;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001357 if (bridge == NULL) {
1358 printk(KERN_ERR "Can't find VME bus\n");
1359 return -EINVAL;
1360 }
1361
Martyn Welchead1f3e2009-12-15 08:43:02 +00001362 if ((level < 1) || (level > 7)) {
Martyn Welchc813f592009-10-29 16:34:54 +00001363 printk(KERN_ERR "Invalid interrupt level\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001364 return -EINVAL;
1365 }
1366
Martyn Welchc813f592009-10-29 16:34:54 +00001367 if (bridge->irq_set == NULL) {
1368 printk(KERN_ERR "Configuring interrupts not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001369 return -EINVAL;
1370 }
1371
Emilio G. Cota886953e2010-11-12 11:14:07 +00001372 mutex_lock(&bridge->irq_mtx);
Martyn Welchc813f592009-10-29 16:34:54 +00001373
1374 if (bridge->irq[level - 1].callback[statid].func) {
Emilio G. Cota886953e2010-11-12 11:14:07 +00001375 mutex_unlock(&bridge->irq_mtx);
Martyn Welchc813f592009-10-29 16:34:54 +00001376 printk(KERN_WARNING "VME Interrupt already taken\n");
1377 return -EBUSY;
1378 }
1379
1380 bridge->irq[level - 1].count++;
1381 bridge->irq[level - 1].callback[statid].priv_data = priv_data;
1382 bridge->irq[level - 1].callback[statid].func = callback;
1383
1384 /* Enable IRQ level */
Martyn Welch29848ac2010-02-18 15:13:05 +00001385 bridge->irq_set(bridge, level, 1, 1);
Martyn Welchc813f592009-10-29 16:34:54 +00001386
Emilio G. Cota886953e2010-11-12 11:14:07 +00001387 mutex_unlock(&bridge->irq_mtx);
Martyn Welchc813f592009-10-29 16:34:54 +00001388
1389 return 0;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001390}
Martyn Welchc813f592009-10-29 16:34:54 +00001391EXPORT_SYMBOL(vme_irq_request);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001392
Martyn Welchb5bc9802017-03-04 00:34:29 +00001393/**
1394 * vme_irq_free - Free a VME interrupt.
1395 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1396 * @level: Interrupt priority of interrupt being freed.
1397 * @statid: Interrupt vector of interrupt being freed.
1398 *
1399 * Remove previously attached callback from VME interrupt priority/vector.
1400 */
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001401void vme_irq_free(struct vme_dev *vdev, int level, int statid)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001402{
1403 struct vme_bridge *bridge;
1404
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001405 bridge = vdev->bridge;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001406 if (bridge == NULL) {
1407 printk(KERN_ERR "Can't find VME bus\n");
1408 return;
1409 }
1410
Martyn Welchead1f3e2009-12-15 08:43:02 +00001411 if ((level < 1) || (level > 7)) {
Martyn Welchc813f592009-10-29 16:34:54 +00001412 printk(KERN_ERR "Invalid interrupt level\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001413 return;
1414 }
1415
Martyn Welchc813f592009-10-29 16:34:54 +00001416 if (bridge->irq_set == NULL) {
1417 printk(KERN_ERR "Configuring interrupts not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001418 return;
1419 }
1420
Emilio G. Cota886953e2010-11-12 11:14:07 +00001421 mutex_lock(&bridge->irq_mtx);
Martyn Welchc813f592009-10-29 16:34:54 +00001422
1423 bridge->irq[level - 1].count--;
1424
1425 /* Disable IRQ level if no more interrupts attached at this level*/
1426 if (bridge->irq[level - 1].count == 0)
Martyn Welch29848ac2010-02-18 15:13:05 +00001427 bridge->irq_set(bridge, level, 0, 1);
Martyn Welchc813f592009-10-29 16:34:54 +00001428
1429 bridge->irq[level - 1].callback[statid].func = NULL;
1430 bridge->irq[level - 1].callback[statid].priv_data = NULL;
1431
Emilio G. Cota886953e2010-11-12 11:14:07 +00001432 mutex_unlock(&bridge->irq_mtx);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001433}
Martyn Welchc813f592009-10-29 16:34:54 +00001434EXPORT_SYMBOL(vme_irq_free);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001435
Martyn Welchb5bc9802017-03-04 00:34:29 +00001436/**
1437 * vme_irq_generate - Generate VME interrupt.
1438 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1439 * @level: Interrupt priority at which to assert the interrupt.
1440 * @statid: Interrupt vector to associate with the interrupt.
1441 *
1442 * Generate a VME interrupt of the provided level and with the provided
1443 * statid.
1444 *
1445 * Return: Zero on success, -EINVAL on invalid vme device, level or if the
1446 * function is not supported. Hardware specific errors also possible.
1447 */
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001448int vme_irq_generate(struct vme_dev *vdev, int level, int statid)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001449{
1450 struct vme_bridge *bridge;
1451
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001452 bridge = vdev->bridge;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001453 if (bridge == NULL) {
1454 printk(KERN_ERR "Can't find VME bus\n");
1455 return -EINVAL;
1456 }
1457
Martyn Welchead1f3e2009-12-15 08:43:02 +00001458 if ((level < 1) || (level > 7)) {
Martyn Welcha17a75e2009-07-31 09:28:17 +01001459 printk(KERN_WARNING "Invalid interrupt level\n");
1460 return -EINVAL;
1461 }
1462
Martyn Welchc813f592009-10-29 16:34:54 +00001463 if (bridge->irq_generate == NULL) {
Martyn Welchead1f3e2009-12-15 08:43:02 +00001464 printk(KERN_WARNING "Interrupt generation not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001465 return -EINVAL;
1466 }
1467
Martyn Welch29848ac2010-02-18 15:13:05 +00001468 return bridge->irq_generate(bridge, level, statid);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001469}
Martyn Welchc813f592009-10-29 16:34:54 +00001470EXPORT_SYMBOL(vme_irq_generate);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001471
Martyn Welchb5bc9802017-03-04 00:34:29 +00001472/**
1473 * vme_lm_request - Request a VME location monitor
1474 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1475 *
1476 * Allocate a location monitor resource to the driver. A location monitor
1477 * allows the driver to monitor accesses to a contiguous number of
1478 * addresses on the VME bus.
1479 *
1480 * Return: Pointer to a VME resource on success or NULL on failure.
Martyn Welch42fb5032009-08-11 17:44:56 +01001481 */
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001482struct vme_resource *vme_lm_request(struct vme_dev *vdev)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001483{
1484 struct vme_bridge *bridge;
Martyn Welch42fb5032009-08-11 17:44:56 +01001485 struct list_head *lm_pos = NULL;
1486 struct vme_lm_resource *allocated_lm = NULL;
1487 struct vme_lm_resource *lm = NULL;
1488 struct vme_resource *resource = NULL;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001489
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001490 bridge = vdev->bridge;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001491 if (bridge == NULL) {
1492 printk(KERN_ERR "Can't find VME bus\n");
Martyn Welch42fb5032009-08-11 17:44:56 +01001493 goto err_bus;
1494 }
1495
Martyn Welchb5bc9802017-03-04 00:34:29 +00001496 /* Loop through LM resources */
Emilio G. Cota886953e2010-11-12 11:14:07 +00001497 list_for_each(lm_pos, &bridge->lm_resources) {
Martyn Welch42fb5032009-08-11 17:44:56 +01001498 lm = list_entry(lm_pos,
1499 struct vme_lm_resource, list);
1500
1501 if (lm == NULL) {
Greg Kroah-Hartman25958ce2012-04-25 11:25:46 -07001502 printk(KERN_ERR "Registered NULL Location Monitor resource\n");
Martyn Welch42fb5032009-08-11 17:44:56 +01001503 continue;
1504 }
1505
1506 /* Find an unlocked controller */
Emilio G. Cota886953e2010-11-12 11:14:07 +00001507 mutex_lock(&lm->mtx);
Martyn Welch42fb5032009-08-11 17:44:56 +01001508 if (lm->locked == 0) {
1509 lm->locked = 1;
Emilio G. Cota886953e2010-11-12 11:14:07 +00001510 mutex_unlock(&lm->mtx);
Martyn Welch42fb5032009-08-11 17:44:56 +01001511 allocated_lm = lm;
1512 break;
1513 }
Emilio G. Cota886953e2010-11-12 11:14:07 +00001514 mutex_unlock(&lm->mtx);
Martyn Welch42fb5032009-08-11 17:44:56 +01001515 }
1516
1517 /* Check to see if we found a resource */
1518 if (allocated_lm == NULL)
1519 goto err_lm;
1520
Markus Elfring1ff0a192017-08-24 21:52:00 +02001521 resource = kmalloc(sizeof(*resource), GFP_KERNEL);
Markus Elfring94eefcc2017-08-24 21:38:20 +02001522 if (!resource)
Martyn Welch42fb5032009-08-11 17:44:56 +01001523 goto err_alloc;
Markus Elfring94eefcc2017-08-24 21:38:20 +02001524
Martyn Welch42fb5032009-08-11 17:44:56 +01001525 resource->type = VME_LM;
Emilio G. Cota886953e2010-11-12 11:14:07 +00001526 resource->entry = &allocated_lm->list;
Martyn Welch42fb5032009-08-11 17:44:56 +01001527
1528 return resource;
1529
1530err_alloc:
1531 /* Unlock image */
Emilio G. Cota886953e2010-11-12 11:14:07 +00001532 mutex_lock(&lm->mtx);
Martyn Welch42fb5032009-08-11 17:44:56 +01001533 lm->locked = 0;
Emilio G. Cota886953e2010-11-12 11:14:07 +00001534 mutex_unlock(&lm->mtx);
Martyn Welch42fb5032009-08-11 17:44:56 +01001535err_lm:
1536err_bus:
1537 return NULL;
1538}
1539EXPORT_SYMBOL(vme_lm_request);
1540
Martyn Welchb5bc9802017-03-04 00:34:29 +00001541/**
1542 * vme_lm_count - Determine number of VME Addresses monitored
1543 * @resource: Pointer to VME location monitor resource.
1544 *
1545 * The number of contiguous addresses monitored is hardware dependent.
1546 * Return the number of contiguous addresses monitored by the
1547 * location monitor.
1548 *
1549 * Return: Count of addresses monitored or -EINVAL when provided with an
1550 * invalid location monitor resource.
1551 */
Martyn Welch42fb5032009-08-11 17:44:56 +01001552int vme_lm_count(struct vme_resource *resource)
1553{
1554 struct vme_lm_resource *lm;
1555
1556 if (resource->type != VME_LM) {
1557 printk(KERN_ERR "Not a Location Monitor resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001558 return -EINVAL;
1559 }
1560
Martyn Welch42fb5032009-08-11 17:44:56 +01001561 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1562
1563 return lm->monitors;
1564}
1565EXPORT_SYMBOL(vme_lm_count);
1566
Martyn Welchb5bc9802017-03-04 00:34:29 +00001567/**
1568 * vme_lm_set - Configure location monitor
1569 * @resource: Pointer to VME location monitor resource.
1570 * @lm_base: Base address to monitor.
1571 * @aspace: VME address space to monitor.
1572 * @cycle: VME bus cycle type to monitor.
1573 *
1574 * Set the base address, address space and cycle type of accesses to be
1575 * monitored by the location monitor.
1576 *
1577 * Return: Zero on success, -EINVAL when provided with an invalid location
1578 * monitor resource or function is not supported. Hardware specific
1579 * errors may also be returned.
1580 */
Martyn Welch42fb5032009-08-11 17:44:56 +01001581int vme_lm_set(struct vme_resource *resource, unsigned long long lm_base,
Martyn Welch6af04b02011-12-01 17:06:29 +00001582 u32 aspace, u32 cycle)
Martyn Welch42fb5032009-08-11 17:44:56 +01001583{
1584 struct vme_bridge *bridge = find_bridge(resource);
1585 struct vme_lm_resource *lm;
1586
1587 if (resource->type != VME_LM) {
1588 printk(KERN_ERR "Not a Location Monitor resource\n");
1589 return -EINVAL;
1590 }
1591
1592 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1593
Martyn Welcha17a75e2009-07-31 09:28:17 +01001594 if (bridge->lm_set == NULL) {
Martyn Welch42fb5032009-08-11 17:44:56 +01001595 printk(KERN_ERR "vme_lm_set not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001596 return -EINVAL;
1597 }
1598
Martyn Welch8be92262009-10-29 16:35:08 +00001599 return bridge->lm_set(lm, lm_base, aspace, cycle);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001600}
1601EXPORT_SYMBOL(vme_lm_set);
1602
Martyn Welchb5bc9802017-03-04 00:34:29 +00001603/**
1604 * vme_lm_get - Retrieve location monitor settings
1605 * @resource: Pointer to VME location monitor resource.
1606 * @lm_base: Pointer used to output the base address monitored.
1607 * @aspace: Pointer used to output the address space monitored.
1608 * @cycle: Pointer used to output the VME bus cycle type monitored.
1609 *
1610 * Retrieve the base address, address space and cycle type of accesses to
1611 * be monitored by the location monitor.
1612 *
1613 * Return: Zero on success, -EINVAL when provided with an invalid location
1614 * monitor resource or function is not supported. Hardware specific
1615 * errors may also be returned.
1616 */
Martyn Welch42fb5032009-08-11 17:44:56 +01001617int vme_lm_get(struct vme_resource *resource, unsigned long long *lm_base,
Martyn Welch6af04b02011-12-01 17:06:29 +00001618 u32 *aspace, u32 *cycle)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001619{
Martyn Welch42fb5032009-08-11 17:44:56 +01001620 struct vme_bridge *bridge = find_bridge(resource);
1621 struct vme_lm_resource *lm;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001622
Martyn Welch42fb5032009-08-11 17:44:56 +01001623 if (resource->type != VME_LM) {
1624 printk(KERN_ERR "Not a Location Monitor resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001625 return -EINVAL;
1626 }
1627
Martyn Welch42fb5032009-08-11 17:44:56 +01001628 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1629
Martyn Welcha17a75e2009-07-31 09:28:17 +01001630 if (bridge->lm_get == NULL) {
Martyn Welch42fb5032009-08-11 17:44:56 +01001631 printk(KERN_ERR "vme_lm_get not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001632 return -EINVAL;
1633 }
1634
Martyn Welch42fb5032009-08-11 17:44:56 +01001635 return bridge->lm_get(lm, lm_base, aspace, cycle);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001636}
1637EXPORT_SYMBOL(vme_lm_get);
1638
Martyn Welchb5bc9802017-03-04 00:34:29 +00001639/**
1640 * vme_lm_attach - Provide callback for location monitor address
1641 * @resource: Pointer to VME location monitor resource.
1642 * @monitor: Offset to which callback should be attached.
1643 * @callback: Pointer to callback function called when triggered.
1644 * @data: Generic pointer that will be passed to the callback function.
1645 *
1646 * Attach a callback to the specificed offset into the location monitors
1647 * monitored addresses. A generic pointer is provided to allow data to be
1648 * passed to the callback when called.
1649 *
1650 * Return: Zero on success, -EINVAL when provided with an invalid location
1651 * monitor resource or function is not supported. Hardware specific
1652 * errors may also be returned.
1653 */
Martyn Welch42fb5032009-08-11 17:44:56 +01001654int vme_lm_attach(struct vme_resource *resource, int monitor,
Aaron Sierrafa54b322016-04-29 16:41:02 -05001655 void (*callback)(void *), void *data)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001656{
Martyn Welch42fb5032009-08-11 17:44:56 +01001657 struct vme_bridge *bridge = find_bridge(resource);
1658 struct vme_lm_resource *lm;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001659
Martyn Welch42fb5032009-08-11 17:44:56 +01001660 if (resource->type != VME_LM) {
1661 printk(KERN_ERR "Not a Location Monitor resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001662 return -EINVAL;
1663 }
1664
Martyn Welch42fb5032009-08-11 17:44:56 +01001665 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1666
Martyn Welcha17a75e2009-07-31 09:28:17 +01001667 if (bridge->lm_attach == NULL) {
Martyn Welch42fb5032009-08-11 17:44:56 +01001668 printk(KERN_ERR "vme_lm_attach not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001669 return -EINVAL;
1670 }
1671
Aaron Sierrafa54b322016-04-29 16:41:02 -05001672 return bridge->lm_attach(lm, monitor, callback, data);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001673}
1674EXPORT_SYMBOL(vme_lm_attach);
1675
Martyn Welchb5bc9802017-03-04 00:34:29 +00001676/**
1677 * vme_lm_detach - Remove callback for location monitor address
1678 * @resource: Pointer to VME location monitor resource.
1679 * @monitor: Offset to which callback should be removed.
1680 *
1681 * Remove the callback associated with the specificed offset into the
1682 * location monitors monitored addresses.
1683 *
1684 * Return: Zero on success, -EINVAL when provided with an invalid location
1685 * monitor resource or function is not supported. Hardware specific
1686 * errors may also be returned.
1687 */
Martyn Welch42fb5032009-08-11 17:44:56 +01001688int vme_lm_detach(struct vme_resource *resource, int monitor)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001689{
Martyn Welch42fb5032009-08-11 17:44:56 +01001690 struct vme_bridge *bridge = find_bridge(resource);
1691 struct vme_lm_resource *lm;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001692
Martyn Welch42fb5032009-08-11 17:44:56 +01001693 if (resource->type != VME_LM) {
1694 printk(KERN_ERR "Not a Location Monitor resource\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001695 return -EINVAL;
1696 }
1697
Martyn Welch42fb5032009-08-11 17:44:56 +01001698 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1699
Martyn Welcha17a75e2009-07-31 09:28:17 +01001700 if (bridge->lm_detach == NULL) {
Martyn Welch42fb5032009-08-11 17:44:56 +01001701 printk(KERN_ERR "vme_lm_detach not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001702 return -EINVAL;
1703 }
1704
Martyn Welch42fb5032009-08-11 17:44:56 +01001705 return bridge->lm_detach(lm, monitor);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001706}
1707EXPORT_SYMBOL(vme_lm_detach);
1708
Martyn Welchb5bc9802017-03-04 00:34:29 +00001709/**
1710 * vme_lm_free - Free allocated VME location monitor
1711 * @resource: Pointer to VME location monitor resource.
1712 *
1713 * Free allocation of a VME location monitor.
1714 *
1715 * WARNING: This function currently expects that any callbacks that have
1716 * been attached to the location monitor have been removed.
1717 *
1718 * Return: Zero on success, -EINVAL when provided with an invalid location
1719 * monitor resource.
1720 */
Martyn Welch42fb5032009-08-11 17:44:56 +01001721void vme_lm_free(struct vme_resource *resource)
1722{
1723 struct vme_lm_resource *lm;
1724
1725 if (resource->type != VME_LM) {
1726 printk(KERN_ERR "Not a Location Monitor resource\n");
1727 return;
1728 }
1729
1730 lm = list_entry(resource->entry, struct vme_lm_resource, list);
1731
Emilio G. Cota886953e2010-11-12 11:14:07 +00001732 mutex_lock(&lm->mtx);
Martyn Welch42fb5032009-08-11 17:44:56 +01001733
Martyn Welch8be92262009-10-29 16:35:08 +00001734 /* XXX
1735 * Check to see that there aren't any callbacks still attached, if
1736 * there are we should probably be detaching them!
1737 */
Martyn Welch42fb5032009-08-11 17:44:56 +01001738
1739 lm->locked = 0;
1740
Emilio G. Cota886953e2010-11-12 11:14:07 +00001741 mutex_unlock(&lm->mtx);
Martyn Welch8be92262009-10-29 16:35:08 +00001742
1743 kfree(resource);
Martyn Welch42fb5032009-08-11 17:44:56 +01001744}
1745EXPORT_SYMBOL(vme_lm_free);
1746
Martyn Welchb5bc9802017-03-04 00:34:29 +00001747/**
1748 * vme_slot_num - Retrieve slot ID
1749 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1750 *
1751 * Retrieve the slot ID associated with the provided VME device.
1752 *
1753 * Return: The slot ID on success, -EINVAL if VME bridge cannot be determined
1754 * or the function is not supported. Hardware specific errors may also
1755 * be returned.
1756 */
Martyn Welchd7729f02013-11-08 11:58:35 +00001757int vme_slot_num(struct vme_dev *vdev)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001758{
1759 struct vme_bridge *bridge;
1760
Manohar Vanga8f966dc2011-09-26 11:27:15 +02001761 bridge = vdev->bridge;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001762 if (bridge == NULL) {
1763 printk(KERN_ERR "Can't find VME bus\n");
1764 return -EINVAL;
1765 }
1766
1767 if (bridge->slot_get == NULL) {
Martyn Welchd7729f02013-11-08 11:58:35 +00001768 printk(KERN_WARNING "vme_slot_num not supported\n");
Martyn Welcha17a75e2009-07-31 09:28:17 +01001769 return -EINVAL;
1770 }
1771
Martyn Welch29848ac2010-02-18 15:13:05 +00001772 return bridge->slot_get(bridge);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001773}
Martyn Welchd7729f02013-11-08 11:58:35 +00001774EXPORT_SYMBOL(vme_slot_num);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001775
Martyn Welchb5bc9802017-03-04 00:34:29 +00001776/**
1777 * vme_bus_num - Retrieve bus number
1778 * @vdev: Pointer to VME device struct vme_dev assigned to driver instance.
1779 *
1780 * Retrieve the bus enumeration associated with the provided VME device.
1781 *
1782 * Return: The bus number on success, -EINVAL if VME bridge cannot be
1783 * determined.
1784 */
Martyn Welch978f47d2013-11-08 11:58:34 +00001785int vme_bus_num(struct vme_dev *vdev)
1786{
1787 struct vme_bridge *bridge;
1788
1789 bridge = vdev->bridge;
1790 if (bridge == NULL) {
1791 pr_err("Can't find VME bus\n");
1792 return -EINVAL;
1793 }
1794
1795 return bridge->num;
1796}
1797EXPORT_SYMBOL(vme_bus_num);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001798
1799/* - Bridge Registration --------------------------------------------------- */
1800
Manohar Vanga5b93c2a2011-11-04 11:12:30 +01001801static void vme_dev_release(struct device *dev)
1802{
1803 kfree(dev_to_vme_dev(dev));
1804}
1805
Aaron Sierra326071b2016-04-24 15:11:38 -05001806/* Common bridge initialization */
1807struct vme_bridge *vme_init_bridge(struct vme_bridge *bridge)
1808{
1809 INIT_LIST_HEAD(&bridge->vme_error_handlers);
1810 INIT_LIST_HEAD(&bridge->master_resources);
1811 INIT_LIST_HEAD(&bridge->slave_resources);
1812 INIT_LIST_HEAD(&bridge->dma_resources);
1813 INIT_LIST_HEAD(&bridge->lm_resources);
1814 mutex_init(&bridge->irq_mtx);
1815
1816 return bridge;
1817}
1818EXPORT_SYMBOL(vme_init_bridge);
1819
Manohar Vanga5b93c2a2011-11-04 11:12:30 +01001820int vme_register_bridge(struct vme_bridge *bridge)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001821{
1822 int i;
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001823 int ret = -1;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001824
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001825 mutex_lock(&vme_buses_lock);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001826 for (i = 0; i < sizeof(vme_bus_numbers) * 8; i++) {
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001827 if ((vme_bus_numbers & (1 << i)) == 0) {
1828 vme_bus_numbers |= (1 << i);
1829 bridge->num = i;
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001830 INIT_LIST_HEAD(&bridge->devices);
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001831 list_add_tail(&bridge->bus_list, &vme_bus_list);
1832 ret = 0;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001833 break;
1834 }
1835 }
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001836 mutex_unlock(&vme_buses_lock);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001837
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001838 return ret;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001839}
Manohar Vanga5b93c2a2011-11-04 11:12:30 +01001840EXPORT_SYMBOL(vme_register_bridge);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001841
Manohar Vanga5b93c2a2011-11-04 11:12:30 +01001842void vme_unregister_bridge(struct vme_bridge *bridge)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001843{
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001844 struct vme_dev *vdev;
1845 struct vme_dev *tmp;
1846
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001847 mutex_lock(&vme_buses_lock);
1848 vme_bus_numbers &= ~(1 << bridge->num);
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001849 list_for_each_entry_safe(vdev, tmp, &bridge->devices, bridge_list) {
1850 list_del(&vdev->drv_list);
1851 list_del(&vdev->bridge_list);
1852 device_unregister(&vdev->dev);
1853 }
Manohar Vanga733e3ef2011-08-12 12:30:48 +02001854 list_del(&bridge->bus_list);
1855 mutex_unlock(&vme_buses_lock);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001856}
Martyn Welcha17a75e2009-07-31 09:28:17 +01001857EXPORT_SYMBOL(vme_unregister_bridge);
1858
Martyn Welcha17a75e2009-07-31 09:28:17 +01001859/* - Driver Registration --------------------------------------------------- */
1860
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001861static int __vme_register_driver_bus(struct vme_driver *drv,
1862 struct vme_bridge *bridge, unsigned int ndevs)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001863{
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001864 int err;
1865 unsigned int i;
1866 struct vme_dev *vdev;
1867 struct vme_dev *tmp;
1868
1869 for (i = 0; i < ndevs; i++) {
Markus Elfring1ff0a192017-08-24 21:52:00 +02001870 vdev = kzalloc(sizeof(*vdev), GFP_KERNEL);
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001871 if (!vdev) {
1872 err = -ENOMEM;
1873 goto err_devalloc;
1874 }
Manohar Vangaa916a392011-09-26 11:27:17 +02001875 vdev->num = i;
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001876 vdev->bridge = bridge;
1877 vdev->dev.platform_data = drv;
1878 vdev->dev.release = vme_dev_release;
1879 vdev->dev.parent = bridge->parent;
1880 vdev->dev.bus = &vme_bus_type;
Manohar Vangaa916a392011-09-26 11:27:17 +02001881 dev_set_name(&vdev->dev, "%s.%u-%u", drv->name, bridge->num,
1882 vdev->num);
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001883
1884 err = device_register(&vdev->dev);
1885 if (err)
1886 goto err_reg;
1887
1888 if (vdev->dev.platform_data) {
1889 list_add_tail(&vdev->drv_list, &drv->devices);
1890 list_add_tail(&vdev->bridge_list, &bridge->devices);
1891 } else
1892 device_unregister(&vdev->dev);
1893 }
1894 return 0;
1895
1896err_reg:
Emilio G. Cotadef18202013-02-13 13:47:54 -05001897 put_device(&vdev->dev);
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001898 kfree(vdev);
1899err_devalloc:
1900 list_for_each_entry_safe(vdev, tmp, &drv->devices, drv_list) {
1901 list_del(&vdev->drv_list);
1902 list_del(&vdev->bridge_list);
1903 device_unregister(&vdev->dev);
1904 }
1905 return err;
1906}
1907
1908static int __vme_register_driver(struct vme_driver *drv, unsigned int ndevs)
1909{
1910 struct vme_bridge *bridge;
1911 int err = 0;
1912
1913 mutex_lock(&vme_buses_lock);
1914 list_for_each_entry(bridge, &vme_bus_list, bus_list) {
1915 /*
1916 * This cannot cause trouble as we already have vme_buses_lock
1917 * and if the bridge is removed, it will have to go through
1918 * vme_unregister_bridge() to do it (which calls remove() on
1919 * the bridge which in turn tries to acquire vme_buses_lock and
Manohar Vangac26f6112011-11-04 11:12:29 +01001920 * will have to wait).
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001921 */
1922 err = __vme_register_driver_bus(drv, bridge, ndevs);
1923 if (err)
1924 break;
1925 }
1926 mutex_unlock(&vme_buses_lock);
1927 return err;
1928}
1929
Martyn Welchb5bc9802017-03-04 00:34:29 +00001930/**
1931 * vme_register_driver - Register a VME driver
1932 * @drv: Pointer to VME driver structure to register.
1933 * @ndevs: Maximum number of devices to allow to be enumerated.
1934 *
1935 * Register a VME device driver with the VME subsystem.
1936 *
1937 * Return: Zero on success, error value on registration failure.
1938 */
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001939int vme_register_driver(struct vme_driver *drv, unsigned int ndevs)
1940{
1941 int err;
1942
Martyn Welcha17a75e2009-07-31 09:28:17 +01001943 drv->driver.name = drv->name;
1944 drv->driver.bus = &vme_bus_type;
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001945 INIT_LIST_HEAD(&drv->devices);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001946
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001947 err = driver_register(&drv->driver);
1948 if (err)
1949 return err;
1950
1951 err = __vme_register_driver(drv, ndevs);
1952 if (err)
1953 driver_unregister(&drv->driver);
1954
1955 return err;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001956}
1957EXPORT_SYMBOL(vme_register_driver);
1958
Martyn Welchb5bc9802017-03-04 00:34:29 +00001959/**
1960 * vme_unregister_driver - Unregister a VME driver
1961 * @drv: Pointer to VME driver structure to unregister.
1962 *
1963 * Unregister a VME device driver from the VME subsystem.
1964 */
Martyn Welchead1f3e2009-12-15 08:43:02 +00001965void vme_unregister_driver(struct vme_driver *drv)
Martyn Welcha17a75e2009-07-31 09:28:17 +01001966{
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001967 struct vme_dev *dev, *dev_tmp;
1968
1969 mutex_lock(&vme_buses_lock);
1970 list_for_each_entry_safe(dev, dev_tmp, &drv->devices, drv_list) {
1971 list_del(&dev->drv_list);
1972 list_del(&dev->bridge_list);
1973 device_unregister(&dev->dev);
1974 }
1975 mutex_unlock(&vme_buses_lock);
1976
Martyn Welcha17a75e2009-07-31 09:28:17 +01001977 driver_unregister(&drv->driver);
1978}
1979EXPORT_SYMBOL(vme_unregister_driver);
1980
1981/* - Bus Registration ------------------------------------------------------ */
1982
Martyn Welcha17a75e2009-07-31 09:28:17 +01001983static int vme_bus_match(struct device *dev, struct device_driver *drv)
1984{
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001985 struct vme_driver *vme_drv;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001986
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001987 vme_drv = container_of(drv, struct vme_driver, driver);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001988
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001989 if (dev->platform_data == vme_drv) {
1990 struct vme_dev *vdev = dev_to_vme_dev(dev);
Martyn Welcha17a75e2009-07-31 09:28:17 +01001991
Manohar Vanga5d6abf32011-09-26 11:27:16 +02001992 if (vme_drv->match && vme_drv->match(vdev))
1993 return 1;
1994
1995 dev->platform_data = NULL;
Martyn Welcha17a75e2009-07-31 09:28:17 +01001996 }
Martyn Welcha17a75e2009-07-31 09:28:17 +01001997 return 0;
1998}
1999
2000static int vme_bus_probe(struct device *dev)
2001{
Martyn Welcha17a75e2009-07-31 09:28:17 +01002002 int retval = -ENODEV;
Manohar Vanga5d6abf32011-09-26 11:27:16 +02002003 struct vme_driver *driver;
2004 struct vme_dev *vdev = dev_to_vme_dev(dev);
Martyn Welcha17a75e2009-07-31 09:28:17 +01002005
Manohar Vanga5d6abf32011-09-26 11:27:16 +02002006 driver = dev->platform_data;
Martyn Welcha17a75e2009-07-31 09:28:17 +01002007
Martyn Welchead1f3e2009-12-15 08:43:02 +00002008 if (driver->probe != NULL)
Manohar Vanga8f966dc2011-09-26 11:27:15 +02002009 retval = driver->probe(vdev);
Martyn Welcha17a75e2009-07-31 09:28:17 +01002010
2011 return retval;
2012}
2013
Stefano Babic97974842017-01-20 10:38:20 -05002014static int vme_bus_remove(struct device *dev)
2015{
2016 int retval = -ENODEV;
2017 struct vme_driver *driver;
2018 struct vme_dev *vdev = dev_to_vme_dev(dev);
2019
2020 driver = dev->platform_data;
2021
2022 if (driver->remove != NULL)
2023 retval = driver->remove(vdev);
2024
2025 return retval;
2026}
2027
Martyn Welcha17a75e2009-07-31 09:28:17 +01002028struct bus_type vme_bus_type = {
2029 .name = "vme",
2030 .match = vme_bus_match,
2031 .probe = vme_bus_probe,
Stefano Babic97974842017-01-20 10:38:20 -05002032 .remove = vme_bus_remove,
Martyn Welcha17a75e2009-07-31 09:28:17 +01002033};
2034EXPORT_SYMBOL(vme_bus_type);
2035
Martyn Welchead1f3e2009-12-15 08:43:02 +00002036static int __init vme_init(void)
Martyn Welcha17a75e2009-07-31 09:28:17 +01002037{
2038 return bus_register(&vme_bus_type);
2039}
Aaron Sierrac326cc02013-12-09 09:54:42 -06002040subsys_initcall(vme_init);