1 // SPDX-License-Identifier: GPL-2.0 2 /* Copyright(c) 2013 - 2018 Intel Corporation. */ 3 4 /* ethtool support for i40e */ 5 6 #include "i40e.h" 7 #include "i40e_diag.h" 8 #include "i40e_txrx_common.h" 9 10 /* ethtool statistics helpers */ 11 12 /** 13 * struct i40e_stats - definition for an ethtool statistic 14 * @stat_string: statistic name to display in ethtool -S output 15 * @sizeof_stat: the sizeof() the stat, must be no greater than sizeof(u64) 16 * @stat_offset: offsetof() the stat from a base pointer 17 * 18 * This structure defines a statistic to be added to the ethtool stats buffer. 19 * It defines a statistic as offset from a common base pointer. Stats should 20 * be defined in constant arrays using the I40E_STAT macro, with every element 21 * of the array using the same _type for calculating the sizeof_stat and 22 * stat_offset. 23 * 24 * The @sizeof_stat is expected to be sizeof(u8), sizeof(u16), sizeof(u32) or 25 * sizeof(u64). Other sizes are not expected and will produce a WARN_ONCE from 26 * the i40e_add_ethtool_stat() helper function. 27 * 28 * The @stat_string is interpreted as a format string, allowing formatted 29 * values to be inserted while looping over multiple structures for a given 30 * statistics array. Thus, every statistic string in an array should have the 31 * same type and number of format specifiers, to be formatted by variadic 32 * arguments to the i40e_add_stat_string() helper function. 33 **/ 34 struct i40e_stats { 35 char stat_string[ETH_GSTRING_LEN]; 36 int sizeof_stat; 37 int stat_offset; 38 }; 39 40 /* Helper macro to define an i40e_stat structure with proper size and type. 41 * Use this when defining constant statistics arrays. Note that @_type expects 42 * only a type name and is used multiple times. 43 */ 44 #define I40E_STAT(_type, _name, _stat) { \ 45 .stat_string = _name, \ 46 .sizeof_stat = sizeof_field(_type, _stat), \ 47 .stat_offset = offsetof(_type, _stat) \ 48 } 49 50 /* Helper macro for defining some statistics directly copied from the netdev 51 * stats structure. 52 */ 53 #define I40E_NETDEV_STAT(_net_stat) \ 54 I40E_STAT(struct rtnl_link_stats64, #_net_stat, _net_stat) 55 56 /* Helper macro for defining some statistics related to queues */ 57 #define I40E_QUEUE_STAT(_name, _stat) \ 58 I40E_STAT(struct i40e_ring, _name, _stat) 59 60 /* Stats associated with a Tx or Rx ring */ 61 static const struct i40e_stats i40e_gstrings_queue_stats[] = { 62 I40E_QUEUE_STAT("%s-%u.packets", stats.packets), 63 I40E_QUEUE_STAT("%s-%u.bytes", stats.bytes), 64 }; 65 66 /** 67 * i40e_add_one_ethtool_stat - copy the stat into the supplied buffer 68 * @data: location to store the stat value 69 * @pointer: basis for where to copy from 70 * @stat: the stat definition 71 * 72 * Copies the stat data defined by the pointer and stat structure pair into 73 * the memory supplied as data. Used to implement i40e_add_ethtool_stats and 74 * i40e_add_queue_stats. If the pointer is null, data will be zero'd. 75 */ 76 static void 77 i40e_add_one_ethtool_stat(u64 *data, void *pointer, 78 const struct i40e_stats *stat) 79 { 80 char *p; 81 82 if (!pointer) { 83 /* ensure that the ethtool data buffer is zero'd for any stats 84 * which don't have a valid pointer. 85 */ 86 *data = 0; 87 return; 88 } 89 90 p = (char *)pointer + stat->stat_offset; 91 switch (stat->sizeof_stat) { 92 case sizeof(u64): 93 *data = *((u64 *)p); 94 break; 95 case sizeof(u32): 96 *data = *((u32 *)p); 97 break; 98 case sizeof(u16): 99 *data = *((u16 *)p); 100 break; 101 case sizeof(u8): 102 *data = *((u8 *)p); 103 break; 104 default: 105 WARN_ONCE(1, "unexpected stat size for %s", 106 stat->stat_string); 107 *data = 0; 108 } 109 } 110 111 /** 112 * __i40e_add_ethtool_stats - copy stats into the ethtool supplied buffer 113 * @data: ethtool stats buffer 114 * @pointer: location to copy stats from 115 * @stats: array of stats to copy 116 * @size: the size of the stats definition 117 * 118 * Copy the stats defined by the stats array using the pointer as a base into 119 * the data buffer supplied by ethtool. Updates the data pointer to point to 120 * the next empty location for successive calls to __i40e_add_ethtool_stats. 121 * If pointer is null, set the data values to zero and update the pointer to 122 * skip these stats. 123 **/ 124 static void 125 __i40e_add_ethtool_stats(u64 **data, void *pointer, 126 const struct i40e_stats stats[], 127 const unsigned int size) 128 { 129 unsigned int i; 130 131 for (i = 0; i < size; i++) 132 i40e_add_one_ethtool_stat((*data)++, pointer, &stats[i]); 133 } 134 135 /** 136 * i40e_add_ethtool_stats - copy stats into ethtool supplied buffer 137 * @data: ethtool stats buffer 138 * @pointer: location where stats are stored 139 * @stats: static const array of stat definitions 140 * 141 * Macro to ease the use of __i40e_add_ethtool_stats by taking a static 142 * constant stats array and passing the ARRAY_SIZE(). This avoids typos by 143 * ensuring that we pass the size associated with the given stats array. 144 * 145 * The parameter @stats is evaluated twice, so parameters with side effects 146 * should be avoided. 147 **/ 148 #define i40e_add_ethtool_stats(data, pointer, stats) \ 149 __i40e_add_ethtool_stats(data, pointer, stats, ARRAY_SIZE(stats)) 150 151 /** 152 * i40e_add_queue_stats - copy queue statistics into supplied buffer 153 * @data: ethtool stats buffer 154 * @ring: the ring to copy 155 * 156 * Queue statistics must be copied while protected by 157 * u64_stats_fetch_begin_irq, so we can't directly use i40e_add_ethtool_stats. 158 * Assumes that queue stats are defined in i40e_gstrings_queue_stats. If the 159 * ring pointer is null, zero out the queue stat values and update the data 160 * pointer. Otherwise safely copy the stats from the ring into the supplied 161 * buffer and update the data pointer when finished. 162 * 163 * This function expects to be called while under rcu_read_lock(). 164 **/ 165 static void 166 i40e_add_queue_stats(u64 **data, struct i40e_ring *ring) 167 { 168 const unsigned int size = ARRAY_SIZE(i40e_gstrings_queue_stats); 169 const struct i40e_stats *stats = i40e_gstrings_queue_stats; 170 unsigned int start; 171 unsigned int i; 172 173 /* To avoid invalid statistics values, ensure that we keep retrying 174 * the copy until we get a consistent value according to 175 * u64_stats_fetch_retry_irq. But first, make sure our ring is 176 * non-null before attempting to access its syncp. 177 */ 178 do { 179 start = !ring ? 0 : u64_stats_fetch_begin_irq(&ring->syncp); 180 for (i = 0; i < size; i++) { 181 i40e_add_one_ethtool_stat(&(*data)[i], ring, 182 &stats[i]); 183 } 184 } while (ring && u64_stats_fetch_retry_irq(&ring->syncp, start)); 185 186 /* Once we successfully copy the stats in, update the data pointer */ 187 *data += size; 188 } 189 190 /** 191 * __i40e_add_stat_strings - copy stat strings into ethtool buffer 192 * @p: ethtool supplied buffer 193 * @stats: stat definitions array 194 * @size: size of the stats array 195 * 196 * Format and copy the strings described by stats into the buffer pointed at 197 * by p. 198 **/ 199 static void __i40e_add_stat_strings(u8 **p, const struct i40e_stats stats[], 200 const unsigned int size, ...) 201 { 202 unsigned int i; 203 204 for (i = 0; i < size; i++) { 205 va_list args; 206 207 va_start(args, size); 208 vsnprintf(*p, ETH_GSTRING_LEN, stats[i].stat_string, args); 209 *p += ETH_GSTRING_LEN; 210 va_end(args); 211 } 212 } 213 214 /** 215 * 40e_add_stat_strings - copy stat strings into ethtool buffer 216 * @p: ethtool supplied buffer 217 * @stats: stat definitions array 218 * 219 * Format and copy the strings described by the const static stats value into 220 * the buffer pointed at by p. 221 * 222 * The parameter @stats is evaluated twice, so parameters with side effects 223 * should be avoided. Additionally, stats must be an array such that 224 * ARRAY_SIZE can be called on it. 225 **/ 226 #define i40e_add_stat_strings(p, stats, ...) \ 227 __i40e_add_stat_strings(p, stats, ARRAY_SIZE(stats), ## __VA_ARGS__) 228 229 #define I40E_PF_STAT(_name, _stat) \ 230 I40E_STAT(struct i40e_pf, _name, _stat) 231 #define I40E_VSI_STAT(_name, _stat) \ 232 I40E_STAT(struct i40e_vsi, _name, _stat) 233 #define I40E_VEB_STAT(_name, _stat) \ 234 I40E_STAT(struct i40e_veb, _name, _stat) 235 #define I40E_PFC_STAT(_name, _stat) \ 236 I40E_STAT(struct i40e_pfc_stats, _name, _stat) 237 #define I40E_QUEUE_STAT(_name, _stat) \ 238 I40E_STAT(struct i40e_ring, _name, _stat) 239 240 static const struct i40e_stats i40e_gstrings_net_stats[] = { 241 I40E_NETDEV_STAT(rx_packets), 242 I40E_NETDEV_STAT(tx_packets), 243 I40E_NETDEV_STAT(rx_bytes), 244 I40E_NETDEV_STAT(tx_bytes), 245 I40E_NETDEV_STAT(rx_errors), 246 I40E_NETDEV_STAT(tx_errors), 247 I40E_NETDEV_STAT(rx_dropped), 248 I40E_NETDEV_STAT(tx_dropped), 249 I40E_NETDEV_STAT(collisions), 250 I40E_NETDEV_STAT(rx_length_errors), 251 I40E_NETDEV_STAT(rx_crc_errors), 252 }; 253 254 static const struct i40e_stats i40e_gstrings_veb_stats[] = { 255 I40E_VEB_STAT("veb.rx_bytes", stats.rx_bytes), 256 I40E_VEB_STAT("veb.tx_bytes", stats.tx_bytes), 257 I40E_VEB_STAT("veb.rx_unicast", stats.rx_unicast), 258 I40E_VEB_STAT("veb.tx_unicast", stats.tx_unicast), 259 I40E_VEB_STAT("veb.rx_multicast", stats.rx_multicast), 260 I40E_VEB_STAT("veb.tx_multicast", stats.tx_multicast), 261 I40E_VEB_STAT("veb.rx_broadcast", stats.rx_broadcast), 262 I40E_VEB_STAT("veb.tx_broadcast", stats.tx_broadcast), 263 I40E_VEB_STAT("veb.rx_discards", stats.rx_discards), 264 I40E_VEB_STAT("veb.tx_discards", stats.tx_discards), 265 I40E_VEB_STAT("veb.tx_errors", stats.tx_errors), 266 I40E_VEB_STAT("veb.rx_unknown_protocol", stats.rx_unknown_protocol), 267 }; 268 269 static const struct i40e_stats i40e_gstrings_veb_tc_stats[] = { 270 I40E_VEB_STAT("veb.tc_%u_tx_packets", tc_stats.tc_tx_packets), 271 I40E_VEB_STAT("veb.tc_%u_tx_bytes", tc_stats.tc_tx_bytes), 272 I40E_VEB_STAT("veb.tc_%u_rx_packets", tc_stats.tc_rx_packets), 273 I40E_VEB_STAT("veb.tc_%u_rx_bytes", tc_stats.tc_rx_bytes), 274 }; 275 276 static const struct i40e_stats i40e_gstrings_misc_stats[] = { 277 I40E_VSI_STAT("rx_unicast", eth_stats.rx_unicast), 278 I40E_VSI_STAT("tx_unicast", eth_stats.tx_unicast), 279 I40E_VSI_STAT("rx_multicast", eth_stats.rx_multicast), 280 I40E_VSI_STAT("tx_multicast", eth_stats.tx_multicast), 281 I40E_VSI_STAT("rx_broadcast", eth_stats.rx_broadcast), 282 I40E_VSI_STAT("tx_broadcast", eth_stats.tx_broadcast), 283 I40E_VSI_STAT("rx_unknown_protocol", eth_stats.rx_unknown_protocol), 284 I40E_VSI_STAT("tx_linearize", tx_linearize), 285 I40E_VSI_STAT("tx_force_wb", tx_force_wb), 286 I40E_VSI_STAT("tx_busy", tx_busy), 287 I40E_VSI_STAT("rx_alloc_fail", rx_buf_failed), 288 I40E_VSI_STAT("rx_pg_alloc_fail", rx_page_failed), 289 }; 290 291 /* These PF_STATs might look like duplicates of some NETDEV_STATs, 292 * but they are separate. This device supports Virtualization, and 293 * as such might have several netdevs supporting VMDq and FCoE going 294 * through a single port. The NETDEV_STATs are for individual netdevs 295 * seen at the top of the stack, and the PF_STATs are for the physical 296 * function at the bottom of the stack hosting those netdevs. 297 * 298 * The PF_STATs are appended to the netdev stats only when ethtool -S 299 * is queried on the base PF netdev, not on the VMDq or FCoE netdev. 300 */ 301 static const struct i40e_stats i40e_gstrings_stats[] = { 302 I40E_PF_STAT("port.rx_bytes", stats.eth.rx_bytes), 303 I40E_PF_STAT("port.tx_bytes", stats.eth.tx_bytes), 304 I40E_PF_STAT("port.rx_unicast", stats.eth.rx_unicast), 305 I40E_PF_STAT("port.tx_unicast", stats.eth.tx_unicast), 306 I40E_PF_STAT("port.rx_multicast", stats.eth.rx_multicast), 307 I40E_PF_STAT("port.tx_multicast", stats.eth.tx_multicast), 308 I40E_PF_STAT("port.rx_broadcast", stats.eth.rx_broadcast), 309 I40E_PF_STAT("port.tx_broadcast", stats.eth.tx_broadcast), 310 I40E_PF_STAT("port.tx_errors", stats.eth.tx_errors), 311 I40E_PF_STAT("port.rx_dropped", stats.eth.rx_discards), 312 I40E_PF_STAT("port.tx_dropped_link_down", stats.tx_dropped_link_down), 313 I40E_PF_STAT("port.rx_crc_errors", stats.crc_errors), 314 I40E_PF_STAT("port.illegal_bytes", stats.illegal_bytes), 315 I40E_PF_STAT("port.mac_local_faults", stats.mac_local_faults), 316 I40E_PF_STAT("port.mac_remote_faults", stats.mac_remote_faults), 317 I40E_PF_STAT("port.tx_timeout", tx_timeout_count), 318 I40E_PF_STAT("port.rx_csum_bad", hw_csum_rx_error), 319 I40E_PF_STAT("port.rx_length_errors", stats.rx_length_errors), 320 I40E_PF_STAT("port.link_xon_rx", stats.link_xon_rx), 321 I40E_PF_STAT("port.link_xoff_rx", stats.link_xoff_rx), 322 I40E_PF_STAT("port.link_xon_tx", stats.link_xon_tx), 323 I40E_PF_STAT("port.link_xoff_tx", stats.link_xoff_tx), 324 I40E_PF_STAT("port.rx_size_64", stats.rx_size_64), 325 I40E_PF_STAT("port.rx_size_127", stats.rx_size_127), 326 I40E_PF_STAT("port.rx_size_255", stats.rx_size_255), 327 I40E_PF_STAT("port.rx_size_511", stats.rx_size_511), 328 I40E_PF_STAT("port.rx_size_1023", stats.rx_size_1023), 329 I40E_PF_STAT("port.rx_size_1522", stats.rx_size_1522), 330 I40E_PF_STAT("port.rx_size_big", stats.rx_size_big), 331 I40E_PF_STAT("port.tx_size_64", stats.tx_size_64), 332 I40E_PF_STAT("port.tx_size_127", stats.tx_size_127), 333 I40E_PF_STAT("port.tx_size_255", stats.tx_size_255), 334 I40E_PF_STAT("port.tx_size_511", stats.tx_size_511), 335 I40E_PF_STAT("port.tx_size_1023", stats.tx_size_1023), 336 I40E_PF_STAT("port.tx_size_1522", stats.tx_size_1522), 337 I40E_PF_STAT("port.tx_size_big", stats.tx_size_big), 338 I40E_PF_STAT("port.rx_undersize", stats.rx_undersize), 339 I40E_PF_STAT("port.rx_fragments", stats.rx_fragments), 340 I40E_PF_STAT("port.rx_oversize", stats.rx_oversize), 341 I40E_PF_STAT("port.rx_jabber", stats.rx_jabber), 342 I40E_PF_STAT("port.VF_admin_queue_requests", vf_aq_requests), 343 I40E_PF_STAT("port.arq_overflows", arq_overflows), 344 I40E_PF_STAT("port.tx_hwtstamp_timeouts", tx_hwtstamp_timeouts), 345 I40E_PF_STAT("port.rx_hwtstamp_cleared", rx_hwtstamp_cleared), 346 I40E_PF_STAT("port.tx_hwtstamp_skipped", tx_hwtstamp_skipped), 347 I40E_PF_STAT("port.fdir_flush_cnt", fd_flush_cnt), 348 I40E_PF_STAT("port.fdir_atr_match", stats.fd_atr_match), 349 I40E_PF_STAT("port.fdir_atr_tunnel_match", stats.fd_atr_tunnel_match), 350 I40E_PF_STAT("port.fdir_atr_status", stats.fd_atr_status), 351 I40E_PF_STAT("port.fdir_sb_match", stats.fd_sb_match), 352 I40E_PF_STAT("port.fdir_sb_status", stats.fd_sb_status), 353 354 /* LPI stats */ 355 I40E_PF_STAT("port.tx_lpi_status", stats.tx_lpi_status), 356 I40E_PF_STAT("port.rx_lpi_status", stats.rx_lpi_status), 357 I40E_PF_STAT("port.tx_lpi_count", stats.tx_lpi_count), 358 I40E_PF_STAT("port.rx_lpi_count", stats.rx_lpi_count), 359 }; 360 361 struct i40e_pfc_stats { 362 u64 priority_xon_rx; 363 u64 priority_xoff_rx; 364 u64 priority_xon_tx; 365 u64 priority_xoff_tx; 366 u64 priority_xon_2_xoff; 367 }; 368 369 static const struct i40e_stats i40e_gstrings_pfc_stats[] = { 370 I40E_PFC_STAT("port.tx_priority_%u_xon_tx", priority_xon_tx), 371 I40E_PFC_STAT("port.tx_priority_%u_xoff_tx", priority_xoff_tx), 372 I40E_PFC_STAT("port.rx_priority_%u_xon_rx", priority_xon_rx), 373 I40E_PFC_STAT("port.rx_priority_%u_xoff_rx", priority_xoff_rx), 374 I40E_PFC_STAT("port.rx_priority_%u_xon_2_xoff", priority_xon_2_xoff), 375 }; 376 377 #define I40E_NETDEV_STATS_LEN ARRAY_SIZE(i40e_gstrings_net_stats) 378 379 #define I40E_MISC_STATS_LEN ARRAY_SIZE(i40e_gstrings_misc_stats) 380 381 #define I40E_VSI_STATS_LEN (I40E_NETDEV_STATS_LEN + I40E_MISC_STATS_LEN) 382 383 #define I40E_PFC_STATS_LEN (ARRAY_SIZE(i40e_gstrings_pfc_stats) * \ 384 I40E_MAX_USER_PRIORITY) 385 386 #define I40E_VEB_STATS_LEN (ARRAY_SIZE(i40e_gstrings_veb_stats) + \ 387 (ARRAY_SIZE(i40e_gstrings_veb_tc_stats) * \ 388 I40E_MAX_TRAFFIC_CLASS)) 389 390 #define I40E_GLOBAL_STATS_LEN ARRAY_SIZE(i40e_gstrings_stats) 391 392 #define I40E_PF_STATS_LEN (I40E_GLOBAL_STATS_LEN + \ 393 I40E_PFC_STATS_LEN + \ 394 I40E_VEB_STATS_LEN + \ 395 I40E_VSI_STATS_LEN) 396 397 /* Length of stats for a single queue */ 398 #define I40E_QUEUE_STATS_LEN ARRAY_SIZE(i40e_gstrings_queue_stats) 399 400 enum i40e_ethtool_test_id { 401 I40E_ETH_TEST_REG = 0, 402 I40E_ETH_TEST_EEPROM, 403 I40E_ETH_TEST_INTR, 404 I40E_ETH_TEST_LINK, 405 }; 406 407 static const char i40e_gstrings_test[][ETH_GSTRING_LEN] = { 408 "Register test (offline)", 409 "Eeprom test (offline)", 410 "Interrupt test (offline)", 411 "Link test (on/offline)" 412 }; 413 414 #define I40E_TEST_LEN (sizeof(i40e_gstrings_test) / ETH_GSTRING_LEN) 415 416 struct i40e_priv_flags { 417 char flag_string[ETH_GSTRING_LEN]; 418 u64 flag; 419 bool read_only; 420 }; 421 422 #define I40E_PRIV_FLAG(_name, _flag, _read_only) { \ 423 .flag_string = _name, \ 424 .flag = _flag, \ 425 .read_only = _read_only, \ 426 } 427 428 static const struct i40e_priv_flags i40e_gstrings_priv_flags[] = { 429 /* NOTE: MFP setting cannot be changed */ 430 I40E_PRIV_FLAG("MFP", I40E_FLAG_MFP_ENABLED, 1), 431 I40E_PRIV_FLAG("LinkPolling", I40E_FLAG_LINK_POLLING_ENABLED, 0), 432 I40E_PRIV_FLAG("flow-director-atr", I40E_FLAG_FD_ATR_ENABLED, 0), 433 I40E_PRIV_FLAG("veb-stats", I40E_FLAG_VEB_STATS_ENABLED, 0), 434 I40E_PRIV_FLAG("hw-atr-eviction", I40E_FLAG_HW_ATR_EVICT_ENABLED, 0), 435 I40E_PRIV_FLAG("link-down-on-close", 436 I40E_FLAG_LINK_DOWN_ON_CLOSE_ENABLED, 0), 437 I40E_PRIV_FLAG("legacy-rx", I40E_FLAG_LEGACY_RX, 0), 438 I40E_PRIV_FLAG("disable-source-pruning", 439 I40E_FLAG_SOURCE_PRUNING_DISABLED, 0), 440 I40E_PRIV_FLAG("disable-fw-lldp", I40E_FLAG_DISABLE_FW_LLDP, 0), 441 I40E_PRIV_FLAG("rs-fec", I40E_FLAG_RS_FEC, 0), 442 I40E_PRIV_FLAG("base-r-fec", I40E_FLAG_BASE_R_FEC, 0), 443 }; 444 445 #define I40E_PRIV_FLAGS_STR_LEN ARRAY_SIZE(i40e_gstrings_priv_flags) 446 447 /* Private flags with a global effect, restricted to PF 0 */ 448 static const struct i40e_priv_flags i40e_gl_gstrings_priv_flags[] = { 449 I40E_PRIV_FLAG("vf-true-promisc-support", 450 I40E_FLAG_TRUE_PROMISC_SUPPORT, 0), 451 }; 452 453 #define I40E_GL_PRIV_FLAGS_STR_LEN ARRAY_SIZE(i40e_gl_gstrings_priv_flags) 454 455 /** 456 * i40e_partition_setting_complaint - generic complaint for MFP restriction 457 * @pf: the PF struct 458 **/ 459 static void i40e_partition_setting_complaint(struct i40e_pf *pf) 460 { 461 dev_info(&pf->pdev->dev, 462 "The link settings are allowed to be changed only from the first partition of a given port. Please switch to the first partition in order to change the setting.\n"); 463 } 464 465 /** 466 * i40e_phy_type_to_ethtool - convert the phy_types to ethtool link modes 467 * @pf: PF struct with phy_types 468 * @ks: ethtool link ksettings struct to fill out 469 * 470 **/ 471 static void i40e_phy_type_to_ethtool(struct i40e_pf *pf, 472 struct ethtool_link_ksettings *ks) 473 { 474 struct i40e_link_status *hw_link_info = &pf->hw.phy.link_info; 475 u64 phy_types = pf->hw.phy.phy_types; 476 477 ethtool_link_ksettings_zero_link_mode(ks, supported); 478 ethtool_link_ksettings_zero_link_mode(ks, advertising); 479 480 if (phy_types & I40E_CAP_PHY_TYPE_SGMII) { 481 ethtool_link_ksettings_add_link_mode(ks, supported, 482 1000baseT_Full); 483 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_1GB) 484 ethtool_link_ksettings_add_link_mode(ks, advertising, 485 1000baseT_Full); 486 if (pf->hw_features & I40E_HW_100M_SGMII_CAPABLE) { 487 ethtool_link_ksettings_add_link_mode(ks, supported, 488 100baseT_Full); 489 ethtool_link_ksettings_add_link_mode(ks, advertising, 490 100baseT_Full); 491 } 492 } 493 if (phy_types & I40E_CAP_PHY_TYPE_XAUI || 494 phy_types & I40E_CAP_PHY_TYPE_XFI || 495 phy_types & I40E_CAP_PHY_TYPE_SFI || 496 phy_types & I40E_CAP_PHY_TYPE_10GBASE_SFPP_CU || 497 phy_types & I40E_CAP_PHY_TYPE_10GBASE_AOC) { 498 ethtool_link_ksettings_add_link_mode(ks, supported, 499 10000baseT_Full); 500 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB) 501 ethtool_link_ksettings_add_link_mode(ks, advertising, 502 10000baseT_Full); 503 } 504 if (phy_types & I40E_CAP_PHY_TYPE_10GBASE_T) { 505 ethtool_link_ksettings_add_link_mode(ks, supported, 506 10000baseT_Full); 507 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB) 508 ethtool_link_ksettings_add_link_mode(ks, advertising, 509 10000baseT_Full); 510 } 511 if (phy_types & I40E_CAP_PHY_TYPE_2_5GBASE_T) { 512 ethtool_link_ksettings_add_link_mode(ks, supported, 513 2500baseT_Full); 514 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_2_5GB) 515 ethtool_link_ksettings_add_link_mode(ks, advertising, 516 2500baseT_Full); 517 } 518 if (phy_types & I40E_CAP_PHY_TYPE_5GBASE_T) { 519 ethtool_link_ksettings_add_link_mode(ks, supported, 520 5000baseT_Full); 521 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_5GB) 522 ethtool_link_ksettings_add_link_mode(ks, advertising, 523 5000baseT_Full); 524 } 525 if (phy_types & I40E_CAP_PHY_TYPE_XLAUI || 526 phy_types & I40E_CAP_PHY_TYPE_XLPPI || 527 phy_types & I40E_CAP_PHY_TYPE_40GBASE_AOC) 528 ethtool_link_ksettings_add_link_mode(ks, supported, 529 40000baseCR4_Full); 530 if (phy_types & I40E_CAP_PHY_TYPE_40GBASE_CR4_CU || 531 phy_types & I40E_CAP_PHY_TYPE_40GBASE_CR4) { 532 ethtool_link_ksettings_add_link_mode(ks, supported, 533 40000baseCR4_Full); 534 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_40GB) 535 ethtool_link_ksettings_add_link_mode(ks, advertising, 536 40000baseCR4_Full); 537 } 538 if (phy_types & I40E_CAP_PHY_TYPE_100BASE_TX) { 539 ethtool_link_ksettings_add_link_mode(ks, supported, 540 100baseT_Full); 541 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_100MB) 542 ethtool_link_ksettings_add_link_mode(ks, advertising, 543 100baseT_Full); 544 } 545 if (phy_types & I40E_CAP_PHY_TYPE_1000BASE_T) { 546 ethtool_link_ksettings_add_link_mode(ks, supported, 547 1000baseT_Full); 548 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_1GB) 549 ethtool_link_ksettings_add_link_mode(ks, advertising, 550 1000baseT_Full); 551 } 552 if (phy_types & I40E_CAP_PHY_TYPE_40GBASE_SR4) { 553 ethtool_link_ksettings_add_link_mode(ks, supported, 554 40000baseSR4_Full); 555 ethtool_link_ksettings_add_link_mode(ks, advertising, 556 40000baseSR4_Full); 557 } 558 if (phy_types & I40E_CAP_PHY_TYPE_40GBASE_LR4) { 559 ethtool_link_ksettings_add_link_mode(ks, supported, 560 40000baseLR4_Full); 561 ethtool_link_ksettings_add_link_mode(ks, advertising, 562 40000baseLR4_Full); 563 } 564 if (phy_types & I40E_CAP_PHY_TYPE_40GBASE_KR4) { 565 ethtool_link_ksettings_add_link_mode(ks, supported, 566 40000baseKR4_Full); 567 ethtool_link_ksettings_add_link_mode(ks, advertising, 568 40000baseKR4_Full); 569 } 570 if (phy_types & I40E_CAP_PHY_TYPE_20GBASE_KR2) { 571 ethtool_link_ksettings_add_link_mode(ks, supported, 572 20000baseKR2_Full); 573 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_20GB) 574 ethtool_link_ksettings_add_link_mode(ks, advertising, 575 20000baseKR2_Full); 576 } 577 if (phy_types & I40E_CAP_PHY_TYPE_10GBASE_KX4) { 578 ethtool_link_ksettings_add_link_mode(ks, supported, 579 10000baseKX4_Full); 580 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB) 581 ethtool_link_ksettings_add_link_mode(ks, advertising, 582 10000baseKX4_Full); 583 } 584 if (phy_types & I40E_CAP_PHY_TYPE_10GBASE_KR && 585 !(pf->hw_features & I40E_HW_HAVE_CRT_RETIMER)) { 586 ethtool_link_ksettings_add_link_mode(ks, supported, 587 10000baseKR_Full); 588 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB) 589 ethtool_link_ksettings_add_link_mode(ks, advertising, 590 10000baseKR_Full); 591 } 592 if (phy_types & I40E_CAP_PHY_TYPE_1000BASE_KX && 593 !(pf->hw_features & I40E_HW_HAVE_CRT_RETIMER)) { 594 ethtool_link_ksettings_add_link_mode(ks, supported, 595 1000baseKX_Full); 596 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_1GB) 597 ethtool_link_ksettings_add_link_mode(ks, advertising, 598 1000baseKX_Full); 599 } 600 /* need to add 25G PHY types */ 601 if (phy_types & I40E_CAP_PHY_TYPE_25GBASE_KR) { 602 ethtool_link_ksettings_add_link_mode(ks, supported, 603 25000baseKR_Full); 604 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_25GB) 605 ethtool_link_ksettings_add_link_mode(ks, advertising, 606 25000baseKR_Full); 607 } 608 if (phy_types & I40E_CAP_PHY_TYPE_25GBASE_CR) { 609 ethtool_link_ksettings_add_link_mode(ks, supported, 610 25000baseCR_Full); 611 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_25GB) 612 ethtool_link_ksettings_add_link_mode(ks, advertising, 613 25000baseCR_Full); 614 } 615 if (phy_types & I40E_CAP_PHY_TYPE_25GBASE_SR || 616 phy_types & I40E_CAP_PHY_TYPE_25GBASE_LR) { 617 ethtool_link_ksettings_add_link_mode(ks, supported, 618 25000baseSR_Full); 619 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_25GB) 620 ethtool_link_ksettings_add_link_mode(ks, advertising, 621 25000baseSR_Full); 622 } 623 if (phy_types & I40E_CAP_PHY_TYPE_25GBASE_AOC || 624 phy_types & I40E_CAP_PHY_TYPE_25GBASE_ACC) { 625 ethtool_link_ksettings_add_link_mode(ks, supported, 626 25000baseCR_Full); 627 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_25GB) 628 ethtool_link_ksettings_add_link_mode(ks, advertising, 629 25000baseCR_Full); 630 } 631 if (phy_types & I40E_CAP_PHY_TYPE_25GBASE_KR || 632 phy_types & I40E_CAP_PHY_TYPE_25GBASE_CR || 633 phy_types & I40E_CAP_PHY_TYPE_25GBASE_SR || 634 phy_types & I40E_CAP_PHY_TYPE_25GBASE_LR || 635 phy_types & I40E_CAP_PHY_TYPE_25GBASE_AOC || 636 phy_types & I40E_CAP_PHY_TYPE_25GBASE_ACC) { 637 ethtool_link_ksettings_add_link_mode(ks, supported, FEC_NONE); 638 ethtool_link_ksettings_add_link_mode(ks, supported, FEC_RS); 639 ethtool_link_ksettings_add_link_mode(ks, supported, FEC_BASER); 640 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_25GB) { 641 ethtool_link_ksettings_add_link_mode(ks, advertising, 642 FEC_NONE); 643 ethtool_link_ksettings_add_link_mode(ks, advertising, 644 FEC_RS); 645 ethtool_link_ksettings_add_link_mode(ks, advertising, 646 FEC_BASER); 647 } 648 } 649 /* need to add new 10G PHY types */ 650 if (phy_types & I40E_CAP_PHY_TYPE_10GBASE_CR1 || 651 phy_types & I40E_CAP_PHY_TYPE_10GBASE_CR1_CU) { 652 ethtool_link_ksettings_add_link_mode(ks, supported, 653 10000baseCR_Full); 654 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB) 655 ethtool_link_ksettings_add_link_mode(ks, advertising, 656 10000baseCR_Full); 657 } 658 if (phy_types & I40E_CAP_PHY_TYPE_10GBASE_SR) { 659 ethtool_link_ksettings_add_link_mode(ks, supported, 660 10000baseSR_Full); 661 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB) 662 ethtool_link_ksettings_add_link_mode(ks, advertising, 663 10000baseSR_Full); 664 } 665 if (phy_types & I40E_CAP_PHY_TYPE_10GBASE_LR) { 666 ethtool_link_ksettings_add_link_mode(ks, supported, 667 10000baseLR_Full); 668 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB) 669 ethtool_link_ksettings_add_link_mode(ks, advertising, 670 10000baseLR_Full); 671 } 672 if (phy_types & I40E_CAP_PHY_TYPE_1000BASE_SX || 673 phy_types & I40E_CAP_PHY_TYPE_1000BASE_LX || 674 phy_types & I40E_CAP_PHY_TYPE_1000BASE_T_OPTICAL) { 675 ethtool_link_ksettings_add_link_mode(ks, supported, 676 1000baseX_Full); 677 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_1GB) 678 ethtool_link_ksettings_add_link_mode(ks, advertising, 679 1000baseX_Full); 680 } 681 /* Autoneg PHY types */ 682 if (phy_types & I40E_CAP_PHY_TYPE_SGMII || 683 phy_types & I40E_CAP_PHY_TYPE_40GBASE_KR4 || 684 phy_types & I40E_CAP_PHY_TYPE_40GBASE_CR4_CU || 685 phy_types & I40E_CAP_PHY_TYPE_40GBASE_CR4 || 686 phy_types & I40E_CAP_PHY_TYPE_25GBASE_SR || 687 phy_types & I40E_CAP_PHY_TYPE_25GBASE_LR || 688 phy_types & I40E_CAP_PHY_TYPE_25GBASE_KR || 689 phy_types & I40E_CAP_PHY_TYPE_25GBASE_CR || 690 phy_types & I40E_CAP_PHY_TYPE_20GBASE_KR2 || 691 phy_types & I40E_CAP_PHY_TYPE_10GBASE_SR || 692 phy_types & I40E_CAP_PHY_TYPE_10GBASE_LR || 693 phy_types & I40E_CAP_PHY_TYPE_10GBASE_KX4 || 694 phy_types & I40E_CAP_PHY_TYPE_10GBASE_KR || 695 phy_types & I40E_CAP_PHY_TYPE_10GBASE_CR1_CU || 696 phy_types & I40E_CAP_PHY_TYPE_10GBASE_CR1 || 697 phy_types & I40E_CAP_PHY_TYPE_10GBASE_T || 698 phy_types & I40E_CAP_PHY_TYPE_5GBASE_T || 699 phy_types & I40E_CAP_PHY_TYPE_2_5GBASE_T || 700 phy_types & I40E_CAP_PHY_TYPE_1000BASE_T_OPTICAL || 701 phy_types & I40E_CAP_PHY_TYPE_1000BASE_T || 702 phy_types & I40E_CAP_PHY_TYPE_1000BASE_SX || 703 phy_types & I40E_CAP_PHY_TYPE_1000BASE_LX || 704 phy_types & I40E_CAP_PHY_TYPE_1000BASE_KX || 705 phy_types & I40E_CAP_PHY_TYPE_100BASE_TX) { 706 ethtool_link_ksettings_add_link_mode(ks, supported, 707 Autoneg); 708 ethtool_link_ksettings_add_link_mode(ks, advertising, 709 Autoneg); 710 } 711 } 712 713 /** 714 * i40e_get_settings_link_up_fec - Get the FEC mode encoding from mask 715 * @req_fec_info: mask request FEC info 716 * @ks: ethtool ksettings to fill in 717 **/ 718 static void i40e_get_settings_link_up_fec(u8 req_fec_info, 719 struct ethtool_link_ksettings *ks) 720 { 721 ethtool_link_ksettings_add_link_mode(ks, supported, FEC_NONE); 722 ethtool_link_ksettings_add_link_mode(ks, supported, FEC_RS); 723 ethtool_link_ksettings_add_link_mode(ks, supported, FEC_BASER); 724 725 if ((I40E_AQ_SET_FEC_REQUEST_RS & req_fec_info) && 726 (I40E_AQ_SET_FEC_REQUEST_KR & req_fec_info)) { 727 ethtool_link_ksettings_add_link_mode(ks, advertising, 728 FEC_NONE); 729 ethtool_link_ksettings_add_link_mode(ks, advertising, 730 FEC_BASER); 731 ethtool_link_ksettings_add_link_mode(ks, advertising, FEC_RS); 732 } else if (I40E_AQ_SET_FEC_REQUEST_RS & req_fec_info) { 733 ethtool_link_ksettings_add_link_mode(ks, advertising, FEC_RS); 734 } else if (I40E_AQ_SET_FEC_REQUEST_KR & req_fec_info) { 735 ethtool_link_ksettings_add_link_mode(ks, advertising, 736 FEC_BASER); 737 } else { 738 ethtool_link_ksettings_add_link_mode(ks, advertising, 739 FEC_NONE); 740 } 741 } 742 743 /** 744 * i40e_get_settings_link_up - Get the Link settings for when link is up 745 * @hw: hw structure 746 * @ks: ethtool ksettings to fill in 747 * @netdev: network interface device structure 748 * @pf: pointer to physical function struct 749 **/ 750 static void i40e_get_settings_link_up(struct i40e_hw *hw, 751 struct ethtool_link_ksettings *ks, 752 struct net_device *netdev, 753 struct i40e_pf *pf) 754 { 755 struct i40e_link_status *hw_link_info = &hw->phy.link_info; 756 struct ethtool_link_ksettings cap_ksettings; 757 u32 link_speed = hw_link_info->link_speed; 758 759 /* Initialize supported and advertised settings based on phy settings */ 760 switch (hw_link_info->phy_type) { 761 case I40E_PHY_TYPE_40GBASE_CR4: 762 case I40E_PHY_TYPE_40GBASE_CR4_CU: 763 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg); 764 ethtool_link_ksettings_add_link_mode(ks, supported, 765 40000baseCR4_Full); 766 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg); 767 ethtool_link_ksettings_add_link_mode(ks, advertising, 768 40000baseCR4_Full); 769 break; 770 case I40E_PHY_TYPE_XLAUI: 771 case I40E_PHY_TYPE_XLPPI: 772 case I40E_PHY_TYPE_40GBASE_AOC: 773 ethtool_link_ksettings_add_link_mode(ks, supported, 774 40000baseCR4_Full); 775 ethtool_link_ksettings_add_link_mode(ks, advertising, 776 40000baseCR4_Full); 777 break; 778 case I40E_PHY_TYPE_40GBASE_SR4: 779 ethtool_link_ksettings_add_link_mode(ks, supported, 780 40000baseSR4_Full); 781 ethtool_link_ksettings_add_link_mode(ks, advertising, 782 40000baseSR4_Full); 783 break; 784 case I40E_PHY_TYPE_40GBASE_LR4: 785 ethtool_link_ksettings_add_link_mode(ks, supported, 786 40000baseLR4_Full); 787 ethtool_link_ksettings_add_link_mode(ks, advertising, 788 40000baseLR4_Full); 789 break; 790 case I40E_PHY_TYPE_25GBASE_SR: 791 case I40E_PHY_TYPE_25GBASE_LR: 792 case I40E_PHY_TYPE_10GBASE_SR: 793 case I40E_PHY_TYPE_10GBASE_LR: 794 case I40E_PHY_TYPE_1000BASE_SX: 795 case I40E_PHY_TYPE_1000BASE_LX: 796 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg); 797 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg); 798 ethtool_link_ksettings_add_link_mode(ks, supported, 799 25000baseSR_Full); 800 ethtool_link_ksettings_add_link_mode(ks, advertising, 801 25000baseSR_Full); 802 i40e_get_settings_link_up_fec(hw_link_info->req_fec_info, ks); 803 ethtool_link_ksettings_add_link_mode(ks, supported, 804 10000baseSR_Full); 805 ethtool_link_ksettings_add_link_mode(ks, advertising, 806 10000baseSR_Full); 807 ethtool_link_ksettings_add_link_mode(ks, supported, 808 10000baseLR_Full); 809 ethtool_link_ksettings_add_link_mode(ks, advertising, 810 10000baseLR_Full); 811 ethtool_link_ksettings_add_link_mode(ks, supported, 812 1000baseX_Full); 813 ethtool_link_ksettings_add_link_mode(ks, advertising, 814 1000baseX_Full); 815 ethtool_link_ksettings_add_link_mode(ks, supported, 816 10000baseT_Full); 817 if (hw_link_info->module_type[2] & 818 I40E_MODULE_TYPE_1000BASE_SX || 819 hw_link_info->module_type[2] & 820 I40E_MODULE_TYPE_1000BASE_LX) { 821 ethtool_link_ksettings_add_link_mode(ks, supported, 822 1000baseT_Full); 823 if (hw_link_info->requested_speeds & 824 I40E_LINK_SPEED_1GB) 825 ethtool_link_ksettings_add_link_mode( 826 ks, advertising, 1000baseT_Full); 827 } 828 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB) 829 ethtool_link_ksettings_add_link_mode(ks, advertising, 830 10000baseT_Full); 831 break; 832 case I40E_PHY_TYPE_10GBASE_T: 833 case I40E_PHY_TYPE_5GBASE_T: 834 case I40E_PHY_TYPE_2_5GBASE_T: 835 case I40E_PHY_TYPE_1000BASE_T: 836 case I40E_PHY_TYPE_100BASE_TX: 837 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg); 838 ethtool_link_ksettings_add_link_mode(ks, supported, 839 10000baseT_Full); 840 ethtool_link_ksettings_add_link_mode(ks, supported, 841 5000baseT_Full); 842 ethtool_link_ksettings_add_link_mode(ks, supported, 843 2500baseT_Full); 844 ethtool_link_ksettings_add_link_mode(ks, supported, 845 1000baseT_Full); 846 ethtool_link_ksettings_add_link_mode(ks, supported, 847 100baseT_Full); 848 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg); 849 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB) 850 ethtool_link_ksettings_add_link_mode(ks, advertising, 851 10000baseT_Full); 852 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_5GB) 853 ethtool_link_ksettings_add_link_mode(ks, advertising, 854 5000baseT_Full); 855 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_2_5GB) 856 ethtool_link_ksettings_add_link_mode(ks, advertising, 857 2500baseT_Full); 858 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_1GB) 859 ethtool_link_ksettings_add_link_mode(ks, advertising, 860 1000baseT_Full); 861 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_100MB) 862 ethtool_link_ksettings_add_link_mode(ks, advertising, 863 100baseT_Full); 864 break; 865 case I40E_PHY_TYPE_1000BASE_T_OPTICAL: 866 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg); 867 ethtool_link_ksettings_add_link_mode(ks, supported, 868 1000baseT_Full); 869 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg); 870 ethtool_link_ksettings_add_link_mode(ks, advertising, 871 1000baseT_Full); 872 break; 873 case I40E_PHY_TYPE_10GBASE_CR1_CU: 874 case I40E_PHY_TYPE_10GBASE_CR1: 875 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg); 876 ethtool_link_ksettings_add_link_mode(ks, supported, 877 10000baseT_Full); 878 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg); 879 ethtool_link_ksettings_add_link_mode(ks, advertising, 880 10000baseT_Full); 881 break; 882 case I40E_PHY_TYPE_XAUI: 883 case I40E_PHY_TYPE_XFI: 884 case I40E_PHY_TYPE_SFI: 885 case I40E_PHY_TYPE_10GBASE_SFPP_CU: 886 case I40E_PHY_TYPE_10GBASE_AOC: 887 ethtool_link_ksettings_add_link_mode(ks, supported, 888 10000baseT_Full); 889 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_10GB) 890 ethtool_link_ksettings_add_link_mode(ks, advertising, 891 10000baseT_Full); 892 break; 893 case I40E_PHY_TYPE_SGMII: 894 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg); 895 ethtool_link_ksettings_add_link_mode(ks, supported, 896 1000baseT_Full); 897 if (hw_link_info->requested_speeds & I40E_LINK_SPEED_1GB) 898 ethtool_link_ksettings_add_link_mode(ks, advertising, 899 1000baseT_Full); 900 if (pf->hw_features & I40E_HW_100M_SGMII_CAPABLE) { 901 ethtool_link_ksettings_add_link_mode(ks, supported, 902 100baseT_Full); 903 if (hw_link_info->requested_speeds & 904 I40E_LINK_SPEED_100MB) 905 ethtool_link_ksettings_add_link_mode( 906 ks, advertising, 100baseT_Full); 907 } 908 break; 909 case I40E_PHY_TYPE_40GBASE_KR4: 910 case I40E_PHY_TYPE_25GBASE_KR: 911 case I40E_PHY_TYPE_20GBASE_KR2: 912 case I40E_PHY_TYPE_10GBASE_KR: 913 case I40E_PHY_TYPE_10GBASE_KX4: 914 case I40E_PHY_TYPE_1000BASE_KX: 915 ethtool_link_ksettings_add_link_mode(ks, supported, 916 40000baseKR4_Full); 917 ethtool_link_ksettings_add_link_mode(ks, supported, 918 25000baseKR_Full); 919 ethtool_link_ksettings_add_link_mode(ks, supported, 920 20000baseKR2_Full); 921 ethtool_link_ksettings_add_link_mode(ks, supported, 922 10000baseKR_Full); 923 ethtool_link_ksettings_add_link_mode(ks, supported, 924 10000baseKX4_Full); 925 ethtool_link_ksettings_add_link_mode(ks, supported, 926 1000baseKX_Full); 927 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg); 928 ethtool_link_ksettings_add_link_mode(ks, advertising, 929 40000baseKR4_Full); 930 ethtool_link_ksettings_add_link_mode(ks, advertising, 931 25000baseKR_Full); 932 i40e_get_settings_link_up_fec(hw_link_info->req_fec_info, ks); 933 ethtool_link_ksettings_add_link_mode(ks, advertising, 934 20000baseKR2_Full); 935 ethtool_link_ksettings_add_link_mode(ks, advertising, 936 10000baseKR_Full); 937 ethtool_link_ksettings_add_link_mode(ks, advertising, 938 10000baseKX4_Full); 939 ethtool_link_ksettings_add_link_mode(ks, advertising, 940 1000baseKX_Full); 941 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg); 942 break; 943 case I40E_PHY_TYPE_25GBASE_CR: 944 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg); 945 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg); 946 ethtool_link_ksettings_add_link_mode(ks, supported, 947 25000baseCR_Full); 948 ethtool_link_ksettings_add_link_mode(ks, advertising, 949 25000baseCR_Full); 950 i40e_get_settings_link_up_fec(hw_link_info->req_fec_info, ks); 951 952 break; 953 case I40E_PHY_TYPE_25GBASE_AOC: 954 case I40E_PHY_TYPE_25GBASE_ACC: 955 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg); 956 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg); 957 ethtool_link_ksettings_add_link_mode(ks, supported, 958 25000baseCR_Full); 959 ethtool_link_ksettings_add_link_mode(ks, advertising, 960 25000baseCR_Full); 961 i40e_get_settings_link_up_fec(hw_link_info->req_fec_info, ks); 962 963 ethtool_link_ksettings_add_link_mode(ks, supported, 964 10000baseCR_Full); 965 ethtool_link_ksettings_add_link_mode(ks, advertising, 966 10000baseCR_Full); 967 break; 968 default: 969 /* if we got here and link is up something bad is afoot */ 970 netdev_info(netdev, 971 "WARNING: Link is up but PHY type 0x%x is not recognized.\n", 972 hw_link_info->phy_type); 973 } 974 975 /* Now that we've worked out everything that could be supported by the 976 * current PHY type, get what is supported by the NVM and intersect 977 * them to get what is truly supported 978 */ 979 memset(&cap_ksettings, 0, sizeof(struct ethtool_link_ksettings)); 980 i40e_phy_type_to_ethtool(pf, &cap_ksettings); 981 ethtool_intersect_link_masks(ks, &cap_ksettings); 982 983 /* Set speed and duplex */ 984 switch (link_speed) { 985 case I40E_LINK_SPEED_40GB: 986 ks->base.speed = SPEED_40000; 987 break; 988 case I40E_LINK_SPEED_25GB: 989 ks->base.speed = SPEED_25000; 990 break; 991 case I40E_LINK_SPEED_20GB: 992 ks->base.speed = SPEED_20000; 993 break; 994 case I40E_LINK_SPEED_10GB: 995 ks->base.speed = SPEED_10000; 996 break; 997 case I40E_LINK_SPEED_5GB: 998 ks->base.speed = SPEED_5000; 999 break; 1000 case I40E_LINK_SPEED_2_5GB: 1001 ks->base.speed = SPEED_2500; 1002 break; 1003 case I40E_LINK_SPEED_1GB: 1004 ks->base.speed = SPEED_1000; 1005 break; 1006 case I40E_LINK_SPEED_100MB: 1007 ks->base.speed = SPEED_100; 1008 break; 1009 default: 1010 ks->base.speed = SPEED_UNKNOWN; 1011 break; 1012 } 1013 ks->base.duplex = DUPLEX_FULL; 1014 } 1015 1016 /** 1017 * i40e_get_settings_link_down - Get the Link settings for when link is down 1018 * @hw: hw structure 1019 * @ks: ethtool ksettings to fill in 1020 * @pf: pointer to physical function struct 1021 * 1022 * Reports link settings that can be determined when link is down 1023 **/ 1024 static void i40e_get_settings_link_down(struct i40e_hw *hw, 1025 struct ethtool_link_ksettings *ks, 1026 struct i40e_pf *pf) 1027 { 1028 /* link is down and the driver needs to fall back on 1029 * supported phy types to figure out what info to display 1030 */ 1031 i40e_phy_type_to_ethtool(pf, ks); 1032 1033 /* With no link speed and duplex are unknown */ 1034 ks->base.speed = SPEED_UNKNOWN; 1035 ks->base.duplex = DUPLEX_UNKNOWN; 1036 } 1037 1038 /** 1039 * i40e_get_link_ksettings - Get Link Speed and Duplex settings 1040 * @netdev: network interface device structure 1041 * @ks: ethtool ksettings 1042 * 1043 * Reports speed/duplex settings based on media_type 1044 **/ 1045 static int i40e_get_link_ksettings(struct net_device *netdev, 1046 struct ethtool_link_ksettings *ks) 1047 { 1048 struct i40e_netdev_priv *np = netdev_priv(netdev); 1049 struct i40e_pf *pf = np->vsi->back; 1050 struct i40e_hw *hw = &pf->hw; 1051 struct i40e_link_status *hw_link_info = &hw->phy.link_info; 1052 bool link_up = hw_link_info->link_info & I40E_AQ_LINK_UP; 1053 1054 ethtool_link_ksettings_zero_link_mode(ks, supported); 1055 ethtool_link_ksettings_zero_link_mode(ks, advertising); 1056 1057 if (link_up) 1058 i40e_get_settings_link_up(hw, ks, netdev, pf); 1059 else 1060 i40e_get_settings_link_down(hw, ks, pf); 1061 1062 /* Now set the settings that don't rely on link being up/down */ 1063 /* Set autoneg settings */ 1064 ks->base.autoneg = ((hw_link_info->an_info & I40E_AQ_AN_COMPLETED) ? 1065 AUTONEG_ENABLE : AUTONEG_DISABLE); 1066 1067 /* Set media type settings */ 1068 switch (hw->phy.media_type) { 1069 case I40E_MEDIA_TYPE_BACKPLANE: 1070 ethtool_link_ksettings_add_link_mode(ks, supported, Autoneg); 1071 ethtool_link_ksettings_add_link_mode(ks, supported, Backplane); 1072 ethtool_link_ksettings_add_link_mode(ks, advertising, Autoneg); 1073 ethtool_link_ksettings_add_link_mode(ks, advertising, 1074 Backplane); 1075 ks->base.port = PORT_NONE; 1076 break; 1077 case I40E_MEDIA_TYPE_BASET: 1078 ethtool_link_ksettings_add_link_mode(ks, supported, TP); 1079 ethtool_link_ksettings_add_link_mode(ks, advertising, TP); 1080 ks->base.port = PORT_TP; 1081 break; 1082 case I40E_MEDIA_TYPE_DA: 1083 case I40E_MEDIA_TYPE_CX4: 1084 ethtool_link_ksettings_add_link_mode(ks, supported, FIBRE); 1085 ethtool_link_ksettings_add_link_mode(ks, advertising, FIBRE); 1086 ks->base.port = PORT_DA; 1087 break; 1088 case I40E_MEDIA_TYPE_FIBER: 1089 ethtool_link_ksettings_add_link_mode(ks, supported, FIBRE); 1090 ethtool_link_ksettings_add_link_mode(ks, advertising, FIBRE); 1091 ks->base.port = PORT_FIBRE; 1092 break; 1093 case I40E_MEDIA_TYPE_UNKNOWN: 1094 default: 1095 ks->base.port = PORT_OTHER; 1096 break; 1097 } 1098 1099 /* Set flow control settings */ 1100 ethtool_link_ksettings_add_link_mode(ks, supported, Pause); 1101 1102 switch (hw->fc.requested_mode) { 1103 case I40E_FC_FULL: 1104 ethtool_link_ksettings_add_link_mode(ks, advertising, Pause); 1105 break; 1106 case I40E_FC_TX_PAUSE: 1107 ethtool_link_ksettings_add_link_mode(ks, advertising, 1108 Asym_Pause); 1109 break; 1110 case I40E_FC_RX_PAUSE: 1111 ethtool_link_ksettings_add_link_mode(ks, advertising, Pause); 1112 ethtool_link_ksettings_add_link_mode(ks, advertising, 1113 Asym_Pause); 1114 break; 1115 default: 1116 ethtool_link_ksettings_del_link_mode(ks, advertising, Pause); 1117 ethtool_link_ksettings_del_link_mode(ks, advertising, 1118 Asym_Pause); 1119 break; 1120 } 1121 1122 return 0; 1123 } 1124 1125 /** 1126 * i40e_set_link_ksettings - Set Speed and Duplex 1127 * @netdev: network interface device structure 1128 * @ks: ethtool ksettings 1129 * 1130 * Set speed/duplex per media_types advertised/forced 1131 **/ 1132 static int i40e_set_link_ksettings(struct net_device *netdev, 1133 const struct ethtool_link_ksettings *ks) 1134 { 1135 struct i40e_netdev_priv *np = netdev_priv(netdev); 1136 struct i40e_aq_get_phy_abilities_resp abilities; 1137 struct ethtool_link_ksettings safe_ks; 1138 struct ethtool_link_ksettings copy_ks; 1139 struct i40e_aq_set_phy_config config; 1140 struct i40e_pf *pf = np->vsi->back; 1141 struct i40e_vsi *vsi = np->vsi; 1142 struct i40e_hw *hw = &pf->hw; 1143 bool autoneg_changed = false; 1144 i40e_status status = 0; 1145 int timeout = 50; 1146 int err = 0; 1147 u8 autoneg; 1148 1149 /* Changing port settings is not supported if this isn't the 1150 * port's controlling PF 1151 */ 1152 if (hw->partition_id != 1) { 1153 i40e_partition_setting_complaint(pf); 1154 return -EOPNOTSUPP; 1155 } 1156 if (vsi != pf->vsi[pf->lan_vsi]) 1157 return -EOPNOTSUPP; 1158 if (hw->phy.media_type != I40E_MEDIA_TYPE_BASET && 1159 hw->phy.media_type != I40E_MEDIA_TYPE_FIBER && 1160 hw->phy.media_type != I40E_MEDIA_TYPE_BACKPLANE && 1161 hw->phy.media_type != I40E_MEDIA_TYPE_DA && 1162 hw->phy.link_info.link_info & I40E_AQ_LINK_UP) 1163 return -EOPNOTSUPP; 1164 if (hw->device_id == I40E_DEV_ID_KX_B || 1165 hw->device_id == I40E_DEV_ID_KX_C || 1166 hw->device_id == I40E_DEV_ID_20G_KR2 || 1167 hw->device_id == I40E_DEV_ID_20G_KR2_A || 1168 hw->device_id == I40E_DEV_ID_25G_B || 1169 hw->device_id == I40E_DEV_ID_KX_X722) { 1170 netdev_info(netdev, "Changing settings is not supported on backplane.\n"); 1171 return -EOPNOTSUPP; 1172 } 1173 1174 /* copy the ksettings to copy_ks to avoid modifying the origin */ 1175 memcpy(©_ks, ks, sizeof(struct ethtool_link_ksettings)); 1176 1177 /* save autoneg out of ksettings */ 1178 autoneg = copy_ks.base.autoneg; 1179 1180 /* get our own copy of the bits to check against */ 1181 memset(&safe_ks, 0, sizeof(struct ethtool_link_ksettings)); 1182 safe_ks.base.cmd = copy_ks.base.cmd; 1183 safe_ks.base.link_mode_masks_nwords = 1184 copy_ks.base.link_mode_masks_nwords; 1185 i40e_get_link_ksettings(netdev, &safe_ks); 1186 1187 /* Get link modes supported by hardware and check against modes 1188 * requested by the user. Return an error if unsupported mode was set. 1189 */ 1190 if (!bitmap_subset(copy_ks.link_modes.advertising, 1191 safe_ks.link_modes.supported, 1192 __ETHTOOL_LINK_MODE_MASK_NBITS)) 1193 return -EINVAL; 1194 1195 /* set autoneg back to what it currently is */ 1196 copy_ks.base.autoneg = safe_ks.base.autoneg; 1197 1198 /* If copy_ks.base and safe_ks.base are not the same now, then they are 1199 * trying to set something that we do not support. 1200 */ 1201 if (memcmp(©_ks.base, &safe_ks.base, 1202 sizeof(struct ethtool_link_settings))) 1203 return -EOPNOTSUPP; 1204 1205 while (test_and_set_bit(__I40E_CONFIG_BUSY, pf->state)) { 1206 timeout--; 1207 if (!timeout) 1208 return -EBUSY; 1209 usleep_range(1000, 2000); 1210 } 1211 1212 /* Get the current phy config */ 1213 status = i40e_aq_get_phy_capabilities(hw, false, false, &abilities, 1214 NULL); 1215 if (status) { 1216 err = -EAGAIN; 1217 goto done; 1218 } 1219 1220 /* Copy abilities to config in case autoneg is not 1221 * set below 1222 */ 1223 memset(&config, 0, sizeof(struct i40e_aq_set_phy_config)); 1224 config.abilities = abilities.abilities; 1225 1226 /* Check autoneg */ 1227 if (autoneg == AUTONEG_ENABLE) { 1228 /* If autoneg was not already enabled */ 1229 if (!(hw->phy.link_info.an_info & I40E_AQ_AN_COMPLETED)) { 1230 /* If autoneg is not supported, return error */ 1231 if (!ethtool_link_ksettings_test_link_mode(&safe_ks, 1232 supported, 1233 Autoneg)) { 1234 netdev_info(netdev, "Autoneg not supported on this phy\n"); 1235 err = -EINVAL; 1236 goto done; 1237 } 1238 /* Autoneg is allowed to change */ 1239 config.abilities = abilities.abilities | 1240 I40E_AQ_PHY_ENABLE_AN; 1241 autoneg_changed = true; 1242 } 1243 } else { 1244 /* If autoneg is currently enabled */ 1245 if (hw->phy.link_info.an_info & I40E_AQ_AN_COMPLETED) { 1246 /* If autoneg is supported 10GBASE_T is the only PHY 1247 * that can disable it, so otherwise return error 1248 */ 1249 if (ethtool_link_ksettings_test_link_mode(&safe_ks, 1250 supported, 1251 Autoneg) && 1252 hw->phy.link_info.phy_type != 1253 I40E_PHY_TYPE_10GBASE_T) { 1254 netdev_info(netdev, "Autoneg cannot be disabled on this phy\n"); 1255 err = -EINVAL; 1256 goto done; 1257 } 1258 /* Autoneg is allowed to change */ 1259 config.abilities = abilities.abilities & 1260 ~I40E_AQ_PHY_ENABLE_AN; 1261 autoneg_changed = true; 1262 } 1263 } 1264 1265 if (ethtool_link_ksettings_test_link_mode(ks, advertising, 1266 100baseT_Full)) 1267 config.link_speed |= I40E_LINK_SPEED_100MB; 1268 if (ethtool_link_ksettings_test_link_mode(ks, advertising, 1269 1000baseT_Full) || 1270 ethtool_link_ksettings_test_link_mode(ks, advertising, 1271 1000baseX_Full) || 1272 ethtool_link_ksettings_test_link_mode(ks, advertising, 1273 1000baseKX_Full)) 1274 config.link_speed |= I40E_LINK_SPEED_1GB; 1275 if (ethtool_link_ksettings_test_link_mode(ks, advertising, 1276 10000baseT_Full) || 1277 ethtool_link_ksettings_test_link_mode(ks, advertising, 1278 10000baseKX4_Full) || 1279 ethtool_link_ksettings_test_link_mode(ks, advertising, 1280 10000baseKR_Full) || 1281 ethtool_link_ksettings_test_link_mode(ks, advertising, 1282 10000baseCR_Full) || 1283 ethtool_link_ksettings_test_link_mode(ks, advertising, 1284 10000baseSR_Full) || 1285 ethtool_link_ksettings_test_link_mode(ks, advertising, 1286 10000baseLR_Full)) 1287 config.link_speed |= I40E_LINK_SPEED_10GB; 1288 if (ethtool_link_ksettings_test_link_mode(ks, advertising, 1289 2500baseT_Full)) 1290 config.link_speed |= I40E_LINK_SPEED_2_5GB; 1291 if (ethtool_link_ksettings_test_link_mode(ks, advertising, 1292 5000baseT_Full)) 1293 config.link_speed |= I40E_LINK_SPEED_5GB; 1294 if (ethtool_link_ksettings_test_link_mode(ks, advertising, 1295 20000baseKR2_Full)) 1296 config.link_speed |= I40E_LINK_SPEED_20GB; 1297 if (ethtool_link_ksettings_test_link_mode(ks, advertising, 1298 25000baseCR_Full) || 1299 ethtool_link_ksettings_test_link_mode(ks, advertising, 1300 25000baseKR_Full) || 1301 ethtool_link_ksettings_test_link_mode(ks, advertising, 1302 25000baseSR_Full)) 1303 config.link_speed |= I40E_LINK_SPEED_25GB; 1304 if (ethtool_link_ksettings_test_link_mode(ks, advertising, 1305 40000baseKR4_Full) || 1306 ethtool_link_ksettings_test_link_mode(ks, advertising, 1307 40000baseCR4_Full) || 1308 ethtool_link_ksettings_test_link_mode(ks, advertising, 1309 40000baseSR4_Full) || 1310 ethtool_link_ksettings_test_link_mode(ks, advertising, 1311 40000baseLR4_Full)) 1312 config.link_speed |= I40E_LINK_SPEED_40GB; 1313 1314 /* If speed didn't get set, set it to what it currently is. 1315 * This is needed because if advertise is 0 (as it is when autoneg 1316 * is disabled) then speed won't get set. 1317 */ 1318 if (!config.link_speed) 1319 config.link_speed = abilities.link_speed; 1320 if (autoneg_changed || abilities.link_speed != config.link_speed) { 1321 /* copy over the rest of the abilities */ 1322 config.phy_type = abilities.phy_type; 1323 config.phy_type_ext = abilities.phy_type_ext; 1324 config.eee_capability = abilities.eee_capability; 1325 config.eeer = abilities.eeer_val; 1326 config.low_power_ctrl = abilities.d3_lpan; 1327 config.fec_config = abilities.fec_cfg_curr_mod_ext_info & 1328 I40E_AQ_PHY_FEC_CONFIG_MASK; 1329 1330 /* save the requested speeds */ 1331 hw->phy.link_info.requested_speeds = config.link_speed; 1332 /* set link and auto negotiation so changes take effect */ 1333 config.abilities |= I40E_AQ_PHY_ENABLE_ATOMIC_LINK; 1334 /* If link is up put link down */ 1335 if (hw->phy.link_info.link_info & I40E_AQ_LINK_UP) { 1336 /* Tell the OS link is going down, the link will go 1337 * back up when fw says it is ready asynchronously 1338 */ 1339 i40e_print_link_message(vsi, false); 1340 netif_carrier_off(netdev); 1341 netif_tx_stop_all_queues(netdev); 1342 } 1343 1344 /* make the aq call */ 1345 status = i40e_aq_set_phy_config(hw, &config, NULL); 1346 if (status) { 1347 netdev_info(netdev, 1348 "Set phy config failed, err %s aq_err %s\n", 1349 i40e_stat_str(hw, status), 1350 i40e_aq_str(hw, hw->aq.asq_last_status)); 1351 err = -EAGAIN; 1352 goto done; 1353 } 1354 1355 status = i40e_update_link_info(hw); 1356 if (status) 1357 netdev_dbg(netdev, 1358 "Updating link info failed with err %s aq_err %s\n", 1359 i40e_stat_str(hw, status), 1360 i40e_aq_str(hw, hw->aq.asq_last_status)); 1361 1362 } else { 1363 netdev_info(netdev, "Nothing changed, exiting without setting anything.\n"); 1364 } 1365 1366 done: 1367 clear_bit(__I40E_CONFIG_BUSY, pf->state); 1368 1369 return err; 1370 } 1371 1372 static int i40e_set_fec_cfg(struct net_device *netdev, u8 fec_cfg) 1373 { 1374 struct i40e_netdev_priv *np = netdev_priv(netdev); 1375 struct i40e_aq_get_phy_abilities_resp abilities; 1376 struct i40e_pf *pf = np->vsi->back; 1377 struct i40e_hw *hw = &pf->hw; 1378 i40e_status status = 0; 1379 u32 flags = 0; 1380 int err = 0; 1381 1382 flags = READ_ONCE(pf->flags); 1383 i40e_set_fec_in_flags(fec_cfg, &flags); 1384 1385 /* Get the current phy config */ 1386 memset(&abilities, 0, sizeof(abilities)); 1387 status = i40e_aq_get_phy_capabilities(hw, false, false, &abilities, 1388 NULL); 1389 if (status) { 1390 err = -EAGAIN; 1391 goto done; 1392 } 1393 1394 if (abilities.fec_cfg_curr_mod_ext_info != fec_cfg) { 1395 struct i40e_aq_set_phy_config config; 1396 1397 memset(&config, 0, sizeof(config)); 1398 config.phy_type = abilities.phy_type; 1399 config.abilities = abilities.abilities; 1400 config.phy_type_ext = abilities.phy_type_ext; 1401 config.link_speed = abilities.link_speed; 1402 config.eee_capability = abilities.eee_capability; 1403 config.eeer = abilities.eeer_val; 1404 config.low_power_ctrl = abilities.d3_lpan; 1405 config.fec_config = fec_cfg & I40E_AQ_PHY_FEC_CONFIG_MASK; 1406 status = i40e_aq_set_phy_config(hw, &config, NULL); 1407 if (status) { 1408 netdev_info(netdev, 1409 "Set phy config failed, err %s aq_err %s\n", 1410 i40e_stat_str(hw, status), 1411 i40e_aq_str(hw, hw->aq.asq_last_status)); 1412 err = -EAGAIN; 1413 goto done; 1414 } 1415 pf->flags = flags; 1416 status = i40e_update_link_info(hw); 1417 if (status) 1418 /* debug level message only due to relation to the link 1419 * itself rather than to the FEC settings 1420 * (e.g. no physical connection etc.) 1421 */ 1422 netdev_dbg(netdev, 1423 "Updating link info failed with err %s aq_err %s\n", 1424 i40e_stat_str(hw, status), 1425 i40e_aq_str(hw, hw->aq.asq_last_status)); 1426 } 1427 1428 done: 1429 return err; 1430 } 1431 1432 static int i40e_get_fec_param(struct net_device *netdev, 1433 struct ethtool_fecparam *fecparam) 1434 { 1435 struct i40e_netdev_priv *np = netdev_priv(netdev); 1436 struct i40e_aq_get_phy_abilities_resp abilities; 1437 struct i40e_pf *pf = np->vsi->back; 1438 struct i40e_hw *hw = &pf->hw; 1439 i40e_status status = 0; 1440 int err = 0; 1441 u8 fec_cfg; 1442 1443 /* Get the current phy config */ 1444 memset(&abilities, 0, sizeof(abilities)); 1445 status = i40e_aq_get_phy_capabilities(hw, false, false, &abilities, 1446 NULL); 1447 if (status) { 1448 err = -EAGAIN; 1449 goto done; 1450 } 1451 1452 fecparam->fec = 0; 1453 fec_cfg = abilities.fec_cfg_curr_mod_ext_info; 1454 if (fec_cfg & I40E_AQ_SET_FEC_AUTO) 1455 fecparam->fec |= ETHTOOL_FEC_AUTO; 1456 else if (fec_cfg & (I40E_AQ_SET_FEC_REQUEST_RS | 1457 I40E_AQ_SET_FEC_ABILITY_RS)) 1458 fecparam->fec |= ETHTOOL_FEC_RS; 1459 else if (fec_cfg & (I40E_AQ_SET_FEC_REQUEST_KR | 1460 I40E_AQ_SET_FEC_ABILITY_KR)) 1461 fecparam->fec |= ETHTOOL_FEC_BASER; 1462 if (fec_cfg == 0) 1463 fecparam->fec |= ETHTOOL_FEC_OFF; 1464 1465 if (hw->phy.link_info.fec_info & I40E_AQ_CONFIG_FEC_KR_ENA) 1466 fecparam->active_fec = ETHTOOL_FEC_BASER; 1467 else if (hw->phy.link_info.fec_info & I40E_AQ_CONFIG_FEC_RS_ENA) 1468 fecparam->active_fec = ETHTOOL_FEC_RS; 1469 else 1470 fecparam->active_fec = ETHTOOL_FEC_OFF; 1471 done: 1472 return err; 1473 } 1474 1475 static int i40e_set_fec_param(struct net_device *netdev, 1476 struct ethtool_fecparam *fecparam) 1477 { 1478 struct i40e_netdev_priv *np = netdev_priv(netdev); 1479 struct i40e_pf *pf = np->vsi->back; 1480 struct i40e_hw *hw = &pf->hw; 1481 u8 fec_cfg = 0; 1482 int err = 0; 1483 1484 if (hw->device_id != I40E_DEV_ID_25G_SFP28 && 1485 hw->device_id != I40E_DEV_ID_25G_B) { 1486 err = -EPERM; 1487 goto done; 1488 } 1489 1490 switch (fecparam->fec) { 1491 case ETHTOOL_FEC_AUTO: 1492 fec_cfg = I40E_AQ_SET_FEC_AUTO; 1493 break; 1494 case ETHTOOL_FEC_RS: 1495 fec_cfg = (I40E_AQ_SET_FEC_REQUEST_RS | 1496 I40E_AQ_SET_FEC_ABILITY_RS); 1497 break; 1498 case ETHTOOL_FEC_BASER: 1499 fec_cfg = (I40E_AQ_SET_FEC_REQUEST_KR | 1500 I40E_AQ_SET_FEC_ABILITY_KR); 1501 break; 1502 case ETHTOOL_FEC_OFF: 1503 case ETHTOOL_FEC_NONE: 1504 fec_cfg = 0; 1505 break; 1506 default: 1507 dev_warn(&pf->pdev->dev, "Unsupported FEC mode: %d", 1508 fecparam->fec); 1509 err = -EINVAL; 1510 goto done; 1511 } 1512 1513 err = i40e_set_fec_cfg(netdev, fec_cfg); 1514 1515 done: 1516 return err; 1517 } 1518 1519 static int i40e_nway_reset(struct net_device *netdev) 1520 { 1521 /* restart autonegotiation */ 1522 struct i40e_netdev_priv *np = netdev_priv(netdev); 1523 struct i40e_pf *pf = np->vsi->back; 1524 struct i40e_hw *hw = &pf->hw; 1525 bool link_up = hw->phy.link_info.link_info & I40E_AQ_LINK_UP; 1526 i40e_status ret = 0; 1527 1528 ret = i40e_aq_set_link_restart_an(hw, link_up, NULL); 1529 if (ret) { 1530 netdev_info(netdev, "link restart failed, err %s aq_err %s\n", 1531 i40e_stat_str(hw, ret), 1532 i40e_aq_str(hw, hw->aq.asq_last_status)); 1533 return -EIO; 1534 } 1535 1536 return 0; 1537 } 1538 1539 /** 1540 * i40e_get_pauseparam - Get Flow Control status 1541 * @netdev: netdevice structure 1542 * @pause: buffer to return pause parameters 1543 * 1544 * Return tx/rx-pause status 1545 **/ 1546 static void i40e_get_pauseparam(struct net_device *netdev, 1547 struct ethtool_pauseparam *pause) 1548 { 1549 struct i40e_netdev_priv *np = netdev_priv(netdev); 1550 struct i40e_pf *pf = np->vsi->back; 1551 struct i40e_hw *hw = &pf->hw; 1552 struct i40e_link_status *hw_link_info = &hw->phy.link_info; 1553 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config; 1554 1555 pause->autoneg = 1556 ((hw_link_info->an_info & I40E_AQ_AN_COMPLETED) ? 1557 AUTONEG_ENABLE : AUTONEG_DISABLE); 1558 1559 /* PFC enabled so report LFC as off */ 1560 if (dcbx_cfg->pfc.pfcenable) { 1561 pause->rx_pause = 0; 1562 pause->tx_pause = 0; 1563 return; 1564 } 1565 1566 if (hw->fc.current_mode == I40E_FC_RX_PAUSE) { 1567 pause->rx_pause = 1; 1568 } else if (hw->fc.current_mode == I40E_FC_TX_PAUSE) { 1569 pause->tx_pause = 1; 1570 } else if (hw->fc.current_mode == I40E_FC_FULL) { 1571 pause->rx_pause = 1; 1572 pause->tx_pause = 1; 1573 } 1574 } 1575 1576 /** 1577 * i40e_set_pauseparam - Set Flow Control parameter 1578 * @netdev: network interface device structure 1579 * @pause: return tx/rx flow control status 1580 **/ 1581 static int i40e_set_pauseparam(struct net_device *netdev, 1582 struct ethtool_pauseparam *pause) 1583 { 1584 struct i40e_netdev_priv *np = netdev_priv(netdev); 1585 struct i40e_pf *pf = np->vsi->back; 1586 struct i40e_vsi *vsi = np->vsi; 1587 struct i40e_hw *hw = &pf->hw; 1588 struct i40e_link_status *hw_link_info = &hw->phy.link_info; 1589 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config; 1590 bool link_up = hw_link_info->link_info & I40E_AQ_LINK_UP; 1591 i40e_status status; 1592 u8 aq_failures; 1593 int err = 0; 1594 u32 is_an; 1595 1596 /* Changing the port's flow control is not supported if this isn't the 1597 * port's controlling PF 1598 */ 1599 if (hw->partition_id != 1) { 1600 i40e_partition_setting_complaint(pf); 1601 return -EOPNOTSUPP; 1602 } 1603 1604 if (vsi != pf->vsi[pf->lan_vsi]) 1605 return -EOPNOTSUPP; 1606 1607 is_an = hw_link_info->an_info & I40E_AQ_AN_COMPLETED; 1608 if (pause->autoneg != is_an) { 1609 netdev_info(netdev, "To change autoneg please use: ethtool -s <dev> autoneg <on|off>\n"); 1610 return -EOPNOTSUPP; 1611 } 1612 1613 /* If we have link and don't have autoneg */ 1614 if (!test_bit(__I40E_DOWN, pf->state) && !is_an) { 1615 /* Send message that it might not necessarily work*/ 1616 netdev_info(netdev, "Autoneg did not complete so changing settings may not result in an actual change.\n"); 1617 } 1618 1619 if (dcbx_cfg->pfc.pfcenable) { 1620 netdev_info(netdev, 1621 "Priority flow control enabled. Cannot set link flow control.\n"); 1622 return -EOPNOTSUPP; 1623 } 1624 1625 if (pause->rx_pause && pause->tx_pause) 1626 hw->fc.requested_mode = I40E_FC_FULL; 1627 else if (pause->rx_pause && !pause->tx_pause) 1628 hw->fc.requested_mode = I40E_FC_RX_PAUSE; 1629 else if (!pause->rx_pause && pause->tx_pause) 1630 hw->fc.requested_mode = I40E_FC_TX_PAUSE; 1631 else if (!pause->rx_pause && !pause->tx_pause) 1632 hw->fc.requested_mode = I40E_FC_NONE; 1633 else 1634 return -EINVAL; 1635 1636 /* Tell the OS link is going down, the link will go back up when fw 1637 * says it is ready asynchronously 1638 */ 1639 i40e_print_link_message(vsi, false); 1640 netif_carrier_off(netdev); 1641 netif_tx_stop_all_queues(netdev); 1642 1643 /* Set the fc mode and only restart an if link is up*/ 1644 status = i40e_set_fc(hw, &aq_failures, link_up); 1645 1646 if (aq_failures & I40E_SET_FC_AQ_FAIL_GET) { 1647 netdev_info(netdev, "Set fc failed on the get_phy_capabilities call with err %s aq_err %s\n", 1648 i40e_stat_str(hw, status), 1649 i40e_aq_str(hw, hw->aq.asq_last_status)); 1650 err = -EAGAIN; 1651 } 1652 if (aq_failures & I40E_SET_FC_AQ_FAIL_SET) { 1653 netdev_info(netdev, "Set fc failed on the set_phy_config call with err %s aq_err %s\n", 1654 i40e_stat_str(hw, status), 1655 i40e_aq_str(hw, hw->aq.asq_last_status)); 1656 err = -EAGAIN; 1657 } 1658 if (aq_failures & I40E_SET_FC_AQ_FAIL_UPDATE) { 1659 netdev_info(netdev, "Set fc failed on the get_link_info call with err %s aq_err %s\n", 1660 i40e_stat_str(hw, status), 1661 i40e_aq_str(hw, hw->aq.asq_last_status)); 1662 err = -EAGAIN; 1663 } 1664 1665 if (!test_bit(__I40E_DOWN, pf->state) && is_an) { 1666 /* Give it a little more time to try to come back */ 1667 msleep(75); 1668 if (!test_bit(__I40E_DOWN, pf->state)) 1669 return i40e_nway_reset(netdev); 1670 } 1671 1672 return err; 1673 } 1674 1675 static u32 i40e_get_msglevel(struct net_device *netdev) 1676 { 1677 struct i40e_netdev_priv *np = netdev_priv(netdev); 1678 struct i40e_pf *pf = np->vsi->back; 1679 u32 debug_mask = pf->hw.debug_mask; 1680 1681 if (debug_mask) 1682 netdev_info(netdev, "i40e debug_mask: 0x%08X\n", debug_mask); 1683 1684 return pf->msg_enable; 1685 } 1686 1687 static void i40e_set_msglevel(struct net_device *netdev, u32 data) 1688 { 1689 struct i40e_netdev_priv *np = netdev_priv(netdev); 1690 struct i40e_pf *pf = np->vsi->back; 1691 1692 if (I40E_DEBUG_USER & data) 1693 pf->hw.debug_mask = data; 1694 else 1695 pf->msg_enable = data; 1696 } 1697 1698 static int i40e_get_regs_len(struct net_device *netdev) 1699 { 1700 int reg_count = 0; 1701 int i; 1702 1703 for (i = 0; i40e_reg_list[i].offset != 0; i++) 1704 reg_count += i40e_reg_list[i].elements; 1705 1706 return reg_count * sizeof(u32); 1707 } 1708 1709 static void i40e_get_regs(struct net_device *netdev, struct ethtool_regs *regs, 1710 void *p) 1711 { 1712 struct i40e_netdev_priv *np = netdev_priv(netdev); 1713 struct i40e_pf *pf = np->vsi->back; 1714 struct i40e_hw *hw = &pf->hw; 1715 u32 *reg_buf = p; 1716 unsigned int i, j, ri; 1717 u32 reg; 1718 1719 /* Tell ethtool which driver-version-specific regs output we have. 1720 * 1721 * At some point, if we have ethtool doing special formatting of 1722 * this data, it will rely on this version number to know how to 1723 * interpret things. Hence, this needs to be updated if/when the 1724 * diags register table is changed. 1725 */ 1726 regs->version = 1; 1727 1728 /* loop through the diags reg table for what to print */ 1729 ri = 0; 1730 for (i = 0; i40e_reg_list[i].offset != 0; i++) { 1731 for (j = 0; j < i40e_reg_list[i].elements; j++) { 1732 reg = i40e_reg_list[i].offset 1733 + (j * i40e_reg_list[i].stride); 1734 reg_buf[ri++] = rd32(hw, reg); 1735 } 1736 } 1737 1738 } 1739 1740 static int i40e_get_eeprom(struct net_device *netdev, 1741 struct ethtool_eeprom *eeprom, u8 *bytes) 1742 { 1743 struct i40e_netdev_priv *np = netdev_priv(netdev); 1744 struct i40e_hw *hw = &np->vsi->back->hw; 1745 struct i40e_pf *pf = np->vsi->back; 1746 int ret_val = 0, len, offset; 1747 u8 *eeprom_buff; 1748 u16 i, sectors; 1749 bool last; 1750 u32 magic; 1751 1752 #define I40E_NVM_SECTOR_SIZE 4096 1753 if (eeprom->len == 0) 1754 return -EINVAL; 1755 1756 /* check for NVMUpdate access method */ 1757 magic = hw->vendor_id | (hw->device_id << 16); 1758 if (eeprom->magic && eeprom->magic != magic) { 1759 struct i40e_nvm_access *cmd = (struct i40e_nvm_access *)eeprom; 1760 int errno = 0; 1761 1762 /* make sure it is the right magic for NVMUpdate */ 1763 if ((eeprom->magic >> 16) != hw->device_id) 1764 errno = -EINVAL; 1765 else if (test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state) || 1766 test_bit(__I40E_RESET_INTR_RECEIVED, pf->state)) 1767 errno = -EBUSY; 1768 else 1769 ret_val = i40e_nvmupd_command(hw, cmd, bytes, &errno); 1770 1771 if ((errno || ret_val) && (hw->debug_mask & I40E_DEBUG_NVM)) 1772 dev_info(&pf->pdev->dev, 1773 "NVMUpdate read failed err=%d status=0x%x errno=%d module=%d offset=0x%x size=%d\n", 1774 ret_val, hw->aq.asq_last_status, errno, 1775 (u8)(cmd->config & I40E_NVM_MOD_PNT_MASK), 1776 cmd->offset, cmd->data_size); 1777 1778 return errno; 1779 } 1780 1781 /* normal ethtool get_eeprom support */ 1782 eeprom->magic = hw->vendor_id | (hw->device_id << 16); 1783 1784 eeprom_buff = kzalloc(eeprom->len, GFP_KERNEL); 1785 if (!eeprom_buff) 1786 return -ENOMEM; 1787 1788 ret_val = i40e_acquire_nvm(hw, I40E_RESOURCE_READ); 1789 if (ret_val) { 1790 dev_info(&pf->pdev->dev, 1791 "Failed Acquiring NVM resource for read err=%d status=0x%x\n", 1792 ret_val, hw->aq.asq_last_status); 1793 goto free_buff; 1794 } 1795 1796 sectors = eeprom->len / I40E_NVM_SECTOR_SIZE; 1797 sectors += (eeprom->len % I40E_NVM_SECTOR_SIZE) ? 1 : 0; 1798 len = I40E_NVM_SECTOR_SIZE; 1799 last = false; 1800 for (i = 0; i < sectors; i++) { 1801 if (i == (sectors - 1)) { 1802 len = eeprom->len - (I40E_NVM_SECTOR_SIZE * i); 1803 last = true; 1804 } 1805 offset = eeprom->offset + (I40E_NVM_SECTOR_SIZE * i), 1806 ret_val = i40e_aq_read_nvm(hw, 0x0, offset, len, 1807 (u8 *)eeprom_buff + (I40E_NVM_SECTOR_SIZE * i), 1808 last, NULL); 1809 if (ret_val && hw->aq.asq_last_status == I40E_AQ_RC_EPERM) { 1810 dev_info(&pf->pdev->dev, 1811 "read NVM failed, invalid offset 0x%x\n", 1812 offset); 1813 break; 1814 } else if (ret_val && 1815 hw->aq.asq_last_status == I40E_AQ_RC_EACCES) { 1816 dev_info(&pf->pdev->dev, 1817 "read NVM failed, access, offset 0x%x\n", 1818 offset); 1819 break; 1820 } else if (ret_val) { 1821 dev_info(&pf->pdev->dev, 1822 "read NVM failed offset %d err=%d status=0x%x\n", 1823 offset, ret_val, hw->aq.asq_last_status); 1824 break; 1825 } 1826 } 1827 1828 i40e_release_nvm(hw); 1829 memcpy(bytes, (u8 *)eeprom_buff, eeprom->len); 1830 free_buff: 1831 kfree(eeprom_buff); 1832 return ret_val; 1833 } 1834 1835 static int i40e_get_eeprom_len(struct net_device *netdev) 1836 { 1837 struct i40e_netdev_priv *np = netdev_priv(netdev); 1838 struct i40e_hw *hw = &np->vsi->back->hw; 1839 u32 val; 1840 1841 #define X722_EEPROM_SCOPE_LIMIT 0x5B9FFF 1842 if (hw->mac.type == I40E_MAC_X722) { 1843 val = X722_EEPROM_SCOPE_LIMIT + 1; 1844 return val; 1845 } 1846 val = (rd32(hw, I40E_GLPCI_LBARCTRL) 1847 & I40E_GLPCI_LBARCTRL_FL_SIZE_MASK) 1848 >> I40E_GLPCI_LBARCTRL_FL_SIZE_SHIFT; 1849 /* register returns value in power of 2, 64Kbyte chunks. */ 1850 val = (64 * 1024) * BIT(val); 1851 return val; 1852 } 1853 1854 static int i40e_set_eeprom(struct net_device *netdev, 1855 struct ethtool_eeprom *eeprom, u8 *bytes) 1856 { 1857 struct i40e_netdev_priv *np = netdev_priv(netdev); 1858 struct i40e_hw *hw = &np->vsi->back->hw; 1859 struct i40e_pf *pf = np->vsi->back; 1860 struct i40e_nvm_access *cmd = (struct i40e_nvm_access *)eeprom; 1861 int ret_val = 0; 1862 int errno = 0; 1863 u32 magic; 1864 1865 /* normal ethtool set_eeprom is not supported */ 1866 magic = hw->vendor_id | (hw->device_id << 16); 1867 if (eeprom->magic == magic) 1868 errno = -EOPNOTSUPP; 1869 /* check for NVMUpdate access method */ 1870 else if (!eeprom->magic || (eeprom->magic >> 16) != hw->device_id) 1871 errno = -EINVAL; 1872 else if (test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state) || 1873 test_bit(__I40E_RESET_INTR_RECEIVED, pf->state)) 1874 errno = -EBUSY; 1875 else 1876 ret_val = i40e_nvmupd_command(hw, cmd, bytes, &errno); 1877 1878 if ((errno || ret_val) && (hw->debug_mask & I40E_DEBUG_NVM)) 1879 dev_info(&pf->pdev->dev, 1880 "NVMUpdate write failed err=%d status=0x%x errno=%d module=%d offset=0x%x size=%d\n", 1881 ret_val, hw->aq.asq_last_status, errno, 1882 (u8)(cmd->config & I40E_NVM_MOD_PNT_MASK), 1883 cmd->offset, cmd->data_size); 1884 1885 return errno; 1886 } 1887 1888 static void i40e_get_drvinfo(struct net_device *netdev, 1889 struct ethtool_drvinfo *drvinfo) 1890 { 1891 struct i40e_netdev_priv *np = netdev_priv(netdev); 1892 struct i40e_vsi *vsi = np->vsi; 1893 struct i40e_pf *pf = vsi->back; 1894 1895 strlcpy(drvinfo->driver, i40e_driver_name, sizeof(drvinfo->driver)); 1896 strlcpy(drvinfo->fw_version, i40e_nvm_version_str(&pf->hw), 1897 sizeof(drvinfo->fw_version)); 1898 strlcpy(drvinfo->bus_info, pci_name(pf->pdev), 1899 sizeof(drvinfo->bus_info)); 1900 drvinfo->n_priv_flags = I40E_PRIV_FLAGS_STR_LEN; 1901 if (pf->hw.pf_id == 0) 1902 drvinfo->n_priv_flags += I40E_GL_PRIV_FLAGS_STR_LEN; 1903 } 1904 1905 static void i40e_get_ringparam(struct net_device *netdev, 1906 struct ethtool_ringparam *ring) 1907 { 1908 struct i40e_netdev_priv *np = netdev_priv(netdev); 1909 struct i40e_pf *pf = np->vsi->back; 1910 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi]; 1911 1912 ring->rx_max_pending = I40E_MAX_NUM_DESCRIPTORS; 1913 ring->tx_max_pending = I40E_MAX_NUM_DESCRIPTORS; 1914 ring->rx_mini_max_pending = 0; 1915 ring->rx_jumbo_max_pending = 0; 1916 ring->rx_pending = vsi->rx_rings[0]->count; 1917 ring->tx_pending = vsi->tx_rings[0]->count; 1918 ring->rx_mini_pending = 0; 1919 ring->rx_jumbo_pending = 0; 1920 } 1921 1922 static bool i40e_active_tx_ring_index(struct i40e_vsi *vsi, u16 index) 1923 { 1924 if (i40e_enabled_xdp_vsi(vsi)) { 1925 return index < vsi->num_queue_pairs || 1926 (index >= vsi->alloc_queue_pairs && 1927 index < vsi->alloc_queue_pairs + vsi->num_queue_pairs); 1928 } 1929 1930 return index < vsi->num_queue_pairs; 1931 } 1932 1933 static int i40e_set_ringparam(struct net_device *netdev, 1934 struct ethtool_ringparam *ring) 1935 { 1936 struct i40e_ring *tx_rings = NULL, *rx_rings = NULL; 1937 struct i40e_netdev_priv *np = netdev_priv(netdev); 1938 struct i40e_hw *hw = &np->vsi->back->hw; 1939 struct i40e_vsi *vsi = np->vsi; 1940 struct i40e_pf *pf = vsi->back; 1941 u32 new_rx_count, new_tx_count; 1942 u16 tx_alloc_queue_pairs; 1943 int timeout = 50; 1944 int i, err = 0; 1945 1946 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending)) 1947 return -EINVAL; 1948 1949 if (ring->tx_pending > I40E_MAX_NUM_DESCRIPTORS || 1950 ring->tx_pending < I40E_MIN_NUM_DESCRIPTORS || 1951 ring->rx_pending > I40E_MAX_NUM_DESCRIPTORS || 1952 ring->rx_pending < I40E_MIN_NUM_DESCRIPTORS) { 1953 netdev_info(netdev, 1954 "Descriptors requested (Tx: %d / Rx: %d) out of range [%d-%d]\n", 1955 ring->tx_pending, ring->rx_pending, 1956 I40E_MIN_NUM_DESCRIPTORS, I40E_MAX_NUM_DESCRIPTORS); 1957 return -EINVAL; 1958 } 1959 1960 new_tx_count = ALIGN(ring->tx_pending, I40E_REQ_DESCRIPTOR_MULTIPLE); 1961 new_rx_count = ALIGN(ring->rx_pending, I40E_REQ_DESCRIPTOR_MULTIPLE); 1962 1963 /* if nothing to do return success */ 1964 if ((new_tx_count == vsi->tx_rings[0]->count) && 1965 (new_rx_count == vsi->rx_rings[0]->count)) 1966 return 0; 1967 1968 /* If there is a AF_XDP UMEM attached to any of Rx rings, 1969 * disallow changing the number of descriptors -- regardless 1970 * if the netdev is running or not. 1971 */ 1972 if (i40e_xsk_any_rx_ring_enabled(vsi)) 1973 return -EBUSY; 1974 1975 while (test_and_set_bit(__I40E_CONFIG_BUSY, pf->state)) { 1976 timeout--; 1977 if (!timeout) 1978 return -EBUSY; 1979 usleep_range(1000, 2000); 1980 } 1981 1982 if (!netif_running(vsi->netdev)) { 1983 /* simple case - set for the next time the netdev is started */ 1984 for (i = 0; i < vsi->num_queue_pairs; i++) { 1985 vsi->tx_rings[i]->count = new_tx_count; 1986 vsi->rx_rings[i]->count = new_rx_count; 1987 if (i40e_enabled_xdp_vsi(vsi)) 1988 vsi->xdp_rings[i]->count = new_tx_count; 1989 } 1990 vsi->num_tx_desc = new_tx_count; 1991 vsi->num_rx_desc = new_rx_count; 1992 goto done; 1993 } 1994 1995 /* We can't just free everything and then setup again, 1996 * because the ISRs in MSI-X mode get passed pointers 1997 * to the Tx and Rx ring structs. 1998 */ 1999 2000 /* alloc updated Tx and XDP Tx resources */ 2001 tx_alloc_queue_pairs = vsi->alloc_queue_pairs * 2002 (i40e_enabled_xdp_vsi(vsi) ? 2 : 1); 2003 if (new_tx_count != vsi->tx_rings[0]->count) { 2004 netdev_info(netdev, 2005 "Changing Tx descriptor count from %d to %d.\n", 2006 vsi->tx_rings[0]->count, new_tx_count); 2007 tx_rings = kcalloc(tx_alloc_queue_pairs, 2008 sizeof(struct i40e_ring), GFP_KERNEL); 2009 if (!tx_rings) { 2010 err = -ENOMEM; 2011 goto done; 2012 } 2013 2014 for (i = 0; i < tx_alloc_queue_pairs; i++) { 2015 if (!i40e_active_tx_ring_index(vsi, i)) 2016 continue; 2017 2018 tx_rings[i] = *vsi->tx_rings[i]; 2019 tx_rings[i].count = new_tx_count; 2020 /* the desc and bi pointers will be reallocated in the 2021 * setup call 2022 */ 2023 tx_rings[i].desc = NULL; 2024 tx_rings[i].rx_bi = NULL; 2025 err = i40e_setup_tx_descriptors(&tx_rings[i]); 2026 if (err) { 2027 while (i) { 2028 i--; 2029 if (!i40e_active_tx_ring_index(vsi, i)) 2030 continue; 2031 i40e_free_tx_resources(&tx_rings[i]); 2032 } 2033 kfree(tx_rings); 2034 tx_rings = NULL; 2035 2036 goto done; 2037 } 2038 } 2039 } 2040 2041 /* alloc updated Rx resources */ 2042 if (new_rx_count != vsi->rx_rings[0]->count) { 2043 netdev_info(netdev, 2044 "Changing Rx descriptor count from %d to %d\n", 2045 vsi->rx_rings[0]->count, new_rx_count); 2046 rx_rings = kcalloc(vsi->alloc_queue_pairs, 2047 sizeof(struct i40e_ring), GFP_KERNEL); 2048 if (!rx_rings) { 2049 err = -ENOMEM; 2050 goto free_tx; 2051 } 2052 2053 for (i = 0; i < vsi->num_queue_pairs; i++) { 2054 u16 unused; 2055 2056 /* clone ring and setup updated count */ 2057 rx_rings[i] = *vsi->rx_rings[i]; 2058 rx_rings[i].count = new_rx_count; 2059 /* the desc and bi pointers will be reallocated in the 2060 * setup call 2061 */ 2062 rx_rings[i].desc = NULL; 2063 rx_rings[i].rx_bi = NULL; 2064 /* Clear cloned XDP RX-queue info before setup call */ 2065 memset(&rx_rings[i].xdp_rxq, 0, sizeof(rx_rings[i].xdp_rxq)); 2066 /* this is to allow wr32 to have something to write to 2067 * during early allocation of Rx buffers 2068 */ 2069 rx_rings[i].tail = hw->hw_addr + I40E_PRTGEN_STATUS; 2070 err = i40e_setup_rx_descriptors(&rx_rings[i]); 2071 if (err) 2072 goto rx_unwind; 2073 err = i40e_alloc_rx_bi(&rx_rings[i]); 2074 if (err) 2075 goto rx_unwind; 2076 2077 /* now allocate the Rx buffers to make sure the OS 2078 * has enough memory, any failure here means abort 2079 */ 2080 unused = I40E_DESC_UNUSED(&rx_rings[i]); 2081 err = i40e_alloc_rx_buffers(&rx_rings[i], unused); 2082 rx_unwind: 2083 if (err) { 2084 do { 2085 i40e_free_rx_resources(&rx_rings[i]); 2086 } while (i--); 2087 kfree(rx_rings); 2088 rx_rings = NULL; 2089 2090 goto free_tx; 2091 } 2092 } 2093 } 2094 2095 /* Bring interface down, copy in the new ring info, 2096 * then restore the interface 2097 */ 2098 i40e_down(vsi); 2099 2100 if (tx_rings) { 2101 for (i = 0; i < tx_alloc_queue_pairs; i++) { 2102 if (i40e_active_tx_ring_index(vsi, i)) { 2103 i40e_free_tx_resources(vsi->tx_rings[i]); 2104 *vsi->tx_rings[i] = tx_rings[i]; 2105 } 2106 } 2107 kfree(tx_rings); 2108 tx_rings = NULL; 2109 } 2110 2111 if (rx_rings) { 2112 for (i = 0; i < vsi->num_queue_pairs; i++) { 2113 i40e_free_rx_resources(vsi->rx_rings[i]); 2114 /* get the real tail offset */ 2115 rx_rings[i].tail = vsi->rx_rings[i]->tail; 2116 /* this is to fake out the allocation routine 2117 * into thinking it has to realloc everything 2118 * but the recycling logic will let us re-use 2119 * the buffers allocated above 2120 */ 2121 rx_rings[i].next_to_use = 0; 2122 rx_rings[i].next_to_clean = 0; 2123 rx_rings[i].next_to_alloc = 0; 2124 /* do a struct copy */ 2125 *vsi->rx_rings[i] = rx_rings[i]; 2126 } 2127 kfree(rx_rings); 2128 rx_rings = NULL; 2129 } 2130 2131 vsi->num_tx_desc = new_tx_count; 2132 vsi->num_rx_desc = new_rx_count; 2133 i40e_up(vsi); 2134 2135 free_tx: 2136 /* error cleanup if the Rx allocations failed after getting Tx */ 2137 if (tx_rings) { 2138 for (i = 0; i < tx_alloc_queue_pairs; i++) { 2139 if (i40e_active_tx_ring_index(vsi, i)) 2140 i40e_free_tx_resources(vsi->tx_rings[i]); 2141 } 2142 kfree(tx_rings); 2143 tx_rings = NULL; 2144 } 2145 2146 done: 2147 clear_bit(__I40E_CONFIG_BUSY, pf->state); 2148 2149 return err; 2150 } 2151 2152 /** 2153 * i40e_get_stats_count - return the stats count for a device 2154 * @netdev: the netdev to return the count for 2155 * 2156 * Returns the total number of statistics for this netdev. Note that even 2157 * though this is a function, it is required that the count for a specific 2158 * netdev must never change. Basing the count on static values such as the 2159 * maximum number of queues or the device type is ok. However, the API for 2160 * obtaining stats is *not* safe against changes based on non-static 2161 * values such as the *current* number of queues, or runtime flags. 2162 * 2163 * If a statistic is not always enabled, return it as part of the count 2164 * anyways, always return its string, and report its value as zero. 2165 **/ 2166 static int i40e_get_stats_count(struct net_device *netdev) 2167 { 2168 struct i40e_netdev_priv *np = netdev_priv(netdev); 2169 struct i40e_vsi *vsi = np->vsi; 2170 struct i40e_pf *pf = vsi->back; 2171 int stats_len; 2172 2173 if (vsi == pf->vsi[pf->lan_vsi] && pf->hw.partition_id == 1) 2174 stats_len = I40E_PF_STATS_LEN; 2175 else 2176 stats_len = I40E_VSI_STATS_LEN; 2177 2178 /* The number of stats reported for a given net_device must remain 2179 * constant throughout the life of that device. 2180 * 2181 * This is because the API for obtaining the size, strings, and stats 2182 * is spread out over three separate ethtool ioctls. There is no safe 2183 * way to lock the number of stats across these calls, so we must 2184 * assume that they will never change. 2185 * 2186 * Due to this, we report the maximum number of queues, even if not 2187 * every queue is currently configured. Since we always allocate 2188 * queues in pairs, we'll just use netdev->num_tx_queues * 2. This 2189 * works because the num_tx_queues is set at device creation and never 2190 * changes. 2191 */ 2192 stats_len += I40E_QUEUE_STATS_LEN * 2 * netdev->num_tx_queues; 2193 2194 return stats_len; 2195 } 2196 2197 static int i40e_get_sset_count(struct net_device *netdev, int sset) 2198 { 2199 struct i40e_netdev_priv *np = netdev_priv(netdev); 2200 struct i40e_vsi *vsi = np->vsi; 2201 struct i40e_pf *pf = vsi->back; 2202 2203 switch (sset) { 2204 case ETH_SS_TEST: 2205 return I40E_TEST_LEN; 2206 case ETH_SS_STATS: 2207 return i40e_get_stats_count(netdev); 2208 case ETH_SS_PRIV_FLAGS: 2209 return I40E_PRIV_FLAGS_STR_LEN + 2210 (pf->hw.pf_id == 0 ? I40E_GL_PRIV_FLAGS_STR_LEN : 0); 2211 default: 2212 return -EOPNOTSUPP; 2213 } 2214 } 2215 2216 /** 2217 * i40e_get_pfc_stats - copy HW PFC statistics to formatted structure 2218 * @pf: the PF device structure 2219 * @i: the priority value to copy 2220 * 2221 * The PFC stats are found as arrays in pf->stats, which is not easy to pass 2222 * into i40e_add_ethtool_stats. Produce a formatted i40e_pfc_stats structure 2223 * of the PFC stats for the given priority. 2224 **/ 2225 static inline struct i40e_pfc_stats 2226 i40e_get_pfc_stats(struct i40e_pf *pf, unsigned int i) 2227 { 2228 #define I40E_GET_PFC_STAT(stat, priority) \ 2229 .stat = pf->stats.stat[priority] 2230 2231 struct i40e_pfc_stats pfc = { 2232 I40E_GET_PFC_STAT(priority_xon_rx, i), 2233 I40E_GET_PFC_STAT(priority_xoff_rx, i), 2234 I40E_GET_PFC_STAT(priority_xon_tx, i), 2235 I40E_GET_PFC_STAT(priority_xoff_tx, i), 2236 I40E_GET_PFC_STAT(priority_xon_2_xoff, i), 2237 }; 2238 return pfc; 2239 } 2240 2241 /** 2242 * i40e_get_ethtool_stats - copy stat values into supplied buffer 2243 * @netdev: the netdev to collect stats for 2244 * @stats: ethtool stats command structure 2245 * @data: ethtool supplied buffer 2246 * 2247 * Copy the stats values for this netdev into the buffer. Expects data to be 2248 * pre-allocated to the size returned by i40e_get_stats_count.. Note that all 2249 * statistics must be copied in a static order, and the count must not change 2250 * for a given netdev. See i40e_get_stats_count for more details. 2251 * 2252 * If a statistic is not currently valid (such as a disabled queue), this 2253 * function reports its value as zero. 2254 **/ 2255 static void i40e_get_ethtool_stats(struct net_device *netdev, 2256 struct ethtool_stats *stats, u64 *data) 2257 { 2258 struct i40e_netdev_priv *np = netdev_priv(netdev); 2259 struct i40e_vsi *vsi = np->vsi; 2260 struct i40e_pf *pf = vsi->back; 2261 struct i40e_veb *veb = NULL; 2262 unsigned int i; 2263 bool veb_stats; 2264 u64 *p = data; 2265 2266 i40e_update_stats(vsi); 2267 2268 i40e_add_ethtool_stats(&data, i40e_get_vsi_stats_struct(vsi), 2269 i40e_gstrings_net_stats); 2270 2271 i40e_add_ethtool_stats(&data, vsi, i40e_gstrings_misc_stats); 2272 2273 rcu_read_lock(); 2274 for (i = 0; i < netdev->num_tx_queues; i++) { 2275 i40e_add_queue_stats(&data, READ_ONCE(vsi->tx_rings[i])); 2276 i40e_add_queue_stats(&data, READ_ONCE(vsi->rx_rings[i])); 2277 } 2278 rcu_read_unlock(); 2279 2280 if (vsi != pf->vsi[pf->lan_vsi] || pf->hw.partition_id != 1) 2281 goto check_data_pointer; 2282 2283 veb_stats = ((pf->lan_veb != I40E_NO_VEB) && 2284 (pf->lan_veb < I40E_MAX_VEB) && 2285 (pf->flags & I40E_FLAG_VEB_STATS_ENABLED)); 2286 2287 if (veb_stats) { 2288 veb = pf->veb[pf->lan_veb]; 2289 i40e_update_veb_stats(veb); 2290 } 2291 2292 /* If veb stats aren't enabled, pass NULL instead of the veb so that 2293 * we initialize stats to zero and update the data pointer 2294 * intelligently 2295 */ 2296 i40e_add_ethtool_stats(&data, veb_stats ? veb : NULL, 2297 i40e_gstrings_veb_stats); 2298 2299 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) 2300 i40e_add_ethtool_stats(&data, veb_stats ? veb : NULL, 2301 i40e_gstrings_veb_tc_stats); 2302 2303 i40e_add_ethtool_stats(&data, pf, i40e_gstrings_stats); 2304 2305 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) { 2306 struct i40e_pfc_stats pfc = i40e_get_pfc_stats(pf, i); 2307 2308 i40e_add_ethtool_stats(&data, &pfc, i40e_gstrings_pfc_stats); 2309 } 2310 2311 check_data_pointer: 2312 WARN_ONCE(data - p != i40e_get_stats_count(netdev), 2313 "ethtool stats count mismatch!"); 2314 } 2315 2316 /** 2317 * i40e_get_stat_strings - copy stat strings into supplied buffer 2318 * @netdev: the netdev to collect strings for 2319 * @data: supplied buffer to copy strings into 2320 * 2321 * Copy the strings related to stats for this netdev. Expects data to be 2322 * pre-allocated with the size reported by i40e_get_stats_count. Note that the 2323 * strings must be copied in a static order and the total count must not 2324 * change for a given netdev. See i40e_get_stats_count for more details. 2325 **/ 2326 static void i40e_get_stat_strings(struct net_device *netdev, u8 *data) 2327 { 2328 struct i40e_netdev_priv *np = netdev_priv(netdev); 2329 struct i40e_vsi *vsi = np->vsi; 2330 struct i40e_pf *pf = vsi->back; 2331 unsigned int i; 2332 u8 *p = data; 2333 2334 i40e_add_stat_strings(&data, i40e_gstrings_net_stats); 2335 2336 i40e_add_stat_strings(&data, i40e_gstrings_misc_stats); 2337 2338 for (i = 0; i < netdev->num_tx_queues; i++) { 2339 i40e_add_stat_strings(&data, i40e_gstrings_queue_stats, 2340 "tx", i); 2341 i40e_add_stat_strings(&data, i40e_gstrings_queue_stats, 2342 "rx", i); 2343 } 2344 2345 if (vsi != pf->vsi[pf->lan_vsi] || pf->hw.partition_id != 1) 2346 goto check_data_pointer; 2347 2348 i40e_add_stat_strings(&data, i40e_gstrings_veb_stats); 2349 2350 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) 2351 i40e_add_stat_strings(&data, i40e_gstrings_veb_tc_stats, i); 2352 2353 i40e_add_stat_strings(&data, i40e_gstrings_stats); 2354 2355 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) 2356 i40e_add_stat_strings(&data, i40e_gstrings_pfc_stats, i); 2357 2358 check_data_pointer: 2359 WARN_ONCE(data - p != i40e_get_stats_count(netdev) * ETH_GSTRING_LEN, 2360 "stat strings count mismatch!"); 2361 } 2362 2363 static void i40e_get_priv_flag_strings(struct net_device *netdev, u8 *data) 2364 { 2365 struct i40e_netdev_priv *np = netdev_priv(netdev); 2366 struct i40e_vsi *vsi = np->vsi; 2367 struct i40e_pf *pf = vsi->back; 2368 char *p = (char *)data; 2369 unsigned int i; 2370 2371 for (i = 0; i < I40E_PRIV_FLAGS_STR_LEN; i++) { 2372 snprintf(p, ETH_GSTRING_LEN, "%s", 2373 i40e_gstrings_priv_flags[i].flag_string); 2374 p += ETH_GSTRING_LEN; 2375 } 2376 if (pf->hw.pf_id != 0) 2377 return; 2378 for (i = 0; i < I40E_GL_PRIV_FLAGS_STR_LEN; i++) { 2379 snprintf(p, ETH_GSTRING_LEN, "%s", 2380 i40e_gl_gstrings_priv_flags[i].flag_string); 2381 p += ETH_GSTRING_LEN; 2382 } 2383 } 2384 2385 static void i40e_get_strings(struct net_device *netdev, u32 stringset, 2386 u8 *data) 2387 { 2388 switch (stringset) { 2389 case ETH_SS_TEST: 2390 memcpy(data, i40e_gstrings_test, 2391 I40E_TEST_LEN * ETH_GSTRING_LEN); 2392 break; 2393 case ETH_SS_STATS: 2394 i40e_get_stat_strings(netdev, data); 2395 break; 2396 case ETH_SS_PRIV_FLAGS: 2397 i40e_get_priv_flag_strings(netdev, data); 2398 break; 2399 default: 2400 break; 2401 } 2402 } 2403 2404 static int i40e_get_ts_info(struct net_device *dev, 2405 struct ethtool_ts_info *info) 2406 { 2407 struct i40e_pf *pf = i40e_netdev_to_pf(dev); 2408 2409 /* only report HW timestamping if PTP is enabled */ 2410 if (!(pf->flags & I40E_FLAG_PTP)) 2411 return ethtool_op_get_ts_info(dev, info); 2412 2413 info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE | 2414 SOF_TIMESTAMPING_RX_SOFTWARE | 2415 SOF_TIMESTAMPING_SOFTWARE | 2416 SOF_TIMESTAMPING_TX_HARDWARE | 2417 SOF_TIMESTAMPING_RX_HARDWARE | 2418 SOF_TIMESTAMPING_RAW_HARDWARE; 2419 2420 if (pf->ptp_clock) 2421 info->phc_index = ptp_clock_index(pf->ptp_clock); 2422 else 2423 info->phc_index = -1; 2424 2425 info->tx_types = BIT(HWTSTAMP_TX_OFF) | BIT(HWTSTAMP_TX_ON); 2426 2427 info->rx_filters = BIT(HWTSTAMP_FILTER_NONE) | 2428 BIT(HWTSTAMP_FILTER_PTP_V2_L2_EVENT) | 2429 BIT(HWTSTAMP_FILTER_PTP_V2_L2_SYNC) | 2430 BIT(HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ); 2431 2432 if (pf->hw_features & I40E_HW_PTP_L4_CAPABLE) 2433 info->rx_filters |= BIT(HWTSTAMP_FILTER_PTP_V1_L4_SYNC) | 2434 BIT(HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ) | 2435 BIT(HWTSTAMP_FILTER_PTP_V2_EVENT) | 2436 BIT(HWTSTAMP_FILTER_PTP_V2_L4_EVENT) | 2437 BIT(HWTSTAMP_FILTER_PTP_V2_SYNC) | 2438 BIT(HWTSTAMP_FILTER_PTP_V2_L4_SYNC) | 2439 BIT(HWTSTAMP_FILTER_PTP_V2_DELAY_REQ) | 2440 BIT(HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ); 2441 2442 return 0; 2443 } 2444 2445 static u64 i40e_link_test(struct net_device *netdev, u64 *data) 2446 { 2447 struct i40e_netdev_priv *np = netdev_priv(netdev); 2448 struct i40e_pf *pf = np->vsi->back; 2449 i40e_status status; 2450 bool link_up = false; 2451 2452 netif_info(pf, hw, netdev, "link test\n"); 2453 status = i40e_get_link_status(&pf->hw, &link_up); 2454 if (status) { 2455 netif_err(pf, drv, netdev, "link query timed out, please retry test\n"); 2456 *data = 1; 2457 return *data; 2458 } 2459 2460 if (link_up) 2461 *data = 0; 2462 else 2463 *data = 1; 2464 2465 return *data; 2466 } 2467 2468 static u64 i40e_reg_test(struct net_device *netdev, u64 *data) 2469 { 2470 struct i40e_netdev_priv *np = netdev_priv(netdev); 2471 struct i40e_pf *pf = np->vsi->back; 2472 2473 netif_info(pf, hw, netdev, "register test\n"); 2474 *data = i40e_diag_reg_test(&pf->hw); 2475 2476 return *data; 2477 } 2478 2479 static u64 i40e_eeprom_test(struct net_device *netdev, u64 *data) 2480 { 2481 struct i40e_netdev_priv *np = netdev_priv(netdev); 2482 struct i40e_pf *pf = np->vsi->back; 2483 2484 netif_info(pf, hw, netdev, "eeprom test\n"); 2485 *data = i40e_diag_eeprom_test(&pf->hw); 2486 2487 /* forcebly clear the NVM Update state machine */ 2488 pf->hw.nvmupd_state = I40E_NVMUPD_STATE_INIT; 2489 2490 return *data; 2491 } 2492 2493 static u64 i40e_intr_test(struct net_device *netdev, u64 *data) 2494 { 2495 struct i40e_netdev_priv *np = netdev_priv(netdev); 2496 struct i40e_pf *pf = np->vsi->back; 2497 u16 swc_old = pf->sw_int_count; 2498 2499 netif_info(pf, hw, netdev, "interrupt test\n"); 2500 wr32(&pf->hw, I40E_PFINT_DYN_CTL0, 2501 (I40E_PFINT_DYN_CTL0_INTENA_MASK | 2502 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK | 2503 I40E_PFINT_DYN_CTL0_ITR_INDX_MASK | 2504 I40E_PFINT_DYN_CTL0_SW_ITR_INDX_ENA_MASK | 2505 I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK)); 2506 usleep_range(1000, 2000); 2507 *data = (swc_old == pf->sw_int_count); 2508 2509 return *data; 2510 } 2511 2512 static inline bool i40e_active_vfs(struct i40e_pf *pf) 2513 { 2514 struct i40e_vf *vfs = pf->vf; 2515 int i; 2516 2517 for (i = 0; i < pf->num_alloc_vfs; i++) 2518 if (test_bit(I40E_VF_STATE_ACTIVE, &vfs[i].vf_states)) 2519 return true; 2520 return false; 2521 } 2522 2523 static inline bool i40e_active_vmdqs(struct i40e_pf *pf) 2524 { 2525 return !!i40e_find_vsi_by_type(pf, I40E_VSI_VMDQ2); 2526 } 2527 2528 static void i40e_diag_test(struct net_device *netdev, 2529 struct ethtool_test *eth_test, u64 *data) 2530 { 2531 struct i40e_netdev_priv *np = netdev_priv(netdev); 2532 bool if_running = netif_running(netdev); 2533 struct i40e_pf *pf = np->vsi->back; 2534 2535 if (eth_test->flags == ETH_TEST_FL_OFFLINE) { 2536 /* Offline tests */ 2537 netif_info(pf, drv, netdev, "offline testing starting\n"); 2538 2539 set_bit(__I40E_TESTING, pf->state); 2540 2541 if (i40e_active_vfs(pf) || i40e_active_vmdqs(pf)) { 2542 dev_warn(&pf->pdev->dev, 2543 "Please take active VFs and Netqueues offline and restart the adapter before running NIC diagnostics\n"); 2544 data[I40E_ETH_TEST_REG] = 1; 2545 data[I40E_ETH_TEST_EEPROM] = 1; 2546 data[I40E_ETH_TEST_INTR] = 1; 2547 data[I40E_ETH_TEST_LINK] = 1; 2548 eth_test->flags |= ETH_TEST_FL_FAILED; 2549 clear_bit(__I40E_TESTING, pf->state); 2550 goto skip_ol_tests; 2551 } 2552 2553 /* If the device is online then take it offline */ 2554 if (if_running) 2555 /* indicate we're in test mode */ 2556 i40e_close(netdev); 2557 else 2558 /* This reset does not affect link - if it is 2559 * changed to a type of reset that does affect 2560 * link then the following link test would have 2561 * to be moved to before the reset 2562 */ 2563 i40e_do_reset(pf, BIT(__I40E_PF_RESET_REQUESTED), true); 2564 2565 if (i40e_link_test(netdev, &data[I40E_ETH_TEST_LINK])) 2566 eth_test->flags |= ETH_TEST_FL_FAILED; 2567 2568 if (i40e_eeprom_test(netdev, &data[I40E_ETH_TEST_EEPROM])) 2569 eth_test->flags |= ETH_TEST_FL_FAILED; 2570 2571 if (i40e_intr_test(netdev, &data[I40E_ETH_TEST_INTR])) 2572 eth_test->flags |= ETH_TEST_FL_FAILED; 2573 2574 /* run reg test last, a reset is required after it */ 2575 if (i40e_reg_test(netdev, &data[I40E_ETH_TEST_REG])) 2576 eth_test->flags |= ETH_TEST_FL_FAILED; 2577 2578 clear_bit(__I40E_TESTING, pf->state); 2579 i40e_do_reset(pf, BIT(__I40E_PF_RESET_REQUESTED), true); 2580 2581 if (if_running) 2582 i40e_open(netdev); 2583 } else { 2584 /* Online tests */ 2585 netif_info(pf, drv, netdev, "online testing starting\n"); 2586 2587 if (i40e_link_test(netdev, &data[I40E_ETH_TEST_LINK])) 2588 eth_test->flags |= ETH_TEST_FL_FAILED; 2589 2590 /* Offline only tests, not run in online; pass by default */ 2591 data[I40E_ETH_TEST_REG] = 0; 2592 data[I40E_ETH_TEST_EEPROM] = 0; 2593 data[I40E_ETH_TEST_INTR] = 0; 2594 } 2595 2596 skip_ol_tests: 2597 2598 netif_info(pf, drv, netdev, "testing finished\n"); 2599 } 2600 2601 static void i40e_get_wol(struct net_device *netdev, 2602 struct ethtool_wolinfo *wol) 2603 { 2604 struct i40e_netdev_priv *np = netdev_priv(netdev); 2605 struct i40e_pf *pf = np->vsi->back; 2606 struct i40e_hw *hw = &pf->hw; 2607 u16 wol_nvm_bits; 2608 2609 /* NVM bit on means WoL disabled for the port */ 2610 i40e_read_nvm_word(hw, I40E_SR_NVM_WAKE_ON_LAN, &wol_nvm_bits); 2611 if ((BIT(hw->port) & wol_nvm_bits) || (hw->partition_id != 1)) { 2612 wol->supported = 0; 2613 wol->wolopts = 0; 2614 } else { 2615 wol->supported = WAKE_MAGIC; 2616 wol->wolopts = (pf->wol_en ? WAKE_MAGIC : 0); 2617 } 2618 } 2619 2620 /** 2621 * i40e_set_wol - set the WakeOnLAN configuration 2622 * @netdev: the netdev in question 2623 * @wol: the ethtool WoL setting data 2624 **/ 2625 static int i40e_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol) 2626 { 2627 struct i40e_netdev_priv *np = netdev_priv(netdev); 2628 struct i40e_pf *pf = np->vsi->back; 2629 struct i40e_vsi *vsi = np->vsi; 2630 struct i40e_hw *hw = &pf->hw; 2631 u16 wol_nvm_bits; 2632 2633 /* WoL not supported if this isn't the controlling PF on the port */ 2634 if (hw->partition_id != 1) { 2635 i40e_partition_setting_complaint(pf); 2636 return -EOPNOTSUPP; 2637 } 2638 2639 if (vsi != pf->vsi[pf->lan_vsi]) 2640 return -EOPNOTSUPP; 2641 2642 /* NVM bit on means WoL disabled for the port */ 2643 i40e_read_nvm_word(hw, I40E_SR_NVM_WAKE_ON_LAN, &wol_nvm_bits); 2644 if (BIT(hw->port) & wol_nvm_bits) 2645 return -EOPNOTSUPP; 2646 2647 /* only magic packet is supported */ 2648 if (wol->wolopts & ~WAKE_MAGIC) 2649 return -EOPNOTSUPP; 2650 2651 /* is this a new value? */ 2652 if (pf->wol_en != !!wol->wolopts) { 2653 pf->wol_en = !!wol->wolopts; 2654 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en); 2655 } 2656 2657 return 0; 2658 } 2659 2660 static int i40e_set_phys_id(struct net_device *netdev, 2661 enum ethtool_phys_id_state state) 2662 { 2663 struct i40e_netdev_priv *np = netdev_priv(netdev); 2664 i40e_status ret = 0; 2665 struct i40e_pf *pf = np->vsi->back; 2666 struct i40e_hw *hw = &pf->hw; 2667 int blink_freq = 2; 2668 u16 temp_status; 2669 2670 switch (state) { 2671 case ETHTOOL_ID_ACTIVE: 2672 if (!(pf->hw_features & I40E_HW_PHY_CONTROLS_LEDS)) { 2673 pf->led_status = i40e_led_get(hw); 2674 } else { 2675 if (!(hw->flags & I40E_HW_FLAG_AQ_PHY_ACCESS_CAPABLE)) 2676 i40e_aq_set_phy_debug(hw, I40E_PHY_DEBUG_ALL, 2677 NULL); 2678 ret = i40e_led_get_phy(hw, &temp_status, 2679 &pf->phy_led_val); 2680 pf->led_status = temp_status; 2681 } 2682 return blink_freq; 2683 case ETHTOOL_ID_ON: 2684 if (!(pf->hw_features & I40E_HW_PHY_CONTROLS_LEDS)) 2685 i40e_led_set(hw, 0xf, false); 2686 else 2687 ret = i40e_led_set_phy(hw, true, pf->led_status, 0); 2688 break; 2689 case ETHTOOL_ID_OFF: 2690 if (!(pf->hw_features & I40E_HW_PHY_CONTROLS_LEDS)) 2691 i40e_led_set(hw, 0x0, false); 2692 else 2693 ret = i40e_led_set_phy(hw, false, pf->led_status, 0); 2694 break; 2695 case ETHTOOL_ID_INACTIVE: 2696 if (!(pf->hw_features & I40E_HW_PHY_CONTROLS_LEDS)) { 2697 i40e_led_set(hw, pf->led_status, false); 2698 } else { 2699 ret = i40e_led_set_phy(hw, false, pf->led_status, 2700 (pf->phy_led_val | 2701 I40E_PHY_LED_MODE_ORIG)); 2702 if (!(hw->flags & I40E_HW_FLAG_AQ_PHY_ACCESS_CAPABLE)) 2703 i40e_aq_set_phy_debug(hw, 0, NULL); 2704 } 2705 break; 2706 default: 2707 break; 2708 } 2709 if (ret) 2710 return -ENOENT; 2711 else 2712 return 0; 2713 } 2714 2715 /* NOTE: i40e hardware uses a conversion factor of 2 for Interrupt 2716 * Throttle Rate (ITR) ie. ITR(1) = 2us ITR(10) = 20 us, and also 2717 * 125us (8000 interrupts per second) == ITR(62) 2718 */ 2719 2720 /** 2721 * __i40e_get_coalesce - get per-queue coalesce settings 2722 * @netdev: the netdev to check 2723 * @ec: ethtool coalesce data structure 2724 * @queue: which queue to pick 2725 * 2726 * Gets the per-queue settings for coalescence. Specifically Rx and Tx usecs 2727 * are per queue. If queue is <0 then we default to queue 0 as the 2728 * representative value. 2729 **/ 2730 static int __i40e_get_coalesce(struct net_device *netdev, 2731 struct ethtool_coalesce *ec, 2732 int queue) 2733 { 2734 struct i40e_netdev_priv *np = netdev_priv(netdev); 2735 struct i40e_ring *rx_ring, *tx_ring; 2736 struct i40e_vsi *vsi = np->vsi; 2737 2738 ec->tx_max_coalesced_frames_irq = vsi->work_limit; 2739 ec->rx_max_coalesced_frames_irq = vsi->work_limit; 2740 2741 /* rx and tx usecs has per queue value. If user doesn't specify the 2742 * queue, return queue 0's value to represent. 2743 */ 2744 if (queue < 0) 2745 queue = 0; 2746 else if (queue >= vsi->num_queue_pairs) 2747 return -EINVAL; 2748 2749 rx_ring = vsi->rx_rings[queue]; 2750 tx_ring = vsi->tx_rings[queue]; 2751 2752 if (ITR_IS_DYNAMIC(rx_ring->itr_setting)) 2753 ec->use_adaptive_rx_coalesce = 1; 2754 2755 if (ITR_IS_DYNAMIC(tx_ring->itr_setting)) 2756 ec->use_adaptive_tx_coalesce = 1; 2757 2758 ec->rx_coalesce_usecs = rx_ring->itr_setting & ~I40E_ITR_DYNAMIC; 2759 ec->tx_coalesce_usecs = tx_ring->itr_setting & ~I40E_ITR_DYNAMIC; 2760 2761 /* we use the _usecs_high to store/set the interrupt rate limit 2762 * that the hardware supports, that almost but not quite 2763 * fits the original intent of the ethtool variable, 2764 * the rx_coalesce_usecs_high limits total interrupts 2765 * per second from both tx/rx sources. 2766 */ 2767 ec->rx_coalesce_usecs_high = vsi->int_rate_limit; 2768 ec->tx_coalesce_usecs_high = vsi->int_rate_limit; 2769 2770 return 0; 2771 } 2772 2773 /** 2774 * i40e_get_coalesce - get a netdev's coalesce settings 2775 * @netdev: the netdev to check 2776 * @ec: ethtool coalesce data structure 2777 * 2778 * Gets the coalesce settings for a particular netdev. Note that if user has 2779 * modified per-queue settings, this only guarantees to represent queue 0. See 2780 * __i40e_get_coalesce for more details. 2781 **/ 2782 static int i40e_get_coalesce(struct net_device *netdev, 2783 struct ethtool_coalesce *ec) 2784 { 2785 return __i40e_get_coalesce(netdev, ec, -1); 2786 } 2787 2788 /** 2789 * i40e_get_per_queue_coalesce - gets coalesce settings for particular queue 2790 * @netdev: netdev structure 2791 * @ec: ethtool's coalesce settings 2792 * @queue: the particular queue to read 2793 * 2794 * Will read a specific queue's coalesce settings 2795 **/ 2796 static int i40e_get_per_queue_coalesce(struct net_device *netdev, u32 queue, 2797 struct ethtool_coalesce *ec) 2798 { 2799 return __i40e_get_coalesce(netdev, ec, queue); 2800 } 2801 2802 /** 2803 * i40e_set_itr_per_queue - set ITR values for specific queue 2804 * @vsi: the VSI to set values for 2805 * @ec: coalesce settings from ethtool 2806 * @queue: the queue to modify 2807 * 2808 * Change the ITR settings for a specific queue. 2809 **/ 2810 static void i40e_set_itr_per_queue(struct i40e_vsi *vsi, 2811 struct ethtool_coalesce *ec, 2812 int queue) 2813 { 2814 struct i40e_ring *rx_ring = vsi->rx_rings[queue]; 2815 struct i40e_ring *tx_ring = vsi->tx_rings[queue]; 2816 struct i40e_pf *pf = vsi->back; 2817 struct i40e_hw *hw = &pf->hw; 2818 struct i40e_q_vector *q_vector; 2819 u16 intrl; 2820 2821 intrl = i40e_intrl_usec_to_reg(vsi->int_rate_limit); 2822 2823 rx_ring->itr_setting = ITR_REG_ALIGN(ec->rx_coalesce_usecs); 2824 tx_ring->itr_setting = ITR_REG_ALIGN(ec->tx_coalesce_usecs); 2825 2826 if (ec->use_adaptive_rx_coalesce) 2827 rx_ring->itr_setting |= I40E_ITR_DYNAMIC; 2828 else 2829 rx_ring->itr_setting &= ~I40E_ITR_DYNAMIC; 2830 2831 if (ec->use_adaptive_tx_coalesce) 2832 tx_ring->itr_setting |= I40E_ITR_DYNAMIC; 2833 else 2834 tx_ring->itr_setting &= ~I40E_ITR_DYNAMIC; 2835 2836 q_vector = rx_ring->q_vector; 2837 q_vector->rx.target_itr = ITR_TO_REG(rx_ring->itr_setting); 2838 2839 q_vector = tx_ring->q_vector; 2840 q_vector->tx.target_itr = ITR_TO_REG(tx_ring->itr_setting); 2841 2842 /* The interrupt handler itself will take care of programming 2843 * the Tx and Rx ITR values based on the values we have entered 2844 * into the q_vector, no need to write the values now. 2845 */ 2846 2847 wr32(hw, I40E_PFINT_RATEN(q_vector->reg_idx), intrl); 2848 i40e_flush(hw); 2849 } 2850 2851 /** 2852 * __i40e_set_coalesce - set coalesce settings for particular queue 2853 * @netdev: the netdev to change 2854 * @ec: ethtool coalesce settings 2855 * @queue: the queue to change 2856 * 2857 * Sets the coalesce settings for a particular queue. 2858 **/ 2859 static int __i40e_set_coalesce(struct net_device *netdev, 2860 struct ethtool_coalesce *ec, 2861 int queue) 2862 { 2863 struct i40e_netdev_priv *np = netdev_priv(netdev); 2864 u16 intrl_reg, cur_rx_itr, cur_tx_itr; 2865 struct i40e_vsi *vsi = np->vsi; 2866 struct i40e_pf *pf = vsi->back; 2867 int i; 2868 2869 if (ec->tx_max_coalesced_frames_irq || ec->rx_max_coalesced_frames_irq) 2870 vsi->work_limit = ec->tx_max_coalesced_frames_irq; 2871 2872 if (queue < 0) { 2873 cur_rx_itr = vsi->rx_rings[0]->itr_setting; 2874 cur_tx_itr = vsi->tx_rings[0]->itr_setting; 2875 } else if (queue < vsi->num_queue_pairs) { 2876 cur_rx_itr = vsi->rx_rings[queue]->itr_setting; 2877 cur_tx_itr = vsi->tx_rings[queue]->itr_setting; 2878 } else { 2879 netif_info(pf, drv, netdev, "Invalid queue value, queue range is 0 - %d\n", 2880 vsi->num_queue_pairs - 1); 2881 return -EINVAL; 2882 } 2883 2884 cur_tx_itr &= ~I40E_ITR_DYNAMIC; 2885 cur_rx_itr &= ~I40E_ITR_DYNAMIC; 2886 2887 /* tx_coalesce_usecs_high is ignored, use rx-usecs-high instead */ 2888 if (ec->tx_coalesce_usecs_high != vsi->int_rate_limit) { 2889 netif_info(pf, drv, netdev, "tx-usecs-high is not used, please program rx-usecs-high\n"); 2890 return -EINVAL; 2891 } 2892 2893 if (ec->rx_coalesce_usecs_high > INTRL_REG_TO_USEC(I40E_MAX_INTRL)) { 2894 netif_info(pf, drv, netdev, "Invalid value, rx-usecs-high range is 0-%lu\n", 2895 INTRL_REG_TO_USEC(I40E_MAX_INTRL)); 2896 return -EINVAL; 2897 } 2898 2899 if (ec->rx_coalesce_usecs != cur_rx_itr && 2900 ec->use_adaptive_rx_coalesce) { 2901 netif_info(pf, drv, netdev, "RX interrupt moderation cannot be changed if adaptive-rx is enabled.\n"); 2902 return -EINVAL; 2903 } 2904 2905 if (ec->rx_coalesce_usecs > I40E_MAX_ITR) { 2906 netif_info(pf, drv, netdev, "Invalid value, rx-usecs range is 0-8160\n"); 2907 return -EINVAL; 2908 } 2909 2910 if (ec->tx_coalesce_usecs != cur_tx_itr && 2911 ec->use_adaptive_tx_coalesce) { 2912 netif_info(pf, drv, netdev, "TX interrupt moderation cannot be changed if adaptive-tx is enabled.\n"); 2913 return -EINVAL; 2914 } 2915 2916 if (ec->tx_coalesce_usecs > I40E_MAX_ITR) { 2917 netif_info(pf, drv, netdev, "Invalid value, tx-usecs range is 0-8160\n"); 2918 return -EINVAL; 2919 } 2920 2921 if (ec->use_adaptive_rx_coalesce && !cur_rx_itr) 2922 ec->rx_coalesce_usecs = I40E_MIN_ITR; 2923 2924 if (ec->use_adaptive_tx_coalesce && !cur_tx_itr) 2925 ec->tx_coalesce_usecs = I40E_MIN_ITR; 2926 2927 intrl_reg = i40e_intrl_usec_to_reg(ec->rx_coalesce_usecs_high); 2928 vsi->int_rate_limit = INTRL_REG_TO_USEC(intrl_reg); 2929 if (vsi->int_rate_limit != ec->rx_coalesce_usecs_high) { 2930 netif_info(pf, drv, netdev, "Interrupt rate limit rounded down to %d\n", 2931 vsi->int_rate_limit); 2932 } 2933 2934 /* rx and tx usecs has per queue value. If user doesn't specify the 2935 * queue, apply to all queues. 2936 */ 2937 if (queue < 0) { 2938 for (i = 0; i < vsi->num_queue_pairs; i++) 2939 i40e_set_itr_per_queue(vsi, ec, i); 2940 } else { 2941 i40e_set_itr_per_queue(vsi, ec, queue); 2942 } 2943 2944 return 0; 2945 } 2946 2947 /** 2948 * i40e_set_coalesce - set coalesce settings for every queue on the netdev 2949 * @netdev: the netdev to change 2950 * @ec: ethtool coalesce settings 2951 * 2952 * This will set each queue to the same coalesce settings. 2953 **/ 2954 static int i40e_set_coalesce(struct net_device *netdev, 2955 struct ethtool_coalesce *ec) 2956 { 2957 return __i40e_set_coalesce(netdev, ec, -1); 2958 } 2959 2960 /** 2961 * i40e_set_per_queue_coalesce - set specific queue's coalesce settings 2962 * @netdev: the netdev to change 2963 * @ec: ethtool's coalesce settings 2964 * @queue: the queue to change 2965 * 2966 * Sets the specified queue's coalesce settings. 2967 **/ 2968 static int i40e_set_per_queue_coalesce(struct net_device *netdev, u32 queue, 2969 struct ethtool_coalesce *ec) 2970 { 2971 return __i40e_set_coalesce(netdev, ec, queue); 2972 } 2973 2974 /** 2975 * i40e_get_rss_hash_opts - Get RSS hash Input Set for each flow type 2976 * @pf: pointer to the physical function struct 2977 * @cmd: ethtool rxnfc command 2978 * 2979 * Returns Success if the flow is supported, else Invalid Input. 2980 **/ 2981 static int i40e_get_rss_hash_opts(struct i40e_pf *pf, struct ethtool_rxnfc *cmd) 2982 { 2983 struct i40e_hw *hw = &pf->hw; 2984 u8 flow_pctype = 0; 2985 u64 i_set = 0; 2986 2987 cmd->data = 0; 2988 2989 switch (cmd->flow_type) { 2990 case TCP_V4_FLOW: 2991 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV4_TCP; 2992 break; 2993 case UDP_V4_FLOW: 2994 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV4_UDP; 2995 break; 2996 case TCP_V6_FLOW: 2997 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV6_TCP; 2998 break; 2999 case UDP_V6_FLOW: 3000 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV6_UDP; 3001 break; 3002 case SCTP_V4_FLOW: 3003 case AH_ESP_V4_FLOW: 3004 case AH_V4_FLOW: 3005 case ESP_V4_FLOW: 3006 case IPV4_FLOW: 3007 case SCTP_V6_FLOW: 3008 case AH_ESP_V6_FLOW: 3009 case AH_V6_FLOW: 3010 case ESP_V6_FLOW: 3011 case IPV6_FLOW: 3012 /* Default is src/dest for IP, no matter the L4 hashing */ 3013 cmd->data |= RXH_IP_SRC | RXH_IP_DST; 3014 break; 3015 default: 3016 return -EINVAL; 3017 } 3018 3019 /* Read flow based hash input set register */ 3020 if (flow_pctype) { 3021 i_set = (u64)i40e_read_rx_ctl(hw, I40E_GLQF_HASH_INSET(0, 3022 flow_pctype)) | 3023 ((u64)i40e_read_rx_ctl(hw, I40E_GLQF_HASH_INSET(1, 3024 flow_pctype)) << 32); 3025 } 3026 3027 /* Process bits of hash input set */ 3028 if (i_set) { 3029 if (i_set & I40E_L4_SRC_MASK) 3030 cmd->data |= RXH_L4_B_0_1; 3031 if (i_set & I40E_L4_DST_MASK) 3032 cmd->data |= RXH_L4_B_2_3; 3033 3034 if (cmd->flow_type == TCP_V4_FLOW || 3035 cmd->flow_type == UDP_V4_FLOW) { 3036 if (i_set & I40E_L3_SRC_MASK) 3037 cmd->data |= RXH_IP_SRC; 3038 if (i_set & I40E_L3_DST_MASK) 3039 cmd->data |= RXH_IP_DST; 3040 } else if (cmd->flow_type == TCP_V6_FLOW || 3041 cmd->flow_type == UDP_V6_FLOW) { 3042 if (i_set & I40E_L3_V6_SRC_MASK) 3043 cmd->data |= RXH_IP_SRC; 3044 if (i_set & I40E_L3_V6_DST_MASK) 3045 cmd->data |= RXH_IP_DST; 3046 } 3047 } 3048 3049 return 0; 3050 } 3051 3052 /** 3053 * i40e_check_mask - Check whether a mask field is set 3054 * @mask: the full mask value 3055 * @field: mask of the field to check 3056 * 3057 * If the given mask is fully set, return positive value. If the mask for the 3058 * field is fully unset, return zero. Otherwise return a negative error code. 3059 **/ 3060 static int i40e_check_mask(u64 mask, u64 field) 3061 { 3062 u64 value = mask & field; 3063 3064 if (value == field) 3065 return 1; 3066 else if (!value) 3067 return 0; 3068 else 3069 return -1; 3070 } 3071 3072 /** 3073 * i40e_parse_rx_flow_user_data - Deconstruct user-defined data 3074 * @fsp: pointer to rx flow specification 3075 * @data: pointer to userdef data structure for storage 3076 * 3077 * Read the user-defined data and deconstruct the value into a structure. No 3078 * other code should read the user-defined data, so as to ensure that every 3079 * place consistently reads the value correctly. 3080 * 3081 * The user-defined field is a 64bit Big Endian format value, which we 3082 * deconstruct by reading bits or bit fields from it. Single bit flags shall 3083 * be defined starting from the highest bits, while small bit field values 3084 * shall be defined starting from the lowest bits. 3085 * 3086 * Returns 0 if the data is valid, and non-zero if the userdef data is invalid 3087 * and the filter should be rejected. The data structure will always be 3088 * modified even if FLOW_EXT is not set. 3089 * 3090 **/ 3091 static int i40e_parse_rx_flow_user_data(struct ethtool_rx_flow_spec *fsp, 3092 struct i40e_rx_flow_userdef *data) 3093 { 3094 u64 value, mask; 3095 int valid; 3096 3097 /* Zero memory first so it's always consistent. */ 3098 memset(data, 0, sizeof(*data)); 3099 3100 if (!(fsp->flow_type & FLOW_EXT)) 3101 return 0; 3102 3103 value = be64_to_cpu(*((__be64 *)fsp->h_ext.data)); 3104 mask = be64_to_cpu(*((__be64 *)fsp->m_ext.data)); 3105 3106 #define I40E_USERDEF_FLEX_WORD GENMASK_ULL(15, 0) 3107 #define I40E_USERDEF_FLEX_OFFSET GENMASK_ULL(31, 16) 3108 #define I40E_USERDEF_FLEX_FILTER GENMASK_ULL(31, 0) 3109 3110 valid = i40e_check_mask(mask, I40E_USERDEF_FLEX_FILTER); 3111 if (valid < 0) { 3112 return -EINVAL; 3113 } else if (valid) { 3114 data->flex_word = value & I40E_USERDEF_FLEX_WORD; 3115 data->flex_offset = 3116 (value & I40E_USERDEF_FLEX_OFFSET) >> 16; 3117 data->flex_filter = true; 3118 } 3119 3120 return 0; 3121 } 3122 3123 /** 3124 * i40e_fill_rx_flow_user_data - Fill in user-defined data field 3125 * @fsp: pointer to rx_flow specification 3126 * @data: pointer to return userdef data 3127 * 3128 * Reads the userdef data structure and properly fills in the user defined 3129 * fields of the rx_flow_spec. 3130 **/ 3131 static void i40e_fill_rx_flow_user_data(struct ethtool_rx_flow_spec *fsp, 3132 struct i40e_rx_flow_userdef *data) 3133 { 3134 u64 value = 0, mask = 0; 3135 3136 if (data->flex_filter) { 3137 value |= data->flex_word; 3138 value |= (u64)data->flex_offset << 16; 3139 mask |= I40E_USERDEF_FLEX_FILTER; 3140 } 3141 3142 if (value || mask) 3143 fsp->flow_type |= FLOW_EXT; 3144 3145 *((__be64 *)fsp->h_ext.data) = cpu_to_be64(value); 3146 *((__be64 *)fsp->m_ext.data) = cpu_to_be64(mask); 3147 } 3148 3149 /** 3150 * i40e_get_ethtool_fdir_all - Populates the rule count of a command 3151 * @pf: Pointer to the physical function struct 3152 * @cmd: The command to get or set Rx flow classification rules 3153 * @rule_locs: Array of used rule locations 3154 * 3155 * This function populates both the total and actual rule count of 3156 * the ethtool flow classification command 3157 * 3158 * Returns 0 on success or -EMSGSIZE if entry not found 3159 **/ 3160 static int i40e_get_ethtool_fdir_all(struct i40e_pf *pf, 3161 struct ethtool_rxnfc *cmd, 3162 u32 *rule_locs) 3163 { 3164 struct i40e_fdir_filter *rule; 3165 struct hlist_node *node2; 3166 int cnt = 0; 3167 3168 /* report total rule count */ 3169 cmd->data = i40e_get_fd_cnt_all(pf); 3170 3171 hlist_for_each_entry_safe(rule, node2, 3172 &pf->fdir_filter_list, fdir_node) { 3173 if (cnt == cmd->rule_cnt) 3174 return -EMSGSIZE; 3175 3176 rule_locs[cnt] = rule->fd_id; 3177 cnt++; 3178 } 3179 3180 cmd->rule_cnt = cnt; 3181 3182 return 0; 3183 } 3184 3185 /** 3186 * i40e_get_ethtool_fdir_entry - Look up a filter based on Rx flow 3187 * @pf: Pointer to the physical function struct 3188 * @cmd: The command to get or set Rx flow classification rules 3189 * 3190 * This function looks up a filter based on the Rx flow classification 3191 * command and fills the flow spec info for it if found 3192 * 3193 * Returns 0 on success or -EINVAL if filter not found 3194 **/ 3195 static int i40e_get_ethtool_fdir_entry(struct i40e_pf *pf, 3196 struct ethtool_rxnfc *cmd) 3197 { 3198 struct ethtool_rx_flow_spec *fsp = 3199 (struct ethtool_rx_flow_spec *)&cmd->fs; 3200 struct i40e_rx_flow_userdef userdef = {0}; 3201 struct i40e_fdir_filter *rule = NULL; 3202 struct hlist_node *node2; 3203 u64 input_set; 3204 u16 index; 3205 3206 hlist_for_each_entry_safe(rule, node2, 3207 &pf->fdir_filter_list, fdir_node) { 3208 if (fsp->location <= rule->fd_id) 3209 break; 3210 } 3211 3212 if (!rule || fsp->location != rule->fd_id) 3213 return -EINVAL; 3214 3215 fsp->flow_type = rule->flow_type; 3216 if (fsp->flow_type == IP_USER_FLOW) { 3217 fsp->h_u.usr_ip4_spec.ip_ver = ETH_RX_NFC_IP4; 3218 fsp->h_u.usr_ip4_spec.proto = 0; 3219 fsp->m_u.usr_ip4_spec.proto = 0; 3220 } 3221 3222 /* Reverse the src and dest notion, since the HW views them from 3223 * Tx perspective where as the user expects it from Rx filter view. 3224 */ 3225 fsp->h_u.tcp_ip4_spec.psrc = rule->dst_port; 3226 fsp->h_u.tcp_ip4_spec.pdst = rule->src_port; 3227 fsp->h_u.tcp_ip4_spec.ip4src = rule->dst_ip; 3228 fsp->h_u.tcp_ip4_spec.ip4dst = rule->src_ip; 3229 3230 switch (rule->flow_type) { 3231 case SCTP_V4_FLOW: 3232 index = I40E_FILTER_PCTYPE_NONF_IPV4_SCTP; 3233 break; 3234 case TCP_V4_FLOW: 3235 index = I40E_FILTER_PCTYPE_NONF_IPV4_TCP; 3236 break; 3237 case UDP_V4_FLOW: 3238 index = I40E_FILTER_PCTYPE_NONF_IPV4_UDP; 3239 break; 3240 case IP_USER_FLOW: 3241 index = I40E_FILTER_PCTYPE_NONF_IPV4_OTHER; 3242 break; 3243 default: 3244 /* If we have stored a filter with a flow type not listed here 3245 * it is almost certainly a driver bug. WARN(), and then 3246 * assign the input_set as if all fields are enabled to avoid 3247 * reading unassigned memory. 3248 */ 3249 WARN(1, "Missing input set index for flow_type %d\n", 3250 rule->flow_type); 3251 input_set = 0xFFFFFFFFFFFFFFFFULL; 3252 goto no_input_set; 3253 } 3254 3255 input_set = i40e_read_fd_input_set(pf, index); 3256 3257 no_input_set: 3258 if (input_set & I40E_L3_SRC_MASK) 3259 fsp->m_u.tcp_ip4_spec.ip4src = htonl(0xFFFFFFFF); 3260 3261 if (input_set & I40E_L3_DST_MASK) 3262 fsp->m_u.tcp_ip4_spec.ip4dst = htonl(0xFFFFFFFF); 3263 3264 if (input_set & I40E_L4_SRC_MASK) 3265 fsp->m_u.tcp_ip4_spec.psrc = htons(0xFFFF); 3266 3267 if (input_set & I40E_L4_DST_MASK) 3268 fsp->m_u.tcp_ip4_spec.pdst = htons(0xFFFF); 3269 3270 if (rule->dest_ctl == I40E_FILTER_PROGRAM_DESC_DEST_DROP_PACKET) 3271 fsp->ring_cookie = RX_CLS_FLOW_DISC; 3272 else 3273 fsp->ring_cookie = rule->q_index; 3274 3275 if (rule->dest_vsi != pf->vsi[pf->lan_vsi]->id) { 3276 struct i40e_vsi *vsi; 3277 3278 vsi = i40e_find_vsi_from_id(pf, rule->dest_vsi); 3279 if (vsi && vsi->type == I40E_VSI_SRIOV) { 3280 /* VFs are zero-indexed by the driver, but ethtool 3281 * expects them to be one-indexed, so add one here 3282 */ 3283 u64 ring_vf = vsi->vf_id + 1; 3284 3285 ring_vf <<= ETHTOOL_RX_FLOW_SPEC_RING_VF_OFF; 3286 fsp->ring_cookie |= ring_vf; 3287 } 3288 } 3289 3290 if (rule->flex_filter) { 3291 userdef.flex_filter = true; 3292 userdef.flex_word = be16_to_cpu(rule->flex_word); 3293 userdef.flex_offset = rule->flex_offset; 3294 } 3295 3296 i40e_fill_rx_flow_user_data(fsp, &userdef); 3297 3298 return 0; 3299 } 3300 3301 /** 3302 * i40e_get_rxnfc - command to get RX flow classification rules 3303 * @netdev: network interface device structure 3304 * @cmd: ethtool rxnfc command 3305 * @rule_locs: pointer to store rule data 3306 * 3307 * Returns Success if the command is supported. 3308 **/ 3309 static int i40e_get_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd, 3310 u32 *rule_locs) 3311 { 3312 struct i40e_netdev_priv *np = netdev_priv(netdev); 3313 struct i40e_vsi *vsi = np->vsi; 3314 struct i40e_pf *pf = vsi->back; 3315 int ret = -EOPNOTSUPP; 3316 3317 switch (cmd->cmd) { 3318 case ETHTOOL_GRXRINGS: 3319 cmd->data = vsi->rss_size; 3320 ret = 0; 3321 break; 3322 case ETHTOOL_GRXFH: 3323 ret = i40e_get_rss_hash_opts(pf, cmd); 3324 break; 3325 case ETHTOOL_GRXCLSRLCNT: 3326 cmd->rule_cnt = pf->fdir_pf_active_filters; 3327 /* report total rule count */ 3328 cmd->data = i40e_get_fd_cnt_all(pf); 3329 ret = 0; 3330 break; 3331 case ETHTOOL_GRXCLSRULE: 3332 ret = i40e_get_ethtool_fdir_entry(pf, cmd); 3333 break; 3334 case ETHTOOL_GRXCLSRLALL: 3335 ret = i40e_get_ethtool_fdir_all(pf, cmd, rule_locs); 3336 break; 3337 default: 3338 break; 3339 } 3340 3341 return ret; 3342 } 3343 3344 /** 3345 * i40e_get_rss_hash_bits - Read RSS Hash bits from register 3346 * @nfc: pointer to user request 3347 * @i_setc: bits currently set 3348 * 3349 * Returns value of bits to be set per user request 3350 **/ 3351 static u64 i40e_get_rss_hash_bits(struct ethtool_rxnfc *nfc, u64 i_setc) 3352 { 3353 u64 i_set = i_setc; 3354 u64 src_l3 = 0, dst_l3 = 0; 3355 3356 if (nfc->data & RXH_L4_B_0_1) 3357 i_set |= I40E_L4_SRC_MASK; 3358 else 3359 i_set &= ~I40E_L4_SRC_MASK; 3360 if (nfc->data & RXH_L4_B_2_3) 3361 i_set |= I40E_L4_DST_MASK; 3362 else 3363 i_set &= ~I40E_L4_DST_MASK; 3364 3365 if (nfc->flow_type == TCP_V6_FLOW || nfc->flow_type == UDP_V6_FLOW) { 3366 src_l3 = I40E_L3_V6_SRC_MASK; 3367 dst_l3 = I40E_L3_V6_DST_MASK; 3368 } else if (nfc->flow_type == TCP_V4_FLOW || 3369 nfc->flow_type == UDP_V4_FLOW) { 3370 src_l3 = I40E_L3_SRC_MASK; 3371 dst_l3 = I40E_L3_DST_MASK; 3372 } else { 3373 /* Any other flow type are not supported here */ 3374 return i_set; 3375 } 3376 3377 if (nfc->data & RXH_IP_SRC) 3378 i_set |= src_l3; 3379 else 3380 i_set &= ~src_l3; 3381 if (nfc->data & RXH_IP_DST) 3382 i_set |= dst_l3; 3383 else 3384 i_set &= ~dst_l3; 3385 3386 return i_set; 3387 } 3388 3389 /** 3390 * i40e_set_rss_hash_opt - Enable/Disable flow types for RSS hash 3391 * @pf: pointer to the physical function struct 3392 * @nfc: ethtool rxnfc command 3393 * 3394 * Returns Success if the flow input set is supported. 3395 **/ 3396 static int i40e_set_rss_hash_opt(struct i40e_pf *pf, struct ethtool_rxnfc *nfc) 3397 { 3398 struct i40e_hw *hw = &pf->hw; 3399 u64 hena = (u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(0)) | 3400 ((u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(1)) << 32); 3401 u8 flow_pctype = 0; 3402 u64 i_set, i_setc; 3403 3404 if (pf->flags & I40E_FLAG_MFP_ENABLED) { 3405 dev_err(&pf->pdev->dev, 3406 "Change of RSS hash input set is not supported when MFP mode is enabled\n"); 3407 return -EOPNOTSUPP; 3408 } 3409 3410 /* RSS does not support anything other than hashing 3411 * to queues on src and dst IPs and ports 3412 */ 3413 if (nfc->data & ~(RXH_IP_SRC | RXH_IP_DST | 3414 RXH_L4_B_0_1 | RXH_L4_B_2_3)) 3415 return -EINVAL; 3416 3417 switch (nfc->flow_type) { 3418 case TCP_V4_FLOW: 3419 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV4_TCP; 3420 if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE) 3421 hena |= 3422 BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK); 3423 break; 3424 case TCP_V6_FLOW: 3425 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV6_TCP; 3426 if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE) 3427 hena |= 3428 BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK); 3429 if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE) 3430 hena |= 3431 BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK); 3432 break; 3433 case UDP_V4_FLOW: 3434 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV4_UDP; 3435 if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE) 3436 hena |= 3437 BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP) | 3438 BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP); 3439 3440 hena |= BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV4); 3441 break; 3442 case UDP_V6_FLOW: 3443 flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV6_UDP; 3444 if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE) 3445 hena |= 3446 BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP) | 3447 BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP); 3448 3449 hena |= BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV6); 3450 break; 3451 case AH_ESP_V4_FLOW: 3452 case AH_V4_FLOW: 3453 case ESP_V4_FLOW: 3454 case SCTP_V4_FLOW: 3455 if ((nfc->data & RXH_L4_B_0_1) || 3456 (nfc->data & RXH_L4_B_2_3)) 3457 return -EINVAL; 3458 hena |= BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_OTHER); 3459 break; 3460 case AH_ESP_V6_FLOW: 3461 case AH_V6_FLOW: 3462 case ESP_V6_FLOW: 3463 case SCTP_V6_FLOW: 3464 if ((nfc->data & RXH_L4_B_0_1) || 3465 (nfc->data & RXH_L4_B_2_3)) 3466 return -EINVAL; 3467 hena |= BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_OTHER); 3468 break; 3469 case IPV4_FLOW: 3470 hena |= BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_OTHER) | 3471 BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV4); 3472 break; 3473 case IPV6_FLOW: 3474 hena |= BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_OTHER) | 3475 BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV6); 3476 break; 3477 default: 3478 return -EINVAL; 3479 } 3480 3481 if (flow_pctype) { 3482 i_setc = (u64)i40e_read_rx_ctl(hw, I40E_GLQF_HASH_INSET(0, 3483 flow_pctype)) | 3484 ((u64)i40e_read_rx_ctl(hw, I40E_GLQF_HASH_INSET(1, 3485 flow_pctype)) << 32); 3486 i_set = i40e_get_rss_hash_bits(nfc, i_setc); 3487 i40e_write_rx_ctl(hw, I40E_GLQF_HASH_INSET(0, flow_pctype), 3488 (u32)i_set); 3489 i40e_write_rx_ctl(hw, I40E_GLQF_HASH_INSET(1, flow_pctype), 3490 (u32)(i_set >> 32)); 3491 hena |= BIT_ULL(flow_pctype); 3492 } 3493 3494 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), (u32)hena); 3495 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32)); 3496 i40e_flush(hw); 3497 3498 return 0; 3499 } 3500 3501 /** 3502 * i40e_update_ethtool_fdir_entry - Updates the fdir filter entry 3503 * @vsi: Pointer to the targeted VSI 3504 * @input: The filter to update or NULL to indicate deletion 3505 * @sw_idx: Software index to the filter 3506 * @cmd: The command to get or set Rx flow classification rules 3507 * 3508 * This function updates (or deletes) a Flow Director entry from 3509 * the hlist of the corresponding PF 3510 * 3511 * Returns 0 on success 3512 **/ 3513 static int i40e_update_ethtool_fdir_entry(struct i40e_vsi *vsi, 3514 struct i40e_fdir_filter *input, 3515 u16 sw_idx, 3516 struct ethtool_rxnfc *cmd) 3517 { 3518 struct i40e_fdir_filter *rule, *parent; 3519 struct i40e_pf *pf = vsi->back; 3520 struct hlist_node *node2; 3521 int err = -EINVAL; 3522 3523 parent = NULL; 3524 rule = NULL; 3525 3526 hlist_for_each_entry_safe(rule, node2, 3527 &pf->fdir_filter_list, fdir_node) { 3528 /* hash found, or no matching entry */ 3529 if (rule->fd_id >= sw_idx) 3530 break; 3531 parent = rule; 3532 } 3533 3534 /* if there is an old rule occupying our place remove it */ 3535 if (rule && (rule->fd_id == sw_idx)) { 3536 /* Remove this rule, since we're either deleting it, or 3537 * replacing it. 3538 */ 3539 err = i40e_add_del_fdir(vsi, rule, false); 3540 hlist_del(&rule->fdir_node); 3541 kfree(rule); 3542 pf->fdir_pf_active_filters--; 3543 } 3544 3545 /* If we weren't given an input, this is a delete, so just return the 3546 * error code indicating if there was an entry at the requested slot 3547 */ 3548 if (!input) 3549 return err; 3550 3551 /* Otherwise, install the new rule as requested */ 3552 INIT_HLIST_NODE(&input->fdir_node); 3553 3554 /* add filter to the list */ 3555 if (parent) 3556 hlist_add_behind(&input->fdir_node, &parent->fdir_node); 3557 else 3558 hlist_add_head(&input->fdir_node, 3559 &pf->fdir_filter_list); 3560 3561 /* update counts */ 3562 pf->fdir_pf_active_filters++; 3563 3564 return 0; 3565 } 3566 3567 /** 3568 * i40e_prune_flex_pit_list - Cleanup unused entries in FLX_PIT table 3569 * @pf: pointer to PF structure 3570 * 3571 * This function searches the list of filters and determines which FLX_PIT 3572 * entries are still required. It will prune any entries which are no longer 3573 * in use after the deletion. 3574 **/ 3575 static void i40e_prune_flex_pit_list(struct i40e_pf *pf) 3576 { 3577 struct i40e_flex_pit *entry, *tmp; 3578 struct i40e_fdir_filter *rule; 3579 3580 /* First, we'll check the l3 table */ 3581 list_for_each_entry_safe(entry, tmp, &pf->l3_flex_pit_list, list) { 3582 bool found = false; 3583 3584 hlist_for_each_entry(rule, &pf->fdir_filter_list, fdir_node) { 3585 if (rule->flow_type != IP_USER_FLOW) 3586 continue; 3587 if (rule->flex_filter && 3588 rule->flex_offset == entry->src_offset) { 3589 found = true; 3590 break; 3591 } 3592 } 3593 3594 /* If we didn't find the filter, then we can prune this entry 3595 * from the list. 3596 */ 3597 if (!found) { 3598 list_del(&entry->list); 3599 kfree(entry); 3600 } 3601 } 3602 3603 /* Followed by the L4 table */ 3604 list_for_each_entry_safe(entry, tmp, &pf->l4_flex_pit_list, list) { 3605 bool found = false; 3606 3607 hlist_for_each_entry(rule, &pf->fdir_filter_list, fdir_node) { 3608 /* Skip this filter if it's L3, since we already 3609 * checked those in the above loop 3610 */ 3611 if (rule->flow_type == IP_USER_FLOW) 3612 continue; 3613 if (rule->flex_filter && 3614 rule->flex_offset == entry->src_offset) { 3615 found = true; 3616 break; 3617 } 3618 } 3619 3620 /* If we didn't find the filter, then we can prune this entry 3621 * from the list. 3622 */ 3623 if (!found) { 3624 list_del(&entry->list); 3625 kfree(entry); 3626 } 3627 } 3628 } 3629 3630 /** 3631 * i40e_del_fdir_entry - Deletes a Flow Director filter entry 3632 * @vsi: Pointer to the targeted VSI 3633 * @cmd: The command to get or set Rx flow classification rules 3634 * 3635 * The function removes a Flow Director filter entry from the 3636 * hlist of the corresponding PF 3637 * 3638 * Returns 0 on success 3639 */ 3640 static int i40e_del_fdir_entry(struct i40e_vsi *vsi, 3641 struct ethtool_rxnfc *cmd) 3642 { 3643 struct ethtool_rx_flow_spec *fsp = 3644 (struct ethtool_rx_flow_spec *)&cmd->fs; 3645 struct i40e_pf *pf = vsi->back; 3646 int ret = 0; 3647 3648 if (test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state) || 3649 test_bit(__I40E_RESET_INTR_RECEIVED, pf->state)) 3650 return -EBUSY; 3651 3652 if (test_bit(__I40E_FD_FLUSH_REQUESTED, pf->state)) 3653 return -EBUSY; 3654 3655 ret = i40e_update_ethtool_fdir_entry(vsi, NULL, fsp->location, cmd); 3656 3657 i40e_prune_flex_pit_list(pf); 3658 3659 i40e_fdir_check_and_reenable(pf); 3660 return ret; 3661 } 3662 3663 /** 3664 * i40e_unused_pit_index - Find an unused PIT index for given list 3665 * @pf: the PF data structure 3666 * 3667 * Find the first unused flexible PIT index entry. We search both the L3 and 3668 * L4 flexible PIT lists so that the returned index is unique and unused by 3669 * either currently programmed L3 or L4 filters. We use a bit field as storage 3670 * to track which indexes are already used. 3671 **/ 3672 static u8 i40e_unused_pit_index(struct i40e_pf *pf) 3673 { 3674 unsigned long available_index = 0xFF; 3675 struct i40e_flex_pit *entry; 3676 3677 /* We need to make sure that the new index isn't in use by either L3 3678 * or L4 filters so that IP_USER_FLOW filters can program both L3 and 3679 * L4 to use the same index. 3680 */ 3681 3682 list_for_each_entry(entry, &pf->l4_flex_pit_list, list) 3683 clear_bit(entry->pit_index, &available_index); 3684 3685 list_for_each_entry(entry, &pf->l3_flex_pit_list, list) 3686 clear_bit(entry->pit_index, &available_index); 3687 3688 return find_first_bit(&available_index, 8); 3689 } 3690 3691 /** 3692 * i40e_find_flex_offset - Find an existing flex src_offset 3693 * @flex_pit_list: L3 or L4 flex PIT list 3694 * @src_offset: new src_offset to find 3695 * 3696 * Searches the flex_pit_list for an existing offset. If no offset is 3697 * currently programmed, then this will return an ERR_PTR if there is no space 3698 * to add a new offset, otherwise it returns NULL. 3699 **/ 3700 static 3701 struct i40e_flex_pit *i40e_find_flex_offset(struct list_head *flex_pit_list, 3702 u16 src_offset) 3703 { 3704 struct i40e_flex_pit *entry; 3705 int size = 0; 3706 3707 /* Search for the src_offset first. If we find a matching entry 3708 * already programmed, we can simply re-use it. 3709 */ 3710 list_for_each_entry(entry, flex_pit_list, list) { 3711 size++; 3712 if (entry->src_offset == src_offset) 3713 return entry; 3714 } 3715 3716 /* If we haven't found an entry yet, then the provided src offset has 3717 * not yet been programmed. We will program the src offset later on, 3718 * but we need to indicate whether there is enough space to do so 3719 * here. We'll make use of ERR_PTR for this purpose. 3720 */ 3721 if (size >= I40E_FLEX_PIT_TABLE_SIZE) 3722 return ERR_PTR(-ENOSPC); 3723 3724 return NULL; 3725 } 3726 3727 /** 3728 * i40e_add_flex_offset - Add src_offset to flex PIT table list 3729 * @flex_pit_list: L3 or L4 flex PIT list 3730 * @src_offset: new src_offset to add 3731 * @pit_index: the PIT index to program 3732 * 3733 * This function programs the new src_offset to the list. It is expected that 3734 * i40e_find_flex_offset has already been tried and returned NULL, indicating 3735 * that this offset is not programmed, and that the list has enough space to 3736 * store another offset. 3737 * 3738 * Returns 0 on success, and negative value on error. 3739 **/ 3740 static int i40e_add_flex_offset(struct list_head *flex_pit_list, 3741 u16 src_offset, 3742 u8 pit_index) 3743 { 3744 struct i40e_flex_pit *new_pit, *entry; 3745 3746 new_pit = kzalloc(sizeof(*entry), GFP_KERNEL); 3747 if (!new_pit) 3748 return -ENOMEM; 3749 3750 new_pit->src_offset = src_offset; 3751 new_pit->pit_index = pit_index; 3752 3753 /* We need to insert this item such that the list is sorted by 3754 * src_offset in ascending order. 3755 */ 3756 list_for_each_entry(entry, flex_pit_list, list) { 3757 if (new_pit->src_offset < entry->src_offset) { 3758 list_add_tail(&new_pit->list, &entry->list); 3759 return 0; 3760 } 3761 3762 /* If we found an entry with our offset already programmed we 3763 * can simply return here, after freeing the memory. However, 3764 * if the pit_index does not match we need to report an error. 3765 */ 3766 if (new_pit->src_offset == entry->src_offset) { 3767 int err = 0; 3768 3769 /* If the PIT index is not the same we can't re-use 3770 * the entry, so we must report an error. 3771 */ 3772 if (new_pit->pit_index != entry->pit_index) 3773 err = -EINVAL; 3774 3775 kfree(new_pit); 3776 return err; 3777 } 3778 } 3779 3780 /* If we reached here, then we haven't yet added the item. This means 3781 * that we should add the item at the end of the list. 3782 */ 3783 list_add_tail(&new_pit->list, flex_pit_list); 3784 return 0; 3785 } 3786 3787 /** 3788 * __i40e_reprogram_flex_pit - Re-program specific FLX_PIT table 3789 * @pf: Pointer to the PF structure 3790 * @flex_pit_list: list of flexible src offsets in use 3791 * @flex_pit_start: index to first entry for this section of the table 3792 * 3793 * In order to handle flexible data, the hardware uses a table of values 3794 * called the FLX_PIT table. This table is used to indicate which sections of 3795 * the input correspond to what PIT index values. Unfortunately, hardware is 3796 * very restrictive about programming this table. Entries must be ordered by 3797 * src_offset in ascending order, without duplicates. Additionally, unused 3798 * entries must be set to the unused index value, and must have valid size and 3799 * length according to the src_offset ordering. 3800 * 3801 * This function will reprogram the FLX_PIT register from a book-keeping 3802 * structure that we guarantee is already ordered correctly, and has no more 3803 * than 3 entries. 3804 * 3805 * To make things easier, we only support flexible values of one word length, 3806 * rather than allowing variable length flexible values. 3807 **/ 3808 static void __i40e_reprogram_flex_pit(struct i40e_pf *pf, 3809 struct list_head *flex_pit_list, 3810 int flex_pit_start) 3811 { 3812 struct i40e_flex_pit *entry = NULL; 3813 u16 last_offset = 0; 3814 int i = 0, j = 0; 3815 3816 /* First, loop over the list of flex PIT entries, and reprogram the 3817 * registers. 3818 */ 3819 list_for_each_entry(entry, flex_pit_list, list) { 3820 /* We have to be careful when programming values for the 3821 * largest SRC_OFFSET value. It is possible that adding 3822 * additional empty values at the end would overflow the space 3823 * for the SRC_OFFSET in the FLX_PIT register. To avoid this, 3824 * we check here and add the empty values prior to adding the 3825 * largest value. 3826 * 3827 * To determine this, we will use a loop from i+1 to 3, which 3828 * will determine whether the unused entries would have valid 3829 * SRC_OFFSET. Note that there cannot be extra entries past 3830 * this value, because the only valid values would have been 3831 * larger than I40E_MAX_FLEX_SRC_OFFSET, and thus would not 3832 * have been added to the list in the first place. 3833 */ 3834 for (j = i + 1; j < 3; j++) { 3835 u16 offset = entry->src_offset + j; 3836 int index = flex_pit_start + i; 3837 u32 value = I40E_FLEX_PREP_VAL(I40E_FLEX_DEST_UNUSED, 3838 1, 3839 offset - 3); 3840 3841 if (offset > I40E_MAX_FLEX_SRC_OFFSET) { 3842 i40e_write_rx_ctl(&pf->hw, 3843 I40E_PRTQF_FLX_PIT(index), 3844 value); 3845 i++; 3846 } 3847 } 3848 3849 /* Now, we can program the actual value into the table */ 3850 i40e_write_rx_ctl(&pf->hw, 3851 I40E_PRTQF_FLX_PIT(flex_pit_start + i), 3852 I40E_FLEX_PREP_VAL(entry->pit_index + 50, 3853 1, 3854 entry->src_offset)); 3855 i++; 3856 } 3857 3858 /* In order to program the last entries in the table, we need to 3859 * determine the valid offset. If the list is empty, we'll just start 3860 * with 0. Otherwise, we'll start with the last item offset and add 1. 3861 * This ensures that all entries have valid sizes. If we don't do this 3862 * correctly, the hardware will disable flexible field parsing. 3863 */ 3864 if (!list_empty(flex_pit_list)) 3865 last_offset = list_prev_entry(entry, list)->src_offset + 1; 3866 3867 for (; i < 3; i++, last_offset++) { 3868 i40e_write_rx_ctl(&pf->hw, 3869 I40E_PRTQF_FLX_PIT(flex_pit_start + i), 3870 I40E_FLEX_PREP_VAL(I40E_FLEX_DEST_UNUSED, 3871 1, 3872 last_offset)); 3873 } 3874 } 3875 3876 /** 3877 * i40e_reprogram_flex_pit - Reprogram all FLX_PIT tables after input set change 3878 * @pf: pointer to the PF structure 3879 * 3880 * This function reprograms both the L3 and L4 FLX_PIT tables. See the 3881 * internal helper function for implementation details. 3882 **/ 3883 static void i40e_reprogram_flex_pit(struct i40e_pf *pf) 3884 { 3885 __i40e_reprogram_flex_pit(pf, &pf->l3_flex_pit_list, 3886 I40E_FLEX_PIT_IDX_START_L3); 3887 3888 __i40e_reprogram_flex_pit(pf, &pf->l4_flex_pit_list, 3889 I40E_FLEX_PIT_IDX_START_L4); 3890 3891 /* We also need to program the L3 and L4 GLQF ORT register */ 3892 i40e_write_rx_ctl(&pf->hw, 3893 I40E_GLQF_ORT(I40E_L3_GLQF_ORT_IDX), 3894 I40E_ORT_PREP_VAL(I40E_FLEX_PIT_IDX_START_L3, 3895 3, 1)); 3896 3897 i40e_write_rx_ctl(&pf->hw, 3898 I40E_GLQF_ORT(I40E_L4_GLQF_ORT_IDX), 3899 I40E_ORT_PREP_VAL(I40E_FLEX_PIT_IDX_START_L4, 3900 3, 1)); 3901 } 3902 3903 /** 3904 * i40e_flow_str - Converts a flow_type into a human readable string 3905 * @fsp: the flow specification 3906 * 3907 * Currently only flow types we support are included here, and the string 3908 * value attempts to match what ethtool would use to configure this flow type. 3909 **/ 3910 static const char *i40e_flow_str(struct ethtool_rx_flow_spec *fsp) 3911 { 3912 switch (fsp->flow_type & ~FLOW_EXT) { 3913 case TCP_V4_FLOW: 3914 return "tcp4"; 3915 case UDP_V4_FLOW: 3916 return "udp4"; 3917 case SCTP_V4_FLOW: 3918 return "sctp4"; 3919 case IP_USER_FLOW: 3920 return "ip4"; 3921 default: 3922 return "unknown"; 3923 } 3924 } 3925 3926 /** 3927 * i40e_pit_index_to_mask - Return the FLEX mask for a given PIT index 3928 * @pit_index: PIT index to convert 3929 * 3930 * Returns the mask for a given PIT index. Will return 0 if the pit_index is 3931 * of range. 3932 **/ 3933 static u64 i40e_pit_index_to_mask(int pit_index) 3934 { 3935 switch (pit_index) { 3936 case 0: 3937 return I40E_FLEX_50_MASK; 3938 case 1: 3939 return I40E_FLEX_51_MASK; 3940 case 2: 3941 return I40E_FLEX_52_MASK; 3942 case 3: 3943 return I40E_FLEX_53_MASK; 3944 case 4: 3945 return I40E_FLEX_54_MASK; 3946 case 5: 3947 return I40E_FLEX_55_MASK; 3948 case 6: 3949 return I40E_FLEX_56_MASK; 3950 case 7: 3951 return I40E_FLEX_57_MASK; 3952 default: 3953 return 0; 3954 } 3955 } 3956 3957 /** 3958 * i40e_print_input_set - Show changes between two input sets 3959 * @vsi: the vsi being configured 3960 * @old: the old input set 3961 * @new: the new input set 3962 * 3963 * Print the difference between old and new input sets by showing which series 3964 * of words are toggled on or off. Only displays the bits we actually support 3965 * changing. 3966 **/ 3967 static void i40e_print_input_set(struct i40e_vsi *vsi, u64 old, u64 new) 3968 { 3969 struct i40e_pf *pf = vsi->back; 3970 bool old_value, new_value; 3971 int i; 3972 3973 old_value = !!(old & I40E_L3_SRC_MASK); 3974 new_value = !!(new & I40E_L3_SRC_MASK); 3975 if (old_value != new_value) 3976 netif_info(pf, drv, vsi->netdev, "L3 source address: %s -> %s\n", 3977 old_value ? "ON" : "OFF", 3978 new_value ? "ON" : "OFF"); 3979 3980 old_value = !!(old & I40E_L3_DST_MASK); 3981 new_value = !!(new & I40E_L3_DST_MASK); 3982 if (old_value != new_value) 3983 netif_info(pf, drv, vsi->netdev, "L3 destination address: %s -> %s\n", 3984 old_value ? "ON" : "OFF", 3985 new_value ? "ON" : "OFF"); 3986 3987 old_value = !!(old & I40E_L4_SRC_MASK); 3988 new_value = !!(new & I40E_L4_SRC_MASK); 3989 if (old_value != new_value) 3990 netif_info(pf, drv, vsi->netdev, "L4 source port: %s -> %s\n", 3991 old_value ? "ON" : "OFF", 3992 new_value ? "ON" : "OFF"); 3993 3994 old_value = !!(old & I40E_L4_DST_MASK); 3995 new_value = !!(new & I40E_L4_DST_MASK); 3996 if (old_value != new_value) 3997 netif_info(pf, drv, vsi->netdev, "L4 destination port: %s -> %s\n", 3998 old_value ? "ON" : "OFF", 3999 new_value ? "ON" : "OFF"); 4000 4001 old_value = !!(old & I40E_VERIFY_TAG_MASK); 4002 new_value = !!(new & I40E_VERIFY_TAG_MASK); 4003 if (old_value != new_value) 4004 netif_info(pf, drv, vsi->netdev, "SCTP verification tag: %s -> %s\n", 4005 old_value ? "ON" : "OFF", 4006 new_value ? "ON" : "OFF"); 4007 4008 /* Show change of flexible filter entries */ 4009 for (i = 0; i < I40E_FLEX_INDEX_ENTRIES; i++) { 4010 u64 flex_mask = i40e_pit_index_to_mask(i); 4011 4012 old_value = !!(old & flex_mask); 4013 new_value = !!(new & flex_mask); 4014 if (old_value != new_value) 4015 netif_info(pf, drv, vsi->netdev, "FLEX index %d: %s -> %s\n", 4016 i, 4017 old_value ? "ON" : "OFF", 4018 new_value ? "ON" : "OFF"); 4019 } 4020 4021 netif_info(pf, drv, vsi->netdev, " Current input set: %0llx\n", 4022 old); 4023 netif_info(pf, drv, vsi->netdev, "Requested input set: %0llx\n", 4024 new); 4025 } 4026 4027 /** 4028 * i40e_check_fdir_input_set - Check that a given rx_flow_spec mask is valid 4029 * @vsi: pointer to the targeted VSI 4030 * @fsp: pointer to Rx flow specification 4031 * @userdef: userdefined data from flow specification 4032 * 4033 * Ensures that a given ethtool_rx_flow_spec has a valid mask. Some support 4034 * for partial matches exists with a few limitations. First, hardware only 4035 * supports masking by word boundary (2 bytes) and not per individual bit. 4036 * Second, hardware is limited to using one mask for a flow type and cannot 4037 * use a separate mask for each filter. 4038 * 4039 * To support these limitations, if we already have a configured filter for 4040 * the specified type, this function enforces that new filters of the type 4041 * match the configured input set. Otherwise, if we do not have a filter of 4042 * the specified type, we allow the input set to be updated to match the 4043 * desired filter. 4044 * 4045 * To help ensure that administrators understand why filters weren't displayed 4046 * as supported, we print a diagnostic message displaying how the input set 4047 * would change and warning to delete the preexisting filters if required. 4048 * 4049 * Returns 0 on successful input set match, and a negative return code on 4050 * failure. 4051 **/ 4052 static int i40e_check_fdir_input_set(struct i40e_vsi *vsi, 4053 struct ethtool_rx_flow_spec *fsp, 4054 struct i40e_rx_flow_userdef *userdef) 4055 { 4056 struct i40e_pf *pf = vsi->back; 4057 struct ethtool_tcpip4_spec *tcp_ip4_spec; 4058 struct ethtool_usrip4_spec *usr_ip4_spec; 4059 u64 current_mask, new_mask; 4060 bool new_flex_offset = false; 4061 bool flex_l3 = false; 4062 u16 *fdir_filter_count; 4063 u16 index, src_offset = 0; 4064 u8 pit_index = 0; 4065 int err; 4066 4067 switch (fsp->flow_type & ~FLOW_EXT) { 4068 case SCTP_V4_FLOW: 4069 index = I40E_FILTER_PCTYPE_NONF_IPV4_SCTP; 4070 fdir_filter_count = &pf->fd_sctp4_filter_cnt; 4071 break; 4072 case TCP_V4_FLOW: 4073 index = I40E_FILTER_PCTYPE_NONF_IPV4_TCP; 4074 fdir_filter_count = &pf->fd_tcp4_filter_cnt; 4075 break; 4076 case UDP_V4_FLOW: 4077 index = I40E_FILTER_PCTYPE_NONF_IPV4_UDP; 4078 fdir_filter_count = &pf->fd_udp4_filter_cnt; 4079 break; 4080 case IP_USER_FLOW: 4081 index = I40E_FILTER_PCTYPE_NONF_IPV4_OTHER; 4082 fdir_filter_count = &pf->fd_ip4_filter_cnt; 4083 flex_l3 = true; 4084 break; 4085 default: 4086 return -EOPNOTSUPP; 4087 } 4088 4089 /* Read the current input set from register memory. */ 4090 current_mask = i40e_read_fd_input_set(pf, index); 4091 new_mask = current_mask; 4092 4093 /* Determine, if any, the required changes to the input set in order 4094 * to support the provided mask. 4095 * 4096 * Hardware only supports masking at word (2 byte) granularity and does 4097 * not support full bitwise masking. This implementation simplifies 4098 * even further and only supports fully enabled or fully disabled 4099 * masks for each field, even though we could split the ip4src and 4100 * ip4dst fields. 4101 */ 4102 switch (fsp->flow_type & ~FLOW_EXT) { 4103 case SCTP_V4_FLOW: 4104 new_mask &= ~I40E_VERIFY_TAG_MASK; 4105 /* Fall through */ 4106 case TCP_V4_FLOW: 4107 case UDP_V4_FLOW: 4108 tcp_ip4_spec = &fsp->m_u.tcp_ip4_spec; 4109 4110 /* IPv4 source address */ 4111 if (tcp_ip4_spec->ip4src == htonl(0xFFFFFFFF)) 4112 new_mask |= I40E_L3_SRC_MASK; 4113 else if (!tcp_ip4_spec->ip4src) 4114 new_mask &= ~I40E_L3_SRC_MASK; 4115 else 4116 return -EOPNOTSUPP; 4117 4118 /* IPv4 destination address */ 4119 if (tcp_ip4_spec->ip4dst == htonl(0xFFFFFFFF)) 4120 new_mask |= I40E_L3_DST_MASK; 4121 else if (!tcp_ip4_spec->ip4dst) 4122 new_mask &= ~I40E_L3_DST_MASK; 4123 else 4124 return -EOPNOTSUPP; 4125 4126 /* L4 source port */ 4127 if (tcp_ip4_spec->psrc == htons(0xFFFF)) 4128 new_mask |= I40E_L4_SRC_MASK; 4129 else if (!tcp_ip4_spec->psrc) 4130 new_mask &= ~I40E_L4_SRC_MASK; 4131 else 4132 return -EOPNOTSUPP; 4133 4134 /* L4 destination port */ 4135 if (tcp_ip4_spec->pdst == htons(0xFFFF)) 4136 new_mask |= I40E_L4_DST_MASK; 4137 else if (!tcp_ip4_spec->pdst) 4138 new_mask &= ~I40E_L4_DST_MASK; 4139 else 4140 return -EOPNOTSUPP; 4141 4142 /* Filtering on Type of Service is not supported. */ 4143 if (tcp_ip4_spec->tos) 4144 return -EOPNOTSUPP; 4145 4146 break; 4147 case IP_USER_FLOW: 4148 usr_ip4_spec = &fsp->m_u.usr_ip4_spec; 4149 4150 /* IPv4 source address */ 4151 if (usr_ip4_spec->ip4src == htonl(0xFFFFFFFF)) 4152 new_mask |= I40E_L3_SRC_MASK; 4153 else if (!usr_ip4_spec->ip4src) 4154 new_mask &= ~I40E_L3_SRC_MASK; 4155 else 4156 return -EOPNOTSUPP; 4157 4158 /* IPv4 destination address */ 4159 if (usr_ip4_spec->ip4dst == htonl(0xFFFFFFFF)) 4160 new_mask |= I40E_L3_DST_MASK; 4161 else if (!usr_ip4_spec->ip4dst) 4162 new_mask &= ~I40E_L3_DST_MASK; 4163 else 4164 return -EOPNOTSUPP; 4165 4166 /* First 4 bytes of L4 header */ 4167 if (usr_ip4_spec->l4_4_bytes == htonl(0xFFFFFFFF)) 4168 new_mask |= I40E_L4_SRC_MASK | I40E_L4_DST_MASK; 4169 else if (!usr_ip4_spec->l4_4_bytes) 4170 new_mask &= ~(I40E_L4_SRC_MASK | I40E_L4_DST_MASK); 4171 else 4172 return -EOPNOTSUPP; 4173 4174 /* Filtering on Type of Service is not supported. */ 4175 if (usr_ip4_spec->tos) 4176 return -EOPNOTSUPP; 4177 4178 /* Filtering on IP version is not supported */ 4179 if (usr_ip4_spec->ip_ver) 4180 return -EINVAL; 4181 4182 /* Filtering on L4 protocol is not supported */ 4183 if (usr_ip4_spec->proto) 4184 return -EINVAL; 4185 4186 break; 4187 default: 4188 return -EOPNOTSUPP; 4189 } 4190 4191 /* First, clear all flexible filter entries */ 4192 new_mask &= ~I40E_FLEX_INPUT_MASK; 4193 4194 /* If we have a flexible filter, try to add this offset to the correct 4195 * flexible filter PIT list. Once finished, we can update the mask. 4196 * If the src_offset changed, we will get a new mask value which will 4197 * trigger an input set change. 4198 */ 4199 if (userdef->flex_filter) { 4200 struct i40e_flex_pit *l3_flex_pit = NULL, *flex_pit = NULL; 4201 4202 /* Flexible offset must be even, since the flexible payload 4203 * must be aligned on 2-byte boundary. 4204 */ 4205 if (userdef->flex_offset & 0x1) { 4206 dev_warn(&pf->pdev->dev, 4207 "Flexible data offset must be 2-byte aligned\n"); 4208 return -EINVAL; 4209 } 4210 4211 src_offset = userdef->flex_offset >> 1; 4212 4213 /* FLX_PIT source offset value is only so large */ 4214 if (src_offset > I40E_MAX_FLEX_SRC_OFFSET) { 4215 dev_warn(&pf->pdev->dev, 4216 "Flexible data must reside within first 64 bytes of the packet payload\n"); 4217 return -EINVAL; 4218 } 4219 4220 /* See if this offset has already been programmed. If we get 4221 * an ERR_PTR, then the filter is not safe to add. Otherwise, 4222 * if we get a NULL pointer, this means we will need to add 4223 * the offset. 4224 */ 4225 flex_pit = i40e_find_flex_offset(&pf->l4_flex_pit_list, 4226 src_offset); 4227 if (IS_ERR(flex_pit)) 4228 return PTR_ERR(flex_pit); 4229 4230 /* IP_USER_FLOW filters match both L4 (ICMP) and L3 (unknown) 4231 * packet types, and thus we need to program both L3 and L4 4232 * flexible values. These must have identical flexible index, 4233 * as otherwise we can't correctly program the input set. So 4234 * we'll find both an L3 and L4 index and make sure they are 4235 * the same. 4236 */ 4237 if (flex_l3) { 4238 l3_flex_pit = 4239 i40e_find_flex_offset(&pf->l3_flex_pit_list, 4240 src_offset); 4241 if (IS_ERR(l3_flex_pit)) 4242 return PTR_ERR(l3_flex_pit); 4243 4244 if (flex_pit) { 4245 /* If we already had a matching L4 entry, we 4246 * need to make sure that the L3 entry we 4247 * obtained uses the same index. 4248 */ 4249 if (l3_flex_pit) { 4250 if (l3_flex_pit->pit_index != 4251 flex_pit->pit_index) { 4252 return -EINVAL; 4253 } 4254 } else { 4255 new_flex_offset = true; 4256 } 4257 } else { 4258 flex_pit = l3_flex_pit; 4259 } 4260 } 4261 4262 /* If we didn't find an existing flex offset, we need to 4263 * program a new one. However, we don't immediately program it 4264 * here because we will wait to program until after we check 4265 * that it is safe to change the input set. 4266 */ 4267 if (!flex_pit) { 4268 new_flex_offset = true; 4269 pit_index = i40e_unused_pit_index(pf); 4270 } else { 4271 pit_index = flex_pit->pit_index; 4272 } 4273 4274 /* Update the mask with the new offset */ 4275 new_mask |= i40e_pit_index_to_mask(pit_index); 4276 } 4277 4278 /* If the mask and flexible filter offsets for this filter match the 4279 * currently programmed values we don't need any input set change, so 4280 * this filter is safe to install. 4281 */ 4282 if (new_mask == current_mask && !new_flex_offset) 4283 return 0; 4284 4285 netif_info(pf, drv, vsi->netdev, "Input set change requested for %s flows:\n", 4286 i40e_flow_str(fsp)); 4287 i40e_print_input_set(vsi, current_mask, new_mask); 4288 if (new_flex_offset) { 4289 netif_info(pf, drv, vsi->netdev, "FLEX index %d: Offset -> %d", 4290 pit_index, src_offset); 4291 } 4292 4293 /* Hardware input sets are global across multiple ports, so even the 4294 * main port cannot change them when in MFP mode as this would impact 4295 * any filters on the other ports. 4296 */ 4297 if (pf->flags & I40E_FLAG_MFP_ENABLED) { 4298 netif_err(pf, drv, vsi->netdev, "Cannot change Flow Director input sets while MFP is enabled\n"); 4299 return -EOPNOTSUPP; 4300 } 4301 4302 /* This filter requires us to update the input set. However, hardware 4303 * only supports one input set per flow type, and does not support 4304 * separate masks for each filter. This means that we can only support 4305 * a single mask for all filters of a specific type. 4306 * 4307 * If we have preexisting filters, they obviously depend on the 4308 * current programmed input set. Display a diagnostic message in this 4309 * case explaining why the filter could not be accepted. 4310 */ 4311 if (*fdir_filter_count) { 4312 netif_err(pf, drv, vsi->netdev, "Cannot change input set for %s flows until %d preexisting filters are removed\n", 4313 i40e_flow_str(fsp), 4314 *fdir_filter_count); 4315 return -EOPNOTSUPP; 4316 } 4317 4318 i40e_write_fd_input_set(pf, index, new_mask); 4319 4320 /* IP_USER_FLOW filters match both IPv4/Other and IPv4/Fragmented 4321 * frames. If we're programming the input set for IPv4/Other, we also 4322 * need to program the IPv4/Fragmented input set. Since we don't have 4323 * separate support, we'll always assume and enforce that the two flow 4324 * types must have matching input sets. 4325 */ 4326 if (index == I40E_FILTER_PCTYPE_NONF_IPV4_OTHER) 4327 i40e_write_fd_input_set(pf, I40E_FILTER_PCTYPE_FRAG_IPV4, 4328 new_mask); 4329 4330 /* Add the new offset and update table, if necessary */ 4331 if (new_flex_offset) { 4332 err = i40e_add_flex_offset(&pf->l4_flex_pit_list, src_offset, 4333 pit_index); 4334 if (err) 4335 return err; 4336 4337 if (flex_l3) { 4338 err = i40e_add_flex_offset(&pf->l3_flex_pit_list, 4339 src_offset, 4340 pit_index); 4341 if (err) 4342 return err; 4343 } 4344 4345 i40e_reprogram_flex_pit(pf); 4346 } 4347 4348 return 0; 4349 } 4350 4351 /** 4352 * i40e_match_fdir_filter - Return true of two filters match 4353 * @a: pointer to filter struct 4354 * @b: pointer to filter struct 4355 * 4356 * Returns true if the two filters match exactly the same criteria. I.e. they 4357 * match the same flow type and have the same parameters. We don't need to 4358 * check any input-set since all filters of the same flow type must use the 4359 * same input set. 4360 **/ 4361 static bool i40e_match_fdir_filter(struct i40e_fdir_filter *a, 4362 struct i40e_fdir_filter *b) 4363 { 4364 /* The filters do not much if any of these criteria differ. */ 4365 if (a->dst_ip != b->dst_ip || 4366 a->src_ip != b->src_ip || 4367 a->dst_port != b->dst_port || 4368 a->src_port != b->src_port || 4369 a->flow_type != b->flow_type || 4370 a->ip4_proto != b->ip4_proto) 4371 return false; 4372 4373 return true; 4374 } 4375 4376 /** 4377 * i40e_disallow_matching_filters - Check that new filters differ 4378 * @vsi: pointer to the targeted VSI 4379 * @input: new filter to check 4380 * 4381 * Due to hardware limitations, it is not possible for two filters that match 4382 * similar criteria to be programmed at the same time. This is true for a few 4383 * reasons: 4384 * 4385 * (a) all filters matching a particular flow type must use the same input 4386 * set, that is they must match the same criteria. 4387 * (b) different flow types will never match the same packet, as the flow type 4388 * is decided by hardware before checking which rules apply. 4389 * (c) hardware has no way to distinguish which order filters apply in. 4390 * 4391 * Due to this, we can't really support using the location data to order 4392 * filters in the hardware parsing. It is technically possible for the user to 4393 * request two filters matching the same criteria but which select different 4394 * queues. In this case, rather than keep both filters in the list, we reject 4395 * the 2nd filter when the user requests adding it. 4396 * 4397 * This avoids needing to track location for programming the filter to 4398 * hardware, and ensures that we avoid some strange scenarios involving 4399 * deleting filters which match the same criteria. 4400 **/ 4401 static int i40e_disallow_matching_filters(struct i40e_vsi *vsi, 4402 struct i40e_fdir_filter *input) 4403 { 4404 struct i40e_pf *pf = vsi->back; 4405 struct i40e_fdir_filter *rule; 4406 struct hlist_node *node2; 4407 4408 /* Loop through every filter, and check that it doesn't match */ 4409 hlist_for_each_entry_safe(rule, node2, 4410 &pf->fdir_filter_list, fdir_node) { 4411 /* Don't check the filters match if they share the same fd_id, 4412 * since the new filter is actually just updating the target 4413 * of the old filter. 4414 */ 4415 if (rule->fd_id == input->fd_id) 4416 continue; 4417 4418 /* If any filters match, then print a warning message to the 4419 * kernel message buffer and bail out. 4420 */ 4421 if (i40e_match_fdir_filter(rule, input)) { 4422 dev_warn(&pf->pdev->dev, 4423 "Existing user defined filter %d already matches this flow.\n", 4424 rule->fd_id); 4425 return -EINVAL; 4426 } 4427 } 4428 4429 return 0; 4430 } 4431 4432 /** 4433 * i40e_add_fdir_ethtool - Add/Remove Flow Director filters 4434 * @vsi: pointer to the targeted VSI 4435 * @cmd: command to get or set RX flow classification rules 4436 * 4437 * Add Flow Director filters for a specific flow spec based on their 4438 * protocol. Returns 0 if the filters were successfully added. 4439 **/ 4440 static int i40e_add_fdir_ethtool(struct i40e_vsi *vsi, 4441 struct ethtool_rxnfc *cmd) 4442 { 4443 struct i40e_rx_flow_userdef userdef; 4444 struct ethtool_rx_flow_spec *fsp; 4445 struct i40e_fdir_filter *input; 4446 u16 dest_vsi = 0, q_index = 0; 4447 struct i40e_pf *pf; 4448 int ret = -EINVAL; 4449 u8 dest_ctl; 4450 4451 if (!vsi) 4452 return -EINVAL; 4453 pf = vsi->back; 4454 4455 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED)) 4456 return -EOPNOTSUPP; 4457 4458 if (test_bit(__I40E_FD_SB_AUTO_DISABLED, pf->state)) 4459 return -ENOSPC; 4460 4461 if (test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state) || 4462 test_bit(__I40E_RESET_INTR_RECEIVED, pf->state)) 4463 return -EBUSY; 4464 4465 if (test_bit(__I40E_FD_FLUSH_REQUESTED, pf->state)) 4466 return -EBUSY; 4467 4468 fsp = (struct ethtool_rx_flow_spec *)&cmd->fs; 4469 4470 /* Parse the user-defined field */ 4471 if (i40e_parse_rx_flow_user_data(fsp, &userdef)) 4472 return -EINVAL; 4473 4474 /* Extended MAC field is not supported */ 4475 if (fsp->flow_type & FLOW_MAC_EXT) 4476 return -EINVAL; 4477 4478 ret = i40e_check_fdir_input_set(vsi, fsp, &userdef); 4479 if (ret) 4480 return ret; 4481 4482 if (fsp->location >= (pf->hw.func_caps.fd_filters_best_effort + 4483 pf->hw.func_caps.fd_filters_guaranteed)) { 4484 return -EINVAL; 4485 } 4486 4487 /* ring_cookie is either the drop index, or is a mask of the queue 4488 * index and VF id we wish to target. 4489 */ 4490 if (fsp->ring_cookie == RX_CLS_FLOW_DISC) { 4491 dest_ctl = I40E_FILTER_PROGRAM_DESC_DEST_DROP_PACKET; 4492 } else { 4493 u32 ring = ethtool_get_flow_spec_ring(fsp->ring_cookie); 4494 u8 vf = ethtool_get_flow_spec_ring_vf(fsp->ring_cookie); 4495 4496 if (!vf) { 4497 if (ring >= vsi->num_queue_pairs) 4498 return -EINVAL; 4499 dest_vsi = vsi->id; 4500 } else { 4501 /* VFs are zero-indexed, so we subtract one here */ 4502 vf--; 4503 4504 if (vf >= pf->num_alloc_vfs) 4505 return -EINVAL; 4506 if (ring >= pf->vf[vf].num_queue_pairs) 4507 return -EINVAL; 4508 dest_vsi = pf->vf[vf].lan_vsi_id; 4509 } 4510 dest_ctl = I40E_FILTER_PROGRAM_DESC_DEST_DIRECT_PACKET_QINDEX; 4511 q_index = ring; 4512 } 4513 4514 input = kzalloc(sizeof(*input), GFP_KERNEL); 4515 4516 if (!input) 4517 return -ENOMEM; 4518 4519 input->fd_id = fsp->location; 4520 input->q_index = q_index; 4521 input->dest_vsi = dest_vsi; 4522 input->dest_ctl = dest_ctl; 4523 input->fd_status = I40E_FILTER_PROGRAM_DESC_FD_STATUS_FD_ID; 4524 input->cnt_index = I40E_FD_SB_STAT_IDX(pf->hw.pf_id); 4525 input->dst_ip = fsp->h_u.tcp_ip4_spec.ip4src; 4526 input->src_ip = fsp->h_u.tcp_ip4_spec.ip4dst; 4527 input->flow_type = fsp->flow_type & ~FLOW_EXT; 4528 input->ip4_proto = fsp->h_u.usr_ip4_spec.proto; 4529 4530 /* Reverse the src and dest notion, since the HW expects them to be from 4531 * Tx perspective where as the input from user is from Rx filter view. 4532 */ 4533 input->dst_port = fsp->h_u.tcp_ip4_spec.psrc; 4534 input->src_port = fsp->h_u.tcp_ip4_spec.pdst; 4535 input->dst_ip = fsp->h_u.tcp_ip4_spec.ip4src; 4536 input->src_ip = fsp->h_u.tcp_ip4_spec.ip4dst; 4537 4538 if (userdef.flex_filter) { 4539 input->flex_filter = true; 4540 input->flex_word = cpu_to_be16(userdef.flex_word); 4541 input->flex_offset = userdef.flex_offset; 4542 } 4543 4544 /* Avoid programming two filters with identical match criteria. */ 4545 ret = i40e_disallow_matching_filters(vsi, input); 4546 if (ret) 4547 goto free_filter_memory; 4548 4549 /* Add the input filter to the fdir_input_list, possibly replacing 4550 * a previous filter. Do not free the input structure after adding it 4551 * to the list as this would cause a use-after-free bug. 4552 */ 4553 i40e_update_ethtool_fdir_entry(vsi, input, fsp->location, NULL); 4554 ret = i40e_add_del_fdir(vsi, input, true); 4555 if (ret) 4556 goto remove_sw_rule; 4557 return 0; 4558 4559 remove_sw_rule: 4560 hlist_del(&input->fdir_node); 4561 pf->fdir_pf_active_filters--; 4562 free_filter_memory: 4563 kfree(input); 4564 return ret; 4565 } 4566 4567 /** 4568 * i40e_set_rxnfc - command to set RX flow classification rules 4569 * @netdev: network interface device structure 4570 * @cmd: ethtool rxnfc command 4571 * 4572 * Returns Success if the command is supported. 4573 **/ 4574 static int i40e_set_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd) 4575 { 4576 struct i40e_netdev_priv *np = netdev_priv(netdev); 4577 struct i40e_vsi *vsi = np->vsi; 4578 struct i40e_pf *pf = vsi->back; 4579 int ret = -EOPNOTSUPP; 4580 4581 switch (cmd->cmd) { 4582 case ETHTOOL_SRXFH: 4583 ret = i40e_set_rss_hash_opt(pf, cmd); 4584 break; 4585 case ETHTOOL_SRXCLSRLINS: 4586 ret = i40e_add_fdir_ethtool(vsi, cmd); 4587 break; 4588 case ETHTOOL_SRXCLSRLDEL: 4589 ret = i40e_del_fdir_entry(vsi, cmd); 4590 break; 4591 default: 4592 break; 4593 } 4594 4595 return ret; 4596 } 4597 4598 /** 4599 * i40e_max_channels - get Max number of combined channels supported 4600 * @vsi: vsi pointer 4601 **/ 4602 static unsigned int i40e_max_channels(struct i40e_vsi *vsi) 4603 { 4604 /* TODO: This code assumes DCB and FD is disabled for now. */ 4605 return vsi->alloc_queue_pairs; 4606 } 4607 4608 /** 4609 * i40e_get_channels - Get the current channels enabled and max supported etc. 4610 * @dev: network interface device structure 4611 * @ch: ethtool channels structure 4612 * 4613 * We don't support separate tx and rx queues as channels. The other count 4614 * represents how many queues are being used for control. max_combined counts 4615 * how many queue pairs we can support. They may not be mapped 1 to 1 with 4616 * q_vectors since we support a lot more queue pairs than q_vectors. 4617 **/ 4618 static void i40e_get_channels(struct net_device *dev, 4619 struct ethtool_channels *ch) 4620 { 4621 struct i40e_netdev_priv *np = netdev_priv(dev); 4622 struct i40e_vsi *vsi = np->vsi; 4623 struct i40e_pf *pf = vsi->back; 4624 4625 /* report maximum channels */ 4626 ch->max_combined = i40e_max_channels(vsi); 4627 4628 /* report info for other vector */ 4629 ch->other_count = (pf->flags & I40E_FLAG_FD_SB_ENABLED) ? 1 : 0; 4630 ch->max_other = ch->other_count; 4631 4632 /* Note: This code assumes DCB is disabled for now. */ 4633 ch->combined_count = vsi->num_queue_pairs; 4634 } 4635 4636 /** 4637 * i40e_set_channels - Set the new channels count. 4638 * @dev: network interface device structure 4639 * @ch: ethtool channels structure 4640 * 4641 * The new channels count may not be the same as requested by the user 4642 * since it gets rounded down to a power of 2 value. 4643 **/ 4644 static int i40e_set_channels(struct net_device *dev, 4645 struct ethtool_channels *ch) 4646 { 4647 const u8 drop = I40E_FILTER_PROGRAM_DESC_DEST_DROP_PACKET; 4648 struct i40e_netdev_priv *np = netdev_priv(dev); 4649 unsigned int count = ch->combined_count; 4650 struct i40e_vsi *vsi = np->vsi; 4651 struct i40e_pf *pf = vsi->back; 4652 struct i40e_fdir_filter *rule; 4653 struct hlist_node *node2; 4654 int new_count; 4655 int err = 0; 4656 4657 /* We do not support setting channels for any other VSI at present */ 4658 if (vsi->type != I40E_VSI_MAIN) 4659 return -EINVAL; 4660 4661 /* We do not support setting channels via ethtool when TCs are 4662 * configured through mqprio 4663 */ 4664 if (pf->flags & I40E_FLAG_TC_MQPRIO) 4665 return -EINVAL; 4666 4667 /* verify they are not requesting separate vectors */ 4668 if (!count || ch->rx_count || ch->tx_count) 4669 return -EINVAL; 4670 4671 /* verify other_count has not changed */ 4672 if (ch->other_count != ((pf->flags & I40E_FLAG_FD_SB_ENABLED) ? 1 : 0)) 4673 return -EINVAL; 4674 4675 /* verify the number of channels does not exceed hardware limits */ 4676 if (count > i40e_max_channels(vsi)) 4677 return -EINVAL; 4678 4679 /* verify that the number of channels does not invalidate any current 4680 * flow director rules 4681 */ 4682 hlist_for_each_entry_safe(rule, node2, 4683 &pf->fdir_filter_list, fdir_node) { 4684 if (rule->dest_ctl != drop && count <= rule->q_index) { 4685 dev_warn(&pf->pdev->dev, 4686 "Existing user defined filter %d assigns flow to queue %d\n", 4687 rule->fd_id, rule->q_index); 4688 err = -EINVAL; 4689 } 4690 } 4691 4692 if (err) { 4693 dev_err(&pf->pdev->dev, 4694 "Existing filter rules must be deleted to reduce combined channel count to %d\n", 4695 count); 4696 return err; 4697 } 4698 4699 /* update feature limits from largest to smallest supported values */ 4700 /* TODO: Flow director limit, DCB etc */ 4701 4702 /* use rss_reconfig to rebuild with new queue count and update traffic 4703 * class queue mapping 4704 */ 4705 new_count = i40e_reconfig_rss_queues(pf, count); 4706 if (new_count > 0) 4707 return 0; 4708 else 4709 return -EINVAL; 4710 } 4711 4712 /** 4713 * i40e_get_rxfh_key_size - get the RSS hash key size 4714 * @netdev: network interface device structure 4715 * 4716 * Returns the table size. 4717 **/ 4718 static u32 i40e_get_rxfh_key_size(struct net_device *netdev) 4719 { 4720 return I40E_HKEY_ARRAY_SIZE; 4721 } 4722 4723 /** 4724 * i40e_get_rxfh_indir_size - get the rx flow hash indirection table size 4725 * @netdev: network interface device structure 4726 * 4727 * Returns the table size. 4728 **/ 4729 static u32 i40e_get_rxfh_indir_size(struct net_device *netdev) 4730 { 4731 return I40E_HLUT_ARRAY_SIZE; 4732 } 4733 4734 /** 4735 * i40e_get_rxfh - get the rx flow hash indirection table 4736 * @netdev: network interface device structure 4737 * @indir: indirection table 4738 * @key: hash key 4739 * @hfunc: hash function 4740 * 4741 * Reads the indirection table directly from the hardware. Returns 0 on 4742 * success. 4743 **/ 4744 static int i40e_get_rxfh(struct net_device *netdev, u32 *indir, u8 *key, 4745 u8 *hfunc) 4746 { 4747 struct i40e_netdev_priv *np = netdev_priv(netdev); 4748 struct i40e_vsi *vsi = np->vsi; 4749 u8 *lut, *seed = NULL; 4750 int ret; 4751 u16 i; 4752 4753 if (hfunc) 4754 *hfunc = ETH_RSS_HASH_TOP; 4755 4756 if (!indir) 4757 return 0; 4758 4759 seed = key; 4760 lut = kzalloc(I40E_HLUT_ARRAY_SIZE, GFP_KERNEL); 4761 if (!lut) 4762 return -ENOMEM; 4763 ret = i40e_get_rss(vsi, seed, lut, I40E_HLUT_ARRAY_SIZE); 4764 if (ret) 4765 goto out; 4766 for (i = 0; i < I40E_HLUT_ARRAY_SIZE; i++) 4767 indir[i] = (u32)(lut[i]); 4768 4769 out: 4770 kfree(lut); 4771 4772 return ret; 4773 } 4774 4775 /** 4776 * i40e_set_rxfh - set the rx flow hash indirection table 4777 * @netdev: network interface device structure 4778 * @indir: indirection table 4779 * @key: hash key 4780 * @hfunc: hash function to use 4781 * 4782 * Returns -EINVAL if the table specifies an invalid queue id, otherwise 4783 * returns 0 after programming the table. 4784 **/ 4785 static int i40e_set_rxfh(struct net_device *netdev, const u32 *indir, 4786 const u8 *key, const u8 hfunc) 4787 { 4788 struct i40e_netdev_priv *np = netdev_priv(netdev); 4789 struct i40e_vsi *vsi = np->vsi; 4790 struct i40e_pf *pf = vsi->back; 4791 u8 *seed = NULL; 4792 u16 i; 4793 4794 if (hfunc != ETH_RSS_HASH_NO_CHANGE && hfunc != ETH_RSS_HASH_TOP) 4795 return -EOPNOTSUPP; 4796 4797 if (key) { 4798 if (!vsi->rss_hkey_user) { 4799 vsi->rss_hkey_user = kzalloc(I40E_HKEY_ARRAY_SIZE, 4800 GFP_KERNEL); 4801 if (!vsi->rss_hkey_user) 4802 return -ENOMEM; 4803 } 4804 memcpy(vsi->rss_hkey_user, key, I40E_HKEY_ARRAY_SIZE); 4805 seed = vsi->rss_hkey_user; 4806 } 4807 if (!vsi->rss_lut_user) { 4808 vsi->rss_lut_user = kzalloc(I40E_HLUT_ARRAY_SIZE, GFP_KERNEL); 4809 if (!vsi->rss_lut_user) 4810 return -ENOMEM; 4811 } 4812 4813 /* Each 32 bits pointed by 'indir' is stored with a lut entry */ 4814 if (indir) 4815 for (i = 0; i < I40E_HLUT_ARRAY_SIZE; i++) 4816 vsi->rss_lut_user[i] = (u8)(indir[i]); 4817 else 4818 i40e_fill_rss_lut(pf, vsi->rss_lut_user, I40E_HLUT_ARRAY_SIZE, 4819 vsi->rss_size); 4820 4821 return i40e_config_rss(vsi, seed, vsi->rss_lut_user, 4822 I40E_HLUT_ARRAY_SIZE); 4823 } 4824 4825 /** 4826 * i40e_get_priv_flags - report device private flags 4827 * @dev: network interface device structure 4828 * 4829 * The get string set count and the string set should be matched for each 4830 * flag returned. Add new strings for each flag to the i40e_gstrings_priv_flags 4831 * array. 4832 * 4833 * Returns a u32 bitmap of flags. 4834 **/ 4835 static u32 i40e_get_priv_flags(struct net_device *dev) 4836 { 4837 struct i40e_netdev_priv *np = netdev_priv(dev); 4838 struct i40e_vsi *vsi = np->vsi; 4839 struct i40e_pf *pf = vsi->back; 4840 u32 i, j, ret_flags = 0; 4841 4842 for (i = 0; i < I40E_PRIV_FLAGS_STR_LEN; i++) { 4843 const struct i40e_priv_flags *priv_flags; 4844 4845 priv_flags = &i40e_gstrings_priv_flags[i]; 4846 4847 if (priv_flags->flag & pf->flags) 4848 ret_flags |= BIT(i); 4849 } 4850 4851 if (pf->hw.pf_id != 0) 4852 return ret_flags; 4853 4854 for (j = 0; j < I40E_GL_PRIV_FLAGS_STR_LEN; j++) { 4855 const struct i40e_priv_flags *priv_flags; 4856 4857 priv_flags = &i40e_gl_gstrings_priv_flags[j]; 4858 4859 if (priv_flags->flag & pf->flags) 4860 ret_flags |= BIT(i + j); 4861 } 4862 4863 return ret_flags; 4864 } 4865 4866 /** 4867 * i40e_set_priv_flags - set private flags 4868 * @dev: network interface device structure 4869 * @flags: bit flags to be set 4870 **/ 4871 static int i40e_set_priv_flags(struct net_device *dev, u32 flags) 4872 { 4873 struct i40e_netdev_priv *np = netdev_priv(dev); 4874 u64 orig_flags, new_flags, changed_flags; 4875 enum i40e_admin_queue_err adq_err; 4876 struct i40e_vsi *vsi = np->vsi; 4877 struct i40e_pf *pf = vsi->back; 4878 bool is_reset_needed; 4879 i40e_status status; 4880 u32 i, j; 4881 4882 orig_flags = READ_ONCE(pf->flags); 4883 new_flags = orig_flags; 4884 4885 for (i = 0; i < I40E_PRIV_FLAGS_STR_LEN; i++) { 4886 const struct i40e_priv_flags *priv_flags; 4887 4888 priv_flags = &i40e_gstrings_priv_flags[i]; 4889 4890 if (flags & BIT(i)) 4891 new_flags |= priv_flags->flag; 4892 else 4893 new_flags &= ~(priv_flags->flag); 4894 4895 /* If this is a read-only flag, it can't be changed */ 4896 if (priv_flags->read_only && 4897 ((orig_flags ^ new_flags) & ~BIT(i))) 4898 return -EOPNOTSUPP; 4899 } 4900 4901 if (pf->hw.pf_id != 0) 4902 goto flags_complete; 4903 4904 for (j = 0; j < I40E_GL_PRIV_FLAGS_STR_LEN; j++) { 4905 const struct i40e_priv_flags *priv_flags; 4906 4907 priv_flags = &i40e_gl_gstrings_priv_flags[j]; 4908 4909 if (flags & BIT(i + j)) 4910 new_flags |= priv_flags->flag; 4911 else 4912 new_flags &= ~(priv_flags->flag); 4913 4914 /* If this is a read-only flag, it can't be changed */ 4915 if (priv_flags->read_only && 4916 ((orig_flags ^ new_flags) & ~BIT(i))) 4917 return -EOPNOTSUPP; 4918 } 4919 4920 flags_complete: 4921 changed_flags = orig_flags ^ new_flags; 4922 4923 is_reset_needed = !!(changed_flags & (I40E_FLAG_VEB_STATS_ENABLED | 4924 I40E_FLAG_LEGACY_RX | I40E_FLAG_SOURCE_PRUNING_DISABLED | 4925 I40E_FLAG_DISABLE_FW_LLDP)); 4926 4927 /* Before we finalize any flag changes, we need to perform some 4928 * checks to ensure that the changes are supported and safe. 4929 */ 4930 4931 /* ATR eviction is not supported on all devices */ 4932 if ((new_flags & I40E_FLAG_HW_ATR_EVICT_ENABLED) && 4933 !(pf->hw_features & I40E_HW_ATR_EVICT_CAPABLE)) 4934 return -EOPNOTSUPP; 4935 4936 /* If the driver detected FW LLDP was disabled on init, this flag could 4937 * be set, however we do not support _changing_ the flag: 4938 * - on XL710 if NPAR is enabled or FW API version < 1.7 4939 * - on X722 with FW API version < 1.6 4940 * There are situations where older FW versions/NPAR enabled PFs could 4941 * disable LLDP, however we _must_ not allow the user to enable/disable 4942 * LLDP with this flag on unsupported FW versions. 4943 */ 4944 if (changed_flags & I40E_FLAG_DISABLE_FW_LLDP) { 4945 if (!(pf->hw.flags & I40E_HW_FLAG_FW_LLDP_STOPPABLE)) { 4946 dev_warn(&pf->pdev->dev, 4947 "Device does not support changing FW LLDP\n"); 4948 return -EOPNOTSUPP; 4949 } 4950 } 4951 4952 if (((changed_flags & I40E_FLAG_RS_FEC) || 4953 (changed_flags & I40E_FLAG_BASE_R_FEC)) && 4954 pf->hw.device_id != I40E_DEV_ID_25G_SFP28 && 4955 pf->hw.device_id != I40E_DEV_ID_25G_B) { 4956 dev_warn(&pf->pdev->dev, 4957 "Device does not support changing FEC configuration\n"); 4958 return -EOPNOTSUPP; 4959 } 4960 4961 /* Process any additional changes needed as a result of flag changes. 4962 * The changed_flags value reflects the list of bits that were 4963 * changed in the code above. 4964 */ 4965 4966 /* Flush current ATR settings if ATR was disabled */ 4967 if ((changed_flags & I40E_FLAG_FD_ATR_ENABLED) && 4968 !(new_flags & I40E_FLAG_FD_ATR_ENABLED)) { 4969 set_bit(__I40E_FD_ATR_AUTO_DISABLED, pf->state); 4970 set_bit(__I40E_FD_FLUSH_REQUESTED, pf->state); 4971 } 4972 4973 if (changed_flags & I40E_FLAG_TRUE_PROMISC_SUPPORT) { 4974 u16 sw_flags = 0, valid_flags = 0; 4975 int ret; 4976 4977 if (!(new_flags & I40E_FLAG_TRUE_PROMISC_SUPPORT)) 4978 sw_flags = I40E_AQ_SET_SWITCH_CFG_PROMISC; 4979 valid_flags = I40E_AQ_SET_SWITCH_CFG_PROMISC; 4980 ret = i40e_aq_set_switch_config(&pf->hw, sw_flags, valid_flags, 4981 0, NULL); 4982 if (ret && pf->hw.aq.asq_last_status != I40E_AQ_RC_ESRCH) { 4983 dev_info(&pf->pdev->dev, 4984 "couldn't set switch config bits, err %s aq_err %s\n", 4985 i40e_stat_str(&pf->hw, ret), 4986 i40e_aq_str(&pf->hw, 4987 pf->hw.aq.asq_last_status)); 4988 /* not a fatal problem, just keep going */ 4989 } 4990 } 4991 4992 if ((changed_flags & I40E_FLAG_RS_FEC) || 4993 (changed_flags & I40E_FLAG_BASE_R_FEC)) { 4994 u8 fec_cfg = 0; 4995 4996 if (new_flags & I40E_FLAG_RS_FEC && 4997 new_flags & I40E_FLAG_BASE_R_FEC) { 4998 fec_cfg = I40E_AQ_SET_FEC_AUTO; 4999 } else if (new_flags & I40E_FLAG_RS_FEC) { 5000 fec_cfg = (I40E_AQ_SET_FEC_REQUEST_RS | 5001 I40E_AQ_SET_FEC_ABILITY_RS); 5002 } else if (new_flags & I40E_FLAG_BASE_R_FEC) { 5003 fec_cfg = (I40E_AQ_SET_FEC_REQUEST_KR | 5004 I40E_AQ_SET_FEC_ABILITY_KR); 5005 } 5006 if (i40e_set_fec_cfg(dev, fec_cfg)) 5007 dev_warn(&pf->pdev->dev, "Cannot change FEC config\n"); 5008 } 5009 5010 if ((changed_flags & new_flags & 5011 I40E_FLAG_LINK_DOWN_ON_CLOSE_ENABLED) && 5012 (new_flags & I40E_FLAG_MFP_ENABLED)) 5013 dev_warn(&pf->pdev->dev, 5014 "Turning on link-down-on-close flag may affect other partitions\n"); 5015 5016 if (changed_flags & I40E_FLAG_DISABLE_FW_LLDP) { 5017 if (new_flags & I40E_FLAG_DISABLE_FW_LLDP) { 5018 struct i40e_dcbx_config *dcbcfg; 5019 5020 i40e_aq_stop_lldp(&pf->hw, true, false, NULL); 5021 i40e_aq_set_dcb_parameters(&pf->hw, true, NULL); 5022 /* reset local_dcbx_config to default */ 5023 dcbcfg = &pf->hw.local_dcbx_config; 5024 dcbcfg->etscfg.willing = 1; 5025 dcbcfg->etscfg.maxtcs = 0; 5026 dcbcfg->etscfg.tcbwtable[0] = 100; 5027 for (i = 1; i < I40E_MAX_TRAFFIC_CLASS; i++) 5028 dcbcfg->etscfg.tcbwtable[i] = 0; 5029 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) 5030 dcbcfg->etscfg.prioritytable[i] = 0; 5031 dcbcfg->etscfg.tsatable[0] = I40E_IEEE_TSA_ETS; 5032 dcbcfg->pfc.willing = 1; 5033 dcbcfg->pfc.pfccap = I40E_MAX_TRAFFIC_CLASS; 5034 } else { 5035 status = i40e_aq_start_lldp(&pf->hw, false, NULL); 5036 if (status) { 5037 adq_err = pf->hw.aq.asq_last_status; 5038 switch (adq_err) { 5039 case I40E_AQ_RC_EEXIST: 5040 dev_warn(&pf->pdev->dev, 5041 "FW LLDP agent is already running\n"); 5042 is_reset_needed = false; 5043 break; 5044 case I40E_AQ_RC_EPERM: 5045 dev_warn(&pf->pdev->dev, 5046 "Device configuration forbids SW from starting the LLDP agent.\n"); 5047 return -EINVAL; 5048 default: 5049 dev_warn(&pf->pdev->dev, 5050 "Starting FW LLDP agent failed: error: %s, %s\n", 5051 i40e_stat_str(&pf->hw, 5052 status), 5053 i40e_aq_str(&pf->hw, 5054 adq_err)); 5055 return -EINVAL; 5056 } 5057 } 5058 } 5059 } 5060 5061 /* Now that we've checked to ensure that the new flags are valid, load 5062 * them into place. Since we only modify flags either (a) during 5063 * initialization or (b) while holding the RTNL lock, we don't need 5064 * anything fancy here. 5065 */ 5066 pf->flags = new_flags; 5067 5068 /* Issue reset to cause things to take effect, as additional bits 5069 * are added we will need to create a mask of bits requiring reset 5070 */ 5071 if (is_reset_needed) 5072 i40e_do_reset(pf, BIT(__I40E_PF_RESET_REQUESTED), true); 5073 5074 return 0; 5075 } 5076 5077 /** 5078 * i40e_get_module_info - get (Q)SFP+ module type info 5079 * @netdev: network interface device structure 5080 * @modinfo: module EEPROM size and layout information structure 5081 **/ 5082 static int i40e_get_module_info(struct net_device *netdev, 5083 struct ethtool_modinfo *modinfo) 5084 { 5085 struct i40e_netdev_priv *np = netdev_priv(netdev); 5086 struct i40e_vsi *vsi = np->vsi; 5087 struct i40e_pf *pf = vsi->back; 5088 struct i40e_hw *hw = &pf->hw; 5089 u32 sff8472_comp = 0; 5090 u32 sff8472_swap = 0; 5091 u32 sff8636_rev = 0; 5092 i40e_status status; 5093 u32 type = 0; 5094 5095 /* Check if firmware supports reading module EEPROM. */ 5096 if (!(hw->flags & I40E_HW_FLAG_AQ_PHY_ACCESS_CAPABLE)) { 5097 netdev_err(vsi->netdev, "Module EEPROM memory read not supported. Please update the NVM image.\n"); 5098 return -EINVAL; 5099 } 5100 5101 status = i40e_update_link_info(hw); 5102 if (status) 5103 return -EIO; 5104 5105 if (hw->phy.link_info.phy_type == I40E_PHY_TYPE_EMPTY) { 5106 netdev_err(vsi->netdev, "Cannot read module EEPROM memory. No module connected.\n"); 5107 return -EINVAL; 5108 } 5109 5110 type = hw->phy.link_info.module_type[0]; 5111 5112 switch (type) { 5113 case I40E_MODULE_TYPE_SFP: 5114 status = i40e_aq_get_phy_register(hw, 5115 I40E_AQ_PHY_REG_ACCESS_EXTERNAL_MODULE, 5116 I40E_I2C_EEPROM_DEV_ADDR, true, 5117 I40E_MODULE_SFF_8472_COMP, 5118 &sff8472_comp, NULL); 5119 if (status) 5120 return -EIO; 5121 5122 status = i40e_aq_get_phy_register(hw, 5123 I40E_AQ_PHY_REG_ACCESS_EXTERNAL_MODULE, 5124 I40E_I2C_EEPROM_DEV_ADDR, true, 5125 I40E_MODULE_SFF_8472_SWAP, 5126 &sff8472_swap, NULL); 5127 if (status) 5128 return -EIO; 5129 5130 /* Check if the module requires address swap to access 5131 * the other EEPROM memory page. 5132 */ 5133 if (sff8472_swap & I40E_MODULE_SFF_ADDR_MODE) { 5134 netdev_warn(vsi->netdev, "Module address swap to access page 0xA2 is not supported.\n"); 5135 modinfo->type = ETH_MODULE_SFF_8079; 5136 modinfo->eeprom_len = ETH_MODULE_SFF_8079_LEN; 5137 } else if (sff8472_comp == 0x00) { 5138 /* Module is not SFF-8472 compliant */ 5139 modinfo->type = ETH_MODULE_SFF_8079; 5140 modinfo->eeprom_len = ETH_MODULE_SFF_8079_LEN; 5141 } else if (!(sff8472_swap & I40E_MODULE_SFF_DDM_IMPLEMENTED)) { 5142 /* Module is SFF-8472 compliant but doesn't implement 5143 * Digital Diagnostic Monitoring (DDM). 5144 */ 5145 modinfo->type = ETH_MODULE_SFF_8079; 5146 modinfo->eeprom_len = ETH_MODULE_SFF_8079_LEN; 5147 } else { 5148 modinfo->type = ETH_MODULE_SFF_8472; 5149 modinfo->eeprom_len = ETH_MODULE_SFF_8472_LEN; 5150 } 5151 break; 5152 case I40E_MODULE_TYPE_QSFP_PLUS: 5153 /* Read from memory page 0. */ 5154 status = i40e_aq_get_phy_register(hw, 5155 I40E_AQ_PHY_REG_ACCESS_EXTERNAL_MODULE, 5156 0, true, 5157 I40E_MODULE_REVISION_ADDR, 5158 &sff8636_rev, NULL); 5159 if (status) 5160 return -EIO; 5161 /* Determine revision compliance byte */ 5162 if (sff8636_rev > 0x02) { 5163 /* Module is SFF-8636 compliant */ 5164 modinfo->type = ETH_MODULE_SFF_8636; 5165 modinfo->eeprom_len = I40E_MODULE_QSFP_MAX_LEN; 5166 } else { 5167 modinfo->type = ETH_MODULE_SFF_8436; 5168 modinfo->eeprom_len = I40E_MODULE_QSFP_MAX_LEN; 5169 } 5170 break; 5171 case I40E_MODULE_TYPE_QSFP28: 5172 modinfo->type = ETH_MODULE_SFF_8636; 5173 modinfo->eeprom_len = I40E_MODULE_QSFP_MAX_LEN; 5174 break; 5175 default: 5176 netdev_err(vsi->netdev, "Module type unrecognized\n"); 5177 return -EINVAL; 5178 } 5179 return 0; 5180 } 5181 5182 /** 5183 * i40e_get_module_eeprom - fills buffer with (Q)SFP+ module memory contents 5184 * @netdev: network interface device structure 5185 * @ee: EEPROM dump request structure 5186 * @data: buffer to be filled with EEPROM contents 5187 **/ 5188 static int i40e_get_module_eeprom(struct net_device *netdev, 5189 struct ethtool_eeprom *ee, 5190 u8 *data) 5191 { 5192 struct i40e_netdev_priv *np = netdev_priv(netdev); 5193 struct i40e_vsi *vsi = np->vsi; 5194 struct i40e_pf *pf = vsi->back; 5195 struct i40e_hw *hw = &pf->hw; 5196 bool is_sfp = false; 5197 i40e_status status; 5198 u32 value = 0; 5199 int i; 5200 5201 if (!ee || !ee->len || !data) 5202 return -EINVAL; 5203 5204 if (hw->phy.link_info.module_type[0] == I40E_MODULE_TYPE_SFP) 5205 is_sfp = true; 5206 5207 for (i = 0; i < ee->len; i++) { 5208 u32 offset = i + ee->offset; 5209 u32 addr = is_sfp ? I40E_I2C_EEPROM_DEV_ADDR : 0; 5210 5211 /* Check if we need to access the other memory page */ 5212 if (is_sfp) { 5213 if (offset >= ETH_MODULE_SFF_8079_LEN) { 5214 offset -= ETH_MODULE_SFF_8079_LEN; 5215 addr = I40E_I2C_EEPROM_DEV_ADDR2; 5216 } 5217 } else { 5218 while (offset >= ETH_MODULE_SFF_8436_LEN) { 5219 /* Compute memory page number and offset. */ 5220 offset -= ETH_MODULE_SFF_8436_LEN / 2; 5221 addr++; 5222 } 5223 } 5224 5225 status = i40e_aq_get_phy_register(hw, 5226 I40E_AQ_PHY_REG_ACCESS_EXTERNAL_MODULE, 5227 true, addr, offset, &value, NULL); 5228 if (status) 5229 return -EIO; 5230 data[i] = value; 5231 } 5232 return 0; 5233 } 5234 5235 static int i40e_get_eee(struct net_device *netdev, struct ethtool_eee *edata) 5236 { 5237 return -EOPNOTSUPP; 5238 } 5239 5240 static int i40e_set_eee(struct net_device *netdev, struct ethtool_eee *edata) 5241 { 5242 return -EOPNOTSUPP; 5243 } 5244 5245 static const struct ethtool_ops i40e_ethtool_recovery_mode_ops = { 5246 .get_drvinfo = i40e_get_drvinfo, 5247 .set_eeprom = i40e_set_eeprom, 5248 .get_eeprom_len = i40e_get_eeprom_len, 5249 .get_eeprom = i40e_get_eeprom, 5250 }; 5251 5252 static const struct ethtool_ops i40e_ethtool_ops = { 5253 .supported_coalesce_params = ETHTOOL_COALESCE_USECS | 5254 ETHTOOL_COALESCE_MAX_FRAMES_IRQ | 5255 ETHTOOL_COALESCE_USE_ADAPTIVE | 5256 ETHTOOL_COALESCE_RX_USECS_HIGH | 5257 ETHTOOL_COALESCE_TX_USECS_HIGH, 5258 .get_drvinfo = i40e_get_drvinfo, 5259 .get_regs_len = i40e_get_regs_len, 5260 .get_regs = i40e_get_regs, 5261 .nway_reset = i40e_nway_reset, 5262 .get_link = ethtool_op_get_link, 5263 .get_wol = i40e_get_wol, 5264 .set_wol = i40e_set_wol, 5265 .set_eeprom = i40e_set_eeprom, 5266 .get_eeprom_len = i40e_get_eeprom_len, 5267 .get_eeprom = i40e_get_eeprom, 5268 .get_ringparam = i40e_get_ringparam, 5269 .set_ringparam = i40e_set_ringparam, 5270 .get_pauseparam = i40e_get_pauseparam, 5271 .set_pauseparam = i40e_set_pauseparam, 5272 .get_msglevel = i40e_get_msglevel, 5273 .set_msglevel = i40e_set_msglevel, 5274 .get_rxnfc = i40e_get_rxnfc, 5275 .set_rxnfc = i40e_set_rxnfc, 5276 .self_test = i40e_diag_test, 5277 .get_strings = i40e_get_strings, 5278 .get_eee = i40e_get_eee, 5279 .set_eee = i40e_set_eee, 5280 .set_phys_id = i40e_set_phys_id, 5281 .get_sset_count = i40e_get_sset_count, 5282 .get_ethtool_stats = i40e_get_ethtool_stats, 5283 .get_coalesce = i40e_get_coalesce, 5284 .set_coalesce = i40e_set_coalesce, 5285 .get_rxfh_key_size = i40e_get_rxfh_key_size, 5286 .get_rxfh_indir_size = i40e_get_rxfh_indir_size, 5287 .get_rxfh = i40e_get_rxfh, 5288 .set_rxfh = i40e_set_rxfh, 5289 .get_channels = i40e_get_channels, 5290 .set_channels = i40e_set_channels, 5291 .get_module_info = i40e_get_module_info, 5292 .get_module_eeprom = i40e_get_module_eeprom, 5293 .get_ts_info = i40e_get_ts_info, 5294 .get_priv_flags = i40e_get_priv_flags, 5295 .set_priv_flags = i40e_set_priv_flags, 5296 .get_per_queue_coalesce = i40e_get_per_queue_coalesce, 5297 .set_per_queue_coalesce = i40e_set_per_queue_coalesce, 5298 .get_link_ksettings = i40e_get_link_ksettings, 5299 .set_link_ksettings = i40e_set_link_ksettings, 5300 .get_fecparam = i40e_get_fec_param, 5301 .set_fecparam = i40e_set_fec_param, 5302 .flash_device = i40e_ddp_flash, 5303 }; 5304 5305 void i40e_set_ethtool_ops(struct net_device *netdev) 5306 { 5307 struct i40e_netdev_priv *np = netdev_priv(netdev); 5308 struct i40e_pf *pf = np->vsi->back; 5309 5310 if (!test_bit(__I40E_RECOVERY_MODE, pf->state)) 5311 netdev->ethtool_ops = &i40e_ethtool_ops; 5312 else 5313 netdev->ethtool_ops = &i40e_ethtool_recovery_mode_ops; 5314 } 5315