4 * Copyright (C) 2013-2015 Altera Corporation
6 * With code from the mailing list:
7 * Copyright (C) 2013 Xilinx, Inc.
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms and conditions of the GNU General Public License,
11 * version 2, as published by the Free Software Foundation.
13 * This program is distributed in the hope it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 * You should have received a copy of the GNU General Public License along with
19 * this program. If not, see <http://www.gnu.org/licenses/>.
21 #include <linux/firmware.h>
22 #include <linux/fpga/fpga-mgr.h>
23 #include <linux/idr.h>
24 #include <linux/module.h>
26 #include <linux/mutex.h>
27 #include <linux/slab.h>
29 static DEFINE_IDA(fpga_mgr_ida
);
30 static struct class *fpga_mgr_class
;
33 * fpga_mgr_buf_load - load fpga from image in buffer
35 * @flags: flags setting fpga confuration modes
36 * @buf: buffer contain fpga image
37 * @count: byte count of buf
39 * Step the low level fpga manager through the device-specific steps of getting
40 * an FPGA ready to be configured, writing the image to it, then doing whatever
41 * post-configuration steps necessary. This code assumes the caller got the
42 * mgr pointer from of_fpga_mgr_get() and checked that it is not an error code.
44 * Return: 0 on success, negative error code otherwise.
46 int fpga_mgr_buf_load(struct fpga_manager
*mgr
, u32 flags
, const char *buf
,
49 struct device
*dev
= &mgr
->dev
;
53 * Call the low level driver's write_init function. This will do the
54 * device-specific things to get the FPGA into the state where it is
55 * ready to receive an FPGA image.
57 mgr
->state
= FPGA_MGR_STATE_WRITE_INIT
;
58 ret
= mgr
->mops
->write_init(mgr
, flags
, buf
, count
);
60 dev_err(dev
, "Error preparing FPGA for writing\n");
61 mgr
->state
= FPGA_MGR_STATE_WRITE_INIT_ERR
;
66 * Write the FPGA image to the FPGA.
68 mgr
->state
= FPGA_MGR_STATE_WRITE
;
69 ret
= mgr
->mops
->write(mgr
, buf
, count
);
71 dev_err(dev
, "Error while writing image data to FPGA\n");
72 mgr
->state
= FPGA_MGR_STATE_WRITE_ERR
;
77 * After all the FPGA image has been written, do the device specific
78 * steps to finish and set the FPGA into operating mode.
80 mgr
->state
= FPGA_MGR_STATE_WRITE_COMPLETE
;
81 ret
= mgr
->mops
->write_complete(mgr
, flags
);
83 dev_err(dev
, "Error after writing image data to FPGA\n");
84 mgr
->state
= FPGA_MGR_STATE_WRITE_COMPLETE_ERR
;
87 mgr
->state
= FPGA_MGR_STATE_OPERATING
;
91 EXPORT_SYMBOL_GPL(fpga_mgr_buf_load
);
94 * fpga_mgr_firmware_load - request firmware and load to fpga
96 * @flags: flags setting fpga confuration modes
97 * @image_name: name of image file on the firmware search path
99 * Request an FPGA image using the firmware class, then write out to the FPGA.
100 * Update the state before each step to provide info on what step failed if
101 * there is a failure. This code assumes the caller got the mgr pointer
102 * from of_fpga_mgr_get() and checked that it is not an error code.
104 * Return: 0 on success, negative error code otherwise.
106 int fpga_mgr_firmware_load(struct fpga_manager
*mgr
, u32 flags
,
107 const char *image_name
)
109 struct device
*dev
= &mgr
->dev
;
110 const struct firmware
*fw
;
113 dev_info(dev
, "writing %s to %s\n", image_name
, mgr
->name
);
115 mgr
->state
= FPGA_MGR_STATE_FIRMWARE_REQ
;
117 ret
= request_firmware(&fw
, image_name
, dev
);
119 mgr
->state
= FPGA_MGR_STATE_FIRMWARE_REQ_ERR
;
120 dev_err(dev
, "Error requesting firmware %s\n", image_name
);
124 ret
= fpga_mgr_buf_load(mgr
, flags
, fw
->data
, fw
->size
);
126 release_firmware(fw
);
130 EXPORT_SYMBOL_GPL(fpga_mgr_firmware_load
);
132 static const char * const state_str
[] = {
133 [FPGA_MGR_STATE_UNKNOWN
] = "unknown",
134 [FPGA_MGR_STATE_POWER_OFF
] = "power off",
135 [FPGA_MGR_STATE_POWER_UP
] = "power up",
136 [FPGA_MGR_STATE_RESET
] = "reset",
138 /* requesting FPGA image from firmware */
139 [FPGA_MGR_STATE_FIRMWARE_REQ
] = "firmware request",
140 [FPGA_MGR_STATE_FIRMWARE_REQ_ERR
] = "firmware request error",
142 /* Preparing FPGA to receive image */
143 [FPGA_MGR_STATE_WRITE_INIT
] = "write init",
144 [FPGA_MGR_STATE_WRITE_INIT_ERR
] = "write init error",
146 /* Writing image to FPGA */
147 [FPGA_MGR_STATE_WRITE
] = "write",
148 [FPGA_MGR_STATE_WRITE_ERR
] = "write error",
150 /* Finishing configuration after image has been written */
151 [FPGA_MGR_STATE_WRITE_COMPLETE
] = "write complete",
152 [FPGA_MGR_STATE_WRITE_COMPLETE_ERR
] = "write complete error",
154 /* FPGA reports to be in normal operating mode */
155 [FPGA_MGR_STATE_OPERATING
] = "operating",
158 static ssize_t
name_show(struct device
*dev
,
159 struct device_attribute
*attr
, char *buf
)
161 struct fpga_manager
*mgr
= to_fpga_manager(dev
);
163 return sprintf(buf
, "%s\n", mgr
->name
);
166 static ssize_t
state_show(struct device
*dev
,
167 struct device_attribute
*attr
, char *buf
)
169 struct fpga_manager
*mgr
= to_fpga_manager(dev
);
171 return sprintf(buf
, "%s\n", state_str
[mgr
->state
]);
174 static DEVICE_ATTR_RO(name
);
175 static DEVICE_ATTR_RO(state
);
177 static struct attribute
*fpga_mgr_attrs
[] = {
179 &dev_attr_state
.attr
,
182 ATTRIBUTE_GROUPS(fpga_mgr
);
184 static int fpga_mgr_of_node_match(struct device
*dev
, const void *data
)
186 return dev
->of_node
== data
;
190 * of_fpga_mgr_get - get an exclusive reference to a fpga mgr
193 * Given a device node, get an exclusive reference to a fpga mgr.
195 * Return: fpga manager struct or IS_ERR() condition containing error code.
197 struct fpga_manager
*of_fpga_mgr_get(struct device_node
*node
)
199 struct fpga_manager
*mgr
;
203 dev
= class_find_device(fpga_mgr_class
, NULL
, node
,
204 fpga_mgr_of_node_match
);
206 return ERR_PTR(-ENODEV
);
208 mgr
= to_fpga_manager(dev
);
212 /* Get exclusive use of fpga manager */
213 if (!mutex_trylock(&mgr
->ref_mutex
)) {
218 if (!try_module_get(dev
->parent
->driver
->owner
))
224 mutex_unlock(&mgr
->ref_mutex
);
229 EXPORT_SYMBOL_GPL(of_fpga_mgr_get
);
232 * fpga_mgr_put - release a reference to a fpga manager
233 * @mgr: fpga manager structure
235 void fpga_mgr_put(struct fpga_manager
*mgr
)
237 module_put(mgr
->dev
.parent
->driver
->owner
);
238 mutex_unlock(&mgr
->ref_mutex
);
239 put_device(&mgr
->dev
);
241 EXPORT_SYMBOL_GPL(fpga_mgr_put
);
244 * fpga_mgr_register - register a low level fpga manager driver
245 * @dev: fpga manager device from pdev
246 * @name: fpga manager name
247 * @mops: pointer to structure of fpga manager ops
248 * @priv: fpga manager private data
250 * Return: 0 on success, negative error code otherwise.
252 int fpga_mgr_register(struct device
*dev
, const char *name
,
253 const struct fpga_manager_ops
*mops
,
256 struct fpga_manager
*mgr
;
259 if (!mops
|| !mops
->write_init
|| !mops
->write
||
260 !mops
->write_complete
|| !mops
->state
) {
261 dev_err(dev
, "Attempt to register without fpga_manager_ops\n");
265 if (!name
|| !strlen(name
)) {
266 dev_err(dev
, "Attempt to register with no name!\n");
270 mgr
= kzalloc(sizeof(*mgr
), GFP_KERNEL
);
274 id
= ida_simple_get(&fpga_mgr_ida
, 0, 0, GFP_KERNEL
);
280 mutex_init(&mgr
->ref_mutex
);
287 * Initialize framework state by requesting low level driver read state
288 * from device. FPGA may be in reset mode or may have been programmed
289 * by bootloader or EEPROM.
291 mgr
->state
= mgr
->mops
->state(mgr
);
293 device_initialize(&mgr
->dev
);
294 mgr
->dev
.class = fpga_mgr_class
;
295 mgr
->dev
.parent
= dev
;
296 mgr
->dev
.of_node
= dev
->of_node
;
298 dev_set_drvdata(dev
, mgr
);
300 ret
= dev_set_name(&mgr
->dev
, "fpga%d", id
);
304 ret
= device_add(&mgr
->dev
);
308 dev_info(&mgr
->dev
, "%s registered\n", mgr
->name
);
313 ida_simple_remove(&fpga_mgr_ida
, id
);
319 EXPORT_SYMBOL_GPL(fpga_mgr_register
);
322 * fpga_mgr_unregister - unregister a low level fpga manager driver
323 * @dev: fpga manager device from pdev
325 void fpga_mgr_unregister(struct device
*dev
)
327 struct fpga_manager
*mgr
= dev_get_drvdata(dev
);
329 dev_info(&mgr
->dev
, "%s %s\n", __func__
, mgr
->name
);
332 * If the low level driver provides a method for putting fpga into
333 * a desired state upon unregister, do it.
335 if (mgr
->mops
->fpga_remove
)
336 mgr
->mops
->fpga_remove(mgr
);
338 device_unregister(&mgr
->dev
);
340 EXPORT_SYMBOL_GPL(fpga_mgr_unregister
);
342 static void fpga_mgr_dev_release(struct device
*dev
)
344 struct fpga_manager
*mgr
= to_fpga_manager(dev
);
346 ida_simple_remove(&fpga_mgr_ida
, mgr
->dev
.id
);
350 static int __init
fpga_mgr_class_init(void)
352 pr_info("FPGA manager framework\n");
354 fpga_mgr_class
= class_create(THIS_MODULE
, "fpga_manager");
355 if (IS_ERR(fpga_mgr_class
))
356 return PTR_ERR(fpga_mgr_class
);
358 fpga_mgr_class
->dev_groups
= fpga_mgr_groups
;
359 fpga_mgr_class
->dev_release
= fpga_mgr_dev_release
;
364 static void __exit
fpga_mgr_class_exit(void)
366 class_destroy(fpga_mgr_class
);
367 ida_destroy(&fpga_mgr_ida
);
370 MODULE_AUTHOR("Alan Tull <atull@opensource.altera.com>");
371 MODULE_DESCRIPTION("FPGA manager framework");
372 MODULE_LICENSE("GPL v2");
374 subsys_initcall(fpga_mgr_class_init
);
375 module_exit(fpga_mgr_class_exit
);