bnxt_ethtool.h 2.0 KB
Newer Older
1 2
/* Broadcom NetXtreme-C/E network driver.
 *
3
 * Copyright (c) 2014-2016 Broadcom Corporation
4
 * Copyright (c) 2016-2017 Broadcom Limited
5 6 7 8 9 10 11 12 13
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation.
 */

#ifndef BNXT_ETHTOOL_H
#define BNXT_ETHTOOL_H

14 15 16 17 18 19 20 21 22 23 24
struct bnxt_led_cfg {
	u8 led_id;
	u8 led_state;
	u8 led_color;
	u8 unused;
	__le16 led_blink_on;
	__le16 led_blink_off;
	u8 led_group_id;
	u8 rsvd;
};

25 26 27 28 29 30 31 32 33
#define COREDUMP_LIST_BUF_LEN		2048
#define COREDUMP_RETRIEVE_BUF_LEN	4096

struct bnxt_coredump {
	void		*data;
	int		data_size;
	u16		total_segs;
};

34 35
#define BNXT_COREDUMP_BUF_LEN(len) ((len) - sizeof(struct bnxt_coredump_record))

36 37 38 39 40 41 42
struct bnxt_hwrm_dbg_dma_info {
	void *dest_buf;
	int dest_buf_size;
	u16 dma_len;
	u16 seq_off;
	u16 data_len_off;
	u16 segs;
43 44
	u32 seg_start;
	u32 buf_len;
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
};

struct hwrm_dbg_cmn_input {
	__le16 req_type;
	__le16 cmpl_ring;
	__le16 seq_id;
	__le16 target_id;
	__le64 resp_addr;
	__le64 host_dest_addr;
	__le32 host_buf_len;
};

struct hwrm_dbg_cmn_output {
	__le16 error_code;
	__le16 req_type;
	__le16 seq_id;
	__le16 resp_len;
	u8 flags;
	#define HWRM_DBG_CMN_FLAGS_MORE	1
};

66 67
#define BNXT_CRASH_DUMP_LEN	(8 << 20)

68 69 70 71 72 73 74 75 76 77 78 79
#define BNXT_LED_DFLT_ENA				\
	(PORT_LED_CFG_REQ_ENABLES_LED0_ID |		\
	 PORT_LED_CFG_REQ_ENABLES_LED0_STATE |		\
	 PORT_LED_CFG_REQ_ENABLES_LED0_BLINK_ON |	\
	 PORT_LED_CFG_REQ_ENABLES_LED0_BLINK_OFF |	\
	 PORT_LED_CFG_REQ_ENABLES_LED0_GROUP_ID)

#define BNXT_LED_DFLT_ENA_SHIFT	6

#define BNXT_LED_DFLT_ENABLES(x)			\
	cpu_to_le32(BNXT_LED_DFLT_ENA << (BNXT_LED_DFLT_ENA_SHIFT * (x)))

S
Scott Branden 已提交
80
#define BNXT_FW_RESET_AP	0xfffe
81 82
#define BNXT_FW_RESET_CHIP	0xffff

83 84
extern const struct ethtool_ops bnxt_ethtool_ops;

M
Michael Chan 已提交
85
u32 _bnxt_fw_to_ethtool_adv_spds(u16, u8);
86
u32 bnxt_fw_to_ethtool_speed(u16);
M
Michael Chan 已提交
87
u16 bnxt_get_fw_auto_link_speeds(u32);
88 89
int bnxt_flash_package_from_file(struct net_device *dev, const char *filename,
				 u32 install_type);
90 91
void bnxt_ethtool_init(struct bnxt *bp);
void bnxt_ethtool_free(struct bnxt *bp);
92 93

#endif