1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /******************************************************************************* 3 Copyright (C) 2007-2009 STMicroelectronics Ltd 4 5 6 Author: Giuseppe Cavallaro <peppe.cavallaro@st.com> 7 *******************************************************************************/ 8 9 #ifndef __STMMAC_H__ 10 #define __STMMAC_H__ 11 12 #define STMMAC_RESOURCE_NAME "stmmaceth" 13 14 #include <linux/clk.h> 15 #include <linux/hrtimer.h> 16 #include <linux/if_vlan.h> 17 #include <linux/stmmac.h> 18 #include <linux/phylink.h> 19 #include <linux/pci.h> 20 #include "common.h" 21 #include <linux/ptp_clock_kernel.h> 22 #include <linux/net_tstamp.h> 23 #include <linux/reset.h> 24 #include <net/page_pool.h> 25 #include <uapi/linux/bpf.h> 26 27 struct stmmac_resources { 28 void __iomem *addr; 29 u8 mac[ETH_ALEN]; 30 int wol_irq; 31 int lpi_irq; 32 int irq; 33 int sfty_ce_irq; 34 int sfty_ue_irq; 35 int rx_irq[MTL_MAX_RX_QUEUES]; 36 int tx_irq[MTL_MAX_TX_QUEUES]; 37 }; 38 39 enum stmmac_txbuf_type { 40 STMMAC_TXBUF_T_SKB, 41 STMMAC_TXBUF_T_XDP_TX, 42 STMMAC_TXBUF_T_XDP_NDO, 43 STMMAC_TXBUF_T_XSK_TX, 44 }; 45 46 struct stmmac_tx_info { 47 dma_addr_t buf; 48 bool map_as_page; 49 unsigned len; 50 bool last_segment; 51 bool is_jumbo; 52 enum stmmac_txbuf_type buf_type; 53 }; 54 55 #define STMMAC_TBS_AVAIL BIT(0) 56 #define STMMAC_TBS_EN BIT(1) 57 58 /* Frequently used values are kept adjacent for cache effect */ 59 struct stmmac_tx_queue { 60 u32 tx_count_frames; 61 int tbs; 62 struct hrtimer txtimer; 63 u32 queue_index; 64 struct stmmac_priv *priv_data; 65 struct dma_extended_desc *dma_etx ____cacheline_aligned_in_smp; 66 struct dma_edesc *dma_entx; 67 struct dma_desc *dma_tx; 68 union { 69 struct sk_buff **tx_skbuff; 70 struct xdp_frame **xdpf; 71 }; 72 struct stmmac_tx_info *tx_skbuff_dma; 73 struct xsk_buff_pool *xsk_pool; 74 u32 xsk_frames_done; 75 unsigned int cur_tx; 76 unsigned int dirty_tx; 77 dma_addr_t dma_tx_phy; 78 dma_addr_t tx_tail_addr; 79 u32 mss; 80 struct stmmac_txq_stats txq_stats; 81 }; 82 83 struct stmmac_rx_buffer { 84 union { 85 struct { 86 struct page *page; 87 dma_addr_t addr; 88 __u32 page_offset; 89 }; 90 struct xdp_buff *xdp; 91 }; 92 struct page *sec_page; 93 dma_addr_t sec_addr; 94 }; 95 96 struct stmmac_xdp_buff { 97 struct xdp_buff xdp; 98 struct stmmac_priv *priv; 99 struct dma_desc *desc; 100 struct dma_desc *ndesc; 101 }; 102 103 struct stmmac_rx_queue { 104 u32 rx_count_frames; 105 u32 queue_index; 106 struct xdp_rxq_info xdp_rxq; 107 struct xsk_buff_pool *xsk_pool; 108 struct page_pool *page_pool; 109 struct stmmac_rx_buffer *buf_pool; 110 struct stmmac_priv *priv_data; 111 struct dma_extended_desc *dma_erx; 112 struct dma_desc *dma_rx ____cacheline_aligned_in_smp; 113 unsigned int cur_rx; 114 unsigned int dirty_rx; 115 unsigned int buf_alloc_num; 116 u32 rx_zeroc_thresh; 117 dma_addr_t dma_rx_phy; 118 u32 rx_tail_addr; 119 unsigned int state_saved; 120 struct { 121 struct sk_buff *skb; 122 unsigned int len; 123 unsigned int error; 124 } state; 125 struct stmmac_rxq_stats rxq_stats; 126 }; 127 128 struct stmmac_channel { 129 struct napi_struct rx_napi ____cacheline_aligned_in_smp; 130 struct napi_struct tx_napi ____cacheline_aligned_in_smp; 131 struct napi_struct rxtx_napi ____cacheline_aligned_in_smp; 132 struct stmmac_priv *priv_data; 133 spinlock_t lock; 134 u32 index; 135 }; 136 137 struct stmmac_tc_entry { 138 bool in_use; 139 bool in_hw; 140 bool is_last; 141 bool is_frag; 142 void *frag_ptr; 143 unsigned int table_pos; 144 u32 handle; 145 u32 prio; 146 struct { 147 u32 match_data; 148 u32 match_en; 149 u8 af:1; 150 u8 rf:1; 151 u8 im:1; 152 u8 nc:1; 153 u8 res1:4; 154 u8 frame_offset; 155 u8 ok_index; 156 u8 dma_ch_no; 157 u32 res2; 158 } __packed val; 159 }; 160 161 #define STMMAC_PPS_MAX 4 162 struct stmmac_pps_cfg { 163 bool available; 164 struct timespec64 start; 165 struct timespec64 period; 166 }; 167 168 struct stmmac_rss { 169 int enable; 170 u8 key[STMMAC_RSS_HASH_KEY_SIZE]; 171 u32 table[STMMAC_RSS_MAX_TABLE_SIZE]; 172 }; 173 174 #define STMMAC_FLOW_ACTION_DROP BIT(0) 175 struct stmmac_flow_entry { 176 unsigned long cookie; 177 unsigned long action; 178 u8 ip_proto; 179 int in_use; 180 int idx; 181 int is_l4; 182 }; 183 184 /* Rx Frame Steering */ 185 enum stmmac_rfs_type { 186 STMMAC_RFS_T_VLAN, 187 STMMAC_RFS_T_LLDP, 188 STMMAC_RFS_T_1588, 189 STMMAC_RFS_T_MAX, 190 }; 191 192 struct stmmac_rfs_entry { 193 unsigned long cookie; 194 u16 etype; 195 int in_use; 196 int type; 197 int tc; 198 }; 199 200 struct stmmac_dma_conf { 201 unsigned int dma_buf_sz; 202 203 /* RX Queue */ 204 struct stmmac_rx_queue rx_queue[MTL_MAX_RX_QUEUES]; 205 unsigned int dma_rx_size; 206 207 /* TX Queue */ 208 struct stmmac_tx_queue tx_queue[MTL_MAX_TX_QUEUES]; 209 unsigned int dma_tx_size; 210 }; 211 212 struct stmmac_priv { 213 /* Frequently used values are kept adjacent for cache effect */ 214 u32 tx_coal_frames[MTL_MAX_TX_QUEUES]; 215 u32 tx_coal_timer[MTL_MAX_TX_QUEUES]; 216 u32 rx_coal_frames[MTL_MAX_TX_QUEUES]; 217 218 int hwts_tx_en; 219 bool tx_path_in_lpi_mode; 220 bool tso; 221 int sph; 222 int sph_cap; 223 u32 sarc_type; 224 225 unsigned int rx_copybreak; 226 u32 rx_riwt[MTL_MAX_TX_QUEUES]; 227 int hwts_rx_en; 228 229 void __iomem *ioaddr; 230 struct net_device *dev; 231 struct device *device; 232 struct mac_device_info *hw; 233 int (*hwif_quirks)(struct stmmac_priv *priv); 234 struct mutex lock; 235 236 struct stmmac_dma_conf dma_conf; 237 238 /* Generic channel for NAPI */ 239 struct stmmac_channel channel[STMMAC_CH_MAX]; 240 241 int speed; 242 unsigned int flow_ctrl; 243 unsigned int pause; 244 struct mii_bus *mii; 245 246 struct phylink_config phylink_config; 247 struct phylink *phylink; 248 249 struct stmmac_extra_stats xstats ____cacheline_aligned_in_smp; 250 struct stmmac_safety_stats sstats; 251 struct plat_stmmacenet_data *plat; 252 struct dma_features dma_cap; 253 struct stmmac_counters mmc; 254 int hw_cap_support; 255 int synopsys_id; 256 u32 msg_enable; 257 int wolopts; 258 int wol_irq; 259 int clk_csr; 260 struct timer_list eee_ctrl_timer; 261 int lpi_irq; 262 int eee_enabled; 263 int eee_active; 264 int tx_lpi_timer; 265 int tx_lpi_enabled; 266 int eee_tw_timer; 267 bool eee_sw_timer_en; 268 unsigned int mode; 269 unsigned int chain_mode; 270 int extend_desc; 271 struct hwtstamp_config tstamp_config; 272 struct ptp_clock *ptp_clock; 273 struct ptp_clock_info ptp_clock_ops; 274 unsigned int default_addend; 275 u32 sub_second_inc; 276 u32 systime_flags; 277 u32 adv_ts; 278 int use_riwt; 279 int irq_wake; 280 rwlock_t ptp_lock; 281 /* Protects auxiliary snapshot registers from concurrent access. */ 282 struct mutex aux_ts_lock; 283 wait_queue_head_t tstamp_busy_wait; 284 285 void __iomem *mmcaddr; 286 void __iomem *ptpaddr; 287 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)]; 288 int sfty_ce_irq; 289 int sfty_ue_irq; 290 int rx_irq[MTL_MAX_RX_QUEUES]; 291 int tx_irq[MTL_MAX_TX_QUEUES]; 292 /*irq name */ 293 char int_name_mac[IFNAMSIZ + 9]; 294 char int_name_wol[IFNAMSIZ + 9]; 295 char int_name_lpi[IFNAMSIZ + 9]; 296 char int_name_sfty_ce[IFNAMSIZ + 10]; 297 char int_name_sfty_ue[IFNAMSIZ + 10]; 298 char int_name_rx_irq[MTL_MAX_TX_QUEUES][IFNAMSIZ + 14]; 299 char int_name_tx_irq[MTL_MAX_TX_QUEUES][IFNAMSIZ + 18]; 300 301 #ifdef CONFIG_DEBUG_FS 302 struct dentry *dbgfs_dir; 303 #endif 304 305 unsigned long state; 306 struct workqueue_struct *wq; 307 struct work_struct service_task; 308 309 /* Workqueue for handling FPE hand-shaking */ 310 unsigned long fpe_task_state; 311 struct workqueue_struct *fpe_wq; 312 struct work_struct fpe_task; 313 char wq_name[IFNAMSIZ + 4]; 314 315 /* TC Handling */ 316 unsigned int tc_entries_max; 317 unsigned int tc_off_max; 318 struct stmmac_tc_entry *tc_entries; 319 unsigned int flow_entries_max; 320 struct stmmac_flow_entry *flow_entries; 321 unsigned int rfs_entries_max[STMMAC_RFS_T_MAX]; 322 unsigned int rfs_entries_cnt[STMMAC_RFS_T_MAX]; 323 unsigned int rfs_entries_total; 324 struct stmmac_rfs_entry *rfs_entries; 325 326 /* Pulse Per Second output */ 327 struct stmmac_pps_cfg pps[STMMAC_PPS_MAX]; 328 329 /* Receive Side Scaling */ 330 struct stmmac_rss rss; 331 332 /* XDP BPF Program */ 333 unsigned long *af_xdp_zc_qps; 334 struct bpf_prog *xdp_prog; 335 }; 336 337 enum stmmac_state { 338 STMMAC_DOWN, 339 STMMAC_RESET_REQUESTED, 340 STMMAC_RESETING, 341 STMMAC_SERVICE_SCHED, 342 }; 343 344 int stmmac_mdio_unregister(struct net_device *ndev); 345 int stmmac_mdio_register(struct net_device *ndev); 346 int stmmac_mdio_reset(struct mii_bus *mii); 347 int stmmac_xpcs_setup(struct mii_bus *mii); 348 void stmmac_set_ethtool_ops(struct net_device *netdev); 349 350 int stmmac_init_tstamp_counter(struct stmmac_priv *priv, u32 systime_flags); 351 void stmmac_ptp_register(struct stmmac_priv *priv); 352 void stmmac_ptp_unregister(struct stmmac_priv *priv); 353 int stmmac_xdp_open(struct net_device *dev); 354 void stmmac_xdp_release(struct net_device *dev); 355 int stmmac_resume(struct device *dev); 356 int stmmac_suspend(struct device *dev); 357 void stmmac_dvr_remove(struct device *dev); 358 int stmmac_dvr_probe(struct device *device, 359 struct plat_stmmacenet_data *plat_dat, 360 struct stmmac_resources *res); 361 void stmmac_disable_eee_mode(struct stmmac_priv *priv); 362 bool stmmac_eee_init(struct stmmac_priv *priv); 363 int stmmac_reinit_queues(struct net_device *dev, u32 rx_cnt, u32 tx_cnt); 364 int stmmac_reinit_ringparam(struct net_device *dev, u32 rx_size, u32 tx_size); 365 int stmmac_bus_clks_config(struct stmmac_priv *priv, bool enabled); 366 void stmmac_fpe_handshake(struct stmmac_priv *priv, bool enable); 367 368 static inline bool stmmac_xdp_is_enabled(struct stmmac_priv *priv) 369 { 370 return !!priv->xdp_prog; 371 } 372 373 static inline unsigned int stmmac_rx_offset(struct stmmac_priv *priv) 374 { 375 if (stmmac_xdp_is_enabled(priv)) 376 return XDP_PACKET_HEADROOM; 377 378 return 0; 379 } 380 381 void stmmac_disable_rx_queue(struct stmmac_priv *priv, u32 queue); 382 void stmmac_enable_rx_queue(struct stmmac_priv *priv, u32 queue); 383 void stmmac_disable_tx_queue(struct stmmac_priv *priv, u32 queue); 384 void stmmac_enable_tx_queue(struct stmmac_priv *priv, u32 queue); 385 int stmmac_xsk_wakeup(struct net_device *dev, u32 queue, u32 flags); 386 struct timespec64 stmmac_calc_tas_basetime(ktime_t old_base_time, 387 ktime_t current_time, 388 u64 cycle_time); 389 390 #if IS_ENABLED(CONFIG_STMMAC_SELFTESTS) 391 void stmmac_selftest_run(struct net_device *dev, 392 struct ethtool_test *etest, u64 *buf); 393 void stmmac_selftest_get_strings(struct stmmac_priv *priv, u8 *data); 394 int stmmac_selftest_get_count(struct stmmac_priv *priv); 395 #else 396 static inline void stmmac_selftest_run(struct net_device *dev, 397 struct ethtool_test *etest, u64 *buf) 398 { 399 /* Not enabled */ 400 } 401 static inline void stmmac_selftest_get_strings(struct stmmac_priv *priv, 402 u8 *data) 403 { 404 /* Not enabled */ 405 } 406 static inline int stmmac_selftest_get_count(struct stmmac_priv *priv) 407 { 408 return -EOPNOTSUPP; 409 } 410 #endif /* CONFIG_STMMAC_SELFTESTS */ 411 412 #endif /* __STMMAC_H__ */ 413