summaryrefslogtreecommitdiffstats
path: root/Documentation/fpga/fpga-region.txt
blob: 139a02ba1ff692c4b0a2ae5e885096d959610cb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
FPGA Regions

Alan Tull 2017

CONTENTS
 - Introduction
 - The FPGA region API
 - Usage example

Introduction
============

This document is meant to be an brief overview of the FPGA region API usage.  A
more conceptual look at regions can be found in [1].

For the purposes of this API document, let's just say that a region associates
an FPGA Manager and a bridge (or bridges) with a reprogrammable region of an
FPGA or the whole FPGA.  The API provides a way to register a region and to
program a region.

Currently the only layer above fpga-region.c in the kernel is the Device Tree
support (of-fpga-region.c) described in [1].  The DT support layer uses regions
to program the FPGA and then DT to handle enumeration.  The common region code
is intended to be used by other schemes that have other ways of accomplishing
enumeration after programming.

An fpga-region can be set up to know the following things:
* which FPGA manager to use to do the programming
* which bridges to disable before programming and enable afterwards.

Additional info needed to program the FPGA image is passed in the struct
fpga_image_info [2] including:
* pointers to the image as either a scatter-gather buffer, a contiguous
  buffer, or the name of firmware file
* flags indicating specifics such as whether the image if for partial
  reconfiguration.

===================
The FPGA region API
===================

To register or unregister a region:
-----------------------------------

	int fpga_region_register(struct device *dev,
				 struct fpga_region *region);
	int fpga_region_unregister(struct fpga_region *region);

An example of usage can be seen in the probe function of [3]

To program an FPGA:
-------------------
	int fpga_region_program_fpga(struct fpga_region *region);

This function operates on info passed in the fpga_image_info
(region->info).

This function will attempt to:
 * lock the region's mutex
 * lock the region's FPGA manager
 * build a list of FPGA bridges if a method has been specified to do so
 * disable the bridges
 * program the FPGA
 * re-enable the bridges
 * release the locks

=============
Usage example
=============

First, allocate the info struct:

	info = fpga_image_info_alloc(dev);
	if (!info)
		return -ENOMEM;

Set flags as needed, i.e.

	info->flags |= FPGA_MGR_PARTIAL_RECONFIG;

Point to your FPGA image, such as:

	info->sgt = &sgt;

Add info to region and do the programming:

	region->info = info;
	ret = fpga_region_program_fpga(region);

Then enumerate whatever hardware has appeared in the FPGA.

--
[1] ../devicetree/bindings/fpga/fpga-region.txt
[2] ./fpga-mgr.txt
[3] ../../drivers/fpga/of-fpga-region.c