Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1695056
| From | Alan Tull <atull@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [RFC 4/5] fpga-region: new function fpga_region_free |
| Date | 2017-07-24 22:00 +0200 |
| Message-ID | <u6RGi-12s-21@gated-at.bofh.it> (permalink) |
| References | <u6RwD-Yz-15@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Add FPGA region API function fpga_region_free() that
undoes some of what fpga_region_program_fpga() does
to free up a region to be reprogrammed.
Signed-off-by: Alan Tull <atull@kernel.org>
---
drivers/fpga/fpga-region.c | 20 ++++++++++++++++++++
drivers/fpga/of-fpga-region.c | 5 +----
include/linux/fpga/fpga-region.h | 2 ++
3 files changed, 23 insertions(+), 4 deletions(-)
diff --git a/drivers/fpga/fpga-region.c b/drivers/fpga/fpga-region.c
index afc6188..944d24a 100644
--- a/drivers/fpga/fpga-region.c
+++ b/drivers/fpga/fpga-region.c
@@ -162,6 +162,26 @@ int fpga_region_program_fpga(struct fpga_region *region)
}
EXPORT_SYMBOL_GPL(fpga_region_program_fpga);
+/**
+ * fpga_region_free
+ * Undo some of what fpga_region_program_fpga() did to free up
+ * region to be reprogrammed.
+ * @region: FPGA region
+ */
+void fpga_region_free(struct fpga_region *region)
+{
+ if (!region->info)
+ return;
+
+ fpga_bridges_disable(®ion->bridge_list);
+ if (region->get_bridges)
+ fpga_bridges_put(®ion->bridge_list);
+
+ fpga_image_info_free(region->info);
+ region->info = NULL;
+}
+EXPORT_SYMBOL_GPL(fpga_region_free);
+
int fpga_region_register(struct device *dev, struct fpga_region *region)
{
int id, ret = 0;
diff --git a/drivers/fpga/of-fpga-region.c b/drivers/fpga/of-fpga-region.c
index 6bb5799..019ca37 100644
--- a/drivers/fpga/of-fpga-region.c
+++ b/drivers/fpga/of-fpga-region.c
@@ -333,10 +333,7 @@ static int of_fpga_region_notify_pre_apply(struct fpga_region *region,
static void of_fpga_region_notify_post_remove(struct fpga_region *region,
struct of_overlay_notify_data *nd)
{
- fpga_bridges_disable(®ion->bridge_list);
- fpga_bridges_put(®ion->bridge_list);
- fpga_image_info_free(region->info);
- region->info = NULL;
+ fpga_region_free(region);
}
/**
diff --git a/include/linux/fpga/fpga-region.h b/include/linux/fpga/fpga-region.h
index f2eecdd..3b6f0b0 100644
--- a/include/linux/fpga/fpga-region.h
+++ b/include/linux/fpga/fpga-region.h
@@ -32,6 +32,8 @@ struct fpga_region *fpga_region_class_find(
int (*match)(struct device *, const void *));
int fpga_region_program_fpga(struct fpga_region *region);
+void fpga_region_free(struct fpga_region *region);
+
int fpga_region_register(struct device *dev, struct fpga_region *region);
int fpga_region_unregister(struct fpga_region *region);
--
2.7.4
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[RFC 0/5] Open source FPGA image header Alan Tull <atull@kernel.org> - 2017-07-24 21:50 +0200 [RFC 3/5] fpga: add dev to fpga_image_info Alan Tull <atull@kernel.org> - 2017-07-24 22:00 +0200 [RFC 2/5] doc: fpga: add sysfs document for fpga region Alan Tull <atull@kernel.org> - 2017-07-24 22:00 +0200 [RFC 4/5] fpga-region: new function fpga_region_free Alan Tull <atull@kernel.org> - 2017-07-24 22:00 +0200
csiph-web