Commit | Line | Data |
---|---|---|
57cbd893 MB |
1 | /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */ |
2 | /* | |
3 | * Copyright (c) 2018 Mellanox Technologies. All rights reserved. | |
4 | */ | |
5 | ||
6 | #ifndef _MLX5_ESWITCH_ | |
7 | #define _MLX5_ESWITCH_ | |
8 | ||
9 | #include <linux/mlx5/driver.h> | |
eb524d0f | 10 | #include <linux/mlx5/vport.h> |
82b11f07 | 11 | #include <net/devlink.h> |
57cbd893 | 12 | |
0efc8562 OG |
13 | #define MLX5_ESWITCH_MANAGER(mdev) MLX5_CAP_GEN(mdev, eswitch_manager) |
14 | ||
57cbd893 | 15 | enum { |
f6455de0 BW |
16 | MLX5_ESWITCH_LEGACY, |
17 | MLX5_ESWITCH_OFFLOADS | |
57cbd893 MB |
18 | }; |
19 | ||
20 | enum { | |
21 | REP_ETH, | |
5e65b02c | 22 | REP_IB, |
57cbd893 MB |
23 | NUM_REP_TYPES, |
24 | }; | |
25 | ||
f121e0ea BW |
26 | enum { |
27 | REP_UNREGISTERED, | |
28 | REP_REGISTERED, | |
29 | REP_LOADED, | |
30 | }; | |
31 | ||
c8e6a9e6 MB |
32 | enum mlx5_switchdev_event { |
33 | MLX5_SWITCHDEV_EVENT_PAIR, | |
34 | MLX5_SWITCHDEV_EVENT_UNPAIR, | |
35 | }; | |
36 | ||
57cbd893 | 37 | struct mlx5_eswitch_rep; |
8693115a PP |
38 | struct mlx5_eswitch_rep_ops { |
39 | int (*load)(struct mlx5_core_dev *dev, struct mlx5_eswitch_rep *rep); | |
40 | void (*unload)(struct mlx5_eswitch_rep *rep); | |
41 | void *(*get_proto_dev)(struct mlx5_eswitch_rep *rep); | |
c8e6a9e6 MB |
42 | int (*event)(struct mlx5_eswitch *esw, |
43 | struct mlx5_eswitch_rep *rep, | |
44 | enum mlx5_switchdev_event event, | |
45 | void *data); | |
8693115a PP |
46 | }; |
47 | ||
48 | struct mlx5_eswitch_rep_data { | |
49 | void *priv; | |
50 | atomic_t state; | |
57cbd893 MB |
51 | }; |
52 | ||
53 | struct mlx5_eswitch_rep { | |
8693115a | 54 | struct mlx5_eswitch_rep_data rep_data[NUM_REP_TYPES]; |
57cbd893 | 55 | u16 vport; |
57cbd893 | 56 | u16 vlan; |
2f69e591 BW |
57 | /* Only IB rep is using vport_index */ |
58 | u16 vport_index; | |
57cbd893 | 59 | u32 vlan_refcount; |
59c904c8 | 60 | struct mlx5_eswitch *esw; |
57cbd893 MB |
61 | }; |
62 | ||
f8e8fa02 | 63 | void mlx5_eswitch_register_vport_reps(struct mlx5_eswitch *esw, |
8693115a | 64 | const struct mlx5_eswitch_rep_ops *ops, |
f8e8fa02 BW |
65 | u8 rep_type); |
66 | void mlx5_eswitch_unregister_vport_reps(struct mlx5_eswitch *esw, u8 rep_type); | |
57cbd893 | 67 | void *mlx5_eswitch_get_proto_dev(struct mlx5_eswitch *esw, |
02f3afd9 | 68 | u16 vport_num, |
57cbd893 MB |
69 | u8 rep_type); |
70 | struct mlx5_eswitch_rep *mlx5_eswitch_vport_rep(struct mlx5_eswitch *esw, | |
02f3afd9 | 71 | u16 vport_num); |
57cbd893 | 72 | void *mlx5_eswitch_uplink_get_proto_dev(struct mlx5_eswitch *esw, u8 rep_type); |
57cbd893 | 73 | struct mlx5_flow_handle * |
3a46f4fb | 74 | mlx5_eswitch_add_send_to_vport_rule(struct mlx5_eswitch *on_esw, |
979bf468 | 75 | struct mlx5_eswitch *from_esw, |
3a46f4fb | 76 | struct mlx5_eswitch_rep *rep, u32 sqn); |
82b11f07 MG |
77 | |
78 | #ifdef CONFIG_MLX5_ESWITCH | |
79 | enum devlink_eswitch_encap_mode | |
80 | mlx5_eswitch_get_encap_mode(const struct mlx5_core_dev *dev); | |
7445cfb1 | 81 | |
5b7cb745 | 82 | bool mlx5_eswitch_reg_c1_loopback_enabled(const struct mlx5_eswitch *esw); |
7445cfb1 | 83 | bool mlx5_eswitch_vport_match_metadata_enabled(const struct mlx5_eswitch *esw); |
0f0d3827 PB |
84 | |
85 | /* Reg C0 usage: | |
a91d98a0 | 86 | * Reg C0 = < ESW_PFNUM_BITS(4) | ESW_VPORT BITS(12) | ESW_REG_C0_OBJ(16) > |
0f0d3827 | 87 | * |
7cd7becd | 88 | * Highest 4 bits of the reg c0 is the PF_NUM (range 0-15), 12 bits of |
89 | * unique non-zero vport id (range 1-4095). The rest (lowest 16 bits) is left | |
a91d98a0 | 90 | * for user data objects managed by a common mapping context. |
7cd7becd | 91 | * PFNUM + VPORT comprise the SOURCE_PORT matching. |
0f0d3827 | 92 | */ |
7cd7becd | 93 | #define ESW_VPORT_BITS 12 |
94 | #define ESW_PFNUM_BITS 4 | |
95 | #define ESW_SOURCE_PORT_METADATA_BITS (ESW_PFNUM_BITS + ESW_VPORT_BITS) | |
0f0d3827 | 96 | #define ESW_SOURCE_PORT_METADATA_OFFSET (32 - ESW_SOURCE_PORT_METADATA_BITS) |
a91d98a0 CM |
97 | #define ESW_REG_C0_USER_DATA_METADATA_BITS (32 - ESW_SOURCE_PORT_METADATA_BITS) |
98 | #define ESW_REG_C0_USER_DATA_METADATA_MASK GENMASK(ESW_REG_C0_USER_DATA_METADATA_BITS - 1, 0) | |
0f0d3827 PB |
99 | |
100 | static inline u32 mlx5_eswitch_get_vport_metadata_mask(void) | |
101 | { | |
102 | return GENMASK(31, 32 - ESW_SOURCE_PORT_METADATA_BITS); | |
103 | } | |
104 | ||
105 | u32 mlx5_eswitch_get_vport_metadata_for_match(struct mlx5_eswitch *esw, | |
7445cfb1 | 106 | u16 vport_num); |
10742efc VB |
107 | u32 mlx5_eswitch_get_vport_metadata_for_set(struct mlx5_eswitch *esw, |
108 | u16 vport_num); | |
48d216e5 VB |
109 | |
110 | /* Reg C1 usage: | |
b973cf32 | 111 | * Reg C1 = < Reserved(1) | ESW_TUN_ID(12) | ESW_TUN_OPTS(11) | ESW_ZONE_ID(8) > |
48d216e5 | 112 | * |
b973cf32 HN |
113 | * Highest bit is reserved for other offloads as marker bit, next 12 bits of reg c1 |
114 | * is the encapsulation tunnel id, next 11 bits is encapsulation tunnel options, | |
115 | * and the lowest 8 bits are used for zone id. | |
48d216e5 VB |
116 | * |
117 | * Zone id is used to restore CT flow when packet misses on chain. | |
118 | * | |
119 | * Tunnel id and options are used together to restore the tunnel info metadata | |
120 | * on miss and to support inner header rewrite by means of implicit chain 0 | |
121 | * flows. | |
122 | */ | |
b973cf32 | 123 | #define ESW_RESERVED_BITS 1 |
48d216e5 | 124 | #define ESW_ZONE_ID_BITS 8 |
b973cf32 | 125 | #define ESW_TUN_OPTS_BITS 11 |
48d216e5 | 126 | #define ESW_TUN_ID_BITS 12 |
8e404fef VB |
127 | #define ESW_TUN_OPTS_OFFSET ESW_ZONE_ID_BITS |
128 | #define ESW_TUN_OFFSET ESW_TUN_OPTS_OFFSET | |
48d216e5 | 129 | #define ESW_ZONE_ID_MASK GENMASK(ESW_ZONE_ID_BITS - 1, 0) |
b973cf32 HN |
130 | #define ESW_TUN_OPTS_MASK GENMASK(31 - ESW_TUN_ID_BITS - ESW_RESERVED_BITS, ESW_TUN_OPTS_OFFSET) |
131 | #define ESW_TUN_MASK GENMASK(31 - ESW_RESERVED_BITS, ESW_TUN_OFFSET) | |
8e404fef | 132 | #define ESW_TUN_ID_SLOW_TABLE_GOTO_VPORT 0 /* 0 is not a valid tunnel id */ |
5249001d | 133 | #define ESW_TUN_ID_BRIDGE_INGRESS_PUSH_VLAN ESW_TUN_ID_SLOW_TABLE_GOTO_VPORT |
b973cf32 HN |
134 | /* 0x7FF is a reserved mapping */ |
135 | #define ESW_TUN_OPTS_SLOW_TABLE_GOTO_VPORT GENMASK(ESW_TUN_OPTS_BITS - 1, 0) | |
8e404fef VB |
136 | #define ESW_TUN_SLOW_TABLE_GOTO_VPORT ((ESW_TUN_ID_SLOW_TABLE_GOTO_VPORT << ESW_TUN_OPTS_BITS) | \ |
137 | ESW_TUN_OPTS_SLOW_TABLE_GOTO_VPORT) | |
138 | #define ESW_TUN_SLOW_TABLE_GOTO_VPORT_MARK ESW_TUN_OPTS_MASK | |
5249001d VB |
139 | /* 0x7FE is a reserved mapping for bridge ingress push vlan mark */ |
140 | #define ESW_TUN_OPTS_BRIDGE_INGRESS_PUSH_VLAN (ESW_TUN_OPTS_SLOW_TABLE_GOTO_VPORT - 1) | |
141 | #define ESW_TUN_BRIDGE_INGRESS_PUSH_VLAN ((ESW_TUN_ID_BRIDGE_INGRESS_PUSH_VLAN << \ | |
142 | ESW_TUN_OPTS_BITS) | \ | |
143 | ESW_TUN_OPTS_BRIDGE_INGRESS_PUSH_VLAN) | |
144 | #define ESW_TUN_BRIDGE_INGRESS_PUSH_VLAN_MARK \ | |
145 | GENMASK(31 - ESW_TUN_ID_BITS - ESW_RESERVED_BITS, \ | |
146 | ESW_TUN_OPTS_OFFSET + 1) | |
48d216e5 | 147 | |
91bafc63 JL |
148 | /* reuse tun_opts for the mapped ipsec obj id when tun_id is 0 (invalid) */ |
149 | #define ESW_IPSEC_RX_MAPPED_ID_MASK GENMASK(ESW_TUN_OPTS_BITS - 1, 0) | |
85e4a808 JL |
150 | #define ESW_IPSEC_RX_MAPPED_ID_MATCH_MASK \ |
151 | GENMASK(31 - ESW_RESERVED_BITS, ESW_ZONE_ID_BITS) | |
91bafc63 | 152 | |
d7751d64 | 153 | u8 mlx5_eswitch_mode(const struct mlx5_core_dev *dev); |
06ec5acc | 154 | u16 mlx5_eswitch_get_total_vports(const struct mlx5_core_dev *dev); |
97a8a8c1 | 155 | struct mlx5_core_dev *mlx5_eswitch_get_core_dev(struct mlx5_eswitch *esw); |
06ec5acc | 156 | |
82b11f07 | 157 | #else /* CONFIG_MLX5_ESWITCH */ |
f813cb50 | 158 | |
d7751d64 | 159 | static inline u8 mlx5_eswitch_mode(const struct mlx5_core_dev *dev) |
f813cb50 | 160 | { |
f019679e | 161 | return MLX5_ESWITCH_LEGACY; |
f813cb50 MG |
162 | } |
163 | ||
82b11f07 MG |
164 | static inline enum devlink_eswitch_encap_mode |
165 | mlx5_eswitch_get_encap_mode(const struct mlx5_core_dev *dev) | |
166 | { | |
167 | return DEVLINK_ESWITCH_ENCAP_MODE_NONE; | |
168 | } | |
7445cfb1 | 169 | |
5b7cb745 PB |
170 | static inline bool |
171 | mlx5_eswitch_reg_c1_loopback_enabled(const struct mlx5_eswitch *esw) | |
172 | { | |
173 | return false; | |
174 | }; | |
175 | ||
7445cfb1 JL |
176 | static inline bool |
177 | mlx5_eswitch_vport_match_metadata_enabled(const struct mlx5_eswitch *esw) | |
178 | { | |
179 | return false; | |
180 | }; | |
181 | ||
182 | static inline u32 | |
6308a5f0 | 183 | mlx5_eswitch_get_vport_metadata_for_match(struct mlx5_eswitch *esw, u16 vport_num) |
7445cfb1 JL |
184 | { |
185 | return 0; | |
186 | }; | |
0f0d3827 PB |
187 | |
188 | static inline u32 | |
189 | mlx5_eswitch_get_vport_metadata_mask(void) | |
190 | { | |
191 | return 0; | |
192 | } | |
06ec5acc PP |
193 | |
194 | static inline u16 mlx5_eswitch_get_total_vports(const struct mlx5_core_dev *dev) | |
195 | { | |
196 | return 0; | |
197 | } | |
198 | ||
97a8a8c1 MB |
199 | static inline struct mlx5_core_dev *mlx5_eswitch_get_core_dev(struct mlx5_eswitch *esw) |
200 | { | |
201 | return NULL; | |
202 | } | |
203 | ||
82b11f07 | 204 | #endif /* CONFIG_MLX5_ESWITCH */ |
2752b823 | 205 | |
f019679e CM |
206 | static inline bool is_mdev_legacy_mode(struct mlx5_core_dev *dev) |
207 | { | |
208 | return mlx5_eswitch_mode(dev) == MLX5_ESWITCH_LEGACY; | |
209 | } | |
210 | ||
e8711402 LR |
211 | static inline bool is_mdev_switchdev_mode(struct mlx5_core_dev *dev) |
212 | { | |
213 | return mlx5_eswitch_mode(dev) == MLX5_ESWITCH_OFFLOADS; | |
214 | } | |
06ec5acc | 215 | |
eb524d0f MB |
216 | /* The returned number is valid only when the dev is eswitch manager. */ |
217 | static inline u16 mlx5_eswitch_manager_vport(struct mlx5_core_dev *dev) | |
218 | { | |
219 | return mlx5_core_is_ecpf_esw_manager(dev) ? | |
220 | MLX5_VPORT_ECPF : MLX5_VPORT_PF; | |
221 | } | |
222 | ||
57cbd893 | 223 | #endif |