1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2018 Netronome Systems, Inc. 3 * All rights reserved. 4 */ 5 6 #ifndef __NFP_NFFW_H__ 7 #define __NFP_NFFW_H__ 8 9 #include "nfp_cpp.h" 10 11 struct nfp_nffw_info; 12 13 struct nfp_nffw_info *nfp_nffw_info_open(struct nfp_cpp *cpp); 14 void nfp_nffw_info_close(struct nfp_nffw_info *state); 15 int nfp_nffw_info_mip_first(struct nfp_nffw_info *state, uint32_t *cpp_id, 16 uint64_t *offset); 17 18 #endif /* __NFP_NFFW_H__ */ 19