1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /* Atlantic Network Driver
4 * Copyright (C) 2014-2019 aQuantia Corporation
5 * Copyright (C) 2019-2020 Marvell International Ltd.
8 /* File aq_hw.h: Declaration of abstract interface for NIC hardware specific
15 #include "aq_common.h"
17 #include "hw_atl/hw_atl_utils.h"
19 #define AQ_HW_MAC_COUNTER_HZ 312500000ll
20 #define AQ_HW_PHY_COUNTER_HZ 160000000ll
23 AQ_TC_MODE_INVALID
= -1,
28 #define AQ_RX_FIRST_LOC_FVLANID 0U
29 #define AQ_RX_LAST_LOC_FVLANID 15U
30 #define AQ_RX_FIRST_LOC_FETHERT 16U
31 #define AQ_RX_LAST_LOC_FETHERT 31U
32 #define AQ_RX_FIRST_LOC_FL3L4 32U
33 #define AQ_RX_LAST_LOC_FL3L4 39U
34 #define AQ_RX_MAX_RXNFC_LOC AQ_RX_LAST_LOC_FL3L4
35 #define AQ_VLAN_MAX_FILTERS \
36 (AQ_RX_LAST_LOC_FVLANID - AQ_RX_FIRST_LOC_FVLANID + 1U)
37 #define AQ_RX_QUEUE_NOT_ASSIGNED 0xFFU
39 #define AQ_FRAC_PER_NS 0x100000000LL
41 /* Used for rate to Mbps conversion */
42 #define AQ_MBPS_DIVISOR 125000 /* 1000000 / 8 */
44 /* NIC H/W capabilities */
48 unsigned int hw_priv_flags
;
59 u32 hw_alive_check_addr
;
75 struct aq_hw_link_status_s
{
78 u32 lp_link_speed_msk
;
104 #define AQ_HW_IRQ_INVALID 0U
105 #define AQ_HW_IRQ_LEGACY 1U
106 #define AQ_HW_IRQ_MSI 2U
107 #define AQ_HW_IRQ_MSIX 3U
109 #define AQ_HW_SERVICE_IRQS 1U
111 #define AQ_HW_POWER_STATE_D0 0U
112 #define AQ_HW_POWER_STATE_D3 3U
114 #define AQ_HW_FLAG_STARTED 0x00000004U
115 #define AQ_HW_FLAG_STOPPING 0x00000008U
116 #define AQ_HW_FLAG_RESETTING 0x00000010U
117 #define AQ_HW_FLAG_CLOSING 0x00000020U
118 #define AQ_HW_PTP_AVAILABLE 0x01000000U
119 #define AQ_HW_LINK_DOWN 0x04000000U
120 #define AQ_HW_FLAG_ERR_UNPLUG 0x40000000U
121 #define AQ_HW_FLAG_ERR_HW 0x80000000U
123 #define AQ_HW_FLAG_ERRORS (AQ_HW_FLAG_ERR_HW | AQ_HW_FLAG_ERR_UNPLUG)
125 #define AQ_NIC_FLAGS_IS_NOT_READY (AQ_NIC_FLAG_STOPPING | \
126 AQ_NIC_FLAG_RESETTING | AQ_NIC_FLAG_CLOSING | \
127 AQ_NIC_FLAG_ERR_UNPLUG | AQ_NIC_FLAG_ERR_HW)
129 #define AQ_NIC_FLAGS_IS_NOT_TX_READY (AQ_NIC_FLAGS_IS_NOT_READY | \
132 #define AQ_HW_MEDIA_TYPE_TP 1U
133 #define AQ_HW_MEDIA_TYPE_FIBRE 2U
135 #define AQ_HW_TXD_MULTIPLE 8U
136 #define AQ_HW_RXD_MULTIPLE 8U
138 #define AQ_HW_QUEUES_MAX 32U
139 #define AQ_HW_MULTICAST_ADDRESS_MAX 32U
141 #define AQ_HW_PTP_TC 2U
143 #define AQ_HW_LED_BLINK 0x2U
144 #define AQ_HW_LED_DEFAULT 0x0U
146 #define AQ_HW_MEDIA_DETECT_CNT 6000
149 AQ_HW_LOOPBACK_DMA_SYS
,
150 AQ_HW_LOOPBACK_PKT_SYS
,
151 AQ_HW_LOOPBACK_DMA_NET
,
152 AQ_HW_LOOPBACK_PHYINT_SYS
,
153 AQ_HW_LOOPBACK_PHYEXT_SYS
,
156 #define AQ_HW_LOOPBACK_MASK (BIT(AQ_HW_LOOPBACK_DMA_SYS) |\
157 BIT(AQ_HW_LOOPBACK_PKT_SYS) |\
158 BIT(AQ_HW_LOOPBACK_DMA_NET) |\
159 BIT(AQ_HW_LOOPBACK_PHYINT_SYS) |\
160 BIT(AQ_HW_LOOPBACK_PHYEXT_SYS))
162 #define ATL_HW_CHIP_MIPS 0x00000001U
163 #define ATL_HW_CHIP_TPO2 0x00000002U
164 #define ATL_HW_CHIP_RPF2 0x00000004U
165 #define ATL_HW_CHIP_MPI_AQ 0x00000010U
166 #define ATL_HW_CHIP_ATLANTIC 0x00800000U
167 #define ATL_HW_CHIP_REVISION_A0 0x01000000U
168 #define ATL_HW_CHIP_REVISION_B0 0x02000000U
169 #define ATL_HW_CHIP_REVISION_B1 0x04000000U
170 #define ATL_HW_CHIP_ANTIGUA 0x08000000U
172 #define ATL_HW_IS_CHIP_FEATURE(_HW_, _F_) (!!(ATL_HW_CHIP_##_F_ & \
173 (_HW_)->chip_features))
178 struct aq_nic_cfg_s
*aq_nic_cfg
;
179 const struct aq_fw_ops
*aq_fw_ops
;
181 struct aq_hw_link_status_s aq_link_status
;
182 struct hw_atl_utils_mbox mbox
;
183 struct hw_atl_stats_s last_stats
;
184 struct aq_stats_s curr_stats
;
188 unsigned int chip_features
;
195 struct hw_atl_utils_fw_rpc rpc
;
202 struct aq_ring_param_s
;
204 struct aq_rx_filter_l3l4
;
208 int (*hw_ring_tx_xmit
)(struct aq_hw_s
*self
, struct aq_ring_s
*aq_ring
,
211 int (*hw_ring_rx_receive
)(struct aq_hw_s
*self
,
212 struct aq_ring_s
*aq_ring
);
214 int (*hw_ring_rx_fill
)(struct aq_hw_s
*self
, struct aq_ring_s
*aq_ring
,
215 unsigned int sw_tail_old
);
217 int (*hw_ring_tx_head_update
)(struct aq_hw_s
*self
,
218 struct aq_ring_s
*aq_ring
);
220 int (*hw_set_mac_address
)(struct aq_hw_s
*self
, u8
*mac_addr
);
222 int (*hw_soft_reset
)(struct aq_hw_s
*self
);
224 int (*hw_prepare
)(struct aq_hw_s
*self
,
225 const struct aq_fw_ops
**fw_ops
);
227 int (*hw_reset
)(struct aq_hw_s
*self
);
229 int (*hw_init
)(struct aq_hw_s
*self
, u8
*mac_addr
);
231 int (*hw_start
)(struct aq_hw_s
*self
);
233 int (*hw_stop
)(struct aq_hw_s
*self
);
235 int (*hw_ring_tx_init
)(struct aq_hw_s
*self
, struct aq_ring_s
*aq_ring
,
236 struct aq_ring_param_s
*aq_ring_param
);
238 int (*hw_ring_tx_start
)(struct aq_hw_s
*self
,
239 struct aq_ring_s
*aq_ring
);
241 int (*hw_ring_tx_stop
)(struct aq_hw_s
*self
,
242 struct aq_ring_s
*aq_ring
);
244 int (*hw_ring_rx_init
)(struct aq_hw_s
*self
,
245 struct aq_ring_s
*aq_ring
,
246 struct aq_ring_param_s
*aq_ring_param
);
248 int (*hw_ring_rx_start
)(struct aq_hw_s
*self
,
249 struct aq_ring_s
*aq_ring
);
251 int (*hw_ring_rx_stop
)(struct aq_hw_s
*self
,
252 struct aq_ring_s
*aq_ring
);
254 int (*hw_irq_enable
)(struct aq_hw_s
*self
, u64 mask
);
256 int (*hw_irq_disable
)(struct aq_hw_s
*self
, u64 mask
);
258 int (*hw_irq_read
)(struct aq_hw_s
*self
, u64
*mask
);
260 int (*hw_packet_filter_set
)(struct aq_hw_s
*self
,
261 unsigned int packet_filter
);
263 int (*hw_filter_l3l4_set
)(struct aq_hw_s
*self
,
264 struct aq_rx_filter_l3l4
*data
);
266 int (*hw_filter_l3l4_clear
)(struct aq_hw_s
*self
,
267 struct aq_rx_filter_l3l4
*data
);
269 int (*hw_filter_l2_set
)(struct aq_hw_s
*self
,
270 struct aq_rx_filter_l2
*data
);
272 int (*hw_filter_l2_clear
)(struct aq_hw_s
*self
,
273 struct aq_rx_filter_l2
*data
);
275 int (*hw_filter_vlan_set
)(struct aq_hw_s
*self
,
276 struct aq_rx_filter_vlan
*aq_vlans
);
278 int (*hw_filter_vlan_ctrl
)(struct aq_hw_s
*self
, bool enable
);
280 int (*hw_multicast_list_set
)(struct aq_hw_s
*self
,
281 u8 ar_mac
[AQ_HW_MULTICAST_ADDRESS_MAX
]
285 int (*hw_interrupt_moderation_set
)(struct aq_hw_s
*self
);
287 int (*hw_rss_set
)(struct aq_hw_s
*self
,
288 struct aq_rss_parameters
*rss_params
);
290 int (*hw_rss_hash_set
)(struct aq_hw_s
*self
,
291 struct aq_rss_parameters
*rss_params
);
293 int (*hw_tc_rate_limit_set
)(struct aq_hw_s
*self
);
295 int (*hw_get_regs
)(struct aq_hw_s
*self
,
296 const struct aq_hw_caps_s
*aq_hw_caps
,
299 struct aq_stats_s
*(*hw_get_hw_stats
)(struct aq_hw_s
*self
);
301 u32 (*hw_get_fw_version
)(struct aq_hw_s
*self
);
303 int (*hw_set_offload
)(struct aq_hw_s
*self
,
304 struct aq_nic_cfg_s
*aq_nic_cfg
);
306 int (*hw_ring_hwts_rx_fill
)(struct aq_hw_s
*self
,
307 struct aq_ring_s
*aq_ring
);
309 int (*hw_ring_hwts_rx_receive
)(struct aq_hw_s
*self
,
310 struct aq_ring_s
*ring
);
312 void (*hw_get_ptp_ts
)(struct aq_hw_s
*self
, u64
*stamp
);
314 int (*hw_adj_clock_freq
)(struct aq_hw_s
*self
, s32 delta
);
316 int (*hw_adj_sys_clock
)(struct aq_hw_s
*self
, s64 delta
);
318 int (*hw_set_sys_clock
)(struct aq_hw_s
*self
, u64 time
, u64 ts
);
320 int (*hw_ts_to_sys_clock
)(struct aq_hw_s
*self
, u64 ts
, u64
*time
);
322 int (*hw_gpio_pulse
)(struct aq_hw_s
*self
, u32 index
, u64 start
,
325 int (*hw_extts_gpio_enable
)(struct aq_hw_s
*self
, u32 index
,
328 int (*hw_get_sync_ts
)(struct aq_hw_s
*self
, u64
*ts
);
330 u16 (*rx_extract_ts
)(struct aq_hw_s
*self
, u8
*p
, unsigned int len
,
333 int (*extract_hwts
)(struct aq_hw_s
*self
, u8
*p
, unsigned int len
,
336 int (*hw_set_fc
)(struct aq_hw_s
*self
, u32 fc
, u32 tc
);
338 int (*hw_set_loopback
)(struct aq_hw_s
*self
, u32 mode
, bool enable
);
340 int (*hw_get_mac_temp
)(struct aq_hw_s
*self
, u32
*temp
);
344 int (*init
)(struct aq_hw_s
*self
);
346 int (*deinit
)(struct aq_hw_s
*self
);
348 int (*reset
)(struct aq_hw_s
*self
);
350 int (*renegotiate
)(struct aq_hw_s
*self
);
352 int (*get_mac_permanent
)(struct aq_hw_s
*self
, u8
*mac
);
354 int (*set_link_speed
)(struct aq_hw_s
*self
, u32 speed
);
356 int (*set_state
)(struct aq_hw_s
*self
,
357 enum hal_atl_utils_fw_state_e state
);
359 int (*update_link_status
)(struct aq_hw_s
*self
);
361 int (*update_stats
)(struct aq_hw_s
*self
);
363 int (*get_mac_temp
)(struct aq_hw_s
*self
, int *temp
);
365 int (*get_phy_temp
)(struct aq_hw_s
*self
, int *temp
);
367 u32 (*get_flow_control
)(struct aq_hw_s
*self
, u32
*fcmode
);
369 int (*set_flow_control
)(struct aq_hw_s
*self
);
371 int (*led_control
)(struct aq_hw_s
*self
, u32 mode
);
373 int (*set_phyloopback
)(struct aq_hw_s
*self
, u32 mode
, bool enable
);
375 int (*set_power
)(struct aq_hw_s
*self
, unsigned int power_state
,
378 int (*send_fw_request
)(struct aq_hw_s
*self
,
379 const struct hw_fw_request_iface
*fw_req
,
382 void (*enable_ptp
)(struct aq_hw_s
*self
, int enable
);
384 void (*adjust_ptp
)(struct aq_hw_s
*self
, uint64_t adj
);
386 int (*set_eee_rate
)(struct aq_hw_s
*self
, u32 speed
);
388 int (*get_eee_rate
)(struct aq_hw_s
*self
, u32
*rate
,
389 u32
*supported_rates
);
391 int (*set_downshift
)(struct aq_hw_s
*self
, u32 counter
);
393 int (*set_media_detect
)(struct aq_hw_s
*self
, bool enable
);
395 u32 (*get_link_capabilities
)(struct aq_hw_s
*self
);
397 int (*send_macsec_req
)(struct aq_hw_s
*self
,
398 struct macsec_msg_fw_request
*msg
,
399 struct macsec_msg_fw_response
*resp
);