blob: 151ac364be804948abfedf68e68fe5599f10bcdb [file] [log] [blame]
Alan Tull473f01f2018-05-16 18:49:58 -05001// SPDX-License-Identifier: GPL-2.0
Alan Tull6a8c3be2015-10-07 16:36:28 +01002/*
3 * FPGA Manager Core
4 *
5 * Copyright (C) 2013-2015 Altera Corporation
Alan Tull5cf0c7f2017-11-15 14:20:12 -06006 * Copyright (C) 2017 Intel Corporation
Alan Tull6a8c3be2015-10-07 16:36:28 +01007 *
8 * With code from the mailing list:
9 * Copyright (C) 2013 Xilinx, Inc.
Alan Tull6a8c3be2015-10-07 16:36:28 +010010 */
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 Gunthorpebaa6d392017-02-01 12:48:44 -070018#include <linux/scatterlist.h>
19#include <linux/highmem.h>
Alan Tull6a8c3be2015-10-07 16:36:28 +010020
21static DEFINE_IDA(fpga_mgr_ida);
22static struct class *fpga_mgr_class;
23
Alan Tull5cf0c7f2017-11-15 14:20:12 -060024struct 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}
40EXPORT_SYMBOL_GPL(fpga_image_info_alloc);
41
42void 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}
56EXPORT_SYMBOL_GPL(fpga_image_info_free);
57
Jason Gunthorpebaa6d392017-02-01 12:48:44 -070058/*
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 */
64static 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
86static 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 */
130static 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 Tull6a8c3be2015-10-07 16:36:28 +0100147/**
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700148 * fpga_mgr_buf_load_sg - load fpga from image in buffer from a scatter list
Alan Tull6a8c3be2015-10-07 16:36:28 +0100149 * @mgr: fpga manager
Alan Tull1df28652016-11-01 14:14:26 -0500150 * @info: fpga image specific information
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700151 * @sgt: scatterlist table
Alan Tull6a8c3be2015-10-07 16:36:28 +0100152 *
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 Tull92d94a72015-10-22 12:38:38 -0500155 * post-configuration steps necessary. This code assumes the caller got the
Alan Tull9dce0282016-11-01 14:14:23 -0500156 * mgr pointer from of_fpga_mgr_get() or fpga_mgr_get() and checked that it is
157 * not an error code.
Alan Tull6a8c3be2015-10-07 16:36:28 +0100158 *
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700159 * This is the preferred entry point for FPGA programming, it does not require
160 * any contiguous kernel memory.
161 *
Alan Tull6a8c3be2015-10-07 16:36:28 +0100162 * Return: 0 on success, negative error code otherwise.
163 */
Alan Tull5cf0c7f2017-11-15 14:20:12 -0600164static int fpga_mgr_buf_load_sg(struct fpga_manager *mgr,
165 struct fpga_image_info *info,
166 struct sg_table *sgt)
Alan Tull6a8c3be2015-10-07 16:36:28 +0100167{
Alan Tull6a8c3be2015-10-07 16:36:28 +0100168 int ret;
169
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700170 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 Tull6a8c3be2015-10-07 16:36:28 +0100190 if (ret) {
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700191 dev_err(&mgr->dev, "Error while writing image data to FPGA\n");
192 mgr->state = FPGA_MGR_STATE_WRITE_ERR;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100193 return ret;
194 }
195
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700196 return fpga_mgr_write_complete(mgr, info);
197}
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700198
199static 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 Tull6a8c3be2015-10-07 16:36:28 +0100209 /*
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 Gunthorpebaa6d392017-02-01 12:48:44 -0700215 dev_err(&mgr->dev, "Error while writing image data to FPGA\n");
Alan Tull6a8c3be2015-10-07 16:36:28 +0100216 mgr->state = FPGA_MGR_STATE_WRITE_ERR;
217 return ret;
218 }
219
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700220 return fpga_mgr_write_complete(mgr, info);
221}
Alan Tull6a8c3be2015-10-07 16:36:28 +0100222
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700223/**
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 Tull5cf0c7f2017-11-15 14:20:12 -0600237static int fpga_mgr_buf_load(struct fpga_manager *mgr,
238 struct fpga_image_info *info,
239 const char *buf, size_t count)
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700240{
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 Tull6a8c3be2015-10-07 16:36:28 +0100293}
Alan Tull6a8c3be2015-10-07 16:36:28 +0100294
295/**
296 * fpga_mgr_firmware_load - request firmware and load to fpga
297 * @mgr: fpga manager
Alan Tull1df28652016-11-01 14:14:26 -0500298 * @info: fpga image specific information
Alan Tull6a8c3be2015-10-07 16:36:28 +0100299 * @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 Tull92d94a72015-10-22 12:38:38 -0500303 * there is a failure. This code assumes the caller got the mgr pointer
Alan Tull9dce0282016-11-01 14:14:23 -0500304 * from of_fpga_mgr_get() or fpga_mgr_get() and checked that it is not an error
305 * code.
Alan Tull6a8c3be2015-10-07 16:36:28 +0100306 *
307 * Return: 0 on success, negative error code otherwise.
308 */
Alan Tull5cf0c7f2017-11-15 14:20:12 -0600309static int fpga_mgr_firmware_load(struct fpga_manager *mgr,
310 struct fpga_image_info *info,
311 const char *image_name)
Alan Tull6a8c3be2015-10-07 16:36:28 +0100312{
313 struct device *dev = &mgr->dev;
314 const struct firmware *fw;
315 int ret;
316
Alan Tull6a8c3be2015-10-07 16:36:28 +0100317 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 Tull1df28652016-11-01 14:14:26 -0500328 ret = fpga_mgr_buf_load(mgr, info, fw->data, fw->size);
Alan Tull6a8c3be2015-10-07 16:36:28 +0100329
330 release_firmware(fw);
331
Tobias Klausere8c77bd2015-11-18 10:48:16 +0100332 return ret;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100333}
Alan Tull5cf0c7f2017-11-15 14:20:12 -0600334
335int 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}
345EXPORT_SYMBOL_GPL(fpga_mgr_load);
Alan Tull6a8c3be2015-10-07 16:36:28 +0100346
347static 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
373static 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
381static 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
389static DEVICE_ATTR_RO(name);
390static DEVICE_ATTR_RO(state);
391
392static struct attribute *fpga_mgr_attrs[] = {
393 &dev_attr_name.attr,
394 &dev_attr_state.attr,
395 NULL,
396};
397ATTRIBUTE_GROUPS(fpga_mgr);
398
Dinh Nguyen47910a42017-02-27 09:18:59 -0600399static struct fpga_manager *__fpga_mgr_get(struct device *dev)
Alan Tull6a8c3be2015-10-07 16:36:28 +0100400{
401 struct fpga_manager *mgr;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100402
Alan Tull6a8c3be2015-10-07 16:36:28 +0100403 mgr = to_fpga_manager(dev);
Alan Tull6a8c3be2015-10-07 16:36:28 +0100404
Alan Tull654ba4c2015-10-22 12:38:37 -0500405 if (!try_module_get(dev->parent->driver->owner))
Alan Tullebf877a52017-11-15 14:20:13 -0600406 goto err_dev;
Alan Tull654ba4c2015-10-22 12:38:37 -0500407
Alan Tull6a8c3be2015-10-07 16:36:28 +0100408 return mgr;
Alan Tull654ba4c2015-10-22 12:38:37 -0500409
Alan Tull654ba4c2015-10-22 12:38:37 -0500410err_dev:
411 put_device(dev);
Alan Tullebf877a52017-11-15 14:20:13 -0600412 return ERR_PTR(-ENODEV);
Alan Tull6a8c3be2015-10-07 16:36:28 +0100413}
Alan Tull9dce0282016-11-01 14:14:23 -0500414
415static int fpga_mgr_dev_match(struct device *dev, const void *data)
416{
417 return dev->parent == data;
418}
419
420/**
Alan Tullebf877a52017-11-15 14:20:13 -0600421 * fpga_mgr_get - get a reference to a fpga mgr
Alan Tull9dce0282016-11-01 14:14:23 -0500422 * @dev: parent device that fpga mgr was registered with
423 *
Alan Tullebf877a52017-11-15 14:20:13 -0600424 * Given a device, get a reference to a fpga mgr.
Alan Tull9dce0282016-11-01 14:14:23 -0500425 *
426 * Return: fpga manager struct or IS_ERR() condition containing error code.
427 */
428struct 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}
437EXPORT_SYMBOL_GPL(fpga_mgr_get);
438
439static int fpga_mgr_of_node_match(struct device *dev, const void *data)
440{
441 return dev->of_node == data;
442}
443
444/**
Alan Tullebf877a52017-11-15 14:20:13 -0600445 * of_fpga_mgr_get - get a reference to a fpga mgr
Alan Tull9dce0282016-11-01 14:14:23 -0500446 * @node: device node
447 *
Alan Tullebf877a52017-11-15 14:20:13 -0600448 * Given a device node, get a reference to a fpga mgr.
Alan Tull9dce0282016-11-01 14:14:23 -0500449 *
450 * Return: fpga manager struct or IS_ERR() condition containing error code.
451 */
452struct 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 Tull6a8c3be2015-10-07 16:36:28 +0100463EXPORT_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 */
469void fpga_mgr_put(struct fpga_manager *mgr)
470{
Alan Tull654ba4c2015-10-22 12:38:37 -0500471 module_put(mgr->dev.parent->driver->owner);
Alan Tull654ba4c2015-10-22 12:38:37 -0500472 put_device(&mgr->dev);
Alan Tull6a8c3be2015-10-07 16:36:28 +0100473}
474EXPORT_SYMBOL_GPL(fpga_mgr_put);
475
476/**
Alan Tullebf877a52017-11-15 14:20:13 -0600477 * 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 */
485int 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}
494EXPORT_SYMBOL_GPL(fpga_mgr_lock);
495
496/**
497 * fpga_mgr_unlock - Unlock FPGA manager
498 * @mgr: fpga manager
499 */
500void fpga_mgr_unlock(struct fpga_manager *mgr)
501{
502 mutex_unlock(&mgr->ref_mutex);
503}
504EXPORT_SYMBOL_GPL(fpga_mgr_unlock);
505
506/**
Alan Tull7085e2a2018-05-16 18:49:55 -0500507 * fpga_mgr_create - create and initialize a FPGA manager struct
Alan Tull6a8c3be2015-10-07 16:36:28 +0100508 * @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 Tull7085e2a2018-05-16 18:49:55 -0500513 * Return: pointer to struct fpga_manager or NULL
Alan Tull6a8c3be2015-10-07 16:36:28 +0100514 */
Alan Tull7085e2a2018-05-16 18:49:55 -0500515struct fpga_manager *fpga_mgr_create(struct device *dev, const char *name,
516 const struct fpga_manager_ops *mops,
517 void *priv)
Alan Tull6a8c3be2015-10-07 16:36:28 +0100518{
519 struct fpga_manager *mgr;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100520 int id, ret;
521
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700522 if (!mops || !mops->write_complete || !mops->state ||
523 !mops->write_init || (!mops->write && !mops->write_sg) ||
524 (mops->write && mops->write_sg)) {
Alan Tull6a8c3be2015-10-07 16:36:28 +0100525 dev_err(dev, "Attempt to register without fpga_manager_ops\n");
Alan Tull7085e2a2018-05-16 18:49:55 -0500526 return NULL;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100527 }
528
529 if (!name || !strlen(name)) {
530 dev_err(dev, "Attempt to register with no name!\n");
Alan Tull7085e2a2018-05-16 18:49:55 -0500531 return NULL;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100532 }
533
534 mgr = kzalloc(sizeof(*mgr), GFP_KERNEL);
535 if (!mgr)
Alan Tull7085e2a2018-05-16 18:49:55 -0500536 return NULL;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100537
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 Tull6a8c3be2015-10-07 16:36:28 +0100550 device_initialize(&mgr->dev);
551 mgr->dev.class = fpga_mgr_class;
Alan Tull845089b2017-11-15 14:20:28 -0600552 mgr->dev.groups = mops->groups;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100553 mgr->dev.parent = dev;
554 mgr->dev.of_node = dev->of_node;
555 mgr->dev.id = id;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100556
Alan Tull07687c02015-10-29 14:39:56 -0500557 ret = dev_set_name(&mgr->dev, "fpga%d", id);
558 if (ret)
559 goto error_device;
Alan Tull6a8c3be2015-10-07 16:36:28 +0100560
Alan Tull7085e2a2018-05-16 18:49:55 -0500561 return mgr;
562
563error_device:
564 ida_simple_remove(&fpga_mgr_ida, id);
565error_kfree:
566 kfree(mgr);
567
568 return NULL;
569}
570EXPORT_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 */
576void fpga_mgr_free(struct fpga_manager *mgr)
577{
578 ida_simple_remove(&fpga_mgr_ida, mgr->dev.id);
579 kfree(mgr);
580}
581EXPORT_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 */
589int 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 Tull6a8c3be2015-10-07 16:36:28 +0100600 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
608error_device:
Alan Tull7085e2a2018-05-16 18:49:55 -0500609 ida_simple_remove(&fpga_mgr_ida, mgr->dev.id);
Alan Tull6a8c3be2015-10-07 16:36:28 +0100610
611 return ret;
612}
613EXPORT_SYMBOL_GPL(fpga_mgr_register);
614
615/**
Alan Tull7085e2a2018-05-16 18:49:55 -0500616 * fpga_mgr_unregister - unregister a FPGA manager
617 * @mgr: fpga manager struct
Alan Tull6a8c3be2015-10-07 16:36:28 +0100618 */
Alan Tull7085e2a2018-05-16 18:49:55 -0500619void fpga_mgr_unregister(struct fpga_manager *mgr)
Alan Tull6a8c3be2015-10-07 16:36:28 +0100620{
Alan Tull6a8c3be2015-10-07 16:36:28 +0100621 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}
632EXPORT_SYMBOL_GPL(fpga_mgr_unregister);
633
634static void fpga_mgr_dev_release(struct device *dev)
635{
636 struct fpga_manager *mgr = to_fpga_manager(dev);
637
Alan Tull7085e2a2018-05-16 18:49:55 -0500638 fpga_mgr_free(mgr);
Alan Tull6a8c3be2015-10-07 16:36:28 +0100639}
640
641static 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
655static void __exit fpga_mgr_class_exit(void)
656{
657 class_destroy(fpga_mgr_class);
658 ida_destroy(&fpga_mgr_ida);
659}
660
Alan Tull5cf0c7f2017-11-15 14:20:12 -0600661MODULE_AUTHOR("Alan Tull <atull@kernel.org>");
Alan Tull6a8c3be2015-10-07 16:36:28 +0100662MODULE_DESCRIPTION("FPGA manager framework");
663MODULE_LICENSE("GPL v2");
664
665subsys_initcall(fpga_mgr_class_init);
666module_exit(fpga_mgr_class_exit);