Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1 | /* |
| 2 | * VME Bridge Framework |
| 3 | * |
Martyn Welch | 66bd8db | 2010-02-18 15:12:52 +0000 | [diff] [blame] | 4 | * Author: Martyn Welch <martyn.welch@ge.com> |
| 5 | * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc. |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 6 | * |
| 7 | * Based on work by Tom Armistead and Ajit Prem |
| 8 | * Copyright 2004 Motorola Inc. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify it |
| 11 | * under the terms of the GNU General Public License as published by the |
| 12 | * Free Software Foundation; either version 2 of the License, or (at your |
| 13 | * option) any later version. |
| 14 | */ |
| 15 | |
Paul Gortmaker | 050c3d5 | 2016-07-03 14:05:56 -0400 | [diff] [blame] | 16 | #include <linux/init.h> |
| 17 | #include <linux/export.h> |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 18 | #include <linux/mm.h> |
| 19 | #include <linux/types.h> |
| 20 | #include <linux/kernel.h> |
| 21 | #include <linux/errno.h> |
| 22 | #include <linux/pci.h> |
| 23 | #include <linux/poll.h> |
| 24 | #include <linux/highmem.h> |
| 25 | #include <linux/interrupt.h> |
| 26 | #include <linux/pagemap.h> |
| 27 | #include <linux/device.h> |
| 28 | #include <linux/dma-mapping.h> |
| 29 | #include <linux/syscalls.h> |
Martyn Welch | 400822f | 2009-08-11 16:20:22 +0100 | [diff] [blame] | 30 | #include <linux/mutex.h> |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 31 | #include <linux/spinlock.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/slab.h> |
Greg Kroah-Hartman | db3b9e9 | 2012-04-26 12:34:58 -0700 | [diff] [blame] | 33 | #include <linux/vme.h> |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 34 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 35 | #include "vme_bridge.h" |
| 36 | |
Manohar Vanga | 733e3ef | 2011-08-12 12:30:48 +0200 | [diff] [blame] | 37 | /* Bitmask and list of registered buses both protected by common mutex */ |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 38 | static unsigned int vme_bus_numbers; |
Manohar Vanga | 733e3ef | 2011-08-12 12:30:48 +0200 | [diff] [blame] | 39 | static LIST_HEAD(vme_bus_list); |
| 40 | static DEFINE_MUTEX(vme_buses_lock); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 41 | |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 42 | static int __init vme_init(void); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 43 | |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 44 | static struct vme_dev *dev_to_vme_dev(struct device *dev) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 45 | { |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 46 | return container_of(dev, struct vme_dev, dev); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | /* |
| 50 | * Find the bridge that the resource is associated with. |
| 51 | */ |
| 52 | static 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 Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 68 | case VME_LM: |
| 69 | return list_entry(resource->entry, struct vme_lm_resource, |
| 70 | list)->parent; |
| 71 | break; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 72 | default: |
| 73 | printk(KERN_ERR "Unknown resource type\n"); |
| 74 | return NULL; |
| 75 | break; |
| 76 | } |
| 77 | } |
| 78 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 79 | /** |
| 80 | * vme_free_consistent - Allocate contiguous memory. |
| 81 | * @resource: Pointer to VME resource. |
| 82 | * @size: Size of allocation required. |
| 83 | * @dma: Pointer to variable to store physical address of allocation. |
| 84 | * |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 85 | * Allocate a contiguous block of memory for use by the driver. This is used to |
| 86 | * create the buffers for the slave windows. |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 87 | * |
| 88 | * Return: Virtual address of allocation on success, NULL on failure. |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 89 | */ |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 90 | void *vme_alloc_consistent(struct vme_resource *resource, size_t size, |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 91 | dma_addr_t *dma) |
| 92 | { |
| 93 | struct vme_bridge *bridge; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 94 | |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 95 | if (resource == NULL) { |
| 96 | printk(KERN_ERR "No resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 97 | return NULL; |
| 98 | } |
| 99 | |
| 100 | bridge = find_bridge(resource); |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 101 | if (bridge == NULL) { |
| 102 | printk(KERN_ERR "Can't find bridge\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 103 | return NULL; |
| 104 | } |
| 105 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 106 | if (bridge->parent == NULL) { |
Greg Kroah-Hartman | 25958ce | 2012-04-25 11:25:46 -0700 | [diff] [blame] | 107 | printk(KERN_ERR "Dev entry NULL for bridge %s\n", bridge->name); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 108 | return NULL; |
| 109 | } |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 110 | |
Manohar Vanga | 7f58f02 | 2011-08-10 11:33:46 +0200 | [diff] [blame] | 111 | if (bridge->alloc_consistent == NULL) { |
Greg Kroah-Hartman | 25958ce | 2012-04-25 11:25:46 -0700 | [diff] [blame] | 112 | printk(KERN_ERR "alloc_consistent not supported by bridge %s\n", |
| 113 | bridge->name); |
Manohar Vanga | 7f58f02 | 2011-08-10 11:33:46 +0200 | [diff] [blame] | 114 | return NULL; |
| 115 | } |
| 116 | |
| 117 | return bridge->alloc_consistent(bridge->parent, size, dma); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 118 | } |
| 119 | EXPORT_SYMBOL(vme_alloc_consistent); |
| 120 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 121 | /** |
| 122 | * vme_free_consistent - Free previously allocated memory. |
| 123 | * @resource: Pointer to VME resource. |
| 124 | * @size: Size of allocation to free. |
| 125 | * @vaddr: Virtual address of allocation. |
| 126 | * @dma: Physical address of allocation. |
| 127 | * |
| 128 | * Free previously allocated block of contiguous memory. |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 129 | */ |
| 130 | void vme_free_consistent(struct vme_resource *resource, size_t size, |
| 131 | void *vaddr, dma_addr_t dma) |
| 132 | { |
| 133 | struct vme_bridge *bridge; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 134 | |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 135 | if (resource == NULL) { |
| 136 | printk(KERN_ERR "No resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 137 | return; |
| 138 | } |
| 139 | |
| 140 | bridge = find_bridge(resource); |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 141 | if (bridge == NULL) { |
| 142 | printk(KERN_ERR "Can't find bridge\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 143 | return; |
| 144 | } |
| 145 | |
Manohar Vanga | 7f58f02 | 2011-08-10 11:33:46 +0200 | [diff] [blame] | 146 | if (bridge->parent == NULL) { |
Greg Kroah-Hartman | 25958ce | 2012-04-25 11:25:46 -0700 | [diff] [blame] | 147 | printk(KERN_ERR "Dev entry NULL for bridge %s\n", bridge->name); |
Manohar Vanga | 7f58f02 | 2011-08-10 11:33:46 +0200 | [diff] [blame] | 148 | return; |
| 149 | } |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 150 | |
Manohar Vanga | 7f58f02 | 2011-08-10 11:33:46 +0200 | [diff] [blame] | 151 | if (bridge->free_consistent == NULL) { |
Greg Kroah-Hartman | 25958ce | 2012-04-25 11:25:46 -0700 | [diff] [blame] | 152 | printk(KERN_ERR "free_consistent not supported by bridge %s\n", |
| 153 | bridge->name); |
Manohar Vanga | 7f58f02 | 2011-08-10 11:33:46 +0200 | [diff] [blame] | 154 | return; |
| 155 | } |
| 156 | |
| 157 | bridge->free_consistent(bridge->parent, size, vaddr, dma); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 158 | } |
| 159 | EXPORT_SYMBOL(vme_free_consistent); |
| 160 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 161 | /** |
| 162 | * vme_get_size - Helper function returning size of a VME window |
| 163 | * @resource: Pointer to VME slave or master resource. |
| 164 | * |
| 165 | * Determine the size of the VME window provided. This is a helper |
| 166 | * function, wrappering the call to vme_master_get or vme_slave_get |
| 167 | * depending on the type of window resource handed to it. |
| 168 | * |
| 169 | * Return: Size of the window on success, zero on failure. |
| 170 | */ |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 171 | size_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 Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 176 | u32 aspace, cycle, dwidth; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 177 | |
| 178 | switch (resource->type) { |
| 179 | case VME_MASTER: |
| 180 | retval = vme_master_get(resource, &enabled, &base, &size, |
| 181 | &aspace, &cycle, &dwidth); |
Martyn Welch | 6ad3756 | 2016-10-21 17:36:19 +0100 | [diff] [blame] | 182 | if (retval) |
| 183 | return 0; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 184 | |
| 185 | return size; |
| 186 | break; |
| 187 | case VME_SLAVE: |
| 188 | retval = vme_slave_get(resource, &enabled, &base, &size, |
| 189 | &buf_base, &aspace, &cycle); |
Martyn Welch | 6ad3756 | 2016-10-21 17:36:19 +0100 | [diff] [blame] | 190 | if (retval) |
| 191 | return 0; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 192 | |
| 193 | return size; |
| 194 | break; |
| 195 | case VME_DMA: |
| 196 | return 0; |
| 197 | break; |
| 198 | default: |
| 199 | printk(KERN_ERR "Unknown resource type\n"); |
| 200 | return 0; |
| 201 | break; |
| 202 | } |
| 203 | } |
| 204 | EXPORT_SYMBOL(vme_get_size); |
| 205 | |
Dmitry Kalinkin | ef73f88 | 2015-05-28 15:07:04 +0300 | [diff] [blame] | 206 | int vme_check_window(u32 aspace, unsigned long long vme_base, |
| 207 | unsigned long long size) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 208 | { |
| 209 | int retval = 0; |
| 210 | |
| 211 | switch (aspace) { |
| 212 | case VME_A16: |
| 213 | if (((vme_base + size) > VME_A16_MAX) || |
| 214 | (vme_base > VME_A16_MAX)) |
| 215 | retval = -EFAULT; |
| 216 | break; |
| 217 | case VME_A24: |
| 218 | if (((vme_base + size) > VME_A24_MAX) || |
| 219 | (vme_base > VME_A24_MAX)) |
| 220 | retval = -EFAULT; |
| 221 | break; |
| 222 | case VME_A32: |
| 223 | if (((vme_base + size) > VME_A32_MAX) || |
| 224 | (vme_base > VME_A32_MAX)) |
| 225 | retval = -EFAULT; |
| 226 | break; |
| 227 | case VME_A64: |
Dmitry Kalinkin | e7fd80c | 2015-05-28 15:07:03 +0300 | [diff] [blame] | 228 | if ((size != 0) && (vme_base > U64_MAX + 1 - size)) |
| 229 | retval = -EFAULT; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 230 | break; |
| 231 | case VME_CRCSR: |
| 232 | if (((vme_base + size) > VME_CRCSR_MAX) || |
| 233 | (vme_base > VME_CRCSR_MAX)) |
| 234 | retval = -EFAULT; |
| 235 | break; |
| 236 | case VME_USER1: |
| 237 | case VME_USER2: |
| 238 | case VME_USER3: |
| 239 | case VME_USER4: |
| 240 | /* User Defined */ |
| 241 | break; |
| 242 | default: |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 243 | printk(KERN_ERR "Invalid address space\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 244 | retval = -EINVAL; |
| 245 | break; |
| 246 | } |
| 247 | |
| 248 | return retval; |
| 249 | } |
Dmitry Kalinkin | ef73f88 | 2015-05-28 15:07:04 +0300 | [diff] [blame] | 250 | EXPORT_SYMBOL(vme_check_window); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 251 | |
Dmitry Kalinkin | 472f16f | 2015-09-18 02:01:43 +0300 | [diff] [blame] | 252 | static 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 Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 285 | /** |
| 286 | * vme_slave_request - Request a VME slave window resource. |
| 287 | * @vdev: Pointer to VME device struct vme_dev assigned to driver instance. |
| 288 | * @address: Required VME address space. |
| 289 | * @cycle: Required VME data transfer cycle type. |
| 290 | * |
| 291 | * Request use of a VME window resource capable of being set for the requested |
| 292 | * address space and data transfer cycle. |
| 293 | * |
| 294 | * Return: Pointer to VME resource on success, NULL on failure. |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 295 | */ |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 296 | struct vme_resource *vme_slave_request(struct vme_dev *vdev, u32 address, |
| 297 | u32 cycle) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 298 | { |
| 299 | struct vme_bridge *bridge; |
| 300 | struct list_head *slave_pos = NULL; |
| 301 | struct vme_slave_resource *allocated_image = NULL; |
| 302 | struct vme_slave_resource *slave_image = NULL; |
| 303 | struct vme_resource *resource = NULL; |
| 304 | |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 305 | bridge = vdev->bridge; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 306 | 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. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 312 | list_for_each(slave_pos, &bridge->slave_resources) { |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 313 | slave_image = list_entry(slave_pos, |
| 314 | struct vme_slave_resource, list); |
| 315 | |
| 316 | if (slave_image == NULL) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 317 | printk(KERN_ERR "Registered NULL Slave resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 318 | continue; |
| 319 | } |
| 320 | |
| 321 | /* Find an unlocked and compatible image */ |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 322 | mutex_lock(&slave_image->mtx); |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 323 | if (((slave_image->address_attr & address) == address) && |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 324 | ((slave_image->cycle_attr & cycle) == cycle) && |
| 325 | (slave_image->locked == 0)) { |
| 326 | |
| 327 | slave_image->locked = 1; |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 328 | mutex_unlock(&slave_image->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 329 | allocated_image = slave_image; |
| 330 | break; |
| 331 | } |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 332 | mutex_unlock(&slave_image->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 333 | } |
| 334 | |
| 335 | /* No free image */ |
| 336 | if (allocated_image == NULL) |
| 337 | goto err_image; |
| 338 | |
Markus Elfring | 1ff0a19 | 2017-08-24 21:52:00 +0200 | [diff] [blame] | 339 | resource = kmalloc(sizeof(*resource), GFP_KERNEL); |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 340 | if (!resource) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 341 | goto err_alloc; |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 342 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 343 | resource->type = VME_SLAVE; |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 344 | resource->entry = &allocated_image->list; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 345 | |
| 346 | return resource; |
| 347 | |
| 348 | err_alloc: |
| 349 | /* Unlock image */ |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 350 | mutex_lock(&slave_image->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 351 | slave_image->locked = 0; |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 352 | mutex_unlock(&slave_image->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 353 | err_image: |
| 354 | err_bus: |
| 355 | return NULL; |
| 356 | } |
| 357 | EXPORT_SYMBOL(vme_slave_request); |
| 358 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 359 | /** |
| 360 | * vme_slave_set - Set VME slave window configuration. |
| 361 | * @resource: Pointer to VME slave resource. |
| 362 | * @enabled: State to which the window should be configured. |
| 363 | * @vme_base: Base address for the window. |
| 364 | * @size: Size of the VME window. |
| 365 | * @buf_base: Based address of buffer used to provide VME slave window storage. |
| 366 | * @aspace: VME address space for the VME window. |
| 367 | * @cycle: VME data transfer cycle type for the VME window. |
| 368 | * |
| 369 | * Set configuration for provided VME slave window. |
| 370 | * |
| 371 | * Return: Zero on success, -EINVAL if operation is not supported on this |
| 372 | * device, if an invalid resource has been provided or invalid |
| 373 | * attributes are provided. Hardware specific errors may also be |
| 374 | * returned. |
| 375 | */ |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 376 | int vme_slave_set(struct vme_resource *resource, int enabled, |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 377 | unsigned long long vme_base, unsigned long long size, |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 378 | dma_addr_t buf_base, u32 aspace, u32 cycle) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 379 | { |
| 380 | struct vme_bridge *bridge = find_bridge(resource); |
| 381 | struct vme_slave_resource *image; |
| 382 | int retval; |
| 383 | |
| 384 | if (resource->type != VME_SLAVE) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 385 | printk(KERN_ERR "Not a slave resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 386 | return -EINVAL; |
| 387 | } |
| 388 | |
| 389 | image = list_entry(resource->entry, struct vme_slave_resource, list); |
| 390 | |
| 391 | if (bridge->slave_set == NULL) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 392 | printk(KERN_ERR "Function not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 393 | return -ENOSYS; |
| 394 | } |
| 395 | |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 396 | if (!(((image->address_attr & aspace) == aspace) && |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 397 | ((image->cycle_attr & cycle) == cycle))) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 398 | printk(KERN_ERR "Invalid attributes\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 399 | return -EINVAL; |
| 400 | } |
| 401 | |
| 402 | retval = vme_check_window(aspace, vme_base, size); |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 403 | if (retval) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 404 | return retval; |
| 405 | |
| 406 | return bridge->slave_set(image, enabled, vme_base, size, buf_base, |
| 407 | aspace, cycle); |
| 408 | } |
| 409 | EXPORT_SYMBOL(vme_slave_set); |
| 410 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 411 | /** |
| 412 | * vme_slave_get - Retrieve VME slave window configuration. |
| 413 | * @resource: Pointer to VME slave resource. |
| 414 | * @enabled: Pointer to variable for storing state. |
| 415 | * @vme_base: Pointer to variable for storing window base address. |
| 416 | * @size: Pointer to variable for storing window size. |
| 417 | * @buf_base: Pointer to variable for storing slave buffer base address. |
| 418 | * @aspace: Pointer to variable for storing VME address space. |
| 419 | * @cycle: Pointer to variable for storing VME data transfer cycle type. |
| 420 | * |
| 421 | * Return configuration for provided VME slave window. |
| 422 | * |
| 423 | * Return: Zero on success, -EINVAL if operation is not supported on this |
| 424 | * device or if an invalid resource has been provided. |
| 425 | */ |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 426 | int vme_slave_get(struct vme_resource *resource, int *enabled, |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 427 | unsigned long long *vme_base, unsigned long long *size, |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 428 | dma_addr_t *buf_base, u32 *aspace, u32 *cycle) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 429 | { |
| 430 | struct vme_bridge *bridge = find_bridge(resource); |
| 431 | struct vme_slave_resource *image; |
| 432 | |
| 433 | if (resource->type != VME_SLAVE) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 434 | printk(KERN_ERR "Not a slave resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 435 | return -EINVAL; |
| 436 | } |
| 437 | |
| 438 | image = list_entry(resource->entry, struct vme_slave_resource, list); |
| 439 | |
Emilio G. Cota | 51a569f | 2009-08-10 16:52:42 +0200 | [diff] [blame] | 440 | if (bridge->slave_get == NULL) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 441 | printk(KERN_ERR "vme_slave_get not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 442 | return -EINVAL; |
| 443 | } |
| 444 | |
| 445 | return bridge->slave_get(image, enabled, vme_base, size, buf_base, |
| 446 | aspace, cycle); |
| 447 | } |
| 448 | EXPORT_SYMBOL(vme_slave_get); |
| 449 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 450 | /** |
| 451 | * vme_slave_free - Free VME slave window |
| 452 | * @resource: Pointer to VME slave resource. |
| 453 | * |
| 454 | * Free the provided slave resource so that it may be reallocated. |
| 455 | */ |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 456 | void vme_slave_free(struct vme_resource *resource) |
| 457 | { |
| 458 | struct vme_slave_resource *slave_image; |
| 459 | |
| 460 | if (resource->type != VME_SLAVE) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 461 | printk(KERN_ERR "Not a slave resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 462 | return; |
| 463 | } |
| 464 | |
| 465 | slave_image = list_entry(resource->entry, struct vme_slave_resource, |
| 466 | list); |
| 467 | if (slave_image == NULL) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 468 | printk(KERN_ERR "Can't find slave resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 469 | return; |
| 470 | } |
| 471 | |
| 472 | /* Unlock image */ |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 473 | mutex_lock(&slave_image->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 474 | if (slave_image->locked == 0) |
| 475 | printk(KERN_ERR "Image is already free\n"); |
| 476 | |
| 477 | slave_image->locked = 0; |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 478 | mutex_unlock(&slave_image->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 479 | |
| 480 | /* Free up resource memory */ |
| 481 | kfree(resource); |
| 482 | } |
| 483 | EXPORT_SYMBOL(vme_slave_free); |
| 484 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 485 | /** |
| 486 | * vme_master_request - Request a VME master window resource. |
| 487 | * @vdev: Pointer to VME device struct vme_dev assigned to driver instance. |
| 488 | * @address: Required VME address space. |
| 489 | * @cycle: Required VME data transfer cycle type. |
| 490 | * @dwidth: Required VME data transfer width. |
| 491 | * |
| 492 | * Request use of a VME window resource capable of being set for the requested |
| 493 | * address space, data transfer cycle and width. |
| 494 | * |
| 495 | * Return: Pointer to VME resource on success, NULL on failure. |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 496 | */ |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 497 | struct vme_resource *vme_master_request(struct vme_dev *vdev, u32 address, |
| 498 | u32 cycle, u32 dwidth) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 499 | { |
| 500 | struct vme_bridge *bridge; |
| 501 | struct list_head *master_pos = NULL; |
| 502 | struct vme_master_resource *allocated_image = NULL; |
| 503 | struct vme_master_resource *master_image = NULL; |
| 504 | struct vme_resource *resource = NULL; |
| 505 | |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 506 | bridge = vdev->bridge; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 507 | 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. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 513 | list_for_each(master_pos, &bridge->master_resources) { |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 514 | 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. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 523 | spin_lock(&master_image->lock); |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 524 | if (((master_image->address_attr & address) == address) && |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 525 | ((master_image->cycle_attr & cycle) == cycle) && |
| 526 | ((master_image->width_attr & dwidth) == dwidth) && |
| 527 | (master_image->locked == 0)) { |
| 528 | |
| 529 | master_image->locked = 1; |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 530 | spin_unlock(&master_image->lock); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 531 | allocated_image = master_image; |
| 532 | break; |
| 533 | } |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 534 | spin_unlock(&master_image->lock); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 535 | } |
| 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 Elfring | 1ff0a19 | 2017-08-24 21:52:00 +0200 | [diff] [blame] | 543 | resource = kmalloc(sizeof(*resource), GFP_KERNEL); |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 544 | if (!resource) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 545 | goto err_alloc; |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 546 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 547 | resource->type = VME_MASTER; |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 548 | resource->entry = &allocated_image->list; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 549 | |
| 550 | return resource; |
| 551 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 552 | err_alloc: |
| 553 | /* Unlock image */ |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 554 | spin_lock(&master_image->lock); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 555 | master_image->locked = 0; |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 556 | spin_unlock(&master_image->lock); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 557 | err_image: |
| 558 | err_bus: |
| 559 | return NULL; |
| 560 | } |
| 561 | EXPORT_SYMBOL(vme_master_request); |
| 562 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 563 | /** |
| 564 | * vme_master_set - Set VME master window configuration. |
| 565 | * @resource: Pointer to VME master resource. |
| 566 | * @enabled: State to which the window should be configured. |
| 567 | * @vme_base: Base address for the window. |
| 568 | * @size: Size of the VME window. |
| 569 | * @aspace: VME address space for the VME window. |
| 570 | * @cycle: VME data transfer cycle type for the VME window. |
| 571 | * @dwidth: VME data transfer width for the VME window. |
| 572 | * |
| 573 | * Set configuration for provided VME master window. |
| 574 | * |
| 575 | * Return: Zero on success, -EINVAL if operation is not supported on this |
| 576 | * device, if an invalid resource has been provided or invalid |
| 577 | * attributes are provided. Hardware specific errors may also be |
| 578 | * returned. |
| 579 | */ |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 580 | int vme_master_set(struct vme_resource *resource, int enabled, |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 581 | unsigned long long vme_base, unsigned long long size, u32 aspace, |
| 582 | u32 cycle, u32 dwidth) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 583 | { |
| 584 | struct vme_bridge *bridge = find_bridge(resource); |
| 585 | struct vme_master_resource *image; |
| 586 | int retval; |
| 587 | |
| 588 | if (resource->type != VME_MASTER) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 589 | printk(KERN_ERR "Not a master resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 590 | return -EINVAL; |
| 591 | } |
| 592 | |
| 593 | image = list_entry(resource->entry, struct vme_master_resource, list); |
| 594 | |
| 595 | if (bridge->master_set == NULL) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 596 | printk(KERN_WARNING "vme_master_set not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 597 | return -EINVAL; |
| 598 | } |
| 599 | |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 600 | if (!(((image->address_attr & aspace) == aspace) && |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 601 | ((image->cycle_attr & cycle) == cycle) && |
| 602 | ((image->width_attr & dwidth) == dwidth))) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 603 | printk(KERN_WARNING "Invalid attributes\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 604 | return -EINVAL; |
| 605 | } |
| 606 | |
| 607 | retval = vme_check_window(aspace, vme_base, size); |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 608 | if (retval) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 609 | return retval; |
| 610 | |
| 611 | return bridge->master_set(image, enabled, vme_base, size, aspace, |
| 612 | cycle, dwidth); |
| 613 | } |
| 614 | EXPORT_SYMBOL(vme_master_set); |
| 615 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 616 | /** |
| 617 | * vme_master_get - Retrieve VME master window configuration. |
| 618 | * @resource: Pointer to VME master resource. |
| 619 | * @enabled: Pointer to variable for storing state. |
| 620 | * @vme_base: Pointer to variable for storing window base address. |
| 621 | * @size: Pointer to variable for storing window size. |
| 622 | * @aspace: Pointer to variable for storing VME address space. |
| 623 | * @cycle: Pointer to variable for storing VME data transfer cycle type. |
| 624 | * @dwidth: Pointer to variable for storing VME data transfer width. |
| 625 | * |
| 626 | * Return configuration for provided VME master window. |
| 627 | * |
| 628 | * Return: Zero on success, -EINVAL if operation is not supported on this |
| 629 | * device or if an invalid resource has been provided. |
| 630 | */ |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 631 | int vme_master_get(struct vme_resource *resource, int *enabled, |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 632 | unsigned long long *vme_base, unsigned long long *size, u32 *aspace, |
| 633 | u32 *cycle, u32 *dwidth) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 634 | { |
| 635 | struct vme_bridge *bridge = find_bridge(resource); |
| 636 | struct vme_master_resource *image; |
| 637 | |
| 638 | if (resource->type != VME_MASTER) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 639 | printk(KERN_ERR "Not a master resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 640 | return -EINVAL; |
| 641 | } |
| 642 | |
| 643 | image = list_entry(resource->entry, struct vme_master_resource, list); |
| 644 | |
Emilio G. Cota | 51a569f | 2009-08-10 16:52:42 +0200 | [diff] [blame] | 645 | if (bridge->master_get == NULL) { |
Julia Lawall | c103830 | 2014-12-07 20:20:53 +0100 | [diff] [blame] | 646 | printk(KERN_WARNING "%s not supported\n", __func__); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 647 | return -EINVAL; |
| 648 | } |
| 649 | |
| 650 | return bridge->master_get(image, enabled, vme_base, size, aspace, |
| 651 | cycle, dwidth); |
| 652 | } |
| 653 | EXPORT_SYMBOL(vme_master_get); |
| 654 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 655 | /** |
| 656 | * vme_master_write - Read data from VME space into a buffer. |
| 657 | * @resource: Pointer to VME master resource. |
| 658 | * @buf: Pointer to buffer where data should be transferred. |
| 659 | * @count: Number of bytes to transfer. |
| 660 | * @offset: Offset into VME master window at which to start transfer. |
| 661 | * |
| 662 | * Perform read of count bytes of data from location on VME bus which maps into |
| 663 | * the VME master window at offset to buf. |
| 664 | * |
| 665 | * Return: Number of bytes read, -EINVAL if resource is not a VME master |
| 666 | * resource or read operation is not supported. -EFAULT returned if |
| 667 | * invalid offset is provided. Hardware specific errors may also be |
| 668 | * returned. |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 669 | */ |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 670 | ssize_t vme_master_read(struct vme_resource *resource, void *buf, size_t count, |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 671 | 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 Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 678 | printk(KERN_WARNING "Reading from resource not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 679 | return -EINVAL; |
| 680 | } |
| 681 | |
| 682 | if (resource->type != VME_MASTER) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 683 | printk(KERN_ERR "Not a master resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 684 | return -EINVAL; |
| 685 | } |
| 686 | |
| 687 | image = list_entry(resource->entry, struct vme_master_resource, list); |
| 688 | |
| 689 | length = vme_get_size(resource); |
| 690 | |
| 691 | if (offset > length) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 692 | printk(KERN_WARNING "Invalid Offset\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 693 | return -EFAULT; |
| 694 | } |
| 695 | |
| 696 | if ((offset + count) > length) |
| 697 | count = length - offset; |
| 698 | |
| 699 | return bridge->master_read(image, buf, count, offset); |
| 700 | |
| 701 | } |
| 702 | EXPORT_SYMBOL(vme_master_read); |
| 703 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 704 | /** |
| 705 | * vme_master_write - Write data out to VME space from a buffer. |
| 706 | * @resource: Pointer to VME master resource. |
| 707 | * @buf: Pointer to buffer holding data to transfer. |
| 708 | * @count: Number of bytes to transfer. |
| 709 | * @offset: Offset into VME master window at which to start transfer. |
| 710 | * |
| 711 | * Perform write of count bytes of data from buf to location on VME bus which |
| 712 | * maps into the VME master window at offset. |
| 713 | * |
| 714 | * Return: Number of bytes written, -EINVAL if resource is not a VME master |
| 715 | * resource or write operation is not supported. -EFAULT returned if |
| 716 | * invalid offset is provided. Hardware specific errors may also be |
| 717 | * returned. |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 718 | */ |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 719 | ssize_t vme_master_write(struct vme_resource *resource, void *buf, |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 720 | size_t count, loff_t offset) |
| 721 | { |
| 722 | struct vme_bridge *bridge = find_bridge(resource); |
| 723 | struct vme_master_resource *image; |
| 724 | size_t length; |
| 725 | |
| 726 | if (bridge->master_write == NULL) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 727 | printk(KERN_WARNING "Writing to resource not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 728 | return -EINVAL; |
| 729 | } |
| 730 | |
| 731 | if (resource->type != VME_MASTER) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 732 | printk(KERN_ERR "Not a master resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 733 | return -EINVAL; |
| 734 | } |
| 735 | |
| 736 | image = list_entry(resource->entry, struct vme_master_resource, list); |
| 737 | |
| 738 | length = vme_get_size(resource); |
| 739 | |
| 740 | if (offset > length) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 741 | printk(KERN_WARNING "Invalid Offset\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 742 | return -EFAULT; |
| 743 | } |
| 744 | |
| 745 | if ((offset + count) > length) |
| 746 | count = length - offset; |
| 747 | |
| 748 | return bridge->master_write(image, buf, count, offset); |
| 749 | } |
| 750 | EXPORT_SYMBOL(vme_master_write); |
| 751 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 752 | /** |
| 753 | * vme_master_rmw - Perform read-modify-write cycle. |
| 754 | * @resource: Pointer to VME master resource. |
| 755 | * @mask: Bits to be compared and swapped in operation. |
| 756 | * @compare: Bits to be compared with data read from offset. |
| 757 | * @swap: Bits to be swapped in data read from offset. |
| 758 | * @offset: Offset into VME master window at which to perform operation. |
| 759 | * |
| 760 | * Perform read-modify-write cycle on provided location: |
| 761 | * - Location on VME bus is read. |
| 762 | * - Bits selected by mask are compared with compare. |
| 763 | * - Where a selected bit matches that in compare and are selected in swap, |
| 764 | * the bit is swapped. |
| 765 | * - Result written back to location on VME bus. |
| 766 | * |
| 767 | * Return: Bytes written on success, -EINVAL if resource is not a VME master |
| 768 | * resource or RMW operation is not supported. Hardware specific |
| 769 | * errors may also be returned. |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 770 | */ |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 771 | unsigned int vme_master_rmw(struct vme_resource *resource, unsigned int mask, |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 772 | unsigned int compare, unsigned int swap, loff_t offset) |
| 773 | { |
| 774 | struct vme_bridge *bridge = find_bridge(resource); |
| 775 | struct vme_master_resource *image; |
| 776 | |
| 777 | if (bridge->master_rmw == NULL) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 778 | printk(KERN_WARNING "Writing to resource not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 779 | return -EINVAL; |
| 780 | } |
| 781 | |
| 782 | if (resource->type != VME_MASTER) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 783 | printk(KERN_ERR "Not a master resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 784 | return -EINVAL; |
| 785 | } |
| 786 | |
| 787 | image = list_entry(resource->entry, struct vme_master_resource, list); |
| 788 | |
| 789 | return bridge->master_rmw(image, mask, compare, swap, offset); |
| 790 | } |
| 791 | EXPORT_SYMBOL(vme_master_rmw); |
| 792 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 793 | /** |
| 794 | * vme_master_mmap - Mmap region of VME master window. |
| 795 | * @resource: Pointer to VME master resource. |
| 796 | * @vma: Pointer to definition of user mapping. |
| 797 | * |
| 798 | * Memory map a region of the VME master window into user space. |
| 799 | * |
| 800 | * Return: Zero on success, -EINVAL if resource is not a VME master |
| 801 | * resource or -EFAULT if map exceeds window size. Other generic mmap |
| 802 | * errors may also be returned. |
| 803 | */ |
Dmitry Kalinkin | c74a804 | 2015-02-26 18:53:10 +0300 | [diff] [blame] | 804 | int 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 | } |
| 828 | EXPORT_SYMBOL(vme_master_mmap); |
| 829 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 830 | /** |
| 831 | * vme_master_free - Free VME master window |
| 832 | * @resource: Pointer to VME master resource. |
| 833 | * |
| 834 | * Free the provided master resource so that it may be reallocated. |
| 835 | */ |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 836 | void vme_master_free(struct vme_resource *resource) |
| 837 | { |
| 838 | struct vme_master_resource *master_image; |
| 839 | |
| 840 | if (resource->type != VME_MASTER) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 841 | printk(KERN_ERR "Not a master resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 842 | return; |
| 843 | } |
| 844 | |
| 845 | master_image = list_entry(resource->entry, struct vme_master_resource, |
| 846 | list); |
| 847 | if (master_image == NULL) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 848 | printk(KERN_ERR "Can't find master resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 849 | return; |
| 850 | } |
| 851 | |
| 852 | /* Unlock image */ |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 853 | spin_lock(&master_image->lock); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 854 | if (master_image->locked == 0) |
| 855 | printk(KERN_ERR "Image is already free\n"); |
| 856 | |
| 857 | master_image->locked = 0; |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 858 | spin_unlock(&master_image->lock); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 859 | |
| 860 | /* Free up resource memory */ |
| 861 | kfree(resource); |
| 862 | } |
| 863 | EXPORT_SYMBOL(vme_master_free); |
| 864 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 865 | /** |
| 866 | * vme_dma_request - Request a DMA controller. |
| 867 | * @vdev: Pointer to VME device struct vme_dev assigned to driver instance. |
| 868 | * @route: Required src/destination combination. |
| 869 | * |
| 870 | * Request a VME DMA controller with capability to perform transfers bewteen |
| 871 | * requested source/destination combination. |
| 872 | * |
| 873 | * Return: Pointer to VME DMA resource on success, NULL on failure. |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 874 | */ |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 875 | struct vme_resource *vme_dma_request(struct vme_dev *vdev, u32 route) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 876 | { |
| 877 | struct vme_bridge *bridge; |
| 878 | struct list_head *dma_pos = NULL; |
| 879 | struct vme_dma_resource *allocated_ctrlr = NULL; |
| 880 | struct vme_dma_resource *dma_ctrlr = NULL; |
| 881 | struct vme_resource *resource = NULL; |
| 882 | |
| 883 | /* XXX Not checking resource attributes */ |
| 884 | printk(KERN_ERR "No VME resource Attribute tests done\n"); |
| 885 | |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 886 | bridge = vdev->bridge; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 887 | 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. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 893 | list_for_each(dma_pos, &bridge->dma_resources) { |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 894 | dma_ctrlr = list_entry(dma_pos, |
| 895 | struct vme_dma_resource, list); |
| 896 | |
| 897 | if (dma_ctrlr == NULL) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 898 | printk(KERN_ERR "Registered NULL DMA resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 899 | continue; |
| 900 | } |
| 901 | |
Martyn Welch | 4f723df | 2010-02-18 15:12:58 +0000 | [diff] [blame] | 902 | /* Find an unlocked and compatible controller */ |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 903 | mutex_lock(&dma_ctrlr->mtx); |
Martyn Welch | 4f723df | 2010-02-18 15:12:58 +0000 | [diff] [blame] | 904 | if (((dma_ctrlr->route_attr & route) == route) && |
| 905 | (dma_ctrlr->locked == 0)) { |
| 906 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 907 | dma_ctrlr->locked = 1; |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 908 | mutex_unlock(&dma_ctrlr->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 909 | allocated_ctrlr = dma_ctrlr; |
| 910 | break; |
| 911 | } |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 912 | mutex_unlock(&dma_ctrlr->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 913 | } |
| 914 | |
| 915 | /* Check to see if we found a resource */ |
| 916 | if (allocated_ctrlr == NULL) |
| 917 | goto err_ctrlr; |
| 918 | |
Markus Elfring | 1ff0a19 | 2017-08-24 21:52:00 +0200 | [diff] [blame] | 919 | resource = kmalloc(sizeof(*resource), GFP_KERNEL); |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 920 | if (!resource) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 921 | goto err_alloc; |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 922 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 923 | resource->type = VME_DMA; |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 924 | resource->entry = &allocated_ctrlr->list; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 925 | |
| 926 | return resource; |
| 927 | |
| 928 | err_alloc: |
| 929 | /* Unlock image */ |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 930 | mutex_lock(&dma_ctrlr->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 931 | dma_ctrlr->locked = 0; |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 932 | mutex_unlock(&dma_ctrlr->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 933 | err_ctrlr: |
| 934 | err_bus: |
| 935 | return NULL; |
| 936 | } |
Martyn Welch | 58e5079 | 2009-10-29 16:35:20 +0000 | [diff] [blame] | 937 | EXPORT_SYMBOL(vme_dma_request); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 938 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 939 | /** |
| 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 948 | */ |
| 949 | struct vme_dma_list *vme_new_dma_list(struct vme_resource *resource) |
| 950 | { |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 951 | struct vme_dma_list *dma_list; |
| 952 | |
| 953 | if (resource->type != VME_DMA) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 954 | printk(KERN_ERR "Not a DMA resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 955 | return NULL; |
| 956 | } |
| 957 | |
Markus Elfring | 1ff0a19 | 2017-08-24 21:52:00 +0200 | [diff] [blame] | 958 | dma_list = kmalloc(sizeof(*dma_list), GFP_KERNEL); |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 959 | if (!dma_list) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 960 | return NULL; |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 961 | |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 962 | INIT_LIST_HEAD(&dma_list->entries); |
Markus Elfring | a384b2c | 2017-08-24 22:04:45 +0200 | [diff] [blame^] | 963 | dma_list->parent = list_entry(resource->entry, |
| 964 | struct vme_dma_resource, |
| 965 | list); |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 966 | mutex_init(&dma_list->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 967 | |
| 968 | return dma_list; |
| 969 | } |
| 970 | EXPORT_SYMBOL(vme_new_dma_list); |
| 971 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 972 | /** |
| 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 982 | */ |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 983 | struct vme_dma_attr *vme_dma_pattern_attribute(u32 pattern, u32 type) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 984 | { |
| 985 | struct vme_dma_attr *attributes; |
| 986 | struct vme_dma_pattern *pattern_attr; |
| 987 | |
Markus Elfring | 1ff0a19 | 2017-08-24 21:52:00 +0200 | [diff] [blame] | 988 | attributes = kmalloc(sizeof(*attributes), GFP_KERNEL); |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 989 | if (!attributes) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 990 | goto err_attr; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 991 | |
Markus Elfring | 1ff0a19 | 2017-08-24 21:52:00 +0200 | [diff] [blame] | 992 | pattern_attr = kmalloc(sizeof(*pattern_attr), GFP_KERNEL); |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 993 | if (!pattern_attr) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 994 | goto err_pat; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 995 | |
| 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1004 | err_pat: |
| 1005 | kfree(attributes); |
| 1006 | err_attr: |
| 1007 | return NULL; |
| 1008 | } |
| 1009 | EXPORT_SYMBOL(vme_dma_pattern_attribute); |
| 1010 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1011 | /** |
| 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1020 | */ |
| 1021 | struct 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 Elfring | 1ff0a19 | 2017-08-24 21:52:00 +0200 | [diff] [blame] | 1028 | attributes = kmalloc(sizeof(*attributes), GFP_KERNEL); |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 1029 | if (!attributes) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1030 | goto err_attr; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1031 | |
Markus Elfring | 1ff0a19 | 2017-08-24 21:52:00 +0200 | [diff] [blame] | 1032 | pci_attr = kmalloc(sizeof(*pci_attr), GFP_KERNEL); |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 1033 | if (!pci_attr) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1034 | goto err_pci; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1035 | |
| 1036 | attributes->type = VME_DMA_PCI; |
| 1037 | attributes->private = (void *)pci_attr; |
| 1038 | |
| 1039 | pci_attr->address = address; |
| 1040 | |
| 1041 | return attributes; |
| 1042 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1043 | err_pci: |
| 1044 | kfree(attributes); |
| 1045 | err_attr: |
| 1046 | return NULL; |
| 1047 | } |
| 1048 | EXPORT_SYMBOL(vme_dma_pci_attribute); |
| 1049 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1050 | /** |
| 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1062 | */ |
| 1063 | struct vme_dma_attr *vme_dma_vme_attribute(unsigned long long address, |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 1064 | u32 aspace, u32 cycle, u32 dwidth) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1065 | { |
| 1066 | struct vme_dma_attr *attributes; |
| 1067 | struct vme_dma_vme *vme_attr; |
| 1068 | |
Markus Elfring | 1ff0a19 | 2017-08-24 21:52:00 +0200 | [diff] [blame] | 1069 | attributes = kmalloc(sizeof(*attributes), GFP_KERNEL); |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 1070 | if (!attributes) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1071 | goto err_attr; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1072 | |
Markus Elfring | 1ff0a19 | 2017-08-24 21:52:00 +0200 | [diff] [blame] | 1073 | vme_attr = kmalloc(sizeof(*vme_attr), GFP_KERNEL); |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 1074 | if (!vme_attr) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1075 | goto err_vme; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1076 | |
| 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1087 | err_vme: |
| 1088 | kfree(attributes); |
| 1089 | err_attr: |
| 1090 | return NULL; |
| 1091 | } |
| 1092 | EXPORT_SYMBOL(vme_dma_vme_attribute); |
| 1093 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1094 | /** |
| 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1100 | */ |
| 1101 | void vme_dma_free_attribute(struct vme_dma_attr *attributes) |
| 1102 | { |
| 1103 | kfree(attributes->private); |
| 1104 | kfree(attributes); |
| 1105 | } |
| 1106 | EXPORT_SYMBOL(vme_dma_free_attribute); |
| 1107 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1108 | /** |
| 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1125 | int 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 Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 1132 | printk(KERN_WARNING "Link List DMA generation not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1133 | return -EINVAL; |
| 1134 | } |
| 1135 | |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1136 | if (!mutex_trylock(&list->mtx)) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 1137 | printk(KERN_ERR "Link List already submitted\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1138 | return -EINVAL; |
| 1139 | } |
| 1140 | |
| 1141 | retval = bridge->dma_list_add(list, src, dest, count); |
| 1142 | |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1143 | mutex_unlock(&list->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1144 | |
| 1145 | return retval; |
| 1146 | } |
| 1147 | EXPORT_SYMBOL(vme_dma_list_add); |
| 1148 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1149 | /** |
| 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1159 | int 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 Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 1165 | printk(KERN_ERR "Link List DMA execution not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1166 | return -EINVAL; |
| 1167 | } |
| 1168 | |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1169 | mutex_lock(&list->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1170 | |
| 1171 | retval = bridge->dma_list_exec(list); |
| 1172 | |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1173 | mutex_unlock(&list->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1174 | |
| 1175 | return retval; |
| 1176 | } |
| 1177 | EXPORT_SYMBOL(vme_dma_list_exec); |
| 1178 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1179 | /** |
| 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1188 | int 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 Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 1194 | printk(KERN_WARNING "Emptying of Link Lists not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1195 | return -EINVAL; |
| 1196 | } |
| 1197 | |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1198 | if (!mutex_trylock(&list->mtx)) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 1199 | printk(KERN_ERR "Link List in use\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1200 | return -EINVAL; |
| 1201 | } |
| 1202 | |
| 1203 | /* |
Aaron Sierra | f56c3d4 | 2016-04-21 11:18:22 -0500 | [diff] [blame] | 1204 | * 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1206 | */ |
| 1207 | retval = bridge->dma_list_empty(list); |
| 1208 | if (retval) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 1209 | printk(KERN_ERR "Unable to empty link-list entries\n"); |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1210 | mutex_unlock(&list->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1211 | return retval; |
| 1212 | } |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1213 | mutex_unlock(&list->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1214 | kfree(list); |
| 1215 | |
| 1216 | return retval; |
| 1217 | } |
| 1218 | EXPORT_SYMBOL(vme_dma_list_free); |
| 1219 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1220 | /** |
| 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1229 | int vme_dma_free(struct vme_resource *resource) |
| 1230 | { |
| 1231 | struct vme_dma_resource *ctrlr; |
| 1232 | |
| 1233 | if (resource->type != VME_DMA) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 1234 | printk(KERN_ERR "Not a DMA resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1235 | return -EINVAL; |
| 1236 | } |
| 1237 | |
| 1238 | ctrlr = list_entry(resource->entry, struct vme_dma_resource, list); |
| 1239 | |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1240 | if (!mutex_trylock(&ctrlr->mtx)) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 1241 | printk(KERN_ERR "Resource busy, can't free\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1242 | return -EBUSY; |
| 1243 | } |
| 1244 | |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1245 | if (!(list_empty(&ctrlr->pending) && list_empty(&ctrlr->running))) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 1246 | printk(KERN_WARNING "Resource still processing transfers\n"); |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1247 | mutex_unlock(&ctrlr->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1248 | return -EBUSY; |
| 1249 | } |
| 1250 | |
| 1251 | ctrlr->locked = 0; |
| 1252 | |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1253 | mutex_unlock(&ctrlr->mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1254 | |
Martyn Welch | fd5c256 | 2013-06-06 12:29:16 +0100 | [diff] [blame] | 1255 | kfree(resource); |
| 1256 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1257 | return 0; |
| 1258 | } |
| 1259 | EXPORT_SYMBOL(vme_dma_free); |
| 1260 | |
Dmitry Kalinkin | e2c6393 | 2015-09-18 02:01:42 +0300 | [diff] [blame] | 1261 | void vme_bus_error_handler(struct vme_bridge *bridge, |
Dmitry Kalinkin | 472f16f | 2015-09-18 02:01:43 +0300 | [diff] [blame] | 1262 | unsigned long long address, int am) |
Dmitry Kalinkin | e2c6393 | 2015-09-18 02:01:42 +0300 | [diff] [blame] | 1263 | { |
Dmitry Kalinkin | 0b04966 | 2015-09-18 02:01:44 +0300 | [diff] [blame] | 1264 | struct list_head *handler_pos = NULL; |
| 1265 | struct vme_error_handler *handler; |
Dmitry Kalinkin | 448535a | 2015-09-18 02:01:45 +0300 | [diff] [blame] | 1266 | int handler_triggered = 0; |
Dmitry Kalinkin | 0b04966 | 2015-09-18 02:01:44 +0300 | [diff] [blame] | 1267 | u32 aspace = vme_get_aspace(am); |
Dmitry Kalinkin | e2c6393 | 2015-09-18 02:01:42 +0300 | [diff] [blame] | 1268 | |
Dmitry Kalinkin | 0b04966 | 2015-09-18 02:01:44 +0300 | [diff] [blame] | 1269 | 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 Kalinkin | 448535a | 2015-09-18 02:01:45 +0300 | [diff] [blame] | 1279 | handler_triggered = 1; |
Dmitry Kalinkin | 0b04966 | 2015-09-18 02:01:44 +0300 | [diff] [blame] | 1280 | } |
Dmitry Kalinkin | e2c6393 | 2015-09-18 02:01:42 +0300 | [diff] [blame] | 1281 | } |
Dmitry Kalinkin | 448535a | 2015-09-18 02:01:45 +0300 | [diff] [blame] | 1282 | |
| 1283 | if (!handler_triggered) |
| 1284 | dev_err(bridge->parent, |
| 1285 | "Unhandled VME access error at address 0x%llx\n", |
| 1286 | address); |
Dmitry Kalinkin | e2c6393 | 2015-09-18 02:01:42 +0300 | [diff] [blame] | 1287 | } |
| 1288 | EXPORT_SYMBOL(vme_bus_error_handler); |
| 1289 | |
Dmitry Kalinkin | 0b04966 | 2015-09-18 02:01:44 +0300 | [diff] [blame] | 1290 | struct vme_error_handler *vme_register_error_handler( |
| 1291 | struct vme_bridge *bridge, u32 aspace, |
| 1292 | unsigned long long address, size_t len) |
Dmitry Kalinkin | e2c6393 | 2015-09-18 02:01:42 +0300 | [diff] [blame] | 1293 | { |
Dmitry Kalinkin | 0b04966 | 2015-09-18 02:01:44 +0300 | [diff] [blame] | 1294 | struct vme_error_handler *handler; |
Dmitry Kalinkin | e2c6393 | 2015-09-18 02:01:42 +0300 | [diff] [blame] | 1295 | |
Dmitry Kalinkin | 0b04966 | 2015-09-18 02:01:44 +0300 | [diff] [blame] | 1296 | handler = kmalloc(sizeof(*handler), GFP_KERNEL); |
| 1297 | if (!handler) |
| 1298 | return NULL; |
Dmitry Kalinkin | e2c6393 | 2015-09-18 02:01:42 +0300 | [diff] [blame] | 1299 | |
Dmitry Kalinkin | 0b04966 | 2015-09-18 02:01:44 +0300 | [diff] [blame] | 1300 | 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 Kalinkin | e2c6393 | 2015-09-18 02:01:42 +0300 | [diff] [blame] | 1306 | |
Dmitry Kalinkin | 0b04966 | 2015-09-18 02:01:44 +0300 | [diff] [blame] | 1307 | return handler; |
Dmitry Kalinkin | e2c6393 | 2015-09-18 02:01:42 +0300 | [diff] [blame] | 1308 | } |
Dmitry Kalinkin | 0b04966 | 2015-09-18 02:01:44 +0300 | [diff] [blame] | 1309 | EXPORT_SYMBOL(vme_register_error_handler); |
Dmitry Kalinkin | e2c6393 | 2015-09-18 02:01:42 +0300 | [diff] [blame] | 1310 | |
Dmitry Kalinkin | 0b04966 | 2015-09-18 02:01:44 +0300 | [diff] [blame] | 1311 | void vme_unregister_error_handler(struct vme_error_handler *handler) |
Dmitry Kalinkin | e2c6393 | 2015-09-18 02:01:42 +0300 | [diff] [blame] | 1312 | { |
Dmitry Kalinkin | 0b04966 | 2015-09-18 02:01:44 +0300 | [diff] [blame] | 1313 | list_del(&handler->list); |
| 1314 | kfree(handler); |
Dmitry Kalinkin | e2c6393 | 2015-09-18 02:01:42 +0300 | [diff] [blame] | 1315 | } |
Dmitry Kalinkin | 0b04966 | 2015-09-18 02:01:44 +0300 | [diff] [blame] | 1316 | EXPORT_SYMBOL(vme_unregister_error_handler); |
Dmitry Kalinkin | e2c6393 | 2015-09-18 02:01:42 +0300 | [diff] [blame] | 1317 | |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1318 | void 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 Sierra | f56c3d4 | 2016-04-21 11:18:22 -0500 | [diff] [blame] | 1329 | printk(KERN_WARNING "Spurious VME interrupt, level:%x, vector:%x\n", |
Greg Kroah-Hartman | 25958ce | 2012-04-25 11:25:46 -0700 | [diff] [blame] | 1330 | level, statid); |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1331 | } |
| 1332 | EXPORT_SYMBOL(vme_irq_handler); |
| 1333 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1334 | /** |
| 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 Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 1350 | int vme_irq_request(struct vme_dev *vdev, int level, int statid, |
Martyn Welch | 29848ac | 2010-02-18 15:13:05 +0000 | [diff] [blame] | 1351 | void (*callback)(int, int, void *), |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1352 | void *priv_data) |
| 1353 | { |
| 1354 | struct vme_bridge *bridge; |
| 1355 | |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 1356 | bridge = vdev->bridge; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1357 | if (bridge == NULL) { |
| 1358 | printk(KERN_ERR "Can't find VME bus\n"); |
| 1359 | return -EINVAL; |
| 1360 | } |
| 1361 | |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 1362 | if ((level < 1) || (level > 7)) { |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1363 | printk(KERN_ERR "Invalid interrupt level\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1364 | return -EINVAL; |
| 1365 | } |
| 1366 | |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1367 | if (bridge->irq_set == NULL) { |
| 1368 | printk(KERN_ERR "Configuring interrupts not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1369 | return -EINVAL; |
| 1370 | } |
| 1371 | |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1372 | mutex_lock(&bridge->irq_mtx); |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1373 | |
| 1374 | if (bridge->irq[level - 1].callback[statid].func) { |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1375 | mutex_unlock(&bridge->irq_mtx); |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1376 | 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 Welch | 29848ac | 2010-02-18 15:13:05 +0000 | [diff] [blame] | 1385 | bridge->irq_set(bridge, level, 1, 1); |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1386 | |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1387 | mutex_unlock(&bridge->irq_mtx); |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1388 | |
| 1389 | return 0; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1390 | } |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1391 | EXPORT_SYMBOL(vme_irq_request); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1392 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1393 | /** |
| 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 Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 1401 | void vme_irq_free(struct vme_dev *vdev, int level, int statid) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1402 | { |
| 1403 | struct vme_bridge *bridge; |
| 1404 | |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 1405 | bridge = vdev->bridge; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1406 | if (bridge == NULL) { |
| 1407 | printk(KERN_ERR "Can't find VME bus\n"); |
| 1408 | return; |
| 1409 | } |
| 1410 | |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 1411 | if ((level < 1) || (level > 7)) { |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1412 | printk(KERN_ERR "Invalid interrupt level\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1413 | return; |
| 1414 | } |
| 1415 | |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1416 | if (bridge->irq_set == NULL) { |
| 1417 | printk(KERN_ERR "Configuring interrupts not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1418 | return; |
| 1419 | } |
| 1420 | |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1421 | mutex_lock(&bridge->irq_mtx); |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1422 | |
| 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 Welch | 29848ac | 2010-02-18 15:13:05 +0000 | [diff] [blame] | 1427 | bridge->irq_set(bridge, level, 0, 1); |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1428 | |
| 1429 | bridge->irq[level - 1].callback[statid].func = NULL; |
| 1430 | bridge->irq[level - 1].callback[statid].priv_data = NULL; |
| 1431 | |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1432 | mutex_unlock(&bridge->irq_mtx); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1433 | } |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1434 | EXPORT_SYMBOL(vme_irq_free); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1435 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1436 | /** |
| 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 Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 1448 | int vme_irq_generate(struct vme_dev *vdev, int level, int statid) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1449 | { |
| 1450 | struct vme_bridge *bridge; |
| 1451 | |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 1452 | bridge = vdev->bridge; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1453 | if (bridge == NULL) { |
| 1454 | printk(KERN_ERR "Can't find VME bus\n"); |
| 1455 | return -EINVAL; |
| 1456 | } |
| 1457 | |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 1458 | if ((level < 1) || (level > 7)) { |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1459 | printk(KERN_WARNING "Invalid interrupt level\n"); |
| 1460 | return -EINVAL; |
| 1461 | } |
| 1462 | |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1463 | if (bridge->irq_generate == NULL) { |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 1464 | printk(KERN_WARNING "Interrupt generation not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1465 | return -EINVAL; |
| 1466 | } |
| 1467 | |
Martyn Welch | 29848ac | 2010-02-18 15:13:05 +0000 | [diff] [blame] | 1468 | return bridge->irq_generate(bridge, level, statid); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1469 | } |
Martyn Welch | c813f59 | 2009-10-29 16:34:54 +0000 | [diff] [blame] | 1470 | EXPORT_SYMBOL(vme_irq_generate); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1471 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1472 | /** |
| 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 Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1481 | */ |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 1482 | struct vme_resource *vme_lm_request(struct vme_dev *vdev) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1483 | { |
| 1484 | struct vme_bridge *bridge; |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1485 | 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1489 | |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 1490 | bridge = vdev->bridge; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1491 | if (bridge == NULL) { |
| 1492 | printk(KERN_ERR "Can't find VME bus\n"); |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1493 | goto err_bus; |
| 1494 | } |
| 1495 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1496 | /* Loop through LM resources */ |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1497 | list_for_each(lm_pos, &bridge->lm_resources) { |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1498 | lm = list_entry(lm_pos, |
| 1499 | struct vme_lm_resource, list); |
| 1500 | |
| 1501 | if (lm == NULL) { |
Greg Kroah-Hartman | 25958ce | 2012-04-25 11:25:46 -0700 | [diff] [blame] | 1502 | printk(KERN_ERR "Registered NULL Location Monitor resource\n"); |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1503 | continue; |
| 1504 | } |
| 1505 | |
| 1506 | /* Find an unlocked controller */ |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1507 | mutex_lock(&lm->mtx); |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1508 | if (lm->locked == 0) { |
| 1509 | lm->locked = 1; |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1510 | mutex_unlock(&lm->mtx); |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1511 | allocated_lm = lm; |
| 1512 | break; |
| 1513 | } |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1514 | mutex_unlock(&lm->mtx); |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1515 | } |
| 1516 | |
| 1517 | /* Check to see if we found a resource */ |
| 1518 | if (allocated_lm == NULL) |
| 1519 | goto err_lm; |
| 1520 | |
Markus Elfring | 1ff0a19 | 2017-08-24 21:52:00 +0200 | [diff] [blame] | 1521 | resource = kmalloc(sizeof(*resource), GFP_KERNEL); |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 1522 | if (!resource) |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1523 | goto err_alloc; |
Markus Elfring | 94eefcc | 2017-08-24 21:38:20 +0200 | [diff] [blame] | 1524 | |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1525 | resource->type = VME_LM; |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1526 | resource->entry = &allocated_lm->list; |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1527 | |
| 1528 | return resource; |
| 1529 | |
| 1530 | err_alloc: |
| 1531 | /* Unlock image */ |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1532 | mutex_lock(&lm->mtx); |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1533 | lm->locked = 0; |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1534 | mutex_unlock(&lm->mtx); |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1535 | err_lm: |
| 1536 | err_bus: |
| 1537 | return NULL; |
| 1538 | } |
| 1539 | EXPORT_SYMBOL(vme_lm_request); |
| 1540 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1541 | /** |
| 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 Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1552 | int 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1558 | return -EINVAL; |
| 1559 | } |
| 1560 | |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1561 | lm = list_entry(resource->entry, struct vme_lm_resource, list); |
| 1562 | |
| 1563 | return lm->monitors; |
| 1564 | } |
| 1565 | EXPORT_SYMBOL(vme_lm_count); |
| 1566 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1567 | /** |
| 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 Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1581 | int vme_lm_set(struct vme_resource *resource, unsigned long long lm_base, |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 1582 | u32 aspace, u32 cycle) |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1583 | { |
| 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1594 | if (bridge->lm_set == NULL) { |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1595 | printk(KERN_ERR "vme_lm_set not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1596 | return -EINVAL; |
| 1597 | } |
| 1598 | |
Martyn Welch | 8be9226 | 2009-10-29 16:35:08 +0000 | [diff] [blame] | 1599 | return bridge->lm_set(lm, lm_base, aspace, cycle); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1600 | } |
| 1601 | EXPORT_SYMBOL(vme_lm_set); |
| 1602 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1603 | /** |
| 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 Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1617 | int vme_lm_get(struct vme_resource *resource, unsigned long long *lm_base, |
Martyn Welch | 6af04b0 | 2011-12-01 17:06:29 +0000 | [diff] [blame] | 1618 | u32 *aspace, u32 *cycle) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1619 | { |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1620 | struct vme_bridge *bridge = find_bridge(resource); |
| 1621 | struct vme_lm_resource *lm; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1622 | |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1623 | if (resource->type != VME_LM) { |
| 1624 | printk(KERN_ERR "Not a Location Monitor resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1625 | return -EINVAL; |
| 1626 | } |
| 1627 | |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1628 | lm = list_entry(resource->entry, struct vme_lm_resource, list); |
| 1629 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1630 | if (bridge->lm_get == NULL) { |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1631 | printk(KERN_ERR "vme_lm_get not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1632 | return -EINVAL; |
| 1633 | } |
| 1634 | |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1635 | return bridge->lm_get(lm, lm_base, aspace, cycle); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1636 | } |
| 1637 | EXPORT_SYMBOL(vme_lm_get); |
| 1638 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1639 | /** |
| 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 Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1654 | int vme_lm_attach(struct vme_resource *resource, int monitor, |
Aaron Sierra | fa54b32 | 2016-04-29 16:41:02 -0500 | [diff] [blame] | 1655 | void (*callback)(void *), void *data) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1656 | { |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1657 | struct vme_bridge *bridge = find_bridge(resource); |
| 1658 | struct vme_lm_resource *lm; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1659 | |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1660 | if (resource->type != VME_LM) { |
| 1661 | printk(KERN_ERR "Not a Location Monitor resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1662 | return -EINVAL; |
| 1663 | } |
| 1664 | |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1665 | lm = list_entry(resource->entry, struct vme_lm_resource, list); |
| 1666 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1667 | if (bridge->lm_attach == NULL) { |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1668 | printk(KERN_ERR "vme_lm_attach not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1669 | return -EINVAL; |
| 1670 | } |
| 1671 | |
Aaron Sierra | fa54b32 | 2016-04-29 16:41:02 -0500 | [diff] [blame] | 1672 | return bridge->lm_attach(lm, monitor, callback, data); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1673 | } |
| 1674 | EXPORT_SYMBOL(vme_lm_attach); |
| 1675 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1676 | /** |
| 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 Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1688 | int vme_lm_detach(struct vme_resource *resource, int monitor) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1689 | { |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1690 | struct vme_bridge *bridge = find_bridge(resource); |
| 1691 | struct vme_lm_resource *lm; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1692 | |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1693 | if (resource->type != VME_LM) { |
| 1694 | printk(KERN_ERR "Not a Location Monitor resource\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1695 | return -EINVAL; |
| 1696 | } |
| 1697 | |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1698 | lm = list_entry(resource->entry, struct vme_lm_resource, list); |
| 1699 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1700 | if (bridge->lm_detach == NULL) { |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1701 | printk(KERN_ERR "vme_lm_detach not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1702 | return -EINVAL; |
| 1703 | } |
| 1704 | |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1705 | return bridge->lm_detach(lm, monitor); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1706 | } |
| 1707 | EXPORT_SYMBOL(vme_lm_detach); |
| 1708 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1709 | /** |
| 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 Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1721 | void 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. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1732 | mutex_lock(&lm->mtx); |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1733 | |
Martyn Welch | 8be9226 | 2009-10-29 16:35:08 +0000 | [diff] [blame] | 1734 | /* 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 Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1738 | |
| 1739 | lm->locked = 0; |
| 1740 | |
Emilio G. Cota | 886953e | 2010-11-12 11:14:07 +0000 | [diff] [blame] | 1741 | mutex_unlock(&lm->mtx); |
Martyn Welch | 8be9226 | 2009-10-29 16:35:08 +0000 | [diff] [blame] | 1742 | |
| 1743 | kfree(resource); |
Martyn Welch | 42fb503 | 2009-08-11 17:44:56 +0100 | [diff] [blame] | 1744 | } |
| 1745 | EXPORT_SYMBOL(vme_lm_free); |
| 1746 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1747 | /** |
| 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 Welch | d7729f0 | 2013-11-08 11:58:35 +0000 | [diff] [blame] | 1757 | int vme_slot_num(struct vme_dev *vdev) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1758 | { |
| 1759 | struct vme_bridge *bridge; |
| 1760 | |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 1761 | bridge = vdev->bridge; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1762 | 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 Welch | d7729f0 | 2013-11-08 11:58:35 +0000 | [diff] [blame] | 1768 | printk(KERN_WARNING "vme_slot_num not supported\n"); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1769 | return -EINVAL; |
| 1770 | } |
| 1771 | |
Martyn Welch | 29848ac | 2010-02-18 15:13:05 +0000 | [diff] [blame] | 1772 | return bridge->slot_get(bridge); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1773 | } |
Martyn Welch | d7729f0 | 2013-11-08 11:58:35 +0000 | [diff] [blame] | 1774 | EXPORT_SYMBOL(vme_slot_num); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1775 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1776 | /** |
| 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 Welch | 978f47d | 2013-11-08 11:58:34 +0000 | [diff] [blame] | 1785 | int 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 | } |
| 1797 | EXPORT_SYMBOL(vme_bus_num); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1798 | |
| 1799 | /* - Bridge Registration --------------------------------------------------- */ |
| 1800 | |
Manohar Vanga | 5b93c2a | 2011-11-04 11:12:30 +0100 | [diff] [blame] | 1801 | static void vme_dev_release(struct device *dev) |
| 1802 | { |
| 1803 | kfree(dev_to_vme_dev(dev)); |
| 1804 | } |
| 1805 | |
Aaron Sierra | 326071b | 2016-04-24 15:11:38 -0500 | [diff] [blame] | 1806 | /* Common bridge initialization */ |
| 1807 | struct 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 | } |
| 1818 | EXPORT_SYMBOL(vme_init_bridge); |
| 1819 | |
Manohar Vanga | 5b93c2a | 2011-11-04 11:12:30 +0100 | [diff] [blame] | 1820 | int vme_register_bridge(struct vme_bridge *bridge) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1821 | { |
| 1822 | int i; |
Manohar Vanga | 733e3ef | 2011-08-12 12:30:48 +0200 | [diff] [blame] | 1823 | int ret = -1; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1824 | |
Manohar Vanga | 733e3ef | 2011-08-12 12:30:48 +0200 | [diff] [blame] | 1825 | mutex_lock(&vme_buses_lock); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1826 | for (i = 0; i < sizeof(vme_bus_numbers) * 8; i++) { |
Manohar Vanga | 733e3ef | 2011-08-12 12:30:48 +0200 | [diff] [blame] | 1827 | if ((vme_bus_numbers & (1 << i)) == 0) { |
| 1828 | vme_bus_numbers |= (1 << i); |
| 1829 | bridge->num = i; |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1830 | INIT_LIST_HEAD(&bridge->devices); |
Manohar Vanga | 733e3ef | 2011-08-12 12:30:48 +0200 | [diff] [blame] | 1831 | list_add_tail(&bridge->bus_list, &vme_bus_list); |
| 1832 | ret = 0; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1833 | break; |
| 1834 | } |
| 1835 | } |
Manohar Vanga | 733e3ef | 2011-08-12 12:30:48 +0200 | [diff] [blame] | 1836 | mutex_unlock(&vme_buses_lock); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1837 | |
Manohar Vanga | 733e3ef | 2011-08-12 12:30:48 +0200 | [diff] [blame] | 1838 | return ret; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1839 | } |
Manohar Vanga | 5b93c2a | 2011-11-04 11:12:30 +0100 | [diff] [blame] | 1840 | EXPORT_SYMBOL(vme_register_bridge); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1841 | |
Manohar Vanga | 5b93c2a | 2011-11-04 11:12:30 +0100 | [diff] [blame] | 1842 | void vme_unregister_bridge(struct vme_bridge *bridge) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1843 | { |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1844 | struct vme_dev *vdev; |
| 1845 | struct vme_dev *tmp; |
| 1846 | |
Manohar Vanga | 733e3ef | 2011-08-12 12:30:48 +0200 | [diff] [blame] | 1847 | mutex_lock(&vme_buses_lock); |
| 1848 | vme_bus_numbers &= ~(1 << bridge->num); |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1849 | 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 Vanga | 733e3ef | 2011-08-12 12:30:48 +0200 | [diff] [blame] | 1854 | list_del(&bridge->bus_list); |
| 1855 | mutex_unlock(&vme_buses_lock); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1856 | } |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1857 | EXPORT_SYMBOL(vme_unregister_bridge); |
| 1858 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1859 | /* - Driver Registration --------------------------------------------------- */ |
| 1860 | |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1861 | static int __vme_register_driver_bus(struct vme_driver *drv, |
| 1862 | struct vme_bridge *bridge, unsigned int ndevs) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1863 | { |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1864 | 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 Elfring | 1ff0a19 | 2017-08-24 21:52:00 +0200 | [diff] [blame] | 1870 | vdev = kzalloc(sizeof(*vdev), GFP_KERNEL); |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1871 | if (!vdev) { |
| 1872 | err = -ENOMEM; |
| 1873 | goto err_devalloc; |
| 1874 | } |
Manohar Vanga | a916a39 | 2011-09-26 11:27:17 +0200 | [diff] [blame] | 1875 | vdev->num = i; |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1876 | 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 Vanga | a916a39 | 2011-09-26 11:27:17 +0200 | [diff] [blame] | 1881 | dev_set_name(&vdev->dev, "%s.%u-%u", drv->name, bridge->num, |
| 1882 | vdev->num); |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1883 | |
| 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 | |
| 1896 | err_reg: |
Emilio G. Cota | def1820 | 2013-02-13 13:47:54 -0500 | [diff] [blame] | 1897 | put_device(&vdev->dev); |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1898 | kfree(vdev); |
| 1899 | err_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 | |
| 1908 | static 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 Vanga | c26f611 | 2011-11-04 11:12:29 +0100 | [diff] [blame] | 1920 | * will have to wait). |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1921 | */ |
| 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 Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1930 | /** |
| 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 Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1939 | int vme_register_driver(struct vme_driver *drv, unsigned int ndevs) |
| 1940 | { |
| 1941 | int err; |
| 1942 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1943 | drv->driver.name = drv->name; |
| 1944 | drv->driver.bus = &vme_bus_type; |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1945 | INIT_LIST_HEAD(&drv->devices); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1946 | |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1947 | 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1956 | } |
| 1957 | EXPORT_SYMBOL(vme_register_driver); |
| 1958 | |
Martyn Welch | b5bc980 | 2017-03-04 00:34:29 +0000 | [diff] [blame] | 1959 | /** |
| 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 Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 1965 | void vme_unregister_driver(struct vme_driver *drv) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1966 | { |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1967 | 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1977 | driver_unregister(&drv->driver); |
| 1978 | } |
| 1979 | EXPORT_SYMBOL(vme_unregister_driver); |
| 1980 | |
| 1981 | /* - Bus Registration ------------------------------------------------------ */ |
| 1982 | |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1983 | static int vme_bus_match(struct device *dev, struct device_driver *drv) |
| 1984 | { |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1985 | struct vme_driver *vme_drv; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1986 | |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1987 | vme_drv = container_of(drv, struct vme_driver, driver); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1988 | |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1989 | if (dev->platform_data == vme_drv) { |
| 1990 | struct vme_dev *vdev = dev_to_vme_dev(dev); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1991 | |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 1992 | if (vme_drv->match && vme_drv->match(vdev)) |
| 1993 | return 1; |
| 1994 | |
| 1995 | dev->platform_data = NULL; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1996 | } |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 1997 | return 0; |
| 1998 | } |
| 1999 | |
| 2000 | static int vme_bus_probe(struct device *dev) |
| 2001 | { |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 2002 | int retval = -ENODEV; |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 2003 | struct vme_driver *driver; |
| 2004 | struct vme_dev *vdev = dev_to_vme_dev(dev); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 2005 | |
Manohar Vanga | 5d6abf3 | 2011-09-26 11:27:16 +0200 | [diff] [blame] | 2006 | driver = dev->platform_data; |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 2007 | |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 2008 | if (driver->probe != NULL) |
Manohar Vanga | 8f966dc | 2011-09-26 11:27:15 +0200 | [diff] [blame] | 2009 | retval = driver->probe(vdev); |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 2010 | |
| 2011 | return retval; |
| 2012 | } |
| 2013 | |
Stefano Babic | 9797484 | 2017-01-20 10:38:20 -0500 | [diff] [blame] | 2014 | static 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 Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 2028 | struct bus_type vme_bus_type = { |
| 2029 | .name = "vme", |
| 2030 | .match = vme_bus_match, |
| 2031 | .probe = vme_bus_probe, |
Stefano Babic | 9797484 | 2017-01-20 10:38:20 -0500 | [diff] [blame] | 2032 | .remove = vme_bus_remove, |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 2033 | }; |
| 2034 | EXPORT_SYMBOL(vme_bus_type); |
| 2035 | |
Martyn Welch | ead1f3e | 2009-12-15 08:43:02 +0000 | [diff] [blame] | 2036 | static int __init vme_init(void) |
Martyn Welch | a17a75e | 2009-07-31 09:28:17 +0100 | [diff] [blame] | 2037 | { |
| 2038 | return bus_register(&vme_bus_type); |
| 2039 | } |
Aaron Sierra | c326cc0 | 2013-12-09 09:54:42 -0600 | [diff] [blame] | 2040 | subsys_initcall(vme_init); |