Thomas Gleixner | 4fa9c49f | 2019-05-29 07:18:05 -0700 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 2 | /******************************************************************************* |
| 3 | Copyright (C) 2007-2009 STMicroelectronics Ltd |
| 4 | |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 5 | |
| 6 | Author: Giuseppe Cavallaro <peppe.cavallaro@st.com> |
| 7 | *******************************************************************************/ |
| 8 | |
Rayagond Kokatanur | bd4242d | 2012-08-22 21:28:18 +0000 | [diff] [blame] | 9 | #ifndef __STMMAC_H__ |
| 10 | #define __STMMAC_H__ |
| 11 | |
Giuseppe CAVALLARO | bfab27a | 2011-12-21 03:58:19 +0000 | [diff] [blame] | 12 | #define STMMAC_RESOURCE_NAME "stmmaceth" |
Giuseppe CAVALLARO | ba1377ff | 2012-04-04 04:33:25 +0000 | [diff] [blame] | 13 | |
| 14 | #include <linux/clk.h> |
Vincent Whitchurch | d5a05e6 | 2020-11-20 16:02:08 +0100 | [diff] [blame] | 15 | #include <linux/hrtimer.h> |
Jose Abreu | 3cd1cfc | 2019-08-07 10:03:14 +0200 | [diff] [blame] | 16 | #include <linux/if_vlan.h> |
Giuseppe CAVALLARO | ee7946a | 2010-01-06 23:07:14 +0000 | [diff] [blame] | 17 | #include <linux/stmmac.h> |
Jose Abreu | eeef2f6 | 2019-06-11 17:18:46 +0200 | [diff] [blame] | 18 | #include <linux/phylink.h> |
Giuseppe CAVALLARO | 33d5e33 | 2012-06-07 19:25:07 +0000 | [diff] [blame] | 19 | #include <linux/pci.h> |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 20 | #include "common.h" |
Rayagond Kokatanur | 92ba688 | 2013-03-26 04:43:11 +0000 | [diff] [blame] | 21 | #include <linux/ptp_clock_kernel.h> |
Artem Panfilov | d6228b7 | 2019-01-20 19:05:15 +0300 | [diff] [blame] | 22 | #include <linux/net_tstamp.h> |
Chen-Yu Tsai | c5e4ddb | 2014-01-17 21:24:41 +0800 | [diff] [blame] | 23 | #include <linux/reset.h> |
Jose Abreu | 2af6106 | 2019-07-09 10:03:00 +0200 | [diff] [blame] | 24 | #include <net/page_pool.h> |
Jakub Kicinski | 3b80b73 | 2021-12-29 17:27:41 -0800 | [diff] [blame] | 25 | #include <uapi/linux/bpf.h> |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 26 | |
Joachim Eastwood | e56788c | 2015-05-20 20:03:07 +0200 | [diff] [blame] | 27 | struct stmmac_resources { |
| 28 | void __iomem *addr; |
Michael Walle | 83216e3 | 2021-04-12 19:47:17 +0200 | [diff] [blame] | 29 | u8 mac[ETH_ALEN]; |
Joachim Eastwood | e56788c | 2015-05-20 20:03:07 +0200 | [diff] [blame] | 30 | int wol_irq; |
| 31 | int lpi_irq; |
| 32 | int irq; |
Ong Boon Leong | 8532f61 | 2021-03-26 01:39:14 +0800 | [diff] [blame] | 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]; |
Joachim Eastwood | e56788c | 2015-05-20 20:03:07 +0200 | [diff] [blame] | 37 | }; |
| 38 | |
Ong Boon Leong | be8b38a | 2021-04-01 10:11:16 +0800 | [diff] [blame] | 39 | enum stmmac_txbuf_type { |
| 40 | STMMAC_TXBUF_T_SKB, |
| 41 | STMMAC_TXBUF_T_XDP_TX, |
Ong Boon Leong | 8b278a5 | 2021-04-01 10:11:17 +0800 | [diff] [blame] | 42 | STMMAC_TXBUF_T_XDP_NDO, |
Ong Boon Leong | 132c32e | 2021-04-13 17:36:26 +0800 | [diff] [blame] | 43 | STMMAC_TXBUF_T_XSK_TX, |
Ong Boon Leong | be8b38a | 2021-04-01 10:11:16 +0800 | [diff] [blame] | 44 | }; |
| 45 | |
Giuseppe CAVALLARO | 362b37b | 2014-08-27 11:27:00 +0200 | [diff] [blame] | 46 | struct stmmac_tx_info { |
| 47 | dma_addr_t buf; |
| 48 | bool map_as_page; |
Giuseppe Cavallaro | 553e2ab | 2016-02-29 14:27:31 +0100 | [diff] [blame] | 49 | unsigned len; |
Giuseppe Cavallaro | 2a6d8e1 | 2016-02-29 14:27:32 +0100 | [diff] [blame] | 50 | bool last_segment; |
Giuseppe Cavallaro | 9695136 | 2016-02-29 14:27:33 +0100 | [diff] [blame] | 51 | bool is_jumbo; |
Ong Boon Leong | be8b38a | 2021-04-01 10:11:16 +0800 | [diff] [blame] | 52 | enum stmmac_txbuf_type buf_type; |
Giuseppe CAVALLARO | 362b37b | 2014-08-27 11:27:00 +0200 | [diff] [blame] | 53 | }; |
| 54 | |
Jose Abreu | 579a25a | 2020-01-13 17:24:09 +0100 | [diff] [blame] | 55 | #define STMMAC_TBS_AVAIL BIT(0) |
| 56 | #define STMMAC_TBS_EN BIT(1) |
| 57 | |
Joao Pinto | ce73678 | 2017-04-06 09:49:10 +0100 | [diff] [blame] | 58 | /* Frequently used values are kept adjacent for cache effect */ |
| 59 | struct stmmac_tx_queue { |
Jose Abreu | 8fce333 | 2018-09-17 09:22:56 +0100 | [diff] [blame] | 60 | u32 tx_count_frames; |
Jose Abreu | 579a25a | 2020-01-13 17:24:09 +0100 | [diff] [blame] | 61 | int tbs; |
Vincent Whitchurch | d5a05e6 | 2020-11-20 16:02:08 +0100 | [diff] [blame] | 62 | struct hrtimer txtimer; |
Joao Pinto | ce73678 | 2017-04-06 09:49:10 +0100 | [diff] [blame] | 63 | u32 queue_index; |
| 64 | struct stmmac_priv *priv_data; |
| 65 | struct dma_extended_desc *dma_etx ____cacheline_aligned_in_smp; |
Jose Abreu | 579a25a | 2020-01-13 17:24:09 +0100 | [diff] [blame] | 66 | struct dma_edesc *dma_entx; |
Joao Pinto | ce73678 | 2017-04-06 09:49:10 +0100 | [diff] [blame] | 67 | struct dma_desc *dma_tx; |
Ong Boon Leong | be8b38a | 2021-04-01 10:11:16 +0800 | [diff] [blame] | 68 | union { |
| 69 | struct sk_buff **tx_skbuff; |
| 70 | struct xdp_frame **xdpf; |
| 71 | }; |
Joao Pinto | ce73678 | 2017-04-06 09:49:10 +0100 | [diff] [blame] | 72 | struct stmmac_tx_info *tx_skbuff_dma; |
Ong Boon Leong | 132c32e | 2021-04-13 17:36:26 +0800 | [diff] [blame] | 73 | struct xsk_buff_pool *xsk_pool; |
| 74 | u32 xsk_frames_done; |
Joao Pinto | ce73678 | 2017-04-06 09:49:10 +0100 | [diff] [blame] | 75 | unsigned int cur_tx; |
| 76 | unsigned int dirty_tx; |
| 77 | dma_addr_t dma_tx_phy; |
Wong Vee Khee | 52e597d | 2021-06-11 17:02:38 +0800 | [diff] [blame] | 78 | dma_addr_t tx_tail_addr; |
Niklas Cassel | 8d212a9e | 2018-02-19 18:11:09 +0100 | [diff] [blame] | 79 | u32 mss; |
Joao Pinto | ce73678 | 2017-04-06 09:49:10 +0100 | [diff] [blame] | 80 | }; |
| 81 | |
Jose Abreu | 2af6106 | 2019-07-09 10:03:00 +0200 | [diff] [blame] | 82 | struct stmmac_rx_buffer { |
Ong Boon Leong | bba2556 | 2021-04-13 17:36:25 +0800 | [diff] [blame] | 83 | union { |
| 84 | struct { |
| 85 | struct page *page; |
| 86 | dma_addr_t addr; |
| 87 | __u32 page_offset; |
| 88 | }; |
| 89 | struct xdp_buff *xdp; |
| 90 | }; |
Ong Boon Leong | 5fabb01 | 2021-04-01 10:11:15 +0800 | [diff] [blame] | 91 | struct page *sec_page; |
Jose Abreu | 67afd6d | 2019-08-17 20:54:43 +0200 | [diff] [blame] | 92 | dma_addr_t sec_addr; |
Jose Abreu | 2af6106 | 2019-07-09 10:03:00 +0200 | [diff] [blame] | 93 | }; |
| 94 | |
Joao Pinto | 54139cf | 2017-04-06 09:49:09 +0100 | [diff] [blame] | 95 | struct stmmac_rx_queue { |
Jose Abreu | d429b66 | 2019-07-09 10:02:58 +0200 | [diff] [blame] | 96 | u32 rx_count_frames; |
Joao Pinto | 54139cf | 2017-04-06 09:49:09 +0100 | [diff] [blame] | 97 | u32 queue_index; |
Ong Boon Leong | be8b38a | 2021-04-01 10:11:16 +0800 | [diff] [blame] | 98 | struct xdp_rxq_info xdp_rxq; |
Ong Boon Leong | bba2556 | 2021-04-13 17:36:25 +0800 | [diff] [blame] | 99 | struct xsk_buff_pool *xsk_pool; |
Jose Abreu | 2af6106 | 2019-07-09 10:03:00 +0200 | [diff] [blame] | 100 | struct page_pool *page_pool; |
| 101 | struct stmmac_rx_buffer *buf_pool; |
Joao Pinto | 54139cf | 2017-04-06 09:49:09 +0100 | [diff] [blame] | 102 | struct stmmac_priv *priv_data; |
| 103 | struct dma_extended_desc *dma_erx; |
| 104 | struct dma_desc *dma_rx ____cacheline_aligned_in_smp; |
Joao Pinto | 54139cf | 2017-04-06 09:49:09 +0100 | [diff] [blame] | 105 | unsigned int cur_rx; |
| 106 | unsigned int dirty_rx; |
Ong Boon Leong | bba2556 | 2021-04-13 17:36:25 +0800 | [diff] [blame] | 107 | unsigned int buf_alloc_num; |
Joao Pinto | 54139cf | 2017-04-06 09:49:09 +0100 | [diff] [blame] | 108 | u32 rx_zeroc_thresh; |
| 109 | dma_addr_t dma_rx_phy; |
| 110 | u32 rx_tail_addr; |
Jose Abreu | ec22200 | 2019-08-17 20:54:41 +0200 | [diff] [blame] | 111 | unsigned int state_saved; |
| 112 | struct { |
| 113 | struct sk_buff *skb; |
| 114 | unsigned int len; |
| 115 | unsigned int error; |
| 116 | } state; |
Jose Abreu | 8fce333 | 2018-09-17 09:22:56 +0100 | [diff] [blame] | 117 | }; |
| 118 | |
| 119 | struct stmmac_channel { |
Jose Abreu | 4ccb4585 | 2019-02-19 10:38:47 +0100 | [diff] [blame] | 120 | struct napi_struct rx_napi ____cacheline_aligned_in_smp; |
| 121 | struct napi_struct tx_napi ____cacheline_aligned_in_smp; |
Ong Boon Leong | 132c32e | 2021-04-13 17:36:26 +0800 | [diff] [blame] | 122 | struct napi_struct rxtx_napi ____cacheline_aligned_in_smp; |
Jose Abreu | 8fce333 | 2018-09-17 09:22:56 +0100 | [diff] [blame] | 123 | struct stmmac_priv *priv_data; |
Jose Abreu | 021bd5e | 2019-12-18 11:24:44 +0100 | [diff] [blame] | 124 | spinlock_t lock; |
Jose Abreu | 8fce333 | 2018-09-17 09:22:56 +0100 | [diff] [blame] | 125 | u32 index; |
Joao Pinto | 54139cf | 2017-04-06 09:49:09 +0100 | [diff] [blame] | 126 | }; |
| 127 | |
Jose Abreu | 4dbbe8d | 2018-05-04 10:01:38 +0100 | [diff] [blame] | 128 | struct stmmac_tc_entry { |
| 129 | bool in_use; |
| 130 | bool in_hw; |
| 131 | bool is_last; |
| 132 | bool is_frag; |
| 133 | void *frag_ptr; |
| 134 | unsigned int table_pos; |
| 135 | u32 handle; |
| 136 | u32 prio; |
| 137 | struct { |
| 138 | u32 match_data; |
| 139 | u32 match_en; |
| 140 | u8 af:1; |
| 141 | u8 rf:1; |
| 142 | u8 im:1; |
| 143 | u8 nc:1; |
| 144 | u8 res1:4; |
| 145 | u8 frame_offset; |
| 146 | u8 ok_index; |
| 147 | u8 dma_ch_no; |
| 148 | u32 res2; |
| 149 | } __packed val; |
| 150 | }; |
| 151 | |
Jose Abreu | 9a8a02c | 2018-05-31 18:01:27 +0100 | [diff] [blame] | 152 | #define STMMAC_PPS_MAX 4 |
| 153 | struct stmmac_pps_cfg { |
| 154 | bool available; |
| 155 | struct timespec64 start; |
| 156 | struct timespec64 period; |
| 157 | }; |
| 158 | |
Jose Abreu | 7606745 | 2019-08-07 10:03:12 +0200 | [diff] [blame] | 159 | struct stmmac_rss { |
| 160 | int enable; |
| 161 | u8 key[STMMAC_RSS_HASH_KEY_SIZE]; |
| 162 | u32 table[STMMAC_RSS_MAX_TABLE_SIZE]; |
| 163 | }; |
| 164 | |
Jose Abreu | 425eabd | 2019-09-04 15:16:56 +0200 | [diff] [blame] | 165 | #define STMMAC_FLOW_ACTION_DROP BIT(0) |
| 166 | struct stmmac_flow_entry { |
| 167 | unsigned long cookie; |
| 168 | unsigned long action; |
| 169 | u8 ip_proto; |
| 170 | int in_use; |
| 171 | int idx; |
| 172 | int is_l4; |
| 173 | }; |
| 174 | |
Ong Boon Leong | aeb7c75 | 2021-12-11 22:51:34 +0800 | [diff] [blame] | 175 | /* Rx Frame Steering */ |
| 176 | enum stmmac_rfs_type { |
| 177 | STMMAC_RFS_T_VLAN, |
Ong Boon Leong | e48cb31 | 2021-12-22 22:43:10 +0800 | [diff] [blame] | 178 | STMMAC_RFS_T_LLDP, |
| 179 | STMMAC_RFS_T_1588, |
Ong Boon Leong | aeb7c75 | 2021-12-11 22:51:34 +0800 | [diff] [blame] | 180 | STMMAC_RFS_T_MAX, |
| 181 | }; |
| 182 | |
| 183 | struct stmmac_rfs_entry { |
| 184 | unsigned long cookie; |
Ong Boon Leong | e48cb31 | 2021-12-22 22:43:10 +0800 | [diff] [blame] | 185 | u16 etype; |
Ong Boon Leong | aeb7c75 | 2021-12-11 22:51:34 +0800 | [diff] [blame] | 186 | int in_use; |
| 187 | int type; |
| 188 | int tc; |
| 189 | }; |
| 190 | |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 191 | struct stmmac_priv { |
| 192 | /* Frequently used values are kept adjacent for cache effect */ |
Ong Boon Leong | db2f284 | 2021-03-17 09:01:23 +0800 | [diff] [blame] | 193 | u32 tx_coal_frames[MTL_MAX_TX_QUEUES]; |
| 194 | u32 tx_coal_timer[MTL_MAX_TX_QUEUES]; |
| 195 | u32 rx_coal_frames[MTL_MAX_TX_QUEUES]; |
Joao Pinto | ce73678 | 2017-04-06 09:49:10 +0100 | [diff] [blame] | 196 | |
Giuseppe CAVALLARO | 1bb6dea | 2013-04-08 02:10:02 +0000 | [diff] [blame] | 197 | int hwts_tx_en; |
Giuseppe CAVALLARO | 1bb6dea | 2013-04-08 02:10:02 +0000 | [diff] [blame] | 198 | bool tx_path_in_lpi_mode; |
Alexandre TORGUE | f748be5 | 2016-04-01 11:37:34 +0200 | [diff] [blame] | 199 | bool tso; |
Jose Abreu | 67afd6d | 2019-08-17 20:54:43 +0200 | [diff] [blame] | 200 | int sph; |
Ong Boon Leong | d08d32d | 2021-04-01 10:11:13 +0800 | [diff] [blame] | 201 | int sph_cap; |
Jose Abreu | 8000ddc | 2019-08-17 20:54:47 +0200 | [diff] [blame] | 202 | u32 sarc_type; |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 203 | |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 204 | unsigned int dma_buf_sz; |
Giuseppe Cavallaro | 22ad383 | 2016-02-29 14:27:41 +0100 | [diff] [blame] | 205 | unsigned int rx_copybreak; |
Ong Boon Leong | db2f284 | 2021-03-17 09:01:23 +0800 | [diff] [blame] | 206 | u32 rx_riwt[MTL_MAX_TX_QUEUES]; |
Giuseppe CAVALLARO | 1bb6dea | 2013-04-08 02:10:02 +0000 | [diff] [blame] | 207 | int hwts_rx_en; |
LABBE Corentin | 5bacd77 | 2017-03-29 07:05:40 +0200 | [diff] [blame] | 208 | |
Giuseppe CAVALLARO | 1bb6dea | 2013-04-08 02:10:02 +0000 | [diff] [blame] | 209 | void __iomem *ioaddr; |
| 210 | struct net_device *dev; |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 211 | struct device *device; |
Giuseppe CAVALLARO | db98a0b | 2010-01-06 23:07:17 +0000 | [diff] [blame] | 212 | struct mac_device_info *hw; |
Jose Abreu | 7cfde0a | 2018-06-15 16:17:27 +0100 | [diff] [blame] | 213 | int (*hwif_quirks)(struct stmmac_priv *priv); |
Thierry Reding | 29555fa | 2018-05-24 16:09:07 +0200 | [diff] [blame] | 214 | struct mutex lock; |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 215 | |
Joao Pinto | 54139cf | 2017-04-06 09:49:09 +0100 | [diff] [blame] | 216 | /* RX Queue */ |
| 217 | struct stmmac_rx_queue rx_queue[MTL_MAX_RX_QUEUES]; |
Song, Yoong Siang | aa042f6 | 2020-09-16 15:40:20 +0800 | [diff] [blame] | 218 | unsigned int dma_rx_size; |
Joao Pinto | 54139cf | 2017-04-06 09:49:09 +0100 | [diff] [blame] | 219 | |
Joao Pinto | ce73678 | 2017-04-06 09:49:10 +0100 | [diff] [blame] | 220 | /* TX Queue */ |
| 221 | struct stmmac_tx_queue tx_queue[MTL_MAX_TX_QUEUES]; |
Song, Yoong Siang | aa042f6 | 2020-09-16 15:40:20 +0800 | [diff] [blame] | 222 | unsigned int dma_tx_size; |
Joao Pinto | ce73678 | 2017-04-06 09:49:10 +0100 | [diff] [blame] | 223 | |
Jose Abreu | 8fce333 | 2018-09-17 09:22:56 +0100 | [diff] [blame] | 224 | /* Generic channel for NAPI */ |
| 225 | struct stmmac_channel channel[STMMAC_CH_MAX]; |
| 226 | |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 227 | int speed; |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 228 | unsigned int flow_ctrl; |
| 229 | unsigned int pause; |
| 230 | struct mii_bus *mii; |
| 231 | |
Jose Abreu | eeef2f6 | 2019-06-11 17:18:46 +0200 | [diff] [blame] | 232 | struct phylink_config phylink_config; |
| 233 | struct phylink *phylink; |
| 234 | |
Giuseppe CAVALLARO | 1bb6dea | 2013-04-08 02:10:02 +0000 | [diff] [blame] | 235 | struct stmmac_extra_stats xstats ____cacheline_aligned_in_smp; |
Jose Abreu | 8bf993a | 2018-03-29 10:40:19 +0100 | [diff] [blame] | 236 | struct stmmac_safety_stats sstats; |
Giuseppe CAVALLARO | 1bb6dea | 2013-04-08 02:10:02 +0000 | [diff] [blame] | 237 | struct plat_stmmacenet_data *plat; |
| 238 | struct dma_features dma_cap; |
| 239 | struct stmmac_counters mmc; |
| 240 | int hw_cap_support; |
| 241 | int synopsys_id; |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 242 | u32 msg_enable; |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 243 | int wolopts; |
Deepak Sikri | 3172d3a | 2011-09-01 21:51:37 +0000 | [diff] [blame] | 244 | int wol_irq; |
Giuseppe CAVALLARO | cd7201f | 2012-04-04 04:33:27 +0000 | [diff] [blame] | 245 | int clk_csr; |
Giuseppe CAVALLARO | d765955 | 2012-06-27 21:14:37 +0000 | [diff] [blame] | 246 | struct timer_list eee_ctrl_timer; |
Giuseppe CAVALLARO | d765955 | 2012-06-27 21:14:37 +0000 | [diff] [blame] | 247 | int lpi_irq; |
| 248 | int eee_enabled; |
| 249 | int eee_active; |
| 250 | int tx_lpi_timer; |
Vineetha G. Jaya Kumaran | 388e201 | 2020-10-01 23:56:09 +0800 | [diff] [blame] | 251 | int tx_lpi_enabled; |
| 252 | int eee_tw_timer; |
Vineetha G. Jaya Kumaran | be1c7ea | 2020-10-28 00:00:51 +0800 | [diff] [blame] | 253 | bool eee_sw_timer_en; |
Giuseppe CAVALLARO | 4a7d666 | 2013-03-26 04:43:05 +0000 | [diff] [blame] | 254 | unsigned int mode; |
Jose Abreu | 5f0456b | 2018-04-23 09:05:15 +0100 | [diff] [blame] | 255 | unsigned int chain_mode; |
Giuseppe CAVALLARO | c24602e | 2013-03-26 04:43:06 +0000 | [diff] [blame] | 256 | int extend_desc; |
Artem Panfilov | d6228b7 | 2019-01-20 19:05:15 +0300 | [diff] [blame] | 257 | struct hwtstamp_config tstamp_config; |
Rayagond Kokatanur | 92ba688 | 2013-03-26 04:43:11 +0000 | [diff] [blame] | 258 | struct ptp_clock *ptp_clock; |
| 259 | struct ptp_clock_info ptp_clock_ops; |
Giuseppe CAVALLARO | 1bb6dea | 2013-04-08 02:10:02 +0000 | [diff] [blame] | 260 | unsigned int default_addend; |
Jose Abreu | 9a8a02c | 2018-05-31 18:01:27 +0100 | [diff] [blame] | 261 | u32 sub_second_inc; |
| 262 | u32 systime_flags; |
Giuseppe CAVALLARO | 1bb6dea | 2013-04-08 02:10:02 +0000 | [diff] [blame] | 263 | u32 adv_ts; |
| 264 | int use_riwt; |
Srinivas Kandagatla | 89f7f2c | 2014-01-16 10:53:00 +0000 | [diff] [blame] | 265 | int irq_wake; |
Rayagond Kokatanur | 92ba688 | 2013-03-26 04:43:11 +0000 | [diff] [blame] | 266 | spinlock_t ptp_lock; |
Tan Tee Min | f4da565 | 2021-04-14 08:16:17 +0800 | [diff] [blame] | 267 | /* Protects auxiliary snapshot registers from concurrent access. */ |
| 268 | struct mutex aux_ts_lock; |
| 269 | |
Alexandre TORGUE | 36ff7c1 | 2016-04-01 11:37:32 +0200 | [diff] [blame] | 270 | void __iomem *mmcaddr; |
Giuseppe CAVALLARO | ba1ffd7 | 2016-11-14 09:27:29 +0100 | [diff] [blame] | 271 | void __iomem *ptpaddr; |
Jose Abreu | 3cd1cfc | 2019-08-07 10:03:14 +0200 | [diff] [blame] | 272 | unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)]; |
Ong Boon Leong | 8532f61 | 2021-03-26 01:39:14 +0800 | [diff] [blame] | 273 | int sfty_ce_irq; |
| 274 | int sfty_ue_irq; |
| 275 | int rx_irq[MTL_MAX_RX_QUEUES]; |
| 276 | int tx_irq[MTL_MAX_TX_QUEUES]; |
| 277 | /*irq name */ |
| 278 | char int_name_mac[IFNAMSIZ + 9]; |
| 279 | char int_name_wol[IFNAMSIZ + 9]; |
| 280 | char int_name_lpi[IFNAMSIZ + 9]; |
| 281 | char int_name_sfty_ce[IFNAMSIZ + 10]; |
| 282 | char int_name_sfty_ue[IFNAMSIZ + 10]; |
| 283 | char int_name_rx_irq[MTL_MAX_TX_QUEUES][IFNAMSIZ + 14]; |
| 284 | char int_name_tx_irq[MTL_MAX_TX_QUEUES][IFNAMSIZ + 18]; |
Mathieu Olivari | 466c5ac | 2015-05-22 19:03:29 -0700 | [diff] [blame] | 285 | |
| 286 | #ifdef CONFIG_DEBUG_FS |
| 287 | struct dentry *dbgfs_dir; |
Mathieu Olivari | 466c5ac | 2015-05-22 19:03:29 -0700 | [diff] [blame] | 288 | #endif |
Jose Abreu | 34877a1 | 2018-03-29 10:40:18 +0100 | [diff] [blame] | 289 | |
| 290 | unsigned long state; |
| 291 | struct workqueue_struct *wq; |
| 292 | struct work_struct service_task; |
Jose Abreu | 4dbbe8d | 2018-05-04 10:01:38 +0100 | [diff] [blame] | 293 | |
Ong Boon Leong | 5a55861 | 2021-03-24 17:07:42 +0800 | [diff] [blame] | 294 | /* Workqueue for handling FPE hand-shaking */ |
| 295 | unsigned long fpe_task_state; |
| 296 | struct workqueue_struct *fpe_wq; |
| 297 | struct work_struct fpe_task; |
| 298 | char wq_name[IFNAMSIZ + 4]; |
| 299 | |
Jose Abreu | 4dbbe8d | 2018-05-04 10:01:38 +0100 | [diff] [blame] | 300 | /* TC Handling */ |
| 301 | unsigned int tc_entries_max; |
| 302 | unsigned int tc_off_max; |
| 303 | struct stmmac_tc_entry *tc_entries; |
Jose Abreu | 425eabd | 2019-09-04 15:16:56 +0200 | [diff] [blame] | 304 | unsigned int flow_entries_max; |
| 305 | struct stmmac_flow_entry *flow_entries; |
Ong Boon Leong | aeb7c75 | 2021-12-11 22:51:34 +0800 | [diff] [blame] | 306 | unsigned int rfs_entries_max[STMMAC_RFS_T_MAX]; |
| 307 | unsigned int rfs_entries_cnt[STMMAC_RFS_T_MAX]; |
| 308 | unsigned int rfs_entries_total; |
| 309 | struct stmmac_rfs_entry *rfs_entries; |
Jose Abreu | 9a8a02c | 2018-05-31 18:01:27 +0100 | [diff] [blame] | 310 | |
| 311 | /* Pulse Per Second output */ |
| 312 | struct stmmac_pps_cfg pps[STMMAC_PPS_MAX]; |
Jose Abreu | 7606745 | 2019-08-07 10:03:12 +0200 | [diff] [blame] | 313 | |
| 314 | /* Receive Side Scaling */ |
| 315 | struct stmmac_rss rss; |
Ong Boon Leong | 5fabb01 | 2021-04-01 10:11:15 +0800 | [diff] [blame] | 316 | |
| 317 | /* XDP BPF Program */ |
Ong Boon Leong | bba2556 | 2021-04-13 17:36:25 +0800 | [diff] [blame] | 318 | unsigned long *af_xdp_zc_qps; |
Ong Boon Leong | 5fabb01 | 2021-04-01 10:11:15 +0800 | [diff] [blame] | 319 | struct bpf_prog *xdp_prog; |
Jose Abreu | 34877a1 | 2018-03-29 10:40:18 +0100 | [diff] [blame] | 320 | }; |
| 321 | |
| 322 | enum stmmac_state { |
| 323 | STMMAC_DOWN, |
| 324 | STMMAC_RESET_REQUESTED, |
| 325 | STMMAC_RESETING, |
| 326 | STMMAC_SERVICE_SCHED, |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 327 | }; |
| 328 | |
Joe Perches | d6cc64e | 2013-09-23 11:37:59 -0700 | [diff] [blame] | 329 | int stmmac_mdio_unregister(struct net_device *ndev); |
| 330 | int stmmac_mdio_register(struct net_device *ndev); |
Srinivas Kandagatla | 073752a | 2014-01-16 10:52:27 +0000 | [diff] [blame] | 331 | int stmmac_mdio_reset(struct mii_bus *mii); |
Voon Weifeng | 597a68c | 2021-06-08 11:51:56 +0800 | [diff] [blame] | 332 | int stmmac_xpcs_setup(struct mii_bus *mii); |
Joe Perches | d6cc64e | 2013-09-23 11:37:59 -0700 | [diff] [blame] | 333 | void stmmac_set_ethtool_ops(struct net_device *netdev); |
Andy Shevchenko | 915af65 | 2014-11-05 11:45:32 +0200 | [diff] [blame] | 334 | |
Holger Assmann | a6da2bb | 2021-11-21 19:57:04 +0200 | [diff] [blame] | 335 | int stmmac_init_tstamp_counter(struct stmmac_priv *priv, u32 systime_flags); |
Giuseppe CAVALLARO | c30a70d | 2016-10-19 09:06:41 +0200 | [diff] [blame] | 336 | void stmmac_ptp_register(struct stmmac_priv *priv); |
Joe Perches | d6cc64e | 2013-09-23 11:37:59 -0700 | [diff] [blame] | 337 | void stmmac_ptp_unregister(struct stmmac_priv *priv); |
Ong Boon Leong | ac746c8 | 2021-11-11 22:39:49 +0800 | [diff] [blame] | 338 | int stmmac_xdp_open(struct net_device *dev); |
| 339 | void stmmac_xdp_release(struct net_device *dev); |
Joachim Eastwood | f4e7bd8 | 2016-05-01 22:58:19 +0200 | [diff] [blame] | 340 | int stmmac_resume(struct device *dev); |
| 341 | int stmmac_suspend(struct device *dev); |
| 342 | int stmmac_dvr_remove(struct device *dev); |
Joachim Eastwood | 15ffac7 | 2015-05-20 20:03:08 +0200 | [diff] [blame] | 343 | int stmmac_dvr_probe(struct device *device, |
| 344 | struct plat_stmmacenet_data *plat_dat, |
| 345 | struct stmmac_resources *res); |
Giuseppe CAVALLARO | d765955 | 2012-06-27 21:14:37 +0000 | [diff] [blame] | 346 | void stmmac_disable_eee_mode(struct stmmac_priv *priv); |
| 347 | bool stmmac_eee_init(struct stmmac_priv *priv); |
Ong Boon Leong | 0366f7e | 2020-09-15 09:28:38 +0800 | [diff] [blame] | 348 | int stmmac_reinit_queues(struct net_device *dev, u32 rx_cnt, u32 tx_cnt); |
Song, Yoong Siang | aa042f6 | 2020-09-16 15:40:20 +0800 | [diff] [blame] | 349 | int stmmac_reinit_ringparam(struct net_device *dev, u32 rx_size, u32 tx_size); |
Joakim Zhang | 5ec5582 | 2021-03-15 20:16:46 +0800 | [diff] [blame] | 350 | int stmmac_bus_clks_config(struct stmmac_priv *priv, bool enabled); |
Ong Boon Leong | 5a55861 | 2021-03-24 17:07:42 +0800 | [diff] [blame] | 351 | void stmmac_fpe_handshake(struct stmmac_priv *priv, bool enable); |
Giuseppe CAVALLARO | ba1377ff | 2012-04-04 04:33:25 +0000 | [diff] [blame] | 352 | |
Ong Boon Leong | 5fabb01 | 2021-04-01 10:11:15 +0800 | [diff] [blame] | 353 | static inline bool stmmac_xdp_is_enabled(struct stmmac_priv *priv) |
| 354 | { |
| 355 | return !!priv->xdp_prog; |
| 356 | } |
| 357 | |
| 358 | static inline unsigned int stmmac_rx_offset(struct stmmac_priv *priv) |
| 359 | { |
| 360 | if (stmmac_xdp_is_enabled(priv)) |
Marc Zyngier | 12d125b | 2021-08-20 19:30:02 +0100 | [diff] [blame] | 361 | return XDP_PACKET_HEADROOM; |
Ong Boon Leong | 5fabb01 | 2021-04-01 10:11:15 +0800 | [diff] [blame] | 362 | |
Marc Zyngier | 12d125b | 2021-08-20 19:30:02 +0100 | [diff] [blame] | 363 | return 0; |
Ong Boon Leong | 5fabb01 | 2021-04-01 10:11:15 +0800 | [diff] [blame] | 364 | } |
| 365 | |
Ong Boon Leong | bba2556 | 2021-04-13 17:36:25 +0800 | [diff] [blame] | 366 | void stmmac_disable_rx_queue(struct stmmac_priv *priv, u32 queue); |
| 367 | void stmmac_enable_rx_queue(struct stmmac_priv *priv, u32 queue); |
Ong Boon Leong | 132c32e | 2021-04-13 17:36:26 +0800 | [diff] [blame] | 368 | void stmmac_disable_tx_queue(struct stmmac_priv *priv, u32 queue); |
| 369 | void stmmac_enable_tx_queue(struct stmmac_priv *priv, u32 queue); |
Ong Boon Leong | bba2556 | 2021-04-13 17:36:25 +0800 | [diff] [blame] | 370 | int stmmac_xsk_wakeup(struct net_device *dev, u32 queue, u32 flags); |
Xiaoliang Yang | 81c52c4 | 2021-07-05 18:26:53 +0800 | [diff] [blame] | 371 | struct timespec64 stmmac_calc_tas_basetime(ktime_t old_base_time, |
| 372 | ktime_t current_time, |
| 373 | u64 cycle_time); |
Ong Boon Leong | bba2556 | 2021-04-13 17:36:25 +0800 | [diff] [blame] | 374 | |
Jose Abreu | 091810d | 2019-05-24 10:20:19 +0200 | [diff] [blame] | 375 | #if IS_ENABLED(CONFIG_STMMAC_SELFTESTS) |
| 376 | void stmmac_selftest_run(struct net_device *dev, |
| 377 | struct ethtool_test *etest, u64 *buf); |
| 378 | void stmmac_selftest_get_strings(struct stmmac_priv *priv, u8 *data); |
| 379 | int stmmac_selftest_get_count(struct stmmac_priv *priv); |
| 380 | #else |
| 381 | static inline void stmmac_selftest_run(struct net_device *dev, |
| 382 | struct ethtool_test *etest, u64 *buf) |
| 383 | { |
| 384 | /* Not enabled */ |
| 385 | } |
| 386 | static inline void stmmac_selftest_get_strings(struct stmmac_priv *priv, |
| 387 | u8 *data) |
| 388 | { |
| 389 | /* Not enabled */ |
| 390 | } |
| 391 | static inline int stmmac_selftest_get_count(struct stmmac_priv *priv) |
| 392 | { |
| 393 | return -EOPNOTSUPP; |
| 394 | } |
| 395 | #endif /* CONFIG_STMMAC_SELFTESTS */ |
| 396 | |
Rayagond Kokatanur | bd4242d | 2012-08-22 21:28:18 +0000 | [diff] [blame] | 397 | #endif /* __STMMAC_H__ */ |