Alan Tull | 473f01f | 2018-05-16 18:49:58 -0500 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 2 | /* |
| 3 | * FPGA Manager Core |
| 4 | * |
| 5 | * Copyright (C) 2013-2015 Altera Corporation |
Alan Tull | 5cf0c7f | 2017-11-15 14:20:12 -0600 | [diff] [blame] | 6 | * Copyright (C) 2017 Intel Corporation |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 7 | * |
| 8 | * With code from the mailing list: |
| 9 | * Copyright (C) 2013 Xilinx, Inc. |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 10 | */ |
| 11 | #include <linux/firmware.h> |
| 12 | #include <linux/fpga/fpga-mgr.h> |
| 13 | #include <linux/idr.h> |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/of.h> |
| 16 | #include <linux/mutex.h> |
| 17 | #include <linux/slab.h> |
Jason Gunthorpe | baa6d39 | 2017-02-01 12:48:44 -0700 | [diff] [blame] | 18 | #include <linux/scatterlist.h> |
| 19 | #include <linux/highmem.h> |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 20 | |
| 21 | static DEFINE_IDA(fpga_mgr_ida); |
| 22 | static struct class *fpga_mgr_class; |
| 23 | |
Alan Tull | 5cf0c7f | 2017-11-15 14:20:12 -0600 | [diff] [blame] | 24 | struct fpga_image_info *fpga_image_info_alloc(struct device *dev) |
| 25 | { |
| 26 | struct fpga_image_info *info; |
| 27 | |
| 28 | get_device(dev); |
| 29 | |
| 30 | info = devm_kzalloc(dev, sizeof(*info), GFP_KERNEL); |
| 31 | if (!info) { |
| 32 | put_device(dev); |
| 33 | return NULL; |
| 34 | } |
| 35 | |
| 36 | info->dev = dev; |
| 37 | |
| 38 | return info; |
| 39 | } |
| 40 | EXPORT_SYMBOL_GPL(fpga_image_info_alloc); |
| 41 | |
| 42 | void fpga_image_info_free(struct fpga_image_info *info) |
| 43 | { |
| 44 | struct device *dev; |
| 45 | |
| 46 | if (!info) |
| 47 | return; |
| 48 | |
| 49 | dev = info->dev; |
| 50 | if (info->firmware_name) |
| 51 | devm_kfree(dev, info->firmware_name); |
| 52 | |
| 53 | devm_kfree(dev, info); |
| 54 | put_device(dev); |
| 55 | } |
| 56 | EXPORT_SYMBOL_GPL(fpga_image_info_free); |
| 57 | |
Jason Gunthorpe | baa6d39 | 2017-02-01 12:48:44 -0700 | [diff] [blame] | 58 | /* |
| 59 | * Call the low level driver's write_init function. This will do the |
| 60 | * device-specific things to get the FPGA into the state where it is ready to |
| 61 | * receive an FPGA image. The low level driver only gets to see the first |
| 62 | * initial_header_size bytes in the buffer. |
| 63 | */ |
| 64 | static int fpga_mgr_write_init_buf(struct fpga_manager *mgr, |
| 65 | struct fpga_image_info *info, |
| 66 | const char *buf, size_t count) |
| 67 | { |
| 68 | int ret; |
| 69 | |
| 70 | mgr->state = FPGA_MGR_STATE_WRITE_INIT; |
| 71 | if (!mgr->mops->initial_header_size) |
| 72 | ret = mgr->mops->write_init(mgr, info, NULL, 0); |
| 73 | else |
| 74 | ret = mgr->mops->write_init( |
| 75 | mgr, info, buf, min(mgr->mops->initial_header_size, count)); |
| 76 | |
| 77 | if (ret) { |
| 78 | dev_err(&mgr->dev, "Error preparing FPGA for writing\n"); |
| 79 | mgr->state = FPGA_MGR_STATE_WRITE_INIT_ERR; |
| 80 | return ret; |
| 81 | } |
| 82 | |
| 83 | return 0; |
| 84 | } |
| 85 | |
| 86 | static int fpga_mgr_write_init_sg(struct fpga_manager *mgr, |
| 87 | struct fpga_image_info *info, |
| 88 | struct sg_table *sgt) |
| 89 | { |
| 90 | struct sg_mapping_iter miter; |
| 91 | size_t len; |
| 92 | char *buf; |
| 93 | int ret; |
| 94 | |
| 95 | if (!mgr->mops->initial_header_size) |
| 96 | return fpga_mgr_write_init_buf(mgr, info, NULL, 0); |
| 97 | |
| 98 | /* |
| 99 | * First try to use miter to map the first fragment to access the |
| 100 | * header, this is the typical path. |
| 101 | */ |
| 102 | sg_miter_start(&miter, sgt->sgl, sgt->nents, SG_MITER_FROM_SG); |
| 103 | if (sg_miter_next(&miter) && |
| 104 | miter.length >= mgr->mops->initial_header_size) { |
| 105 | ret = fpga_mgr_write_init_buf(mgr, info, miter.addr, |
| 106 | miter.length); |
| 107 | sg_miter_stop(&miter); |
| 108 | return ret; |
| 109 | } |
| 110 | sg_miter_stop(&miter); |
| 111 | |
| 112 | /* Otherwise copy the fragments into temporary memory. */ |
| 113 | buf = kmalloc(mgr->mops->initial_header_size, GFP_KERNEL); |
| 114 | if (!buf) |
| 115 | return -ENOMEM; |
| 116 | |
| 117 | len = sg_copy_to_buffer(sgt->sgl, sgt->nents, buf, |
| 118 | mgr->mops->initial_header_size); |
| 119 | ret = fpga_mgr_write_init_buf(mgr, info, buf, len); |
| 120 | |
| 121 | kfree(buf); |
| 122 | |
| 123 | return ret; |
| 124 | } |
| 125 | |
| 126 | /* |
| 127 | * After all the FPGA image has been written, do the device specific steps to |
| 128 | * finish and set the FPGA into operating mode. |
| 129 | */ |
| 130 | static int fpga_mgr_write_complete(struct fpga_manager *mgr, |
| 131 | struct fpga_image_info *info) |
| 132 | { |
| 133 | int ret; |
| 134 | |
| 135 | mgr->state = FPGA_MGR_STATE_WRITE_COMPLETE; |
| 136 | ret = mgr->mops->write_complete(mgr, info); |
| 137 | if (ret) { |
| 138 | dev_err(&mgr->dev, "Error after writing image data to FPGA\n"); |
| 139 | mgr->state = FPGA_MGR_STATE_WRITE_COMPLETE_ERR; |
| 140 | return ret; |
| 141 | } |
| 142 | mgr->state = FPGA_MGR_STATE_OPERATING; |
| 143 | |
| 144 | return 0; |
| 145 | } |
| 146 | |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 147 | /** |
Jason Gunthorpe | baa6d39 | 2017-02-01 12:48:44 -0700 | [diff] [blame] | 148 | * fpga_mgr_buf_load_sg - load fpga from image in buffer from a scatter list |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 149 | * @mgr: fpga manager |
Alan Tull | 1df2865 | 2016-11-01 14:14:26 -0500 | [diff] [blame] | 150 | * @info: fpga image specific information |
Jason Gunthorpe | baa6d39 | 2017-02-01 12:48:44 -0700 | [diff] [blame] | 151 | * @sgt: scatterlist table |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 152 | * |
| 153 | * Step the low level fpga manager through the device-specific steps of getting |
| 154 | * an FPGA ready to be configured, writing the image to it, then doing whatever |
Alan Tull | 92d94a7 | 2015-10-22 12:38:38 -0500 | [diff] [blame] | 155 | * post-configuration steps necessary. This code assumes the caller got the |
Alan Tull | 9dce028 | 2016-11-01 14:14:23 -0500 | [diff] [blame] | 156 | * mgr pointer from of_fpga_mgr_get() or fpga_mgr_get() and checked that it is |
| 157 | * not an error code. |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 158 | * |
Jason Gunthorpe | baa6d39 | 2017-02-01 12:48:44 -0700 | [diff] [blame] | 159 | * This is the preferred entry point for FPGA programming, it does not require |
| 160 | * any contiguous kernel memory. |
| 161 | * |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 162 | * Return: 0 on success, negative error code otherwise. |
| 163 | */ |
Alan Tull | 5cf0c7f | 2017-11-15 14:20:12 -0600 | [diff] [blame] | 164 | static int fpga_mgr_buf_load_sg(struct fpga_manager *mgr, |
| 165 | struct fpga_image_info *info, |
| 166 | struct sg_table *sgt) |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 167 | { |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 168 | int ret; |
| 169 | |
Jason Gunthorpe | baa6d39 | 2017-02-01 12:48:44 -0700 | [diff] [blame] | 170 | ret = fpga_mgr_write_init_sg(mgr, info, sgt); |
| 171 | if (ret) |
| 172 | return ret; |
| 173 | |
| 174 | /* Write the FPGA image to the FPGA. */ |
| 175 | mgr->state = FPGA_MGR_STATE_WRITE; |
| 176 | if (mgr->mops->write_sg) { |
| 177 | ret = mgr->mops->write_sg(mgr, sgt); |
| 178 | } else { |
| 179 | struct sg_mapping_iter miter; |
| 180 | |
| 181 | sg_miter_start(&miter, sgt->sgl, sgt->nents, SG_MITER_FROM_SG); |
| 182 | while (sg_miter_next(&miter)) { |
| 183 | ret = mgr->mops->write(mgr, miter.addr, miter.length); |
| 184 | if (ret) |
| 185 | break; |
| 186 | } |
| 187 | sg_miter_stop(&miter); |
| 188 | } |
| 189 | |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 190 | if (ret) { |
Jason Gunthorpe | baa6d39 | 2017-02-01 12:48:44 -0700 | [diff] [blame] | 191 | dev_err(&mgr->dev, "Error while writing image data to FPGA\n"); |
| 192 | mgr->state = FPGA_MGR_STATE_WRITE_ERR; |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 193 | return ret; |
| 194 | } |
| 195 | |
Jason Gunthorpe | baa6d39 | 2017-02-01 12:48:44 -0700 | [diff] [blame] | 196 | return fpga_mgr_write_complete(mgr, info); |
| 197 | } |
Jason Gunthorpe | baa6d39 | 2017-02-01 12:48:44 -0700 | [diff] [blame] | 198 | |
| 199 | static int fpga_mgr_buf_load_mapped(struct fpga_manager *mgr, |
| 200 | struct fpga_image_info *info, |
| 201 | const char *buf, size_t count) |
| 202 | { |
| 203 | int ret; |
| 204 | |
| 205 | ret = fpga_mgr_write_init_buf(mgr, info, buf, count); |
| 206 | if (ret) |
| 207 | return ret; |
| 208 | |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 209 | /* |
| 210 | * Write the FPGA image to the FPGA. |
| 211 | */ |
| 212 | mgr->state = FPGA_MGR_STATE_WRITE; |
| 213 | ret = mgr->mops->write(mgr, buf, count); |
| 214 | if (ret) { |
Jason Gunthorpe | baa6d39 | 2017-02-01 12:48:44 -0700 | [diff] [blame] | 215 | dev_err(&mgr->dev, "Error while writing image data to FPGA\n"); |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 216 | mgr->state = FPGA_MGR_STATE_WRITE_ERR; |
| 217 | return ret; |
| 218 | } |
| 219 | |
Jason Gunthorpe | baa6d39 | 2017-02-01 12:48:44 -0700 | [diff] [blame] | 220 | return fpga_mgr_write_complete(mgr, info); |
| 221 | } |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 222 | |
Jason Gunthorpe | baa6d39 | 2017-02-01 12:48:44 -0700 | [diff] [blame] | 223 | /** |
| 224 | * fpga_mgr_buf_load - load fpga from image in buffer |
| 225 | * @mgr: fpga manager |
| 226 | * @flags: flags setting fpga confuration modes |
| 227 | * @buf: buffer contain fpga image |
| 228 | * @count: byte count of buf |
| 229 | * |
| 230 | * Step the low level fpga manager through the device-specific steps of getting |
| 231 | * an FPGA ready to be configured, writing the image to it, then doing whatever |
| 232 | * post-configuration steps necessary. This code assumes the caller got the |
| 233 | * mgr pointer from of_fpga_mgr_get() and checked that it is not an error code. |
| 234 | * |
| 235 | * Return: 0 on success, negative error code otherwise. |
| 236 | */ |
Alan Tull | 5cf0c7f | 2017-11-15 14:20:12 -0600 | [diff] [blame] | 237 | static int fpga_mgr_buf_load(struct fpga_manager *mgr, |
| 238 | struct fpga_image_info *info, |
| 239 | const char *buf, size_t count) |
Jason Gunthorpe | baa6d39 | 2017-02-01 12:48:44 -0700 | [diff] [blame] | 240 | { |
| 241 | struct page **pages; |
| 242 | struct sg_table sgt; |
| 243 | const void *p; |
| 244 | int nr_pages; |
| 245 | int index; |
| 246 | int rc; |
| 247 | |
| 248 | /* |
| 249 | * This is just a fast path if the caller has already created a |
| 250 | * contiguous kernel buffer and the driver doesn't require SG, non-SG |
| 251 | * drivers will still work on the slow path. |
| 252 | */ |
| 253 | if (mgr->mops->write) |
| 254 | return fpga_mgr_buf_load_mapped(mgr, info, buf, count); |
| 255 | |
| 256 | /* |
| 257 | * Convert the linear kernel pointer into a sg_table of pages for use |
| 258 | * by the driver. |
| 259 | */ |
| 260 | nr_pages = DIV_ROUND_UP((unsigned long)buf + count, PAGE_SIZE) - |
| 261 | (unsigned long)buf / PAGE_SIZE; |
| 262 | pages = kmalloc_array(nr_pages, sizeof(struct page *), GFP_KERNEL); |
| 263 | if (!pages) |
| 264 | return -ENOMEM; |
| 265 | |
| 266 | p = buf - offset_in_page(buf); |
| 267 | for (index = 0; index < nr_pages; index++) { |
| 268 | if (is_vmalloc_addr(p)) |
| 269 | pages[index] = vmalloc_to_page(p); |
| 270 | else |
| 271 | pages[index] = kmap_to_page((void *)p); |
| 272 | if (!pages[index]) { |
| 273 | kfree(pages); |
| 274 | return -EFAULT; |
| 275 | } |
| 276 | p += PAGE_SIZE; |
| 277 | } |
| 278 | |
| 279 | /* |
| 280 | * The temporary pages list is used to code share the merging algorithm |
| 281 | * in sg_alloc_table_from_pages |
| 282 | */ |
| 283 | rc = sg_alloc_table_from_pages(&sgt, pages, index, offset_in_page(buf), |
| 284 | count, GFP_KERNEL); |
| 285 | kfree(pages); |
| 286 | if (rc) |
| 287 | return rc; |
| 288 | |
| 289 | rc = fpga_mgr_buf_load_sg(mgr, info, &sgt); |
| 290 | sg_free_table(&sgt); |
| 291 | |
| 292 | return rc; |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 293 | } |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 294 | |
| 295 | /** |
| 296 | * fpga_mgr_firmware_load - request firmware and load to fpga |
| 297 | * @mgr: fpga manager |
Alan Tull | 1df2865 | 2016-11-01 14:14:26 -0500 | [diff] [blame] | 298 | * @info: fpga image specific information |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 299 | * @image_name: name of image file on the firmware search path |
| 300 | * |
| 301 | * Request an FPGA image using the firmware class, then write out to the FPGA. |
| 302 | * Update the state before each step to provide info on what step failed if |
Alan Tull | 92d94a7 | 2015-10-22 12:38:38 -0500 | [diff] [blame] | 303 | * there is a failure. This code assumes the caller got the mgr pointer |
Alan Tull | 9dce028 | 2016-11-01 14:14:23 -0500 | [diff] [blame] | 304 | * from of_fpga_mgr_get() or fpga_mgr_get() and checked that it is not an error |
| 305 | * code. |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 306 | * |
| 307 | * Return: 0 on success, negative error code otherwise. |
| 308 | */ |
Alan Tull | 5cf0c7f | 2017-11-15 14:20:12 -0600 | [diff] [blame] | 309 | static int fpga_mgr_firmware_load(struct fpga_manager *mgr, |
| 310 | struct fpga_image_info *info, |
| 311 | const char *image_name) |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 312 | { |
| 313 | struct device *dev = &mgr->dev; |
| 314 | const struct firmware *fw; |
| 315 | int ret; |
| 316 | |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 317 | dev_info(dev, "writing %s to %s\n", image_name, mgr->name); |
| 318 | |
| 319 | mgr->state = FPGA_MGR_STATE_FIRMWARE_REQ; |
| 320 | |
| 321 | ret = request_firmware(&fw, image_name, dev); |
| 322 | if (ret) { |
| 323 | mgr->state = FPGA_MGR_STATE_FIRMWARE_REQ_ERR; |
| 324 | dev_err(dev, "Error requesting firmware %s\n", image_name); |
| 325 | return ret; |
| 326 | } |
| 327 | |
Alan Tull | 1df2865 | 2016-11-01 14:14:26 -0500 | [diff] [blame] | 328 | ret = fpga_mgr_buf_load(mgr, info, fw->data, fw->size); |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 329 | |
| 330 | release_firmware(fw); |
| 331 | |
Tobias Klauser | e8c77bd | 2015-11-18 10:48:16 +0100 | [diff] [blame] | 332 | return ret; |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 333 | } |
Alan Tull | 5cf0c7f | 2017-11-15 14:20:12 -0600 | [diff] [blame] | 334 | |
| 335 | int fpga_mgr_load(struct fpga_manager *mgr, struct fpga_image_info *info) |
| 336 | { |
| 337 | if (info->sgt) |
| 338 | return fpga_mgr_buf_load_sg(mgr, info, info->sgt); |
| 339 | if (info->buf && info->count) |
| 340 | return fpga_mgr_buf_load(mgr, info, info->buf, info->count); |
| 341 | if (info->firmware_name) |
| 342 | return fpga_mgr_firmware_load(mgr, info, info->firmware_name); |
| 343 | return -EINVAL; |
| 344 | } |
| 345 | EXPORT_SYMBOL_GPL(fpga_mgr_load); |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 346 | |
| 347 | static const char * const state_str[] = { |
| 348 | [FPGA_MGR_STATE_UNKNOWN] = "unknown", |
| 349 | [FPGA_MGR_STATE_POWER_OFF] = "power off", |
| 350 | [FPGA_MGR_STATE_POWER_UP] = "power up", |
| 351 | [FPGA_MGR_STATE_RESET] = "reset", |
| 352 | |
| 353 | /* requesting FPGA image from firmware */ |
| 354 | [FPGA_MGR_STATE_FIRMWARE_REQ] = "firmware request", |
| 355 | [FPGA_MGR_STATE_FIRMWARE_REQ_ERR] = "firmware request error", |
| 356 | |
| 357 | /* Preparing FPGA to receive image */ |
| 358 | [FPGA_MGR_STATE_WRITE_INIT] = "write init", |
| 359 | [FPGA_MGR_STATE_WRITE_INIT_ERR] = "write init error", |
| 360 | |
| 361 | /* Writing image to FPGA */ |
| 362 | [FPGA_MGR_STATE_WRITE] = "write", |
| 363 | [FPGA_MGR_STATE_WRITE_ERR] = "write error", |
| 364 | |
| 365 | /* Finishing configuration after image has been written */ |
| 366 | [FPGA_MGR_STATE_WRITE_COMPLETE] = "write complete", |
| 367 | [FPGA_MGR_STATE_WRITE_COMPLETE_ERR] = "write complete error", |
| 368 | |
| 369 | /* FPGA reports to be in normal operating mode */ |
| 370 | [FPGA_MGR_STATE_OPERATING] = "operating", |
| 371 | }; |
| 372 | |
| 373 | static ssize_t name_show(struct device *dev, |
| 374 | struct device_attribute *attr, char *buf) |
| 375 | { |
| 376 | struct fpga_manager *mgr = to_fpga_manager(dev); |
| 377 | |
| 378 | return sprintf(buf, "%s\n", mgr->name); |
| 379 | } |
| 380 | |
| 381 | static ssize_t state_show(struct device *dev, |
| 382 | struct device_attribute *attr, char *buf) |
| 383 | { |
| 384 | struct fpga_manager *mgr = to_fpga_manager(dev); |
| 385 | |
| 386 | return sprintf(buf, "%s\n", state_str[mgr->state]); |
| 387 | } |
| 388 | |
| 389 | static DEVICE_ATTR_RO(name); |
| 390 | static DEVICE_ATTR_RO(state); |
| 391 | |
| 392 | static struct attribute *fpga_mgr_attrs[] = { |
| 393 | &dev_attr_name.attr, |
| 394 | &dev_attr_state.attr, |
| 395 | NULL, |
| 396 | }; |
| 397 | ATTRIBUTE_GROUPS(fpga_mgr); |
| 398 | |
Dinh Nguyen | 47910a4 | 2017-02-27 09:18:59 -0600 | [diff] [blame] | 399 | static struct fpga_manager *__fpga_mgr_get(struct device *dev) |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 400 | { |
| 401 | struct fpga_manager *mgr; |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 402 | |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 403 | mgr = to_fpga_manager(dev); |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 404 | |
Alan Tull | 654ba4c | 2015-10-22 12:38:37 -0500 | [diff] [blame] | 405 | if (!try_module_get(dev->parent->driver->owner)) |
Alan Tull | ebf877a5 | 2017-11-15 14:20:13 -0600 | [diff] [blame] | 406 | goto err_dev; |
Alan Tull | 654ba4c | 2015-10-22 12:38:37 -0500 | [diff] [blame] | 407 | |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 408 | return mgr; |
Alan Tull | 654ba4c | 2015-10-22 12:38:37 -0500 | [diff] [blame] | 409 | |
Alan Tull | 654ba4c | 2015-10-22 12:38:37 -0500 | [diff] [blame] | 410 | err_dev: |
| 411 | put_device(dev); |
Alan Tull | ebf877a5 | 2017-11-15 14:20:13 -0600 | [diff] [blame] | 412 | return ERR_PTR(-ENODEV); |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 413 | } |
Alan Tull | 9dce028 | 2016-11-01 14:14:23 -0500 | [diff] [blame] | 414 | |
| 415 | static int fpga_mgr_dev_match(struct device *dev, const void *data) |
| 416 | { |
| 417 | return dev->parent == data; |
| 418 | } |
| 419 | |
| 420 | /** |
Alan Tull | ebf877a5 | 2017-11-15 14:20:13 -0600 | [diff] [blame] | 421 | * fpga_mgr_get - get a reference to a fpga mgr |
Alan Tull | 9dce028 | 2016-11-01 14:14:23 -0500 | [diff] [blame] | 422 | * @dev: parent device that fpga mgr was registered with |
| 423 | * |
Alan Tull | ebf877a5 | 2017-11-15 14:20:13 -0600 | [diff] [blame] | 424 | * Given a device, get a reference to a fpga mgr. |
Alan Tull | 9dce028 | 2016-11-01 14:14:23 -0500 | [diff] [blame] | 425 | * |
| 426 | * Return: fpga manager struct or IS_ERR() condition containing error code. |
| 427 | */ |
| 428 | struct fpga_manager *fpga_mgr_get(struct device *dev) |
| 429 | { |
| 430 | struct device *mgr_dev = class_find_device(fpga_mgr_class, NULL, dev, |
| 431 | fpga_mgr_dev_match); |
| 432 | if (!mgr_dev) |
| 433 | return ERR_PTR(-ENODEV); |
| 434 | |
| 435 | return __fpga_mgr_get(mgr_dev); |
| 436 | } |
| 437 | EXPORT_SYMBOL_GPL(fpga_mgr_get); |
| 438 | |
| 439 | static int fpga_mgr_of_node_match(struct device *dev, const void *data) |
| 440 | { |
| 441 | return dev->of_node == data; |
| 442 | } |
| 443 | |
| 444 | /** |
Alan Tull | ebf877a5 | 2017-11-15 14:20:13 -0600 | [diff] [blame] | 445 | * of_fpga_mgr_get - get a reference to a fpga mgr |
Alan Tull | 9dce028 | 2016-11-01 14:14:23 -0500 | [diff] [blame] | 446 | * @node: device node |
| 447 | * |
Alan Tull | ebf877a5 | 2017-11-15 14:20:13 -0600 | [diff] [blame] | 448 | * Given a device node, get a reference to a fpga mgr. |
Alan Tull | 9dce028 | 2016-11-01 14:14:23 -0500 | [diff] [blame] | 449 | * |
| 450 | * Return: fpga manager struct or IS_ERR() condition containing error code. |
| 451 | */ |
| 452 | struct fpga_manager *of_fpga_mgr_get(struct device_node *node) |
| 453 | { |
| 454 | struct device *dev; |
| 455 | |
| 456 | dev = class_find_device(fpga_mgr_class, NULL, node, |
| 457 | fpga_mgr_of_node_match); |
| 458 | if (!dev) |
| 459 | return ERR_PTR(-ENODEV); |
| 460 | |
| 461 | return __fpga_mgr_get(dev); |
| 462 | } |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 463 | EXPORT_SYMBOL_GPL(of_fpga_mgr_get); |
| 464 | |
| 465 | /** |
| 466 | * fpga_mgr_put - release a reference to a fpga manager |
| 467 | * @mgr: fpga manager structure |
| 468 | */ |
| 469 | void fpga_mgr_put(struct fpga_manager *mgr) |
| 470 | { |
Alan Tull | 654ba4c | 2015-10-22 12:38:37 -0500 | [diff] [blame] | 471 | module_put(mgr->dev.parent->driver->owner); |
Alan Tull | 654ba4c | 2015-10-22 12:38:37 -0500 | [diff] [blame] | 472 | put_device(&mgr->dev); |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 473 | } |
| 474 | EXPORT_SYMBOL_GPL(fpga_mgr_put); |
| 475 | |
| 476 | /** |
Alan Tull | ebf877a5 | 2017-11-15 14:20:13 -0600 | [diff] [blame] | 477 | * fpga_mgr_lock - Lock FPGA manager for exclusive use |
| 478 | * @mgr: fpga manager |
| 479 | * |
| 480 | * Given a pointer to FPGA Manager (from fpga_mgr_get() or |
| 481 | * of_fpga_mgr_put()) attempt to get the mutex. |
| 482 | * |
| 483 | * Return: 0 for success or -EBUSY |
| 484 | */ |
| 485 | int fpga_mgr_lock(struct fpga_manager *mgr) |
| 486 | { |
| 487 | if (!mutex_trylock(&mgr->ref_mutex)) { |
| 488 | dev_err(&mgr->dev, "FPGA manager is in use.\n"); |
| 489 | return -EBUSY; |
| 490 | } |
| 491 | |
| 492 | return 0; |
| 493 | } |
| 494 | EXPORT_SYMBOL_GPL(fpga_mgr_lock); |
| 495 | |
| 496 | /** |
| 497 | * fpga_mgr_unlock - Unlock FPGA manager |
| 498 | * @mgr: fpga manager |
| 499 | */ |
| 500 | void fpga_mgr_unlock(struct fpga_manager *mgr) |
| 501 | { |
| 502 | mutex_unlock(&mgr->ref_mutex); |
| 503 | } |
| 504 | EXPORT_SYMBOL_GPL(fpga_mgr_unlock); |
| 505 | |
| 506 | /** |
Alan Tull | 7085e2a | 2018-05-16 18:49:55 -0500 | [diff] [blame] | 507 | * fpga_mgr_create - create and initialize a FPGA manager struct |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 508 | * @dev: fpga manager device from pdev |
| 509 | * @name: fpga manager name |
| 510 | * @mops: pointer to structure of fpga manager ops |
| 511 | * @priv: fpga manager private data |
| 512 | * |
Alan Tull | 7085e2a | 2018-05-16 18:49:55 -0500 | [diff] [blame] | 513 | * Return: pointer to struct fpga_manager or NULL |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 514 | */ |
Alan Tull | 7085e2a | 2018-05-16 18:49:55 -0500 | [diff] [blame] | 515 | struct fpga_manager *fpga_mgr_create(struct device *dev, const char *name, |
| 516 | const struct fpga_manager_ops *mops, |
| 517 | void *priv) |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 518 | { |
| 519 | struct fpga_manager *mgr; |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 520 | int id, ret; |
| 521 | |
Jason Gunthorpe | baa6d39 | 2017-02-01 12:48:44 -0700 | [diff] [blame] | 522 | if (!mops || !mops->write_complete || !mops->state || |
| 523 | !mops->write_init || (!mops->write && !mops->write_sg) || |
| 524 | (mops->write && mops->write_sg)) { |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 525 | dev_err(dev, "Attempt to register without fpga_manager_ops\n"); |
Alan Tull | 7085e2a | 2018-05-16 18:49:55 -0500 | [diff] [blame] | 526 | return NULL; |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 527 | } |
| 528 | |
| 529 | if (!name || !strlen(name)) { |
| 530 | dev_err(dev, "Attempt to register with no name!\n"); |
Alan Tull | 7085e2a | 2018-05-16 18:49:55 -0500 | [diff] [blame] | 531 | return NULL; |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | mgr = kzalloc(sizeof(*mgr), GFP_KERNEL); |
| 535 | if (!mgr) |
Alan Tull | 7085e2a | 2018-05-16 18:49:55 -0500 | [diff] [blame] | 536 | return NULL; |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 537 | |
| 538 | id = ida_simple_get(&fpga_mgr_ida, 0, 0, GFP_KERNEL); |
| 539 | if (id < 0) { |
| 540 | ret = id; |
| 541 | goto error_kfree; |
| 542 | } |
| 543 | |
| 544 | mutex_init(&mgr->ref_mutex); |
| 545 | |
| 546 | mgr->name = name; |
| 547 | mgr->mops = mops; |
| 548 | mgr->priv = priv; |
| 549 | |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 550 | device_initialize(&mgr->dev); |
| 551 | mgr->dev.class = fpga_mgr_class; |
Alan Tull | 845089b | 2017-11-15 14:20:28 -0600 | [diff] [blame] | 552 | mgr->dev.groups = mops->groups; |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 553 | mgr->dev.parent = dev; |
| 554 | mgr->dev.of_node = dev->of_node; |
| 555 | mgr->dev.id = id; |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 556 | |
Alan Tull | 07687c0 | 2015-10-29 14:39:56 -0500 | [diff] [blame] | 557 | ret = dev_set_name(&mgr->dev, "fpga%d", id); |
| 558 | if (ret) |
| 559 | goto error_device; |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 560 | |
Alan Tull | 7085e2a | 2018-05-16 18:49:55 -0500 | [diff] [blame] | 561 | return mgr; |
| 562 | |
| 563 | error_device: |
| 564 | ida_simple_remove(&fpga_mgr_ida, id); |
| 565 | error_kfree: |
| 566 | kfree(mgr); |
| 567 | |
| 568 | return NULL; |
| 569 | } |
| 570 | EXPORT_SYMBOL_GPL(fpga_mgr_create); |
| 571 | |
| 572 | /** |
| 573 | * fpga_mgr_free - deallocate a FPGA manager |
| 574 | * @mgr: fpga manager struct created by fpga_mgr_create |
| 575 | */ |
| 576 | void fpga_mgr_free(struct fpga_manager *mgr) |
| 577 | { |
| 578 | ida_simple_remove(&fpga_mgr_ida, mgr->dev.id); |
| 579 | kfree(mgr); |
| 580 | } |
| 581 | EXPORT_SYMBOL_GPL(fpga_mgr_free); |
| 582 | |
| 583 | /** |
| 584 | * fpga_mgr_register - register a FPGA manager |
| 585 | * @mgr: fpga manager struct created by fpga_mgr_create |
| 586 | * |
| 587 | * Return: 0 on success, negative error code otherwise. |
| 588 | */ |
| 589 | int fpga_mgr_register(struct fpga_manager *mgr) |
| 590 | { |
| 591 | int ret; |
| 592 | |
| 593 | /* |
| 594 | * Initialize framework state by requesting low level driver read state |
| 595 | * from device. FPGA may be in reset mode or may have been programmed |
| 596 | * by bootloader or EEPROM. |
| 597 | */ |
| 598 | mgr->state = mgr->mops->state(mgr); |
| 599 | |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 600 | ret = device_add(&mgr->dev); |
| 601 | if (ret) |
| 602 | goto error_device; |
| 603 | |
| 604 | dev_info(&mgr->dev, "%s registered\n", mgr->name); |
| 605 | |
| 606 | return 0; |
| 607 | |
| 608 | error_device: |
Alan Tull | 7085e2a | 2018-05-16 18:49:55 -0500 | [diff] [blame] | 609 | ida_simple_remove(&fpga_mgr_ida, mgr->dev.id); |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 610 | |
| 611 | return ret; |
| 612 | } |
| 613 | EXPORT_SYMBOL_GPL(fpga_mgr_register); |
| 614 | |
| 615 | /** |
Alan Tull | 7085e2a | 2018-05-16 18:49:55 -0500 | [diff] [blame] | 616 | * fpga_mgr_unregister - unregister a FPGA manager |
| 617 | * @mgr: fpga manager struct |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 618 | */ |
Alan Tull | 7085e2a | 2018-05-16 18:49:55 -0500 | [diff] [blame] | 619 | void fpga_mgr_unregister(struct fpga_manager *mgr) |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 620 | { |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 621 | dev_info(&mgr->dev, "%s %s\n", __func__, mgr->name); |
| 622 | |
| 623 | /* |
| 624 | * If the low level driver provides a method for putting fpga into |
| 625 | * a desired state upon unregister, do it. |
| 626 | */ |
| 627 | if (mgr->mops->fpga_remove) |
| 628 | mgr->mops->fpga_remove(mgr); |
| 629 | |
| 630 | device_unregister(&mgr->dev); |
| 631 | } |
| 632 | EXPORT_SYMBOL_GPL(fpga_mgr_unregister); |
| 633 | |
| 634 | static void fpga_mgr_dev_release(struct device *dev) |
| 635 | { |
| 636 | struct fpga_manager *mgr = to_fpga_manager(dev); |
| 637 | |
Alan Tull | 7085e2a | 2018-05-16 18:49:55 -0500 | [diff] [blame] | 638 | fpga_mgr_free(mgr); |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 639 | } |
| 640 | |
| 641 | static int __init fpga_mgr_class_init(void) |
| 642 | { |
| 643 | pr_info("FPGA manager framework\n"); |
| 644 | |
| 645 | fpga_mgr_class = class_create(THIS_MODULE, "fpga_manager"); |
| 646 | if (IS_ERR(fpga_mgr_class)) |
| 647 | return PTR_ERR(fpga_mgr_class); |
| 648 | |
| 649 | fpga_mgr_class->dev_groups = fpga_mgr_groups; |
| 650 | fpga_mgr_class->dev_release = fpga_mgr_dev_release; |
| 651 | |
| 652 | return 0; |
| 653 | } |
| 654 | |
| 655 | static void __exit fpga_mgr_class_exit(void) |
| 656 | { |
| 657 | class_destroy(fpga_mgr_class); |
| 658 | ida_destroy(&fpga_mgr_ida); |
| 659 | } |
| 660 | |
Alan Tull | 5cf0c7f | 2017-11-15 14:20:12 -0600 | [diff] [blame] | 661 | MODULE_AUTHOR("Alan Tull <atull@kernel.org>"); |
Alan Tull | 6a8c3be | 2015-10-07 16:36:28 +0100 | [diff] [blame] | 662 | MODULE_DESCRIPTION("FPGA manager framework"); |
| 663 | MODULE_LICENSE("GPL v2"); |
| 664 | |
| 665 | subsys_initcall(fpga_mgr_class_init); |
| 666 | module_exit(fpga_mgr_class_exit); |