drm: bridge: adv7511: remove s32 format from i2s capabilities
[drm/drm-misc.git] / drivers / net / ethernet / intel / i40e / i40e_diag.h
blobab20202a3da3ca73a92e70185481c35067fdb8d8
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright(c) 2013 - 2018 Intel Corporation. */
4 #ifndef _I40E_DIAG_H_
5 #define _I40E_DIAG_H_
7 #include <linux/types.h>
8 #include "i40e_adminq_cmd.h"
10 /* forward-declare the HW struct for the compiler */
11 struct i40e_hw;
13 enum i40e_lb_mode {
14 I40E_LB_MODE_NONE = 0x0,
15 I40E_LB_MODE_PHY_LOCAL = I40E_AQ_LB_PHY_LOCAL,
16 I40E_LB_MODE_PHY_REMOTE = I40E_AQ_LB_PHY_REMOTE,
17 I40E_LB_MODE_MAC_LOCAL = I40E_AQ_LB_MAC_LOCAL,
20 struct i40e_diag_reg_test_info {
21 u32 offset; /* the base register */
22 u32 mask; /* bits that can be tested */
23 u32 elements; /* number of elements if array */
24 u32 stride; /* bytes between each element */
27 extern const struct i40e_diag_reg_test_info i40e_reg_list[];
29 int i40e_diag_reg_test(struct i40e_hw *hw);
30 int i40e_diag_eeprom_test(struct i40e_hw *hw);
32 #endif /* _I40E_DIAG_H_ */