xref: /openbmc/linux/include/linux/fpga/fpga-mgr.h (revision 571d78bd)
1473f01f7SAlan Tull /* SPDX-License-Identifier: GPL-2.0 */
26a8c3be7SAlan Tull /*
36a8c3be7SAlan Tull  * FPGA Framework
46a8c3be7SAlan Tull  *
55cf0c7f6SAlan Tull  *  Copyright (C) 2013-2016 Altera Corporation
65cf0c7f6SAlan Tull  *  Copyright (C) 2017 Intel Corporation
76a8c3be7SAlan Tull  */
86a8c3be7SAlan Tull #ifndef _LINUX_FPGA_MGR_H
96a8c3be7SAlan Tull #define _LINUX_FPGA_MGR_H
106a8c3be7SAlan Tull 
115cf0c7f6SAlan Tull #include <linux/mutex.h>
125cf0c7f6SAlan Tull #include <linux/platform_device.h>
135cf0c7f6SAlan Tull 
146a8c3be7SAlan Tull struct fpga_manager;
15baa6d396SJason Gunthorpe struct sg_table;
166a8c3be7SAlan Tull 
176a8c3be7SAlan Tull /**
186a8c3be7SAlan Tull  * enum fpga_mgr_states - fpga framework states
196a8c3be7SAlan Tull  * @FPGA_MGR_STATE_UNKNOWN: can't determine state
206a8c3be7SAlan Tull  * @FPGA_MGR_STATE_POWER_OFF: FPGA power is off
216a8c3be7SAlan Tull  * @FPGA_MGR_STATE_POWER_UP: FPGA reports power is up
226a8c3be7SAlan Tull  * @FPGA_MGR_STATE_RESET: FPGA in reset state
236a8c3be7SAlan Tull  * @FPGA_MGR_STATE_FIRMWARE_REQ: firmware request in progress
246a8c3be7SAlan Tull  * @FPGA_MGR_STATE_FIRMWARE_REQ_ERR: firmware request failed
256a8c3be7SAlan Tull  * @FPGA_MGR_STATE_WRITE_INIT: preparing FPGA for programming
266a8c3be7SAlan Tull  * @FPGA_MGR_STATE_WRITE_INIT_ERR: Error during WRITE_INIT stage
276a8c3be7SAlan Tull  * @FPGA_MGR_STATE_WRITE: writing image to FPGA
286a8c3be7SAlan Tull  * @FPGA_MGR_STATE_WRITE_ERR: Error while writing FPGA
296a8c3be7SAlan Tull  * @FPGA_MGR_STATE_WRITE_COMPLETE: Doing post programming steps
306a8c3be7SAlan Tull  * @FPGA_MGR_STATE_WRITE_COMPLETE_ERR: Error during WRITE_COMPLETE
316a8c3be7SAlan Tull  * @FPGA_MGR_STATE_OPERATING: FPGA is programmed and operating
326a8c3be7SAlan Tull  */
336a8c3be7SAlan Tull enum fpga_mgr_states {
346a8c3be7SAlan Tull 	/* default FPGA states */
356a8c3be7SAlan Tull 	FPGA_MGR_STATE_UNKNOWN,
366a8c3be7SAlan Tull 	FPGA_MGR_STATE_POWER_OFF,
376a8c3be7SAlan Tull 	FPGA_MGR_STATE_POWER_UP,
386a8c3be7SAlan Tull 	FPGA_MGR_STATE_RESET,
396a8c3be7SAlan Tull 
406a8c3be7SAlan Tull 	/* getting an image for loading */
416a8c3be7SAlan Tull 	FPGA_MGR_STATE_FIRMWARE_REQ,
426a8c3be7SAlan Tull 	FPGA_MGR_STATE_FIRMWARE_REQ_ERR,
436a8c3be7SAlan Tull 
446a8c3be7SAlan Tull 	/* write sequence: init, write, complete */
456a8c3be7SAlan Tull 	FPGA_MGR_STATE_WRITE_INIT,
466a8c3be7SAlan Tull 	FPGA_MGR_STATE_WRITE_INIT_ERR,
476a8c3be7SAlan Tull 	FPGA_MGR_STATE_WRITE,
486a8c3be7SAlan Tull 	FPGA_MGR_STATE_WRITE_ERR,
496a8c3be7SAlan Tull 	FPGA_MGR_STATE_WRITE_COMPLETE,
506a8c3be7SAlan Tull 	FPGA_MGR_STATE_WRITE_COMPLETE_ERR,
516a8c3be7SAlan Tull 
526a8c3be7SAlan Tull 	/* fpga is programmed and operating */
536a8c3be7SAlan Tull 	FPGA_MGR_STATE_OPERATING,
546a8c3be7SAlan Tull };
556a8c3be7SAlan Tull 
566a8c3be7SAlan Tull /*
576a8c3be7SAlan Tull  * FPGA Manager flags
586a8c3be7SAlan Tull  * FPGA_MGR_PARTIAL_RECONFIG: do partial reconfiguration if supported
590fa20cdfSAlan Tull  * FPGA_MGR_EXTERNAL_CONFIG: FPGA has been configured prior to Linux booting
6068f6be65SAnatolij Gustschin  * FPGA_MGR_BITSTREAM_LSB_FIRST: SPI bitstream bit order is LSB first
61b37fa560SAnatolij Gustschin  * FPGA_MGR_COMPRESSED_BITSTREAM: FPGA bitstream is compressed
626a8c3be7SAlan Tull  */
636a8c3be7SAlan Tull #define FPGA_MGR_PARTIAL_RECONFIG	BIT(0)
640fa20cdfSAlan Tull #define FPGA_MGR_EXTERNAL_CONFIG	BIT(1)
650f4f0c8fSMoritz Fischer #define FPGA_MGR_ENCRYPTED_BITSTREAM	BIT(2)
6668f6be65SAnatolij Gustschin #define FPGA_MGR_BITSTREAM_LSB_FIRST	BIT(3)
67b37fa560SAnatolij Gustschin #define FPGA_MGR_COMPRESSED_BITSTREAM	BIT(4)
686a8c3be7SAlan Tull 
696a8c3be7SAlan Tull /**
701df2865fSAlan Tull  * struct fpga_image_info - information specific to a FPGA image
711df2865fSAlan Tull  * @flags: boolean flags as defined above
721df2865fSAlan Tull  * @enable_timeout_us: maximum time to enable traffic through bridge (uSec)
731df2865fSAlan Tull  * @disable_timeout_us: maximum time to disable traffic through bridge (uSec)
7442d5ec95SAlan Tull  * @config_complete_timeout_us: maximum time for FPGA to switch to operating
7542d5ec95SAlan Tull  *	   status in the write_complete op.
765cf0c7f6SAlan Tull  * @firmware_name: name of FPGA image firmware file
775cf0c7f6SAlan Tull  * @sgt: scatter/gather table containing FPGA image
785cf0c7f6SAlan Tull  * @buf: contiguous buffer containing FPGA image
795cf0c7f6SAlan Tull  * @count: size of buf
80571d78bdSWu Hao  * @region_id: id of target region
815cf0c7f6SAlan Tull  * @dev: device that owns this
8261c32102SAlan Tull  * @overlay: Device Tree overlay
831df2865fSAlan Tull  */
841df2865fSAlan Tull struct fpga_image_info {
851df2865fSAlan Tull 	u32 flags;
861df2865fSAlan Tull 	u32 enable_timeout_us;
871df2865fSAlan Tull 	u32 disable_timeout_us;
8842d5ec95SAlan Tull 	u32 config_complete_timeout_us;
895cf0c7f6SAlan Tull 	char *firmware_name;
905cf0c7f6SAlan Tull 	struct sg_table *sgt;
915cf0c7f6SAlan Tull 	const char *buf;
925cf0c7f6SAlan Tull 	size_t count;
93571d78bdSWu Hao 	int region_id;
945cf0c7f6SAlan Tull 	struct device *dev;
9561c32102SAlan Tull #ifdef CONFIG_OF
9661c32102SAlan Tull 	struct device_node *overlay;
9761c32102SAlan Tull #endif
981df2865fSAlan Tull };
991df2865fSAlan Tull 
1001df2865fSAlan Tull /**
1016a8c3be7SAlan Tull  * struct fpga_manager_ops - ops for low level fpga manager drivers
1021d7f1589SJason Gunthorpe  * @initial_header_size: Maximum number of bytes that should be passed into write_init
1036a8c3be7SAlan Tull  * @state: returns an enum value of the FPGA's state
1046a8c3be7SAlan Tull  * @write_init: prepare the FPGA to receive confuration data
1056a8c3be7SAlan Tull  * @write: write count bytes of configuration data to the FPGA
106baa6d396SJason Gunthorpe  * @write_sg: write the scatter list of configuration data to the FPGA
1076a8c3be7SAlan Tull  * @write_complete: set FPGA to operating state after writing is done
1086a8c3be7SAlan Tull  * @fpga_remove: optional: Set FPGA into a specific state during driver remove
109845089bbSAlan Tull  * @groups: optional attribute groups.
1106a8c3be7SAlan Tull  *
1116a8c3be7SAlan Tull  * fpga_manager_ops are the low level functions implemented by a specific
1126a8c3be7SAlan Tull  * fpga manager driver.  The optional ones are tested for NULL before being
1136a8c3be7SAlan Tull  * called, so leaving them out is fine.
1146a8c3be7SAlan Tull  */
1156a8c3be7SAlan Tull struct fpga_manager_ops {
1161d7f1589SJason Gunthorpe 	size_t initial_header_size;
1176a8c3be7SAlan Tull 	enum fpga_mgr_states (*state)(struct fpga_manager *mgr);
1181df2865fSAlan Tull 	int (*write_init)(struct fpga_manager *mgr,
1191df2865fSAlan Tull 			  struct fpga_image_info *info,
1206a8c3be7SAlan Tull 			  const char *buf, size_t count);
1216a8c3be7SAlan Tull 	int (*write)(struct fpga_manager *mgr, const char *buf, size_t count);
122baa6d396SJason Gunthorpe 	int (*write_sg)(struct fpga_manager *mgr, struct sg_table *sgt);
1231df2865fSAlan Tull 	int (*write_complete)(struct fpga_manager *mgr,
1241df2865fSAlan Tull 			      struct fpga_image_info *info);
1256a8c3be7SAlan Tull 	void (*fpga_remove)(struct fpga_manager *mgr);
126845089bbSAlan Tull 	const struct attribute_group **groups;
1276a8c3be7SAlan Tull };
1286a8c3be7SAlan Tull 
1296a8c3be7SAlan Tull /**
1306a8c3be7SAlan Tull  * struct fpga_manager - fpga manager structure
1316a8c3be7SAlan Tull  * @name: name of low level fpga manager
1326a8c3be7SAlan Tull  * @dev: fpga manager device
1336a8c3be7SAlan Tull  * @ref_mutex: only allows one reference to fpga manager
1346a8c3be7SAlan Tull  * @state: state of fpga manager
1356a8c3be7SAlan Tull  * @mops: pointer to struct of fpga manager ops
1366a8c3be7SAlan Tull  * @priv: low level driver private date
1376a8c3be7SAlan Tull  */
1386a8c3be7SAlan Tull struct fpga_manager {
1396a8c3be7SAlan Tull 	const char *name;
1406a8c3be7SAlan Tull 	struct device dev;
1416a8c3be7SAlan Tull 	struct mutex ref_mutex;
1426a8c3be7SAlan Tull 	enum fpga_mgr_states state;
1436a8c3be7SAlan Tull 	const struct fpga_manager_ops *mops;
1446a8c3be7SAlan Tull 	void *priv;
1456a8c3be7SAlan Tull };
1466a8c3be7SAlan Tull 
1476a8c3be7SAlan Tull #define to_fpga_manager(d) container_of(d, struct fpga_manager, dev)
1486a8c3be7SAlan Tull 
1495cf0c7f6SAlan Tull struct fpga_image_info *fpga_image_info_alloc(struct device *dev);
1506a8c3be7SAlan Tull 
1515cf0c7f6SAlan Tull void fpga_image_info_free(struct fpga_image_info *info);
1525cf0c7f6SAlan Tull 
1535cf0c7f6SAlan Tull int fpga_mgr_load(struct fpga_manager *mgr, struct fpga_image_info *info);
1546a8c3be7SAlan Tull 
155ebf877a5SAlan Tull int fpga_mgr_lock(struct fpga_manager *mgr);
156ebf877a5SAlan Tull void fpga_mgr_unlock(struct fpga_manager *mgr);
157ebf877a5SAlan Tull 
1586a8c3be7SAlan Tull struct fpga_manager *of_fpga_mgr_get(struct device_node *node);
1596a8c3be7SAlan Tull 
1609dce0287SAlan Tull struct fpga_manager *fpga_mgr_get(struct device *dev);
1619dce0287SAlan Tull 
1626a8c3be7SAlan Tull void fpga_mgr_put(struct fpga_manager *mgr);
1636a8c3be7SAlan Tull 
1647085e2a9SAlan Tull struct fpga_manager *fpga_mgr_create(struct device *dev, const char *name,
1657085e2a9SAlan Tull 				     const struct fpga_manager_ops *mops,
1667085e2a9SAlan Tull 				     void *priv);
1677085e2a9SAlan Tull void fpga_mgr_free(struct fpga_manager *mgr);
1687085e2a9SAlan Tull int fpga_mgr_register(struct fpga_manager *mgr);
1697085e2a9SAlan Tull void fpga_mgr_unregister(struct fpga_manager *mgr);
1706a8c3be7SAlan Tull 
1716a8c3be7SAlan Tull #endif /*_LINUX_FPGA_MGR_H */
172