blob: d27e8d2a149cb89fd9f44cb8aa5634ac56d1415e [file] [log] [blame]
Alan Tull6a8c3be2015-10-07 16:36:28 +01001/*
2 * FPGA Manager Core
3 *
4 * Copyright (C) 2013-2015 Altera Corporation
Alan Tull5cf0c7f2017-11-15 14:20:12 -06005 * Copyright (C) 2017 Intel Corporation
Alan Tull6a8c3be2015-10-07 16:36:28 +01006 *
7 * With code from the mailing list:
8 * Copyright (C) 2013 Xilinx, Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms and conditions of the GNU General Public License,
12 * version 2, as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * more details.
18 *
19 * You should have received a copy of the GNU General Public License along with
20 * this program. If not, see <http://www.gnu.org/licenses/>.
21 */
22#include <linux/firmware.h>
23#include <linux/fpga/fpga-mgr.h>
24#include <linux/idr.h>
25#include <linux/module.h>
26#include <linux/of.h>
27#include <linux/mutex.h>
28#include <linux/slab.h>
Jason Gunthorpebaa6d392017-02-01 12:48:44 -070029#include <linux/scatterlist.h>
30#include <linux/highmem.h>
Alan Tull6a8c3be2015-10-07 16:36:28 +010031
32static DEFINE_IDA(fpga_mgr_ida);
33static struct class *fpga_mgr_class;
34
Alan Tull5cf0c7f2017-11-15 14:20:12 -060035struct fpga_image_info *fpga_image_info_alloc(struct device *dev)
36{
37 struct fpga_image_info *info;
38
39 get_device(dev);
40
41 info = devm_kzalloc(dev, sizeof(*info), GFP_KERNEL);
42 if (!info) {
43 put_device(dev);
44 return NULL;
45 }
46
47 info->dev = dev;
48
49 return info;
50}
51EXPORT_SYMBOL_GPL(fpga_image_info_alloc);
52
53void fpga_image_info_free(struct fpga_image_info *info)
54{
55 struct device *dev;
56
57 if (!info)
58 return;
59
60 dev = info->dev;
61 if (info->firmware_name)
62 devm_kfree(dev, info->firmware_name);
63
64 devm_kfree(dev, info);
65 put_device(dev);
66}
67EXPORT_SYMBOL_GPL(fpga_image_info_free);
68
Jason Gunthorpebaa6d392017-02-01 12:48:44 -070069/*
70 * Call the low level driver's write_init function. This will do the
71 * device-specific things to get the FPGA into the state where it is ready to
72 * receive an FPGA image. The low level driver only gets to see the first
73 * initial_header_size bytes in the buffer.
74 */
75static int fpga_mgr_write_init_buf(struct fpga_manager *mgr,
76 struct fpga_image_info *info,
77 const char *buf, size_t count)
78{
79 int ret;
80
81 mgr->state = FPGA_MGR_STATE_WRITE_INIT;
82 if (!mgr->mops->initial_header_size)
83 ret = mgr->mops->write_init(mgr, info, NULL, 0);
84 else
85 ret = mgr->mops->write_init(
86 mgr, info, buf, min(mgr->mops->initial_header_size, count));
87
88 if (ret) {
89 dev_err(&mgr->dev, "Error preparing FPGA for writing\n");
90 mgr->state = FPGA_MGR_STATE_WRITE_INIT_ERR;
91 return ret;
92 }
93
94 return 0;
95}
96
97static int fpga_mgr_write_init_sg(struct fpga_manager *mgr,
98 struct fpga_image_info *info,
99 struct sg_table *sgt)
100{
101 struct sg_mapping_iter miter;
102 size_t len;
103 char *buf;
104 int ret;
105
106 if (!mgr->mops->initial_header_size)
107 return fpga_mgr_write_init_buf(mgr, info, NULL, 0);
108
109 /*
110 * First try to use miter to map the first fragment to access the
111 * header, this is the typical path.
112 */
113 sg_miter_start(&miter, sgt->sgl, sgt->nents, SG_MITER_FROM_SG);
114 if (sg_miter_next(&miter) &&
115 miter.length >= mgr->mops->initial_header_size) {
116 ret = fpga_mgr_write_init_buf(mgr, info, miter.addr,
117 miter.length);
118 sg_miter_stop(&miter);
119 return ret;
120 }
121 sg_miter_stop(&miter);
122
123 /* Otherwise copy the fragments into temporary memory. */
124 buf = kmalloc(mgr->mops->initial_header_size, GFP_KERNEL);
125 if (!buf)
126 return -ENOMEM;
127
128 len = sg_copy_to_buffer(sgt->sgl, sgt->nents, buf,
129 mgr->mops->initial_header_size);
130 ret = fpga_mgr_write_init_buf(mgr, info, buf, len);
131
132 kfree(buf);
133
134 return ret;
135}
136
137/*
138 * After all the FPGA image has been written, do the device specific steps to
139 * finish and set the FPGA into operating mode.
140 */
141static int fpga_mgr_write_complete(struct fpga_manager *mgr,
142 struct fpga_image_info *info)
143{
144 int ret;
145
146 mgr->state = FPGA_MGR_STATE_WRITE_COMPLETE;
147 ret = mgr->mops->write_complete(mgr, info);
148 if (ret) {
149 dev_err(&mgr->dev, "Error after writing image data to FPGA\n");
150 mgr->state = FPGA_MGR_STATE_WRITE_COMPLETE_ERR;
151 return ret;
152 }
153 mgr->state = FPGA_MGR_STATE_OPERATING;
154
155 return 0;
156}
157
Alan Tull6a8c3be2015-10-07 16:36:28 +0100158/**
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700159 * fpga_mgr_buf_load_sg - load fpga from image in buffer from a scatter list
Alan Tull6a8c3be2015-10-07 16:36:28 +0100160 * @mgr: fpga manager
Alan Tull1df28652016-11-01 14:14:26 -0500161 * @info: fpga image specific information
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700162 * @sgt: scatterlist table
Alan Tull6a8c3be2015-10-07 16:36:28 +0100163 *
164 * Step the low level fpga manager through the device-specific steps of getting
165 * an FPGA ready to be configured, writing the image to it, then doing whatever
Alan Tull92d94a72015-10-22 12:38:38 -0500166 * post-configuration steps necessary. This code assumes the caller got the
Alan Tull9dce0282016-11-01 14:14:23 -0500167 * mgr pointer from of_fpga_mgr_get() or fpga_mgr_get() and checked that it is
168 * not an error code.
Alan Tull6a8c3be2015-10-07 16:36:28 +0100169 *
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700170 * This is the preferred entry point for FPGA programming, it does not require
171 * any contiguous kernel memory.
172 *
Alan Tull6a8c3be2015-10-07 16:36:28 +0100173 * Return: 0 on success, negative error code otherwise.
174 */
Alan Tull5cf0c7f2017-11-15 14:20:12 -0600175static int fpga_mgr_buf_load_sg(struct fpga_manager *mgr,
176 struct fpga_image_info *info,
177 struct sg_table *sgt)
Alan Tull6a8c3be2015-10-07 16:36:28 +0100178{
Alan Tull6a8c3be2015-10-07 16:36:28 +0100179 int ret;
180
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700181 ret = fpga_mgr_write_init_sg(mgr, info, sgt);
182 if (ret)
183 return ret;
184
185 /* Write the FPGA image to the FPGA. */
186 mgr->state = FPGA_MGR_STATE_WRITE;
187 if (mgr->mops->write_sg) {
188 ret = mgr->mops->write_sg(mgr, sgt);
189 } else {
190 struct sg_mapping_iter miter;
191
192 sg_miter_start(&miter, sgt->sgl, sgt->nents, SG_MITER_FROM_SG);
193 while (sg_miter_next(&miter)) {
194 ret = mgr->mops->write(mgr, miter.addr, miter.length);
195 if (ret)
196 break;
197 }
198 sg_miter_stop(&miter);
199 }
200
Alan Tull6a8c3be2015-10-07 16:36:28 +0100201 if (ret) {
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700202 dev_err(&mgr->dev, "Error while writing image data to FPGA\n");
203 mgr->state = FPGA_MGR_STATE_WRITE_ERR;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100204 return ret;
205 }
206
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700207 return fpga_mgr_write_complete(mgr, info);
208}
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700209
210static int fpga_mgr_buf_load_mapped(struct fpga_manager *mgr,
211 struct fpga_image_info *info,
212 const char *buf, size_t count)
213{
214 int ret;
215
216 ret = fpga_mgr_write_init_buf(mgr, info, buf, count);
217 if (ret)
218 return ret;
219
Alan Tull6a8c3be2015-10-07 16:36:28 +0100220 /*
221 * Write the FPGA image to the FPGA.
222 */
223 mgr->state = FPGA_MGR_STATE_WRITE;
224 ret = mgr->mops->write(mgr, buf, count);
225 if (ret) {
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700226 dev_err(&mgr->dev, "Error while writing image data to FPGA\n");
Alan Tull6a8c3be2015-10-07 16:36:28 +0100227 mgr->state = FPGA_MGR_STATE_WRITE_ERR;
228 return ret;
229 }
230
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700231 return fpga_mgr_write_complete(mgr, info);
232}
Alan Tull6a8c3be2015-10-07 16:36:28 +0100233
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700234/**
235 * fpga_mgr_buf_load - load fpga from image in buffer
236 * @mgr: fpga manager
237 * @flags: flags setting fpga confuration modes
238 * @buf: buffer contain fpga image
239 * @count: byte count of buf
240 *
241 * Step the low level fpga manager through the device-specific steps of getting
242 * an FPGA ready to be configured, writing the image to it, then doing whatever
243 * post-configuration steps necessary. This code assumes the caller got the
244 * mgr pointer from of_fpga_mgr_get() and checked that it is not an error code.
245 *
246 * Return: 0 on success, negative error code otherwise.
247 */
Alan Tull5cf0c7f2017-11-15 14:20:12 -0600248static int fpga_mgr_buf_load(struct fpga_manager *mgr,
249 struct fpga_image_info *info,
250 const char *buf, size_t count)
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700251{
252 struct page **pages;
253 struct sg_table sgt;
254 const void *p;
255 int nr_pages;
256 int index;
257 int rc;
258
259 /*
260 * This is just a fast path if the caller has already created a
261 * contiguous kernel buffer and the driver doesn't require SG, non-SG
262 * drivers will still work on the slow path.
263 */
264 if (mgr->mops->write)
265 return fpga_mgr_buf_load_mapped(mgr, info, buf, count);
266
267 /*
268 * Convert the linear kernel pointer into a sg_table of pages for use
269 * by the driver.
270 */
271 nr_pages = DIV_ROUND_UP((unsigned long)buf + count, PAGE_SIZE) -
272 (unsigned long)buf / PAGE_SIZE;
273 pages = kmalloc_array(nr_pages, sizeof(struct page *), GFP_KERNEL);
274 if (!pages)
275 return -ENOMEM;
276
277 p = buf - offset_in_page(buf);
278 for (index = 0; index < nr_pages; index++) {
279 if (is_vmalloc_addr(p))
280 pages[index] = vmalloc_to_page(p);
281 else
282 pages[index] = kmap_to_page((void *)p);
283 if (!pages[index]) {
284 kfree(pages);
285 return -EFAULT;
286 }
287 p += PAGE_SIZE;
288 }
289
290 /*
291 * The temporary pages list is used to code share the merging algorithm
292 * in sg_alloc_table_from_pages
293 */
294 rc = sg_alloc_table_from_pages(&sgt, pages, index, offset_in_page(buf),
295 count, GFP_KERNEL);
296 kfree(pages);
297 if (rc)
298 return rc;
299
300 rc = fpga_mgr_buf_load_sg(mgr, info, &sgt);
301 sg_free_table(&sgt);
302
303 return rc;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100304}
Alan Tull6a8c3be2015-10-07 16:36:28 +0100305
306/**
307 * fpga_mgr_firmware_load - request firmware and load to fpga
308 * @mgr: fpga manager
Alan Tull1df28652016-11-01 14:14:26 -0500309 * @info: fpga image specific information
Alan Tull6a8c3be2015-10-07 16:36:28 +0100310 * @image_name: name of image file on the firmware search path
311 *
312 * Request an FPGA image using the firmware class, then write out to the FPGA.
313 * Update the state before each step to provide info on what step failed if
Alan Tull92d94a72015-10-22 12:38:38 -0500314 * there is a failure. This code assumes the caller got the mgr pointer
Alan Tull9dce0282016-11-01 14:14:23 -0500315 * from of_fpga_mgr_get() or fpga_mgr_get() and checked that it is not an error
316 * code.
Alan Tull6a8c3be2015-10-07 16:36:28 +0100317 *
318 * Return: 0 on success, negative error code otherwise.
319 */
Alan Tull5cf0c7f2017-11-15 14:20:12 -0600320static int fpga_mgr_firmware_load(struct fpga_manager *mgr,
321 struct fpga_image_info *info,
322 const char *image_name)
Alan Tull6a8c3be2015-10-07 16:36:28 +0100323{
324 struct device *dev = &mgr->dev;
325 const struct firmware *fw;
326 int ret;
327
Alan Tull6a8c3be2015-10-07 16:36:28 +0100328 dev_info(dev, "writing %s to %s\n", image_name, mgr->name);
329
330 mgr->state = FPGA_MGR_STATE_FIRMWARE_REQ;
331
332 ret = request_firmware(&fw, image_name, dev);
333 if (ret) {
334 mgr->state = FPGA_MGR_STATE_FIRMWARE_REQ_ERR;
335 dev_err(dev, "Error requesting firmware %s\n", image_name);
336 return ret;
337 }
338
Alan Tull1df28652016-11-01 14:14:26 -0500339 ret = fpga_mgr_buf_load(mgr, info, fw->data, fw->size);
Alan Tull6a8c3be2015-10-07 16:36:28 +0100340
341 release_firmware(fw);
342
Tobias Klausere8c77bd2015-11-18 10:48:16 +0100343 return ret;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100344}
Alan Tull5cf0c7f2017-11-15 14:20:12 -0600345
346int fpga_mgr_load(struct fpga_manager *mgr, struct fpga_image_info *info)
347{
348 if (info->sgt)
349 return fpga_mgr_buf_load_sg(mgr, info, info->sgt);
350 if (info->buf && info->count)
351 return fpga_mgr_buf_load(mgr, info, info->buf, info->count);
352 if (info->firmware_name)
353 return fpga_mgr_firmware_load(mgr, info, info->firmware_name);
354 return -EINVAL;
355}
356EXPORT_SYMBOL_GPL(fpga_mgr_load);
Alan Tull6a8c3be2015-10-07 16:36:28 +0100357
358static const char * const state_str[] = {
359 [FPGA_MGR_STATE_UNKNOWN] = "unknown",
360 [FPGA_MGR_STATE_POWER_OFF] = "power off",
361 [FPGA_MGR_STATE_POWER_UP] = "power up",
362 [FPGA_MGR_STATE_RESET] = "reset",
363
364 /* requesting FPGA image from firmware */
365 [FPGA_MGR_STATE_FIRMWARE_REQ] = "firmware request",
366 [FPGA_MGR_STATE_FIRMWARE_REQ_ERR] = "firmware request error",
367
368 /* Preparing FPGA to receive image */
369 [FPGA_MGR_STATE_WRITE_INIT] = "write init",
370 [FPGA_MGR_STATE_WRITE_INIT_ERR] = "write init error",
371
372 /* Writing image to FPGA */
373 [FPGA_MGR_STATE_WRITE] = "write",
374 [FPGA_MGR_STATE_WRITE_ERR] = "write error",
375
376 /* Finishing configuration after image has been written */
377 [FPGA_MGR_STATE_WRITE_COMPLETE] = "write complete",
378 [FPGA_MGR_STATE_WRITE_COMPLETE_ERR] = "write complete error",
379
380 /* FPGA reports to be in normal operating mode */
381 [FPGA_MGR_STATE_OPERATING] = "operating",
382};
383
384static ssize_t name_show(struct device *dev,
385 struct device_attribute *attr, char *buf)
386{
387 struct fpga_manager *mgr = to_fpga_manager(dev);
388
389 return sprintf(buf, "%s\n", mgr->name);
390}
391
392static ssize_t state_show(struct device *dev,
393 struct device_attribute *attr, char *buf)
394{
395 struct fpga_manager *mgr = to_fpga_manager(dev);
396
397 return sprintf(buf, "%s\n", state_str[mgr->state]);
398}
399
400static DEVICE_ATTR_RO(name);
401static DEVICE_ATTR_RO(state);
402
403static struct attribute *fpga_mgr_attrs[] = {
404 &dev_attr_name.attr,
405 &dev_attr_state.attr,
406 NULL,
407};
408ATTRIBUTE_GROUPS(fpga_mgr);
409
Dinh Nguyen47910a42017-02-27 09:18:59 -0600410static struct fpga_manager *__fpga_mgr_get(struct device *dev)
Alan Tull6a8c3be2015-10-07 16:36:28 +0100411{
412 struct fpga_manager *mgr;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100413
Alan Tull6a8c3be2015-10-07 16:36:28 +0100414 mgr = to_fpga_manager(dev);
Alan Tull6a8c3be2015-10-07 16:36:28 +0100415 if (!mgr)
Alan Tull654ba4c2015-10-22 12:38:37 -0500416 goto err_dev;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100417
Alan Tull654ba4c2015-10-22 12:38:37 -0500418 if (!try_module_get(dev->parent->driver->owner))
Alan Tullebf877a52017-11-15 14:20:13 -0600419 goto err_dev;
Alan Tull654ba4c2015-10-22 12:38:37 -0500420
Alan Tull6a8c3be2015-10-07 16:36:28 +0100421 return mgr;
Alan Tull654ba4c2015-10-22 12:38:37 -0500422
Alan Tull654ba4c2015-10-22 12:38:37 -0500423err_dev:
424 put_device(dev);
Alan Tullebf877a52017-11-15 14:20:13 -0600425 return ERR_PTR(-ENODEV);
Alan Tull6a8c3be2015-10-07 16:36:28 +0100426}
Alan Tull9dce0282016-11-01 14:14:23 -0500427
428static int fpga_mgr_dev_match(struct device *dev, const void *data)
429{
430 return dev->parent == data;
431}
432
433/**
Alan Tullebf877a52017-11-15 14:20:13 -0600434 * fpga_mgr_get - get a reference to a fpga mgr
Alan Tull9dce0282016-11-01 14:14:23 -0500435 * @dev: parent device that fpga mgr was registered with
436 *
Alan Tullebf877a52017-11-15 14:20:13 -0600437 * Given a device, get a reference to a fpga mgr.
Alan Tull9dce0282016-11-01 14:14:23 -0500438 *
439 * Return: fpga manager struct or IS_ERR() condition containing error code.
440 */
441struct fpga_manager *fpga_mgr_get(struct device *dev)
442{
443 struct device *mgr_dev = class_find_device(fpga_mgr_class, NULL, dev,
444 fpga_mgr_dev_match);
445 if (!mgr_dev)
446 return ERR_PTR(-ENODEV);
447
448 return __fpga_mgr_get(mgr_dev);
449}
450EXPORT_SYMBOL_GPL(fpga_mgr_get);
451
452static int fpga_mgr_of_node_match(struct device *dev, const void *data)
453{
454 return dev->of_node == data;
455}
456
457/**
Alan Tullebf877a52017-11-15 14:20:13 -0600458 * of_fpga_mgr_get - get a reference to a fpga mgr
Alan Tull9dce0282016-11-01 14:14:23 -0500459 * @node: device node
460 *
Alan Tullebf877a52017-11-15 14:20:13 -0600461 * Given a device node, get a reference to a fpga mgr.
Alan Tull9dce0282016-11-01 14:14:23 -0500462 *
463 * Return: fpga manager struct or IS_ERR() condition containing error code.
464 */
465struct fpga_manager *of_fpga_mgr_get(struct device_node *node)
466{
467 struct device *dev;
468
469 dev = class_find_device(fpga_mgr_class, NULL, node,
470 fpga_mgr_of_node_match);
471 if (!dev)
472 return ERR_PTR(-ENODEV);
473
474 return __fpga_mgr_get(dev);
475}
Alan Tull6a8c3be2015-10-07 16:36:28 +0100476EXPORT_SYMBOL_GPL(of_fpga_mgr_get);
477
478/**
479 * fpga_mgr_put - release a reference to a fpga manager
480 * @mgr: fpga manager structure
481 */
482void fpga_mgr_put(struct fpga_manager *mgr)
483{
Alan Tull654ba4c2015-10-22 12:38:37 -0500484 module_put(mgr->dev.parent->driver->owner);
Alan Tull654ba4c2015-10-22 12:38:37 -0500485 put_device(&mgr->dev);
Alan Tull6a8c3be2015-10-07 16:36:28 +0100486}
487EXPORT_SYMBOL_GPL(fpga_mgr_put);
488
489/**
Alan Tullebf877a52017-11-15 14:20:13 -0600490 * fpga_mgr_lock - Lock FPGA manager for exclusive use
491 * @mgr: fpga manager
492 *
493 * Given a pointer to FPGA Manager (from fpga_mgr_get() or
494 * of_fpga_mgr_put()) attempt to get the mutex.
495 *
496 * Return: 0 for success or -EBUSY
497 */
498int fpga_mgr_lock(struct fpga_manager *mgr)
499{
500 if (!mutex_trylock(&mgr->ref_mutex)) {
501 dev_err(&mgr->dev, "FPGA manager is in use.\n");
502 return -EBUSY;
503 }
504
505 return 0;
506}
507EXPORT_SYMBOL_GPL(fpga_mgr_lock);
508
509/**
510 * fpga_mgr_unlock - Unlock FPGA manager
511 * @mgr: fpga manager
512 */
513void fpga_mgr_unlock(struct fpga_manager *mgr)
514{
515 mutex_unlock(&mgr->ref_mutex);
516}
517EXPORT_SYMBOL_GPL(fpga_mgr_unlock);
518
519/**
Alan Tull6a8c3be2015-10-07 16:36:28 +0100520 * fpga_mgr_register - register a low level fpga manager driver
521 * @dev: fpga manager device from pdev
522 * @name: fpga manager name
523 * @mops: pointer to structure of fpga manager ops
524 * @priv: fpga manager private data
525 *
526 * Return: 0 on success, negative error code otherwise.
527 */
528int fpga_mgr_register(struct device *dev, const char *name,
529 const struct fpga_manager_ops *mops,
530 void *priv)
531{
532 struct fpga_manager *mgr;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100533 int id, ret;
534
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700535 if (!mops || !mops->write_complete || !mops->state ||
536 !mops->write_init || (!mops->write && !mops->write_sg) ||
537 (mops->write && mops->write_sg)) {
Alan Tull6a8c3be2015-10-07 16:36:28 +0100538 dev_err(dev, "Attempt to register without fpga_manager_ops\n");
539 return -EINVAL;
540 }
541
542 if (!name || !strlen(name)) {
543 dev_err(dev, "Attempt to register with no name!\n");
544 return -EINVAL;
545 }
546
547 mgr = kzalloc(sizeof(*mgr), GFP_KERNEL);
548 if (!mgr)
549 return -ENOMEM;
550
551 id = ida_simple_get(&fpga_mgr_ida, 0, 0, GFP_KERNEL);
552 if (id < 0) {
553 ret = id;
554 goto error_kfree;
555 }
556
557 mutex_init(&mgr->ref_mutex);
558
559 mgr->name = name;
560 mgr->mops = mops;
561 mgr->priv = priv;
562
563 /*
564 * Initialize framework state by requesting low level driver read state
565 * from device. FPGA may be in reset mode or may have been programmed
566 * by bootloader or EEPROM.
567 */
568 mgr->state = mgr->mops->state(mgr);
569
570 device_initialize(&mgr->dev);
571 mgr->dev.class = fpga_mgr_class;
572 mgr->dev.parent = dev;
573 mgr->dev.of_node = dev->of_node;
574 mgr->dev.id = id;
575 dev_set_drvdata(dev, mgr);
576
Alan Tull07687c02015-10-29 14:39:56 -0500577 ret = dev_set_name(&mgr->dev, "fpga%d", id);
578 if (ret)
579 goto error_device;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100580
581 ret = device_add(&mgr->dev);
582 if (ret)
583 goto error_device;
584
585 dev_info(&mgr->dev, "%s registered\n", mgr->name);
586
587 return 0;
588
589error_device:
590 ida_simple_remove(&fpga_mgr_ida, id);
591error_kfree:
592 kfree(mgr);
593
594 return ret;
595}
596EXPORT_SYMBOL_GPL(fpga_mgr_register);
597
598/**
599 * fpga_mgr_unregister - unregister a low level fpga manager driver
600 * @dev: fpga manager device from pdev
601 */
602void fpga_mgr_unregister(struct device *dev)
603{
604 struct fpga_manager *mgr = dev_get_drvdata(dev);
605
606 dev_info(&mgr->dev, "%s %s\n", __func__, mgr->name);
607
608 /*
609 * If the low level driver provides a method for putting fpga into
610 * a desired state upon unregister, do it.
611 */
612 if (mgr->mops->fpga_remove)
613 mgr->mops->fpga_remove(mgr);
614
615 device_unregister(&mgr->dev);
616}
617EXPORT_SYMBOL_GPL(fpga_mgr_unregister);
618
619static void fpga_mgr_dev_release(struct device *dev)
620{
621 struct fpga_manager *mgr = to_fpga_manager(dev);
622
623 ida_simple_remove(&fpga_mgr_ida, mgr->dev.id);
624 kfree(mgr);
625}
626
627static int __init fpga_mgr_class_init(void)
628{
629 pr_info("FPGA manager framework\n");
630
631 fpga_mgr_class = class_create(THIS_MODULE, "fpga_manager");
632 if (IS_ERR(fpga_mgr_class))
633 return PTR_ERR(fpga_mgr_class);
634
635 fpga_mgr_class->dev_groups = fpga_mgr_groups;
636 fpga_mgr_class->dev_release = fpga_mgr_dev_release;
637
638 return 0;
639}
640
641static void __exit fpga_mgr_class_exit(void)
642{
643 class_destroy(fpga_mgr_class);
644 ida_destroy(&fpga_mgr_ida);
645}
646
Alan Tull5cf0c7f2017-11-15 14:20:12 -0600647MODULE_AUTHOR("Alan Tull <atull@kernel.org>");
Alan Tull6a8c3be2015-10-07 16:36:28 +0100648MODULE_DESCRIPTION("FPGA manager framework");
649MODULE_LICENSE("GPL v2");
650
651subsys_initcall(fpga_mgr_class_init);
652module_exit(fpga_mgr_class_exit);