blob: 125743c9797ffbaad12ed7fb8e2fcc4ce5f589b8 [file] [log] [blame]
Nava kishore Mannec09f7472019-04-15 12:47:48 +05301// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2019 Xilinx, Inc.
4 */
5
6#include <linux/dma-mapping.h>
7#include <linux/fpga/fpga-mgr.h>
8#include <linux/io.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>
14
15/* Constant Definitions */
16#define IXR_FPGA_DONE_MASK BIT(3)
17
18/**
19 * struct zynqmp_fpga_priv - Private data structure
20 * @dev: Device data structure
21 * @flags: flags which is used to identify the bitfile type
22 */
23struct zynqmp_fpga_priv {
24 struct device *dev;
25 u32 flags;
26};
27
28static int zynqmp_fpga_ops_write_init(struct fpga_manager *mgr,
29 struct fpga_image_info *info,
30 const char *buf, size_t size)
31{
32 struct zynqmp_fpga_priv *priv;
33
34 priv = mgr->priv;
35 priv->flags = info->flags;
36
37 return 0;
38}
39
40static int zynqmp_fpga_ops_write(struct fpga_manager *mgr,
41 const char *buf, size_t size)
42{
Nava kishore Mannec09f7472019-04-15 12:47:48 +053043 struct zynqmp_fpga_priv *priv;
44 dma_addr_t dma_addr;
45 u32 eemi_flags = 0;
46 char *kbuf;
47 int ret;
48
Nava kishore Mannec09f7472019-04-15 12:47:48 +053049 priv = mgr->priv;
50
51 kbuf = dma_alloc_coherent(priv->dev, size, &dma_addr, GFP_KERNEL);
52 if (!kbuf)
53 return -ENOMEM;
54
55 memcpy(kbuf, buf, size);
56
57 wmb(); /* ensure all writes are done before initiate FW call */
58
59 if (priv->flags & FPGA_MGR_PARTIAL_RECONFIG)
60 eemi_flags |= XILINX_ZYNQMP_PM_FPGA_PARTIAL;
61
Rajan Vaja4db81802020-04-24 13:58:02 -070062 ret = zynqmp_pm_fpga_load(dma_addr, size, eemi_flags);
Nava kishore Mannec09f7472019-04-15 12:47:48 +053063
64 dma_free_coherent(priv->dev, size, kbuf, dma_addr);
65
66 return ret;
67}
68
69static int zynqmp_fpga_ops_write_complete(struct fpga_manager *mgr,
70 struct fpga_image_info *info)
71{
72 return 0;
73}
74
75static enum fpga_mgr_states zynqmp_fpga_ops_state(struct fpga_manager *mgr)
76{
Rajan Vaja4db81802020-04-24 13:58:02 -070077 u32 status = 0;
Nava kishore Mannec09f7472019-04-15 12:47:48 +053078
Rajan Vaja4db81802020-04-24 13:58:02 -070079 zynqmp_pm_fpga_get_status(&status);
Nava kishore Mannec09f7472019-04-15 12:47:48 +053080 if (status & IXR_FPGA_DONE_MASK)
81 return FPGA_MGR_STATE_OPERATING;
82
83 return FPGA_MGR_STATE_UNKNOWN;
84}
85
86static 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,
91};
92
93static int zynqmp_fpga_probe(struct platform_device *pdev)
94{
95 struct device *dev = &pdev->dev;
96 struct zynqmp_fpga_priv *priv;
97 struct fpga_manager *mgr;
Nava kishore Mannec09f7472019-04-15 12:47:48 +053098
99 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
100 if (!priv)
101 return -ENOMEM;
102
103 priv->dev = dev;
104
105 mgr = devm_fpga_mgr_create(dev, "Xilinx ZynqMP FPGA Manager",
106 &zynqmp_fpga_ops, priv);
107 if (!mgr)
108 return -ENOMEM;
109
Moritz Fischer2630fa82020-11-15 11:51:26 -0800110 return devm_fpga_mgr_register(dev, mgr);
Nava kishore Mannec09f7472019-04-15 12:47:48 +0530111}
112
113static const struct of_device_id zynqmp_fpga_of_match[] = {
114 { .compatible = "xlnx,zynqmp-pcap-fpga", },
115 {},
116};
117
118MODULE_DEVICE_TABLE(of, zynqmp_fpga_of_match);
119
120static struct platform_driver zynqmp_fpga_driver = {
121 .probe = zynqmp_fpga_probe,
Nava kishore Mannec09f7472019-04-15 12:47:48 +0530122 .driver = {
123 .name = "zynqmp_fpga_manager",
124 .of_match_table = of_match_ptr(zynqmp_fpga_of_match),
125 },
126};
127
128module_platform_driver(zynqmp_fpga_driver);
129
130MODULE_AUTHOR("Nava kishore Manne <navam@xilinx.com>");
131MODULE_DESCRIPTION("Xilinx ZynqMp FPGA Manager");
132MODULE_LICENSE("GPL");