Skip to content

Commit 8708ecf

Browse files
jpirkodavem330
authored andcommitted
mlxsw: resources: Add ACL related resources
Add couple of resource limits related to ACL. Signed-off-by: Jiri Pirko <[email protected]> Reviewed-by: Ido Schimmel <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent b876b9a commit 8708ecf

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

drivers/net/ethernet/mellanox/mlxsw/resources.h

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* drivers/net/ethernet/mellanox/mlxsw/resources.h
3-
* Copyright (c) 2016 Mellanox Technologies. All rights reserved.
4-
* Copyright (c) 2016 Jiri Pirko <[email protected]>
3+
* Copyright (c) 2016-2017 Mellanox Technologies. All rights reserved.
4+
* Copyright (c) 2016-2017 Jiri Pirko <[email protected]>
55
*
66
* Redistribution and use in source and binary forms, with or without
77
* modification, are permitted provided that the following conditions are met:
@@ -48,6 +48,14 @@ enum mlxsw_res_id {
4848
MLXSW_RES_ID_MAX_LAG,
4949
MLXSW_RES_ID_MAX_LAG_MEMBERS,
5050
MLXSW_RES_ID_MAX_BUFFER_SIZE,
51+
MLXSW_RES_ID_ACL_MAX_TCAM_REGIONS,
52+
MLXSW_RES_ID_ACL_MAX_TCAM_RULES,
53+
MLXSW_RES_ID_ACL_MAX_REGIONS,
54+
MLXSW_RES_ID_ACL_MAX_GROUPS,
55+
MLXSW_RES_ID_ACL_MAX_GROUP_SIZE,
56+
MLXSW_RES_ID_ACL_FLEX_KEYS,
57+
MLXSW_RES_ID_ACL_MAX_ACTION_PER_RULE,
58+
MLXSW_RES_ID_ACL_ACTIONS_PER_SET,
5159
MLXSW_RES_ID_MAX_CPU_POLICERS,
5260
MLXSW_RES_ID_MAX_VRS,
5361
MLXSW_RES_ID_MAX_RIFS,
@@ -72,6 +80,14 @@ static u16 mlxsw_res_ids[] = {
7280
[MLXSW_RES_ID_MAX_LAG] = 0x2520,
7381
[MLXSW_RES_ID_MAX_LAG_MEMBERS] = 0x2521,
7482
[MLXSW_RES_ID_MAX_BUFFER_SIZE] = 0x2802, /* Bytes */
83+
[MLXSW_RES_ID_ACL_MAX_TCAM_REGIONS] = 0x2901,
84+
[MLXSW_RES_ID_ACL_MAX_TCAM_RULES] = 0x2902,
85+
[MLXSW_RES_ID_ACL_MAX_REGIONS] = 0x2903,
86+
[MLXSW_RES_ID_ACL_MAX_GROUPS] = 0x2904,
87+
[MLXSW_RES_ID_ACL_MAX_GROUP_SIZE] = 0x2905,
88+
[MLXSW_RES_ID_ACL_FLEX_KEYS] = 0x2910,
89+
[MLXSW_RES_ID_ACL_MAX_ACTION_PER_RULE] = 0x2911,
90+
[MLXSW_RES_ID_ACL_ACTIONS_PER_SET] = 0x2912,
7591
[MLXSW_RES_ID_MAX_CPU_POLICERS] = 0x2A13,
7692
[MLXSW_RES_ID_MAX_VRS] = 0x2C01,
7793
[MLXSW_RES_ID_MAX_RIFS] = 0x2C02,

0 commit comments

Comments
 (0)