~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/driver-api/fpga/fpga-mgr.rst

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /Documentation/driver-api/fpga/fpga-mgr.rst (Version linux-6.12-rc7) and /Documentation/driver-api/fpga/fpga-mgr.rst (Version linux-6.7.12)


  1 FPGA Manager                                        1 FPGA Manager
  2 ============                                        2 ============
  3                                                     3 
  4 Overview                                            4 Overview
  5 --------                                            5 --------
  6                                                     6 
  7 The FPGA manager core exports a set of functio      7 The FPGA manager core exports a set of functions for programming an FPGA with
  8 an image.  The API is manufacturer agnostic.        8 an image.  The API is manufacturer agnostic.  All manufacturer specifics are
  9 hidden away in a low level driver which regist      9 hidden away in a low level driver which registers a set of ops with the core.
 10 The FPGA image data itself is very manufacture     10 The FPGA image data itself is very manufacturer specific, but for our purposes
 11 it's just binary data.  The FPGA manager core      11 it's just binary data.  The FPGA manager core won't parse it.
 12                                                    12 
 13 The FPGA image to be programmed can be in a sc     13 The FPGA image to be programmed can be in a scatter gather list, a single
 14 contiguous buffer, or a firmware file.  Becaus     14 contiguous buffer, or a firmware file.  Because allocating contiguous kernel
 15 memory for the buffer should be avoided, users     15 memory for the buffer should be avoided, users are encouraged to use a scatter
 16 gather list instead if possible.                   16 gather list instead if possible.
 17                                                    17 
 18 The particulars for programming the image are      18 The particulars for programming the image are presented in a structure (struct
 19 fpga_image_info).  This struct contains parame     19 fpga_image_info).  This struct contains parameters such as pointers to the
 20 FPGA image as well as image-specific particula     20 FPGA image as well as image-specific particulars such as whether the image was
 21 built for full or partial reconfiguration.         21 built for full or partial reconfiguration.
 22                                                    22 
 23 How to support a new FPGA device                   23 How to support a new FPGA device
 24 --------------------------------                   24 --------------------------------
 25                                                    25 
 26 To add another FPGA manager, write a driver th     26 To add another FPGA manager, write a driver that implements a set of ops.  The
 27 probe function calls ``fpga_mgr_register()`` o !!  27 probe function calls fpga_mgr_register() or fpga_mgr_register_full(), such as::
 28 such as::                                      << 
 29                                                    28 
 30         static const struct fpga_manager_ops s     29         static const struct fpga_manager_ops socfpga_fpga_ops = {
 31                 .write_init = socfpga_fpga_ops     30                 .write_init = socfpga_fpga_ops_configure_init,
 32                 .write = socfpga_fpga_ops_conf     31                 .write = socfpga_fpga_ops_configure_write,
 33                 .write_complete = socfpga_fpga     32                 .write_complete = socfpga_fpga_ops_configure_complete,
 34                 .state = socfpga_fpga_ops_stat     33                 .state = socfpga_fpga_ops_state,
 35         };                                         34         };
 36                                                    35 
 37         static int socfpga_fpga_probe(struct p     36         static int socfpga_fpga_probe(struct platform_device *pdev)
 38         {                                          37         {
 39                 struct device *dev = &pdev->de     38                 struct device *dev = &pdev->dev;
 40                 struct socfpga_fpga_priv *priv     39                 struct socfpga_fpga_priv *priv;
 41                 struct fpga_manager *mgr;          40                 struct fpga_manager *mgr;
 42                 int ret;                           41                 int ret;
 43                                                    42 
 44                 priv = devm_kzalloc(dev, sizeo     43                 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
 45                 if (!priv)                         44                 if (!priv)
 46                         return -ENOMEM;            45                         return -ENOMEM;
 47                                                    46 
 48                 /*                                 47                 /*
 49                  * do ioremaps, get interrupts     48                  * do ioremaps, get interrupts, etc. and save
 50                  * them in priv                    49                  * them in priv
 51                  */                                50                  */
 52                                                    51 
 53                 mgr = fpga_mgr_register(dev, "     52                 mgr = fpga_mgr_register(dev, "Altera SOCFPGA FPGA Manager",
 54                                         &socfp     53                                         &socfpga_fpga_ops, priv);
 55                 if (IS_ERR(mgr))                   54                 if (IS_ERR(mgr))
 56                         return PTR_ERR(mgr);       55                         return PTR_ERR(mgr);
 57                                                    56 
 58                 platform_set_drvdata(pdev, mgr     57                 platform_set_drvdata(pdev, mgr);
 59                                                    58 
 60                 return 0;                          59                 return 0;
 61         }                                          60         }
 62                                                    61 
 63         static int socfpga_fpga_remove(struct      62         static int socfpga_fpga_remove(struct platform_device *pdev)
 64         {                                          63         {
 65                 struct fpga_manager *mgr = pla     64                 struct fpga_manager *mgr = platform_get_drvdata(pdev);
 66                                                    65 
 67                 fpga_mgr_unregister(mgr);          66                 fpga_mgr_unregister(mgr);
 68                                                    67 
 69                 return 0;                          68                 return 0;
 70         }                                          69         }
 71                                                    70 
 72 Alternatively, the probe function could call o     71 Alternatively, the probe function could call one of the resource managed
 73 register functions, ``devm_fpga_mgr_register() !!  72 register functions, devm_fpga_mgr_register() or devm_fpga_mgr_register_full().
 74 ``devm_fpga_mgr_register_full()``.  When these !!  73 When these functions are used, the parameter syntax is the same, but the call
 75 parameter syntax is the same, but the call to  !!  74 to fpga_mgr_unregister() should be removed. In the above example, the
 76 removed. In the above example, the ``socfpga_f !!  75 socfpga_fpga_remove() function would not be required.
 77 required.                                      << 
 78                                                    76 
 79 The ops will implement whatever device specifi     77 The ops will implement whatever device specific register writes are needed to
 80 do the programming sequence for this particula     78 do the programming sequence for this particular FPGA.  These ops return 0 for
 81 success or negative error codes otherwise.         79 success or negative error codes otherwise.
 82                                                    80 
 83 The programming sequence is::                      81 The programming sequence is::
 84  1. .parse_header (optional, may be called onc     82  1. .parse_header (optional, may be called once or multiple times)
 85  2. .write_init                                    83  2. .write_init
 86  3. .write or .write_sg (may be called once or     84  3. .write or .write_sg (may be called once or multiple times)
 87  4. .write_complete                                85  4. .write_complete
 88                                                    86 
 89 The .parse_header function will set header_siz     87 The .parse_header function will set header_size and data_size to
 90 struct fpga_image_info. Before parse_header ca     88 struct fpga_image_info. Before parse_header call, header_size is initialized
 91 with initial_header_size. If flag skip_header      89 with initial_header_size. If flag skip_header of fpga_manager_ops is true,
 92 .write function will get image buffer starting     90 .write function will get image buffer starting at header_size offset from the
 93 beginning. If data_size is set, .write functio     91 beginning. If data_size is set, .write function will get data_size bytes of
 94 the image buffer, otherwise .write will get da     92 the image buffer, otherwise .write will get data up to the end of image buffer.
 95 This will not affect .write_sg, .write_sg will     93 This will not affect .write_sg, .write_sg will still get whole image in
 96 sg_table form. If FPGA image is already mapped     94 sg_table form. If FPGA image is already mapped as a single contiguous buffer,
 97 whole buffer will be passed into .parse_header     95 whole buffer will be passed into .parse_header. If image is in scatter-gather
 98 form, core code will buffer up at least .initi     96 form, core code will buffer up at least .initial_header_size before the first
 99 call of .parse_header, if it is not enough, .p     97 call of .parse_header, if it is not enough, .parse_header should set desired
100 size into info->header_size and return -EAGAIN     98 size into info->header_size and return -EAGAIN, then it will be called again
101 with greater part of image buffer on the input     99 with greater part of image buffer on the input.
102                                                   100 
103 The .write_init function will prepare the FPGA    101 The .write_init function will prepare the FPGA to receive the image data. The
104 buffer passed into .write_init will be at leas    102 buffer passed into .write_init will be at least info->header_size bytes long;
105 if the whole bitstream is not immediately avai    103 if the whole bitstream is not immediately available then the core code will
106 buffer up at least this much before starting.     104 buffer up at least this much before starting.
107                                                   105 
108 The .write function writes a buffer to the FPG    106 The .write function writes a buffer to the FPGA. The buffer may be contain the
109 whole FPGA image or may be a smaller chunk of     107 whole FPGA image or may be a smaller chunk of an FPGA image.  In the latter
110 case, this function is called multiple times f    108 case, this function is called multiple times for successive chunks. This interface
111 is suitable for drivers which use PIO.            109 is suitable for drivers which use PIO.
112                                                   110 
113 The .write_sg version behaves the same as .wri    111 The .write_sg version behaves the same as .write except the input is a sg_table
114 scatter list. This interface is suitable for d    112 scatter list. This interface is suitable for drivers which use DMA.
115                                                   113 
116 The .write_complete function is called after a    114 The .write_complete function is called after all the image has been written
117 to put the FPGA into operating mode.              115 to put the FPGA into operating mode.
118                                                   116 
119 The ops include a .state function which will d    117 The ops include a .state function which will determine the state the FPGA is in
120 and return a code of type enum fpga_mgr_states    118 and return a code of type enum fpga_mgr_states.  It doesn't result in a change
121 in state.                                         119 in state.
122                                                   120 
123 API for implementing a new FPGA Manager driver    121 API for implementing a new FPGA Manager driver
124 ----------------------------------------------    122 ----------------------------------------------
125                                                   123 
126 * ``fpga_mgr_states`` -  Values for :c:expr:`f    124 * ``fpga_mgr_states`` -  Values for :c:expr:`fpga_manager->state`.
127 * struct fpga_manager -  the FPGA manager stru    125 * struct fpga_manager -  the FPGA manager struct
128 * struct fpga_manager_ops -  Low level FPGA ma    126 * struct fpga_manager_ops -  Low level FPGA manager driver ops
129 * struct fpga_manager_info -  Parameter struct    127 * struct fpga_manager_info -  Parameter structure for fpga_mgr_register_full()
130 * __fpga_mgr_register_full() -  Create and reg !! 128 * fpga_mgr_register_full() -  Create and register an FPGA manager using the
131   fpga_mgr_info structure to provide the full     129   fpga_mgr_info structure to provide the full flexibility of options
132 * __fpga_mgr_register() -  Create and register !! 130 * fpga_mgr_register() -  Create and register an FPGA manager using standard
133   arguments                                       131   arguments
134 * __devm_fpga_mgr_register_full() -  Resource  !! 132 * devm_fpga_mgr_register_full() -  Resource managed version of
135   __fpga_mgr_register_full()                   !! 133   fpga_mgr_register_full()
136 * __devm_fpga_mgr_register() -  Resource manag !! 134 * devm_fpga_mgr_register() -  Resource managed version of fpga_mgr_register()
137 * fpga_mgr_unregister() -  Unregister an FPGA     135 * fpga_mgr_unregister() -  Unregister an FPGA manager
138                                                   136 
139 Helper macros ``fpga_mgr_register_full()``, `` << 
140 ``devm_fpga_mgr_register_full()``, and ``devm_ << 
141 to ease the registration.                      << 
142                                                << 
143 .. kernel-doc:: include/linux/fpga/fpga-mgr.h     137 .. kernel-doc:: include/linux/fpga/fpga-mgr.h
144    :functions: fpga_mgr_states                    138    :functions: fpga_mgr_states
145                                                   139 
146 .. kernel-doc:: include/linux/fpga/fpga-mgr.h     140 .. kernel-doc:: include/linux/fpga/fpga-mgr.h
147    :functions: fpga_manager                       141    :functions: fpga_manager
148                                                   142 
149 .. kernel-doc:: include/linux/fpga/fpga-mgr.h     143 .. kernel-doc:: include/linux/fpga/fpga-mgr.h
150    :functions: fpga_manager_ops                   144    :functions: fpga_manager_ops
151                                                   145 
152 .. kernel-doc:: include/linux/fpga/fpga-mgr.h     146 .. kernel-doc:: include/linux/fpga/fpga-mgr.h
153    :functions: fpga_manager_info                  147    :functions: fpga_manager_info
154                                                   148 
155 .. kernel-doc:: drivers/fpga/fpga-mgr.c           149 .. kernel-doc:: drivers/fpga/fpga-mgr.c
156    :functions: __fpga_mgr_register_full        !! 150    :functions: fpga_mgr_register_full
157                                                   151 
158 .. kernel-doc:: drivers/fpga/fpga-mgr.c           152 .. kernel-doc:: drivers/fpga/fpga-mgr.c
159    :functions: __fpga_mgr_register             !! 153    :functions: fpga_mgr_register
160                                                   154 
161 .. kernel-doc:: drivers/fpga/fpga-mgr.c           155 .. kernel-doc:: drivers/fpga/fpga-mgr.c
162    :functions: __devm_fpga_mgr_register_full   !! 156    :functions: devm_fpga_mgr_register_full
163                                                   157 
164 .. kernel-doc:: drivers/fpga/fpga-mgr.c           158 .. kernel-doc:: drivers/fpga/fpga-mgr.c
165    :functions: __devm_fpga_mgr_register        !! 159    :functions: devm_fpga_mgr_register
166                                                   160 
167 .. kernel-doc:: drivers/fpga/fpga-mgr.c           161 .. kernel-doc:: drivers/fpga/fpga-mgr.c
168    :functions: fpga_mgr_unregister                162    :functions: fpga_mgr_unregister
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php