1*67ab160eSEdward Cree /* SPDX-License-Identifier: GPL-2.0-only */
2*67ab160eSEdward Cree /****************************************************************************
3*67ab160eSEdward Cree  * Driver for Solarflare network controllers and boards
4*67ab160eSEdward Cree  * Copyright 2019 Solarflare Communications Inc.
5*67ab160eSEdward Cree  * Copyright 2019-2022 Xilinx, Inc.
6*67ab160eSEdward Cree  *
7*67ab160eSEdward Cree  * This program is free software; you can redistribute it and/or modify it
8*67ab160eSEdward Cree  * under the terms of the GNU General Public License version 2 as published
9*67ab160eSEdward Cree  * by the Free Software Foundation, incorporated herein by reference.
10*67ab160eSEdward Cree  */
11*67ab160eSEdward Cree 
12*67ab160eSEdward Cree #ifndef MCDI_PCOL_MAE_H
13*67ab160eSEdward Cree #define MCDI_PCOL_MAE_H
14*67ab160eSEdward Cree /* MCDI definitions for Match-Action Engine functionality, that are
15*67ab160eSEdward Cree  * missing from the main mcdi_pcol.h
16*67ab160eSEdward Cree  */
17*67ab160eSEdward Cree 
18*67ab160eSEdward Cree /* MC_CMD_MAE_COUNTER_LIST_ALLOC is not (yet) a released API, but the
19*67ab160eSEdward Cree  * following value is needed as an argument to MC_CMD_MAE_ACTION_SET_ALLOC.
20*67ab160eSEdward Cree  */
21*67ab160eSEdward Cree /* enum: A counter ID that is guaranteed never to represent a real counter */
22*67ab160eSEdward Cree #define          MC_CMD_MAE_COUNTER_LIST_ALLOC_OUT_COUNTER_LIST_ID_NULL 0xffffffff
23*67ab160eSEdward Cree 
24*67ab160eSEdward Cree #endif /* MCDI_PCOL_MAE_H */
25