1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2019 Xilinx, Inc.
6 #include <linux/dma-mapping.h>
7 #include <linux/fpga/fpga-mgr.h>
9 #include <linux/kernel.h>
10 #include <linux/module.h>
11 #include <linux/of_address.h>
12 #include <linux/string.h>
13 #include <linux/firmware/xlnx-zynqmp.h>
15 /* Constant Definitions */
16 #define IXR_FPGA_DONE_MASK BIT(3)
19 * struct zynqmp_fpga_priv - Private data structure
20 * @dev: Device data structure
21 * @flags: flags which is used to identify the bitfile type
23 struct zynqmp_fpga_priv
{
28 static int zynqmp_fpga_ops_write_init(struct fpga_manager
*mgr
,
29 struct fpga_image_info
*info
,
30 const char *buf
, size_t size
)
32 struct zynqmp_fpga_priv
*priv
;
35 priv
->flags
= info
->flags
;
40 static int zynqmp_fpga_ops_write(struct fpga_manager
*mgr
,
41 const char *buf
, size_t size
)
43 struct zynqmp_fpga_priv
*priv
;
51 kbuf
= dma_alloc_coherent(priv
->dev
, size
, &dma_addr
, GFP_KERNEL
);
55 memcpy(kbuf
, buf
, size
);
57 wmb(); /* ensure all writes are done before initiate FW call */
59 if (priv
->flags
& FPGA_MGR_PARTIAL_RECONFIG
)
60 eemi_flags
|= XILINX_ZYNQMP_PM_FPGA_PARTIAL
;
62 ret
= zynqmp_pm_fpga_load(dma_addr
, size
, eemi_flags
);
64 dma_free_coherent(priv
->dev
, size
, kbuf
, dma_addr
);
69 static int zynqmp_fpga_ops_write_complete(struct fpga_manager
*mgr
,
70 struct fpga_image_info
*info
)
75 static enum fpga_mgr_states
zynqmp_fpga_ops_state(struct fpga_manager
*mgr
)
79 zynqmp_pm_fpga_get_status(&status
);
80 if (status
& IXR_FPGA_DONE_MASK
)
81 return FPGA_MGR_STATE_OPERATING
;
83 return FPGA_MGR_STATE_UNKNOWN
;
86 static const struct fpga_manager_ops zynqmp_fpga_ops
= {
87 .state
= zynqmp_fpga_ops_state
,
88 .write_init
= zynqmp_fpga_ops_write_init
,
89 .write
= zynqmp_fpga_ops_write
,
90 .write_complete
= zynqmp_fpga_ops_write_complete
,
93 static int zynqmp_fpga_probe(struct platform_device
*pdev
)
95 struct device
*dev
= &pdev
->dev
;
96 struct zynqmp_fpga_priv
*priv
;
97 struct fpga_manager
*mgr
;
99 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
105 mgr
= devm_fpga_mgr_create(dev
, "Xilinx ZynqMP FPGA Manager",
106 &zynqmp_fpga_ops
, priv
);
110 return devm_fpga_mgr_register(dev
, mgr
);
113 static const struct of_device_id zynqmp_fpga_of_match
[] = {
114 { .compatible
= "xlnx,zynqmp-pcap-fpga", },
118 MODULE_DEVICE_TABLE(of
, zynqmp_fpga_of_match
);
120 static struct platform_driver zynqmp_fpga_driver
= {
121 .probe
= zynqmp_fpga_probe
,
123 .name
= "zynqmp_fpga_manager",
124 .of_match_table
= of_match_ptr(zynqmp_fpga_of_match
),
128 module_platform_driver(zynqmp_fpga_driver
);
130 MODULE_AUTHOR("Nava kishore Manne <navam@xilinx.com>");
131 MODULE_DESCRIPTION("Xilinx ZynqMp FPGA Manager");
132 MODULE_LICENSE("GPL");