xref: /openbmc/linux/include/linux/fpga/fpga-mgr.h (revision 9dce0287)
16a8c3be7SAlan Tull /*
26a8c3be7SAlan Tull  * FPGA Framework
36a8c3be7SAlan Tull  *
46a8c3be7SAlan Tull  *  Copyright (C) 2013-2015 Altera Corporation
56a8c3be7SAlan Tull  *
66a8c3be7SAlan Tull  * This program is free software; you can redistribute it and/or modify it
76a8c3be7SAlan Tull  * under the terms and conditions of the GNU General Public License,
86a8c3be7SAlan Tull  * version 2, as published by the Free Software Foundation.
96a8c3be7SAlan Tull  *
106a8c3be7SAlan Tull  * This program is distributed in the hope it will be useful, but WITHOUT
116a8c3be7SAlan Tull  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
126a8c3be7SAlan Tull  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
136a8c3be7SAlan Tull  * more details.
146a8c3be7SAlan Tull  *
156a8c3be7SAlan Tull  * You should have received a copy of the GNU General Public License along with
166a8c3be7SAlan Tull  * this program.  If not, see <http://www.gnu.org/licenses/>.
176a8c3be7SAlan Tull  */
186a8c3be7SAlan Tull #include <linux/mutex.h>
196a8c3be7SAlan Tull #include <linux/platform_device.h>
206a8c3be7SAlan Tull 
216a8c3be7SAlan Tull #ifndef _LINUX_FPGA_MGR_H
226a8c3be7SAlan Tull #define _LINUX_FPGA_MGR_H
236a8c3be7SAlan Tull 
246a8c3be7SAlan Tull struct fpga_manager;
256a8c3be7SAlan Tull 
266a8c3be7SAlan Tull /**
276a8c3be7SAlan Tull  * enum fpga_mgr_states - fpga framework states
286a8c3be7SAlan Tull  * @FPGA_MGR_STATE_UNKNOWN: can't determine state
296a8c3be7SAlan Tull  * @FPGA_MGR_STATE_POWER_OFF: FPGA power is off
306a8c3be7SAlan Tull  * @FPGA_MGR_STATE_POWER_UP: FPGA reports power is up
316a8c3be7SAlan Tull  * @FPGA_MGR_STATE_RESET: FPGA in reset state
326a8c3be7SAlan Tull  * @FPGA_MGR_STATE_FIRMWARE_REQ: firmware request in progress
336a8c3be7SAlan Tull  * @FPGA_MGR_STATE_FIRMWARE_REQ_ERR: firmware request failed
346a8c3be7SAlan Tull  * @FPGA_MGR_STATE_WRITE_INIT: preparing FPGA for programming
356a8c3be7SAlan Tull  * @FPGA_MGR_STATE_WRITE_INIT_ERR: Error during WRITE_INIT stage
366a8c3be7SAlan Tull  * @FPGA_MGR_STATE_WRITE: writing image to FPGA
376a8c3be7SAlan Tull  * @FPGA_MGR_STATE_WRITE_ERR: Error while writing FPGA
386a8c3be7SAlan Tull  * @FPGA_MGR_STATE_WRITE_COMPLETE: Doing post programming steps
396a8c3be7SAlan Tull  * @FPGA_MGR_STATE_WRITE_COMPLETE_ERR: Error during WRITE_COMPLETE
406a8c3be7SAlan Tull  * @FPGA_MGR_STATE_OPERATING: FPGA is programmed and operating
416a8c3be7SAlan Tull  */
426a8c3be7SAlan Tull enum fpga_mgr_states {
436a8c3be7SAlan Tull 	/* default FPGA states */
446a8c3be7SAlan Tull 	FPGA_MGR_STATE_UNKNOWN,
456a8c3be7SAlan Tull 	FPGA_MGR_STATE_POWER_OFF,
466a8c3be7SAlan Tull 	FPGA_MGR_STATE_POWER_UP,
476a8c3be7SAlan Tull 	FPGA_MGR_STATE_RESET,
486a8c3be7SAlan Tull 
496a8c3be7SAlan Tull 	/* getting an image for loading */
506a8c3be7SAlan Tull 	FPGA_MGR_STATE_FIRMWARE_REQ,
516a8c3be7SAlan Tull 	FPGA_MGR_STATE_FIRMWARE_REQ_ERR,
526a8c3be7SAlan Tull 
536a8c3be7SAlan Tull 	/* write sequence: init, write, complete */
546a8c3be7SAlan Tull 	FPGA_MGR_STATE_WRITE_INIT,
556a8c3be7SAlan Tull 	FPGA_MGR_STATE_WRITE_INIT_ERR,
566a8c3be7SAlan Tull 	FPGA_MGR_STATE_WRITE,
576a8c3be7SAlan Tull 	FPGA_MGR_STATE_WRITE_ERR,
586a8c3be7SAlan Tull 	FPGA_MGR_STATE_WRITE_COMPLETE,
596a8c3be7SAlan Tull 	FPGA_MGR_STATE_WRITE_COMPLETE_ERR,
606a8c3be7SAlan Tull 
616a8c3be7SAlan Tull 	/* fpga is programmed and operating */
626a8c3be7SAlan Tull 	FPGA_MGR_STATE_OPERATING,
636a8c3be7SAlan Tull };
646a8c3be7SAlan Tull 
656a8c3be7SAlan Tull /*
666a8c3be7SAlan Tull  * FPGA Manager flags
676a8c3be7SAlan Tull  * FPGA_MGR_PARTIAL_RECONFIG: do partial reconfiguration if supported
686a8c3be7SAlan Tull  */
696a8c3be7SAlan Tull #define FPGA_MGR_PARTIAL_RECONFIG	BIT(0)
706a8c3be7SAlan Tull 
716a8c3be7SAlan Tull /**
726a8c3be7SAlan Tull  * struct fpga_manager_ops - ops for low level fpga manager drivers
736a8c3be7SAlan Tull  * @state: returns an enum value of the FPGA's state
746a8c3be7SAlan Tull  * @write_init: prepare the FPGA to receive confuration data
756a8c3be7SAlan Tull  * @write: write count bytes of configuration data to the FPGA
766a8c3be7SAlan Tull  * @write_complete: set FPGA to operating state after writing is done
776a8c3be7SAlan Tull  * @fpga_remove: optional: Set FPGA into a specific state during driver remove
786a8c3be7SAlan Tull  *
796a8c3be7SAlan Tull  * fpga_manager_ops are the low level functions implemented by a specific
806a8c3be7SAlan Tull  * fpga manager driver.  The optional ones are tested for NULL before being
816a8c3be7SAlan Tull  * called, so leaving them out is fine.
826a8c3be7SAlan Tull  */
836a8c3be7SAlan Tull struct fpga_manager_ops {
846a8c3be7SAlan Tull 	enum fpga_mgr_states (*state)(struct fpga_manager *mgr);
856a8c3be7SAlan Tull 	int (*write_init)(struct fpga_manager *mgr, u32 flags,
866a8c3be7SAlan Tull 			  const char *buf, size_t count);
876a8c3be7SAlan Tull 	int (*write)(struct fpga_manager *mgr, const char *buf, size_t count);
886a8c3be7SAlan Tull 	int (*write_complete)(struct fpga_manager *mgr, u32 flags);
896a8c3be7SAlan Tull 	void (*fpga_remove)(struct fpga_manager *mgr);
906a8c3be7SAlan Tull };
916a8c3be7SAlan Tull 
926a8c3be7SAlan Tull /**
936a8c3be7SAlan Tull  * struct fpga_manager - fpga manager structure
946a8c3be7SAlan Tull  * @name: name of low level fpga manager
956a8c3be7SAlan Tull  * @dev: fpga manager device
966a8c3be7SAlan Tull  * @ref_mutex: only allows one reference to fpga manager
976a8c3be7SAlan Tull  * @state: state of fpga manager
986a8c3be7SAlan Tull  * @mops: pointer to struct of fpga manager ops
996a8c3be7SAlan Tull  * @priv: low level driver private date
1006a8c3be7SAlan Tull  */
1016a8c3be7SAlan Tull struct fpga_manager {
1026a8c3be7SAlan Tull 	const char *name;
1036a8c3be7SAlan Tull 	struct device dev;
1046a8c3be7SAlan Tull 	struct mutex ref_mutex;
1056a8c3be7SAlan Tull 	enum fpga_mgr_states state;
1066a8c3be7SAlan Tull 	const struct fpga_manager_ops *mops;
1076a8c3be7SAlan Tull 	void *priv;
1086a8c3be7SAlan Tull };
1096a8c3be7SAlan Tull 
1106a8c3be7SAlan Tull #define to_fpga_manager(d) container_of(d, struct fpga_manager, dev)
1116a8c3be7SAlan Tull 
1126a8c3be7SAlan Tull int fpga_mgr_buf_load(struct fpga_manager *mgr, u32 flags,
1136a8c3be7SAlan Tull 		      const char *buf, size_t count);
1146a8c3be7SAlan Tull 
1156a8c3be7SAlan Tull int fpga_mgr_firmware_load(struct fpga_manager *mgr, u32 flags,
1166a8c3be7SAlan Tull 			   const char *image_name);
1176a8c3be7SAlan Tull 
1186a8c3be7SAlan Tull struct fpga_manager *of_fpga_mgr_get(struct device_node *node);
1196a8c3be7SAlan Tull 
1209dce0287SAlan Tull struct fpga_manager *fpga_mgr_get(struct device *dev);
1219dce0287SAlan Tull 
1226a8c3be7SAlan Tull void fpga_mgr_put(struct fpga_manager *mgr);
1236a8c3be7SAlan Tull 
1246a8c3be7SAlan Tull int fpga_mgr_register(struct device *dev, const char *name,
1256a8c3be7SAlan Tull 		      const struct fpga_manager_ops *mops, void *priv);
1266a8c3be7SAlan Tull 
1276a8c3be7SAlan Tull void fpga_mgr_unregister(struct device *dev);
1286a8c3be7SAlan Tull 
1296a8c3be7SAlan Tull #endif /*_LINUX_FPGA_MGR_H */
130