blob: 86b6df66a90586056e20e692953053737c66a57e [file] [log] [blame]
Alan Tulle8f5fda2015-10-07 16:36:26 +01001FPGA Manager Core
2
3Alan Tull 2015
4
5Overview
6========
7
8The FPGA manager core exports a set of functions for programming an FPGA with
9an image. The API is manufacturer agnostic. All manufacturer specifics are
10hidden away in a low level driver which registers a set of ops with the core.
11The FPGA image data itself is very manufacturer specific, but for our purposes
12it's just binary data. The FPGA manager core won't parse it.
13
Alan Tull5cf0c7f2017-11-15 14:20:12 -060014The FPGA image to be programmed can be in a scatter gather list, a single
15contiguous buffer, or a firmware file. Because allocating contiguous kernel
16memory for the buffer should be avoided, users are encouraged to use a scatter
17gather list instead if possible.
18
19The particulars for programming the image are presented in a structure (struct
20fpga_image_info). This struct contains parameters such as pointers to the
21FPGA image as well as image-specific particulars such as whether the image was
22built for full or partial reconfiguration.
Alan Tulle8f5fda2015-10-07 16:36:26 +010023
24API Functions:
25==============
26
Alan Tull5cf0c7f2017-11-15 14:20:12 -060027To program the FPGA:
28--------------------
Alan Tulle8f5fda2015-10-07 16:36:26 +010029
Alan Tull5cf0c7f2017-11-15 14:20:12 -060030 int fpga_mgr_load(struct fpga_manager *mgr,
31 struct fpga_image_info *info);
Alan Tulle8f5fda2015-10-07 16:36:26 +010032
Alan Tull5cf0c7f2017-11-15 14:20:12 -060033Load the FPGA from an image which is indicated in the info. If successful,
Alan Tull40e83572016-11-01 14:14:24 -050034the FPGA ends up in operating mode. Return 0 on success or a negative error
35code.
Alan Tulle8f5fda2015-10-07 16:36:26 +010036
Alan Tull5cf0c7f2017-11-15 14:20:12 -060037To allocate or free a struct fpga_image_info:
38---------------------------------------------
39
40 struct fpga_image_info *fpga_image_info_alloc(struct device *dev);
41
42 void fpga_image_info_free(struct fpga_image_info *info);
Alan Tulle8f5fda2015-10-07 16:36:26 +010043
44To get/put a reference to a FPGA manager:
45-----------------------------------------
46
47 struct fpga_manager *of_fpga_mgr_get(struct device_node *node);
Alan Tull9dce0282016-11-01 14:14:23 -050048 struct fpga_manager *fpga_mgr_get(struct device *dev);
Alan Tulle8f5fda2015-10-07 16:36:26 +010049 void fpga_mgr_put(struct fpga_manager *mgr);
50
Alan Tullebf877a52017-11-15 14:20:13 -060051Given a DT node or device, get a reference to a FPGA manager. This pointer
52can be saved until you are ready to program the FPGA. fpga_mgr_put releases
53the reference.
54
55
56To get exclusive control of a FPGA manager:
57-------------------------------------------
58
59 int fpga_mgr_lock(struct fpga_manager *mgr);
60 void fpga_mgr_unlock(struct fpga_manager *mgr);
61
62The user should call fpga_mgr_lock and verify that it returns 0 before
63attempting to program the FPGA. Likewise, the user should call
64fpga_mgr_unlock when done programming the FPGA.
Alan Tulle8f5fda2015-10-07 16:36:26 +010065
Alan Tull7085e2a2018-05-16 18:49:55 -050066To alloc/free a FPGA manager struct:
67------------------------------------
68
69 struct fpga_manager *fpga_mgr_create(struct device *dev,
70 const char *name,
71 const struct fpga_manager_ops *mops,
72 void *priv);
73 void fpga_mgr_free(struct fpga_manager *mgr);
Alan Tulle8f5fda2015-10-07 16:36:26 +010074
75To register or unregister the low level FPGA-specific driver:
76-------------------------------------------------------------
77
Alan Tull7085e2a2018-05-16 18:49:55 -050078 int fpga_mgr_register(struct fpga_manager *mgr);
Alan Tulle8f5fda2015-10-07 16:36:26 +010079
Alan Tull7085e2a2018-05-16 18:49:55 -050080 void fpga_mgr_unregister(struct fpga_manager *mgr);
Alan Tulle8f5fda2015-10-07 16:36:26 +010081
Alan Tull7085e2a2018-05-16 18:49:55 -050082Use of these functions is described below in "How To Support a new FPGA
Alan Tulle8f5fda2015-10-07 16:36:26 +010083device."
84
85
86How to write an image buffer to a supported FPGA
87================================================
Alan Tulle8f5fda2015-10-07 16:36:26 +010088#include <linux/fpga/fpga-mgr.h>
89
Alan Tull5cf0c7f2017-11-15 14:20:12 -060090struct fpga_manager *mgr;
91struct fpga_image_info *info;
Alan Tulle8f5fda2015-10-07 16:36:26 +010092int ret;
93
Alan Tullebf877a52017-11-15 14:20:13 -060094/*
95 * Get a reference to FPGA manager. The manager is not locked, so you can
96 * hold onto this reference without it preventing programming.
97 *
98 * This example uses the device node of the manager. Alternatively, use
99 * fpga_mgr_get(dev) instead if you have the device.
100 */
101mgr = of_fpga_mgr_get(mgr_node);
102
Alan Tull5cf0c7f2017-11-15 14:20:12 -0600103/* struct with information about the FPGA image to program. */
104info = fpga_image_info_alloc(dev);
105
106/* flags indicates whether to do full or partial reconfiguration */
107info->flags = FPGA_MGR_PARTIAL_RECONFIG;
108
109/*
110 * At this point, indicate where the image is. This is pseudo-code; you're
111 * going to use one of these three.
112 */
113if (image is in a scatter gather table) {
114
115 info->sgt = [your scatter gather table]
116
117} else if (image is in a buffer) {
118
119 info->buf = [your image buffer]
120 info->count = [image buffer size]
121
122} else if (image is in a firmware file) {
123
124 info->firmware_name = devm_kstrdup(dev, firmware_name, GFP_KERNEL);
125
126}
127
Alan Tullebf877a52017-11-15 14:20:13 -0600128/* Get exclusive control of FPGA manager */
129ret = fpga_mgr_lock(mgr);
Alan Tulle8f5fda2015-10-07 16:36:26 +0100130
131/* Load the buffer to the FPGA */
Alan Tull40e83572016-11-01 14:14:24 -0500132ret = fpga_mgr_buf_load(mgr, &info, buf, count);
Alan Tulle8f5fda2015-10-07 16:36:26 +0100133
134/* Release the FPGA manager */
Alan Tullebf877a52017-11-15 14:20:13 -0600135fpga_mgr_unlock(mgr);
Alan Tulle8f5fda2015-10-07 16:36:26 +0100136fpga_mgr_put(mgr);
137
Alan Tull5cf0c7f2017-11-15 14:20:12 -0600138/* Deallocate the image info if you're done with it */
139fpga_image_info_free(info);
Alan Tulle8f5fda2015-10-07 16:36:26 +0100140
141How to support a new FPGA device
142================================
143To add another FPGA manager, write a driver that implements a set of ops. The
144probe function calls fpga_mgr_register(), such as:
145
146static const struct fpga_manager_ops socfpga_fpga_ops = {
147 .write_init = socfpga_fpga_ops_configure_init,
148 .write = socfpga_fpga_ops_configure_write,
149 .write_complete = socfpga_fpga_ops_configure_complete,
150 .state = socfpga_fpga_ops_state,
151};
152
153static int socfpga_fpga_probe(struct platform_device *pdev)
154{
155 struct device *dev = &pdev->dev;
156 struct socfpga_fpga_priv *priv;
Alan Tull7085e2a2018-05-16 18:49:55 -0500157 struct fpga_manager *mgr;
Alan Tulle8f5fda2015-10-07 16:36:26 +0100158 int ret;
159
160 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
161 if (!priv)
162 return -ENOMEM;
163
164 /* ... do ioremaps, get interrupts, etc. and save
165 them in priv... */
166
Alan Tull7085e2a2018-05-16 18:49:55 -0500167 mgr = fpga_mgr_create(dev, "Altera SOCFPGA FPGA Manager",
168 &socfpga_fpga_ops, priv);
169 if (!mgr)
170 return -ENOMEM;
171
172 platform_set_drvdata(pdev, mgr);
173
174 ret = fpga_mgr_register(mgr);
175 if (ret)
176 fpga_mgr_free(mgr);
177
178 return ret;
Alan Tulle8f5fda2015-10-07 16:36:26 +0100179}
180
181static int socfpga_fpga_remove(struct platform_device *pdev)
182{
Alan Tull7085e2a2018-05-16 18:49:55 -0500183 struct fpga_manager *mgr = platform_get_drvdata(pdev);
184
185 fpga_mgr_unregister(mgr);
Alan Tulle8f5fda2015-10-07 16:36:26 +0100186
187 return 0;
188}
189
190
191The ops will implement whatever device specific register writes are needed to
192do the programming sequence for this particular FPGA. These ops return 0 for
193success or negative error codes otherwise.
194
195The programming sequence is:
196 1. .write_init
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700197 2. .write or .write_sg (may be called once or multiple times)
Alan Tulle8f5fda2015-10-07 16:36:26 +0100198 3. .write_complete
199
Jason Gunthorpe1d7f1582016-11-22 18:22:09 +0000200The .write_init function will prepare the FPGA to receive the image data. The
201buffer passed into .write_init will be atmost .initial_header_size bytes long,
202if the whole bitstream is not immediately available then the core code will
203buffer up at least this much before starting.
Alan Tulle8f5fda2015-10-07 16:36:26 +0100204
205The .write function writes a buffer to the FPGA. The buffer may be contain the
206whole FPGA image or may be a smaller chunk of an FPGA image. In the latter
Jason Gunthorpebaa6d392017-02-01 12:48:44 -0700207case, this function is called multiple times for successive chunks. This interface
208is suitable for drivers which use PIO.
209
210The .write_sg version behaves the same as .write except the input is a sg_table
211scatter list. This interface is suitable for drivers which use DMA.
Alan Tulle8f5fda2015-10-07 16:36:26 +0100212
213The .write_complete function is called after all the image has been written
214to put the FPGA into operating mode.
215
216The ops include a .state function which will read the hardware FPGA manager and
217return a code of type enum fpga_mgr_states. It doesn't result in a change in
218hardware state.