1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Header file for FPGA Management Engine (FME) Driver
5 * Copyright (C) 2017-2018 Intel Corporation, Inc.
22 * struct dfl_fme - dfl fme private data
24 * @mgr: FME's FPGA manager platform device.
25 * @region_list: linked list of FME's FPGA regions.
26 * @bridge_list: linked list of FME's FPGA bridges.
27 * @pdata: fme platform device's pdata.
30 struct platform_device *mgr;
31 struct list_head region_list;
32 struct list_head bridge_list;
33 struct dfl_feature_platform_data *pdata;
36 extern const struct dfl_feature_ops pr_mgmt_ops;
38 #endif /* __DFL_FME_H */