1/*
2 * Copyright (c) 2017-2018 Cavium, Inc.
3 * All rights reserved.
4 *
5 *  Redistribution and use in source and binary forms, with or without
6 *  modification, are permitted provided that the following conditions
7 *  are met:
8 *
9 *  1. Redistributions of source code must retain the above copyright
10 *     notice, this list of conditions and the following disclaimer.
11 *  2. Redistributions in binary form must reproduce the above copyright
12 *     notice, this list of conditions and the following disclaimer in the
13 *     documentation and/or other materials provided with the distribution.
14 *
15 *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 *  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 *  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19 *  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 *  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 *  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 *  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 *  POSSIBILITY OF SUCH DAMAGE.
26 *
27 */
28
29#ifndef __ECORE_SP_API_H__
30#define __ECORE_SP_API_H__
31
32#include "ecore_status.h"
33
34enum spq_mode {
35	ECORE_SPQ_MODE_BLOCK,   /* Client will poll a designated mem. address */
36	ECORE_SPQ_MODE_CB,  /* Client supplies a callback */
37	ECORE_SPQ_MODE_EBLOCK,  /* ECORE should block until completion */
38};
39
40struct ecore_hwfn;
41union event_ring_data;
42struct eth_slow_path_rx_cqe;
43
44struct ecore_spq_comp_cb {
45	void	(*function)(struct ecore_hwfn *,
46			 void *,
47			 union event_ring_data *,
48			 u8 fw_return_code);
49	void	*cookie;
50};
51
52/**
53 * @brief ecore_eth_cqe_completion - handles the completion of a
54 *        ramrod on the cqe ring
55 *
56 * @param p_hwfn
57 * @param cqe
58 *
59 * @return enum _ecore_status_t
60 */
61enum _ecore_status_t ecore_eth_cqe_completion(struct ecore_hwfn *p_hwfn,
62					      struct eth_slow_path_rx_cqe *cqe);
63/**
64 * @brief ecore_sp_pf_update_tunn_cfg - PF Function Tunnel configuration
65 *					update  Ramrod
66 *
67 * This ramrod is sent to update a tunneling configuration
68 * for a physical function (PF).
69 *
70 * @param p_hwfn
71 * @param p_ptt
72 * @param p_tunn - pf update tunneling parameters
73 * @param comp_mode - completion mode
74 * @param p_comp_data - callback function
75 *
76 * @return enum _ecore_status_t
77 */
78
79enum _ecore_status_t
80ecore_sp_pf_update_tunn_cfg(struct ecore_hwfn *p_hwfn,
81			    struct ecore_ptt *p_ptt,
82			    struct ecore_tunnel_info *p_tunn,
83			    enum spq_mode comp_mode,
84			    struct ecore_spq_comp_cb *p_comp_data);
85#endif
86