1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2013-2015 Altera Corporation
6 * Copyright (C) 2017 Intel Corporation
8 * With code from the mailing list:
9 * Copyright (C) 2013 Xilinx, Inc.
11 #include <linux/firmware.h>
12 #include <linux/fpga/fpga-mgr.h>
13 #include <linux/idr.h>
14 #include <linux/module.h>
16 #include <linux/mutex.h>
17 #include <linux/slab.h>
18 #include <linux/scatterlist.h>
19 #include <linux/highmem.h>
21 static DEFINE_IDA(fpga_mgr_ida);
22 static struct class *fpga_mgr_class;
24 struct fpga_mgr_devres {
25 struct fpga_manager *mgr;
28 static inline void fpga_mgr_fpga_remove(struct fpga_manager *mgr)
30 if (mgr->mops->fpga_remove)
31 mgr->mops->fpga_remove(mgr);
34 static inline enum fpga_mgr_states fpga_mgr_state(struct fpga_manager *mgr)
37 return mgr->mops->state(mgr);
38 return FPGA_MGR_STATE_UNKNOWN;
41 static inline u64 fpga_mgr_status(struct fpga_manager *mgr)
43 if (mgr->mops->status)
44 return mgr->mops->status(mgr);
48 static inline int fpga_mgr_write(struct fpga_manager *mgr, const char *buf, size_t count)
51 return mgr->mops->write(mgr, buf, count);
56 * After all the FPGA image has been written, do the device specific steps to
57 * finish and set the FPGA into operating mode.
59 static inline int fpga_mgr_write_complete(struct fpga_manager *mgr,
60 struct fpga_image_info *info)
64 mgr->state = FPGA_MGR_STATE_WRITE_COMPLETE;
65 if (mgr->mops->write_complete)
66 ret = mgr->mops->write_complete(mgr, info);
68 dev_err(&mgr->dev, "Error after writing image data to FPGA\n");
69 mgr->state = FPGA_MGR_STATE_WRITE_COMPLETE_ERR;
72 mgr->state = FPGA_MGR_STATE_OPERATING;
77 static inline int fpga_mgr_parse_header(struct fpga_manager *mgr,
78 struct fpga_image_info *info,
79 const char *buf, size_t count)
81 if (mgr->mops->parse_header)
82 return mgr->mops->parse_header(mgr, info, buf, count);
86 static inline int fpga_mgr_write_init(struct fpga_manager *mgr,
87 struct fpga_image_info *info,
88 const char *buf, size_t count)
90 if (mgr->mops->write_init)
91 return mgr->mops->write_init(mgr, info, buf, count);
95 static inline int fpga_mgr_write_sg(struct fpga_manager *mgr,
98 if (mgr->mops->write_sg)
99 return mgr->mops->write_sg(mgr, sgt);
104 * fpga_image_info_alloc - Allocate an FPGA image info struct
105 * @dev: owning device
107 * Return: struct fpga_image_info or NULL
109 struct fpga_image_info *fpga_image_info_alloc(struct device *dev)
111 struct fpga_image_info *info;
115 info = devm_kzalloc(dev, sizeof(*info), GFP_KERNEL);
125 EXPORT_SYMBOL_GPL(fpga_image_info_alloc);
128 * fpga_image_info_free - Free an FPGA image info struct
129 * @info: FPGA image info struct to free
131 void fpga_image_info_free(struct fpga_image_info *info)
139 if (info->firmware_name)
140 devm_kfree(dev, info->firmware_name);
142 devm_kfree(dev, info);
145 EXPORT_SYMBOL_GPL(fpga_image_info_free);
148 * Call the low level driver's parse_header function with entire FPGA image
149 * buffer on the input. This will set info->header_size and info->data_size.
151 static int fpga_mgr_parse_header_mapped(struct fpga_manager *mgr,
152 struct fpga_image_info *info,
153 const char *buf, size_t count)
157 mgr->state = FPGA_MGR_STATE_PARSE_HEADER;
158 ret = fpga_mgr_parse_header(mgr, info, buf, count);
160 if (info->header_size + info->data_size > count) {
161 dev_err(&mgr->dev, "Bitstream data outruns FPGA image\n");
166 dev_err(&mgr->dev, "Error while parsing FPGA image header\n");
167 mgr->state = FPGA_MGR_STATE_PARSE_HEADER_ERR;
174 * Call the low level driver's parse_header function with first fragment of
175 * scattered FPGA image on the input. If header fits first fragment,
176 * parse_header will set info->header_size and info->data_size. If it is not,
177 * parse_header will set desired size to info->header_size and -EAGAIN will be
180 static int fpga_mgr_parse_header_sg_first(struct fpga_manager *mgr,
181 struct fpga_image_info *info,
182 struct sg_table *sgt)
184 struct sg_mapping_iter miter;
187 mgr->state = FPGA_MGR_STATE_PARSE_HEADER;
189 sg_miter_start(&miter, sgt->sgl, sgt->nents, SG_MITER_FROM_SG);
190 if (sg_miter_next(&miter) &&
191 miter.length >= info->header_size)
192 ret = fpga_mgr_parse_header(mgr, info, miter.addr, miter.length);
195 sg_miter_stop(&miter);
197 if (ret && ret != -EAGAIN) {
198 dev_err(&mgr->dev, "Error while parsing FPGA image header\n");
199 mgr->state = FPGA_MGR_STATE_PARSE_HEADER_ERR;
206 * Copy scattered FPGA image fragments to temporary buffer and call the
207 * low level driver's parse_header function. This should be called after
208 * fpga_mgr_parse_header_sg_first() returned -EAGAIN. In case of success,
209 * pointer to the newly allocated image header copy will be returned and
210 * its size will be set into *ret_size. Returned buffer needs to be freed.
212 static void *fpga_mgr_parse_header_sg(struct fpga_manager *mgr,
213 struct fpga_image_info *info,
214 struct sg_table *sgt, size_t *ret_size)
216 size_t len, new_header_size, header_size = 0;
217 char *new_buf, *buf = NULL;
221 new_header_size = info->header_size;
222 if (new_header_size <= header_size) {
223 dev_err(&mgr->dev, "Requested invalid header size\n");
228 new_buf = krealloc(buf, new_header_size, GFP_KERNEL);
236 len = sg_pcopy_to_buffer(sgt->sgl, sgt->nents,
238 new_header_size - header_size,
240 if (len != new_header_size - header_size) {
245 header_size = new_header_size;
246 ret = fpga_mgr_parse_header(mgr, info, buf, header_size);
247 } while (ret == -EAGAIN);
250 dev_err(&mgr->dev, "Error while parsing FPGA image header\n");
251 mgr->state = FPGA_MGR_STATE_PARSE_HEADER_ERR;
256 *ret_size = header_size;
262 * Call the low level driver's write_init function. This will do the
263 * device-specific things to get the FPGA into the state where it is ready to
264 * receive an FPGA image. The low level driver gets to see at least first
265 * info->header_size bytes in the buffer. If info->header_size is 0,
266 * write_init will not get any bytes of image buffer.
268 static int fpga_mgr_write_init_buf(struct fpga_manager *mgr,
269 struct fpga_image_info *info,
270 const char *buf, size_t count)
272 size_t header_size = info->header_size;
275 mgr->state = FPGA_MGR_STATE_WRITE_INIT;
277 if (header_size > count)
279 else if (!header_size)
280 ret = fpga_mgr_write_init(mgr, info, NULL, 0);
282 ret = fpga_mgr_write_init(mgr, info, buf, count);
285 dev_err(&mgr->dev, "Error preparing FPGA for writing\n");
286 mgr->state = FPGA_MGR_STATE_WRITE_INIT_ERR;
293 static int fpga_mgr_prepare_sg(struct fpga_manager *mgr,
294 struct fpga_image_info *info,
295 struct sg_table *sgt)
297 struct sg_mapping_iter miter;
302 /* Short path. Low level driver don't care about image header. */
303 if (!mgr->mops->initial_header_size && !mgr->mops->parse_header)
304 return fpga_mgr_write_init_buf(mgr, info, NULL, 0);
307 * First try to use miter to map the first fragment to access the
308 * header, this is the typical path.
310 ret = fpga_mgr_parse_header_sg_first(mgr, info, sgt);
311 /* If 0, header fits first fragment, call write_init on it */
313 sg_miter_start(&miter, sgt->sgl, sgt->nents, SG_MITER_FROM_SG);
314 if (sg_miter_next(&miter)) {
315 ret = fpga_mgr_write_init_buf(mgr, info, miter.addr,
317 sg_miter_stop(&miter);
320 sg_miter_stop(&miter);
322 * If -EAGAIN, more sg buffer is needed,
323 * otherwise an error has occurred.
325 } else if (ret != -EAGAIN) {
330 * Copy the fragments into temporary memory.
331 * Copying is done inside fpga_mgr_parse_header_sg().
333 buf = fpga_mgr_parse_header_sg(mgr, info, sgt, &len);
337 ret = fpga_mgr_write_init_buf(mgr, info, buf, len);
345 * fpga_mgr_buf_load_sg - load fpga from image in buffer from a scatter list
347 * @info: fpga image specific information
348 * @sgt: scatterlist table
350 * Step the low level fpga manager through the device-specific steps of getting
351 * an FPGA ready to be configured, writing the image to it, then doing whatever
352 * post-configuration steps necessary. This code assumes the caller got the
353 * mgr pointer from of_fpga_mgr_get() or fpga_mgr_get() and checked that it is
356 * This is the preferred entry point for FPGA programming, it does not require
357 * any contiguous kernel memory.
359 * Return: 0 on success, negative error code otherwise.
361 static int fpga_mgr_buf_load_sg(struct fpga_manager *mgr,
362 struct fpga_image_info *info,
363 struct sg_table *sgt)
367 ret = fpga_mgr_prepare_sg(mgr, info, sgt);
371 /* Write the FPGA image to the FPGA. */
372 mgr->state = FPGA_MGR_STATE_WRITE;
373 if (mgr->mops->write_sg) {
374 ret = fpga_mgr_write_sg(mgr, sgt);
376 size_t length, count = 0, data_size = info->data_size;
377 struct sg_mapping_iter miter;
379 sg_miter_start(&miter, sgt->sgl, sgt->nents, SG_MITER_FROM_SG);
381 if (mgr->mops->skip_header &&
382 !sg_miter_skip(&miter, info->header_size)) {
387 while (sg_miter_next(&miter)) {
389 length = min(miter.length, data_size - count);
391 length = miter.length;
393 ret = fpga_mgr_write(mgr, miter.addr, length);
398 if (data_size && count >= data_size)
401 sg_miter_stop(&miter);
406 dev_err(&mgr->dev, "Error while writing image data to FPGA\n");
407 mgr->state = FPGA_MGR_STATE_WRITE_ERR;
411 return fpga_mgr_write_complete(mgr, info);
414 static int fpga_mgr_buf_load_mapped(struct fpga_manager *mgr,
415 struct fpga_image_info *info,
416 const char *buf, size_t count)
420 ret = fpga_mgr_parse_header_mapped(mgr, info, buf, count);
424 ret = fpga_mgr_write_init_buf(mgr, info, buf, count);
428 if (mgr->mops->skip_header) {
429 buf += info->header_size;
430 count -= info->header_size;
434 count = info->data_size;
437 * Write the FPGA image to the FPGA.
439 mgr->state = FPGA_MGR_STATE_WRITE;
440 ret = fpga_mgr_write(mgr, buf, count);
442 dev_err(&mgr->dev, "Error while writing image data to FPGA\n");
443 mgr->state = FPGA_MGR_STATE_WRITE_ERR;
447 return fpga_mgr_write_complete(mgr, info);
451 * fpga_mgr_buf_load - load fpga from image in buffer
453 * @info: fpga image info
454 * @buf: buffer contain fpga image
455 * @count: byte count of buf
457 * Step the low level fpga manager through the device-specific steps of getting
458 * an FPGA ready to be configured, writing the image to it, then doing whatever
459 * post-configuration steps necessary. This code assumes the caller got the
460 * mgr pointer from of_fpga_mgr_get() and checked that it is not an error code.
462 * Return: 0 on success, negative error code otherwise.
464 static int fpga_mgr_buf_load(struct fpga_manager *mgr,
465 struct fpga_image_info *info,
466 const char *buf, size_t count)
476 * This is just a fast path if the caller has already created a
477 * contiguous kernel buffer and the driver doesn't require SG, non-SG
478 * drivers will still work on the slow path.
480 if (mgr->mops->write)
481 return fpga_mgr_buf_load_mapped(mgr, info, buf, count);
484 * Convert the linear kernel pointer into a sg_table of pages for use
487 nr_pages = DIV_ROUND_UP((unsigned long)buf + count, PAGE_SIZE) -
488 (unsigned long)buf / PAGE_SIZE;
489 pages = kmalloc_array(nr_pages, sizeof(struct page *), GFP_KERNEL);
493 p = buf - offset_in_page(buf);
494 for (index = 0; index < nr_pages; index++) {
495 if (is_vmalloc_addr(p))
496 pages[index] = vmalloc_to_page(p);
498 pages[index] = kmap_to_page((void *)p);
507 * The temporary pages list is used to code share the merging algorithm
508 * in sg_alloc_table_from_pages
510 rc = sg_alloc_table_from_pages(&sgt, pages, index, offset_in_page(buf),
516 rc = fpga_mgr_buf_load_sg(mgr, info, &sgt);
523 * fpga_mgr_firmware_load - request firmware and load to fpga
525 * @info: fpga image specific information
526 * @image_name: name of image file on the firmware search path
528 * Request an FPGA image using the firmware class, then write out to the FPGA.
529 * Update the state before each step to provide info on what step failed if
530 * there is a failure. This code assumes the caller got the mgr pointer
531 * from of_fpga_mgr_get() or fpga_mgr_get() and checked that it is not an error
534 * Return: 0 on success, negative error code otherwise.
536 static int fpga_mgr_firmware_load(struct fpga_manager *mgr,
537 struct fpga_image_info *info,
538 const char *image_name)
540 struct device *dev = &mgr->dev;
541 const struct firmware *fw;
544 dev_info(dev, "writing %s to %s\n", image_name, mgr->name);
546 mgr->state = FPGA_MGR_STATE_FIRMWARE_REQ;
548 ret = request_firmware(&fw, image_name, dev);
550 mgr->state = FPGA_MGR_STATE_FIRMWARE_REQ_ERR;
551 dev_err(dev, "Error requesting firmware %s\n", image_name);
555 ret = fpga_mgr_buf_load(mgr, info, fw->data, fw->size);
557 release_firmware(fw);
563 * fpga_mgr_load - load FPGA from scatter/gather table, buffer, or firmware
565 * @info: fpga image information.
567 * Load the FPGA from an image which is indicated in @info. If successful, the
568 * FPGA ends up in operating mode.
570 * Return: 0 on success, negative error code otherwise.
572 int fpga_mgr_load(struct fpga_manager *mgr, struct fpga_image_info *info)
574 info->header_size = mgr->mops->initial_header_size;
577 return fpga_mgr_buf_load_sg(mgr, info, info->sgt);
578 if (info->buf && info->count)
579 return fpga_mgr_buf_load(mgr, info, info->buf, info->count);
580 if (info->firmware_name)
581 return fpga_mgr_firmware_load(mgr, info, info->firmware_name);
584 EXPORT_SYMBOL_GPL(fpga_mgr_load);
586 static const char * const state_str[] = {
587 [FPGA_MGR_STATE_UNKNOWN] = "unknown",
588 [FPGA_MGR_STATE_POWER_OFF] = "power off",
589 [FPGA_MGR_STATE_POWER_UP] = "power up",
590 [FPGA_MGR_STATE_RESET] = "reset",
592 /* requesting FPGA image from firmware */
593 [FPGA_MGR_STATE_FIRMWARE_REQ] = "firmware request",
594 [FPGA_MGR_STATE_FIRMWARE_REQ_ERR] = "firmware request error",
596 /* Parse FPGA image header */
597 [FPGA_MGR_STATE_PARSE_HEADER] = "parse header",
598 [FPGA_MGR_STATE_PARSE_HEADER_ERR] = "parse header error",
600 /* Preparing FPGA to receive image */
601 [FPGA_MGR_STATE_WRITE_INIT] = "write init",
602 [FPGA_MGR_STATE_WRITE_INIT_ERR] = "write init error",
604 /* Writing image to FPGA */
605 [FPGA_MGR_STATE_WRITE] = "write",
606 [FPGA_MGR_STATE_WRITE_ERR] = "write error",
608 /* Finishing configuration after image has been written */
609 [FPGA_MGR_STATE_WRITE_COMPLETE] = "write complete",
610 [FPGA_MGR_STATE_WRITE_COMPLETE_ERR] = "write complete error",
612 /* FPGA reports to be in normal operating mode */
613 [FPGA_MGR_STATE_OPERATING] = "operating",
616 static ssize_t name_show(struct device *dev,
617 struct device_attribute *attr, char *buf)
619 struct fpga_manager *mgr = to_fpga_manager(dev);
621 return sprintf(buf, "%s\n", mgr->name);
624 static ssize_t state_show(struct device *dev,
625 struct device_attribute *attr, char *buf)
627 struct fpga_manager *mgr = to_fpga_manager(dev);
629 return sprintf(buf, "%s\n", state_str[mgr->state]);
632 static ssize_t status_show(struct device *dev,
633 struct device_attribute *attr, char *buf)
635 struct fpga_manager *mgr = to_fpga_manager(dev);
639 status = fpga_mgr_status(mgr);
641 if (status & FPGA_MGR_STATUS_OPERATION_ERR)
642 len += sprintf(buf + len, "reconfig operation error\n");
643 if (status & FPGA_MGR_STATUS_CRC_ERR)
644 len += sprintf(buf + len, "reconfig CRC error\n");
645 if (status & FPGA_MGR_STATUS_INCOMPATIBLE_IMAGE_ERR)
646 len += sprintf(buf + len, "reconfig incompatible image\n");
647 if (status & FPGA_MGR_STATUS_IP_PROTOCOL_ERR)
648 len += sprintf(buf + len, "reconfig IP protocol error\n");
649 if (status & FPGA_MGR_STATUS_FIFO_OVERFLOW_ERR)
650 len += sprintf(buf + len, "reconfig fifo overflow error\n");
655 static DEVICE_ATTR_RO(name);
656 static DEVICE_ATTR_RO(state);
657 static DEVICE_ATTR_RO(status);
659 static struct attribute *fpga_mgr_attrs[] = {
661 &dev_attr_state.attr,
662 &dev_attr_status.attr,
665 ATTRIBUTE_GROUPS(fpga_mgr);
667 static struct fpga_manager *__fpga_mgr_get(struct device *dev)
669 struct fpga_manager *mgr;
671 mgr = to_fpga_manager(dev);
673 if (!try_module_get(dev->parent->driver->owner))
680 return ERR_PTR(-ENODEV);
683 static int fpga_mgr_dev_match(struct device *dev, const void *data)
685 return dev->parent == data;
689 * fpga_mgr_get - Given a device, get a reference to an fpga mgr.
690 * @dev: parent device that fpga mgr was registered with
692 * Return: fpga manager struct or IS_ERR() condition containing error code.
694 struct fpga_manager *fpga_mgr_get(struct device *dev)
696 struct device *mgr_dev = class_find_device(fpga_mgr_class, NULL, dev,
699 return ERR_PTR(-ENODEV);
701 return __fpga_mgr_get(mgr_dev);
703 EXPORT_SYMBOL_GPL(fpga_mgr_get);
706 * of_fpga_mgr_get - Given a device node, get a reference to an fpga mgr.
710 * Return: fpga manager struct or IS_ERR() condition containing error code.
712 struct fpga_manager *of_fpga_mgr_get(struct device_node *node)
716 dev = class_find_device_by_of_node(fpga_mgr_class, node);
718 return ERR_PTR(-ENODEV);
720 return __fpga_mgr_get(dev);
722 EXPORT_SYMBOL_GPL(of_fpga_mgr_get);
725 * fpga_mgr_put - release a reference to an fpga manager
726 * @mgr: fpga manager structure
728 void fpga_mgr_put(struct fpga_manager *mgr)
730 module_put(mgr->dev.parent->driver->owner);
731 put_device(&mgr->dev);
733 EXPORT_SYMBOL_GPL(fpga_mgr_put);
736 * fpga_mgr_lock - Lock FPGA manager for exclusive use
739 * Given a pointer to FPGA Manager (from fpga_mgr_get() or
740 * of_fpga_mgr_put()) attempt to get the mutex. The user should call
741 * fpga_mgr_lock() and verify that it returns 0 before attempting to
742 * program the FPGA. Likewise, the user should call fpga_mgr_unlock
743 * when done programming the FPGA.
745 * Return: 0 for success or -EBUSY
747 int fpga_mgr_lock(struct fpga_manager *mgr)
749 if (!mutex_trylock(&mgr->ref_mutex)) {
750 dev_err(&mgr->dev, "FPGA manager is in use.\n");
756 EXPORT_SYMBOL_GPL(fpga_mgr_lock);
759 * fpga_mgr_unlock - Unlock FPGA manager after done programming
762 void fpga_mgr_unlock(struct fpga_manager *mgr)
764 mutex_unlock(&mgr->ref_mutex);
766 EXPORT_SYMBOL_GPL(fpga_mgr_unlock);
769 * fpga_mgr_register_full - create and register an FPGA Manager device
770 * @parent: fpga manager device from pdev
771 * @info: parameters for fpga manager
773 * The caller of this function is responsible for calling fpga_mgr_unregister().
774 * Using devm_fpga_mgr_register_full() instead is recommended.
776 * Return: pointer to struct fpga_manager pointer or ERR_PTR()
778 struct fpga_manager *
779 fpga_mgr_register_full(struct device *parent, const struct fpga_manager_info *info)
781 const struct fpga_manager_ops *mops = info->mops;
782 struct fpga_manager *mgr;
786 dev_err(parent, "Attempt to register without fpga_manager_ops\n");
787 return ERR_PTR(-EINVAL);
790 if (!info->name || !strlen(info->name)) {
791 dev_err(parent, "Attempt to register with no name!\n");
792 return ERR_PTR(-EINVAL);
795 mgr = kzalloc(sizeof(*mgr), GFP_KERNEL);
797 return ERR_PTR(-ENOMEM);
799 id = ida_alloc(&fpga_mgr_ida, GFP_KERNEL);
805 mutex_init(&mgr->ref_mutex);
807 mgr->name = info->name;
808 mgr->mops = info->mops;
809 mgr->priv = info->priv;
810 mgr->compat_id = info->compat_id;
812 mgr->dev.class = fpga_mgr_class;
813 mgr->dev.groups = mops->groups;
814 mgr->dev.parent = parent;
815 mgr->dev.of_node = parent->of_node;
818 ret = dev_set_name(&mgr->dev, "fpga%d", id);
823 * Initialize framework state by requesting low level driver read state
824 * from device. FPGA may be in reset mode or may have been programmed
825 * by bootloader or EEPROM.
827 mgr->state = fpga_mgr_state(mgr);
829 ret = device_register(&mgr->dev);
831 put_device(&mgr->dev);
838 ida_free(&fpga_mgr_ida, id);
844 EXPORT_SYMBOL_GPL(fpga_mgr_register_full);
847 * fpga_mgr_register - create and register an FPGA Manager device
848 * @parent: fpga manager device from pdev
849 * @name: fpga manager name
850 * @mops: pointer to structure of fpga manager ops
851 * @priv: fpga manager private data
853 * The caller of this function is responsible for calling fpga_mgr_unregister().
854 * Using devm_fpga_mgr_register() instead is recommended. This simple
855 * version of the register function should be sufficient for most users. The
856 * fpga_mgr_register_full() function is available for users that need to pass
857 * additional, optional parameters.
859 * Return: pointer to struct fpga_manager pointer or ERR_PTR()
861 struct fpga_manager *
862 fpga_mgr_register(struct device *parent, const char *name,
863 const struct fpga_manager_ops *mops, void *priv)
865 struct fpga_manager_info info = { 0 };
871 return fpga_mgr_register_full(parent, &info);
873 EXPORT_SYMBOL_GPL(fpga_mgr_register);
876 * fpga_mgr_unregister - unregister an FPGA manager
877 * @mgr: fpga manager struct
879 * This function is intended for use in an FPGA manager driver's remove function.
881 void fpga_mgr_unregister(struct fpga_manager *mgr)
883 dev_info(&mgr->dev, "%s %s\n", __func__, mgr->name);
886 * If the low level driver provides a method for putting fpga into
887 * a desired state upon unregister, do it.
889 fpga_mgr_fpga_remove(mgr);
891 device_unregister(&mgr->dev);
893 EXPORT_SYMBOL_GPL(fpga_mgr_unregister);
895 static void devm_fpga_mgr_unregister(struct device *dev, void *res)
897 struct fpga_mgr_devres *dr = res;
899 fpga_mgr_unregister(dr->mgr);
903 * devm_fpga_mgr_register_full - resource managed variant of fpga_mgr_register()
904 * @parent: fpga manager device from pdev
905 * @info: parameters for fpga manager
907 * Return: fpga manager pointer on success, negative error code otherwise.
909 * This is the devres variant of fpga_mgr_register_full() for which the unregister
910 * function will be called automatically when the managing device is detached.
912 struct fpga_manager *
913 devm_fpga_mgr_register_full(struct device *parent, const struct fpga_manager_info *info)
915 struct fpga_mgr_devres *dr;
916 struct fpga_manager *mgr;
918 dr = devres_alloc(devm_fpga_mgr_unregister, sizeof(*dr), GFP_KERNEL);
920 return ERR_PTR(-ENOMEM);
922 mgr = fpga_mgr_register_full(parent, info);
929 devres_add(parent, dr);
933 EXPORT_SYMBOL_GPL(devm_fpga_mgr_register_full);
936 * devm_fpga_mgr_register - resource managed variant of fpga_mgr_register()
937 * @parent: fpga manager device from pdev
938 * @name: fpga manager name
939 * @mops: pointer to structure of fpga manager ops
940 * @priv: fpga manager private data
942 * Return: fpga manager pointer on success, negative error code otherwise.
944 * This is the devres variant of fpga_mgr_register() for which the
945 * unregister function will be called automatically when the managing
946 * device is detached.
948 struct fpga_manager *
949 devm_fpga_mgr_register(struct device *parent, const char *name,
950 const struct fpga_manager_ops *mops, void *priv)
952 struct fpga_manager_info info = { 0 };
958 return devm_fpga_mgr_register_full(parent, &info);
960 EXPORT_SYMBOL_GPL(devm_fpga_mgr_register);
962 static void fpga_mgr_dev_release(struct device *dev)
964 struct fpga_manager *mgr = to_fpga_manager(dev);
966 ida_free(&fpga_mgr_ida, mgr->dev.id);
970 static int __init fpga_mgr_class_init(void)
972 pr_info("FPGA manager framework\n");
974 fpga_mgr_class = class_create(THIS_MODULE, "fpga_manager");
975 if (IS_ERR(fpga_mgr_class))
976 return PTR_ERR(fpga_mgr_class);
978 fpga_mgr_class->dev_groups = fpga_mgr_groups;
979 fpga_mgr_class->dev_release = fpga_mgr_dev_release;
984 static void __exit fpga_mgr_class_exit(void)
986 class_destroy(fpga_mgr_class);
987 ida_destroy(&fpga_mgr_ida);
990 MODULE_AUTHOR("Alan Tull <atull@kernel.org>");
991 MODULE_DESCRIPTION("FPGA manager framework");
992 MODULE_LICENSE("GPL v2");
994 subsys_initcall(fpga_mgr_class_init);
995 module_exit(fpga_mgr_class_exit);