Linux Audio

Check our new training course

Loading...
v4.17
 
  1/*******************************************************************************
  2  STMMAC Common Header File
  3
  4  Copyright (C) 2007-2009  STMicroelectronics Ltd
  5
  6  This program is free software; you can redistribute it and/or modify it
  7  under the terms and conditions of the GNU General Public License,
  8  version 2, as published by the Free Software Foundation.
  9
 10  This program is distributed in the hope it will be useful, but WITHOUT
 11  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 12  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 13  more details.
 14
 15  The full GNU General Public License is included in this distribution in
 16  the file called "COPYING".
 17
 18  Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
 19*******************************************************************************/
 20
 21#ifndef __COMMON_H__
 22#define __COMMON_H__
 23
 24#include <linux/etherdevice.h>
 25#include <linux/netdevice.h>
 26#include <linux/stmmac.h>
 27#include <linux/phy.h>
 
 28#include <linux/module.h>
 29#if IS_ENABLED(CONFIG_VLAN_8021Q)
 30#define STMMAC_VLAN_TAG_USED
 31#include <linux/if_vlan.h>
 32#endif
 33
 34#include "descs.h"
 
 35#include "mmc.h"
 36
 37/* Synopsys Core versions */
 38#define	DWMAC_CORE_3_40	0x34
 39#define	DWMAC_CORE_3_50	0x35
 40#define	DWMAC_CORE_4_00	0x40
 41#define DWMAC_CORE_5_00 0x50
 42#define DWMAC_CORE_5_10 0x51
 
 
 
 
 
 
 
 
 43#define STMMAC_CHAN0	0	/* Always supported and default for all chips */
 44
 45/* These need to be power of two, and >= 4 */
 46#define DMA_TX_SIZE 512
 47#define DMA_RX_SIZE 512
 48#define STMMAC_GET_ENTRY(x, size)	((x + 1) & (size - 1))
 49
 50#undef FRAME_FILTER_DEBUG
 51/* #define FRAME_FILTER_DEBUG */
 52
 53/* Extra statistic and debug information exposed by ethtool */
 54struct stmmac_extra_stats {
 55	/* Transmit errors */
 56	unsigned long tx_underflow ____cacheline_aligned;
 57	unsigned long tx_carrier;
 58	unsigned long tx_losscarrier;
 59	unsigned long vlan_tag;
 60	unsigned long tx_deferred;
 61	unsigned long tx_vlan;
 62	unsigned long tx_jabber;
 63	unsigned long tx_frame_flushed;
 64	unsigned long tx_payload_error;
 65	unsigned long tx_ip_header_error;
 66	/* Receive errors */
 67	unsigned long rx_desc;
 68	unsigned long sa_filter_fail;
 69	unsigned long overflow_error;
 70	unsigned long ipc_csum_error;
 71	unsigned long rx_collision;
 72	unsigned long rx_crc_errors;
 73	unsigned long dribbling_bit;
 74	unsigned long rx_length;
 75	unsigned long rx_mii;
 76	unsigned long rx_multicast;
 77	unsigned long rx_gmac_overflow;
 78	unsigned long rx_watchdog;
 79	unsigned long da_rx_filter_fail;
 80	unsigned long sa_rx_filter_fail;
 81	unsigned long rx_missed_cntr;
 82	unsigned long rx_overflow_cntr;
 83	unsigned long rx_vlan;
 
 84	/* Tx/Rx IRQ error info */
 85	unsigned long tx_undeflow_irq;
 86	unsigned long tx_process_stopped_irq;
 87	unsigned long tx_jabber_irq;
 88	unsigned long rx_overflow_irq;
 89	unsigned long rx_buf_unav_irq;
 90	unsigned long rx_process_stopped_irq;
 91	unsigned long rx_watchdog_irq;
 92	unsigned long tx_early_irq;
 93	unsigned long fatal_bus_error_irq;
 94	/* Tx/Rx IRQ Events */
 95	unsigned long rx_early_irq;
 96	unsigned long threshold;
 97	unsigned long tx_pkt_n;
 98	unsigned long rx_pkt_n;
 99	unsigned long normal_irq_n;
100	unsigned long rx_normal_irq_n;
101	unsigned long napi_poll;
102	unsigned long tx_normal_irq_n;
103	unsigned long tx_clean;
104	unsigned long tx_set_ic_bit;
105	unsigned long irq_receive_pmt_irq_n;
106	/* MMC info */
107	unsigned long mmc_tx_irq_n;
108	unsigned long mmc_rx_irq_n;
109	unsigned long mmc_rx_csum_offload_irq_n;
110	/* EEE */
111	unsigned long irq_tx_path_in_lpi_mode_n;
112	unsigned long irq_tx_path_exit_lpi_mode_n;
113	unsigned long irq_rx_path_in_lpi_mode_n;
114	unsigned long irq_rx_path_exit_lpi_mode_n;
115	unsigned long phy_eee_wakeup_error_n;
116	/* Extended RDES status */
117	unsigned long ip_hdr_err;
118	unsigned long ip_payload_err;
119	unsigned long ip_csum_bypassed;
120	unsigned long ipv4_pkt_rcvd;
121	unsigned long ipv6_pkt_rcvd;
122	unsigned long no_ptp_rx_msg_type_ext;
123	unsigned long ptp_rx_msg_type_sync;
124	unsigned long ptp_rx_msg_type_follow_up;
125	unsigned long ptp_rx_msg_type_delay_req;
126	unsigned long ptp_rx_msg_type_delay_resp;
127	unsigned long ptp_rx_msg_type_pdelay_req;
128	unsigned long ptp_rx_msg_type_pdelay_resp;
129	unsigned long ptp_rx_msg_type_pdelay_follow_up;
130	unsigned long ptp_rx_msg_type_announce;
131	unsigned long ptp_rx_msg_type_management;
132	unsigned long ptp_rx_msg_pkt_reserved_type;
133	unsigned long ptp_frame_type;
134	unsigned long ptp_ver;
135	unsigned long timestamp_dropped;
136	unsigned long av_pkt_rcvd;
137	unsigned long av_tagged_pkt_rcvd;
138	unsigned long vlan_tag_priority_val;
139	unsigned long l3_filter_match;
140	unsigned long l4_filter_match;
141	unsigned long l3_l4_filter_no_match;
142	/* PCS */
143	unsigned long irq_pcs_ane_n;
144	unsigned long irq_pcs_link_n;
145	unsigned long irq_rgmii_n;
146	unsigned long pcs_link;
147	unsigned long pcs_duplex;
148	unsigned long pcs_speed;
149	/* debug register */
150	unsigned long mtl_tx_status_fifo_full;
151	unsigned long mtl_tx_fifo_not_empty;
152	unsigned long mmtl_fifo_ctrl;
153	unsigned long mtl_tx_fifo_read_ctrl_write;
154	unsigned long mtl_tx_fifo_read_ctrl_wait;
155	unsigned long mtl_tx_fifo_read_ctrl_read;
156	unsigned long mtl_tx_fifo_read_ctrl_idle;
157	unsigned long mac_tx_in_pause;
158	unsigned long mac_tx_frame_ctrl_xfer;
159	unsigned long mac_tx_frame_ctrl_idle;
160	unsigned long mac_tx_frame_ctrl_wait;
161	unsigned long mac_tx_frame_ctrl_pause;
162	unsigned long mac_gmii_tx_proto_engine;
163	unsigned long mtl_rx_fifo_fill_level_full;
164	unsigned long mtl_rx_fifo_fill_above_thresh;
165	unsigned long mtl_rx_fifo_fill_below_thresh;
166	unsigned long mtl_rx_fifo_fill_level_empty;
167	unsigned long mtl_rx_fifo_read_ctrl_flush;
168	unsigned long mtl_rx_fifo_read_ctrl_read_data;
169	unsigned long mtl_rx_fifo_read_ctrl_status;
170	unsigned long mtl_rx_fifo_read_ctrl_idle;
171	unsigned long mtl_rx_fifo_ctrl_active;
172	unsigned long mac_rx_frame_ctrl_fifo;
173	unsigned long mac_gmii_rx_proto_engine;
174	/* TSO */
175	unsigned long tx_tso_frames;
176	unsigned long tx_tso_nfrags;
177};
178
179/* Safety Feature statistics exposed by ethtool */
180struct stmmac_safety_stats {
181	unsigned long mac_errors[32];
182	unsigned long mtl_errors[32];
183	unsigned long dma_errors[32];
184};
185
186/* Number of fields in Safety Stats */
187#define STMMAC_SAFETY_FEAT_SIZE	\
188	(sizeof(struct stmmac_safety_stats) / sizeof(unsigned long))
189
190/* CSR Frequency Access Defines*/
191#define CSR_F_35M	35000000
192#define CSR_F_60M	60000000
193#define CSR_F_100M	100000000
194#define CSR_F_150M	150000000
195#define CSR_F_250M	250000000
196#define CSR_F_300M	300000000
197
198#define	MAC_CSR_H_FRQ_MASK	0x20
199
200#define HASH_TABLE_SIZE 64
201#define PAUSE_TIME 0xffff
202
203/* Flow Control defines */
204#define FLOW_OFF	0
205#define FLOW_RX		1
206#define FLOW_TX		2
207#define FLOW_AUTO	(FLOW_TX | FLOW_RX)
208
209/* PCS defines */
210#define STMMAC_PCS_RGMII	(1 << 0)
211#define STMMAC_PCS_SGMII	(1 << 1)
212#define STMMAC_PCS_TBI		(1 << 2)
213#define STMMAC_PCS_RTBI		(1 << 3)
214
215#define SF_DMA_MODE 1		/* DMA STORE-AND-FORWARD Operation Mode */
216
217/* DAM HW feature register fields */
218#define DMA_HW_FEAT_MIISEL	0x00000001	/* 10/100 Mbps Support */
219#define DMA_HW_FEAT_GMIISEL	0x00000002	/* 1000 Mbps Support */
220#define DMA_HW_FEAT_HDSEL	0x00000004	/* Half-Duplex Support */
221#define DMA_HW_FEAT_EXTHASHEN	0x00000008	/* Expanded DA Hash Filter */
222#define DMA_HW_FEAT_HASHSEL	0x00000010	/* HASH Filter */
223#define DMA_HW_FEAT_ADDMAC	0x00000020	/* Multiple MAC Addr Reg */
224#define DMA_HW_FEAT_PCSSEL	0x00000040	/* PCS registers */
225#define DMA_HW_FEAT_L3L4FLTREN	0x00000080	/* Layer 3 & Layer 4 Feature */
226#define DMA_HW_FEAT_SMASEL	0x00000100	/* SMA(MDIO) Interface */
227#define DMA_HW_FEAT_RWKSEL	0x00000200	/* PMT Remote Wakeup */
228#define DMA_HW_FEAT_MGKSEL	0x00000400	/* PMT Magic Packet */
229#define DMA_HW_FEAT_MMCSEL	0x00000800	/* RMON Module */
230#define DMA_HW_FEAT_TSVER1SEL	0x00001000	/* Only IEEE 1588-2002 */
231#define DMA_HW_FEAT_TSVER2SEL	0x00002000	/* IEEE 1588-2008 PTPv2 */
232#define DMA_HW_FEAT_EEESEL	0x00004000	/* Energy Efficient Ethernet */
233#define DMA_HW_FEAT_AVSEL	0x00008000	/* AV Feature */
234#define DMA_HW_FEAT_TXCOESEL	0x00010000	/* Checksum Offload in Tx */
235#define DMA_HW_FEAT_RXTYP1COE	0x00020000	/* IP COE (Type 1) in Rx */
236#define DMA_HW_FEAT_RXTYP2COE	0x00040000	/* IP COE (Type 2) in Rx */
237#define DMA_HW_FEAT_RXFIFOSIZE	0x00080000	/* Rx FIFO > 2048 Bytes */
238#define DMA_HW_FEAT_RXCHCNT	0x00300000	/* No. additional Rx Channels */
239#define DMA_HW_FEAT_TXCHCNT	0x00c00000	/* No. additional Tx Channels */
240#define DMA_HW_FEAT_ENHDESSEL	0x01000000	/* Alternate Descriptor */
241/* Timestamping with Internal System Time */
242#define DMA_HW_FEAT_INTTSEN	0x02000000
243#define DMA_HW_FEAT_FLEXIPPSEN	0x04000000	/* Flexible PPS Output */
244#define DMA_HW_FEAT_SAVLANINS	0x08000000	/* Source Addr or VLAN */
245#define DMA_HW_FEAT_ACTPHYIF	0x70000000	/* Active/selected PHY iface */
246#define DEFAULT_DMA_PBL		8
247
248/* PCS status and mask defines */
249#define	PCS_ANE_IRQ		BIT(2)	/* PCS Auto-Negotiation */
250#define	PCS_LINK_IRQ		BIT(1)	/* PCS Link */
251#define	PCS_RGSMIIIS_IRQ	BIT(0)	/* RGMII or SMII Interrupt */
252
253/* Max/Min RI Watchdog Timer count value */
254#define MAX_DMA_RIWT		0xff
255#define MIN_DMA_RIWT		0x20
 
256/* Tx coalesce parameters */
257#define STMMAC_COAL_TX_TIMER	40000
258#define STMMAC_MAX_COAL_TX_TICK	100000
259#define STMMAC_TX_MAX_FRAMES	256
260#define STMMAC_TX_FRAMES	64
 
261
262/* Packets types */
263enum packets_types {
264	PACKET_AVCPQ = 0x1, /* AV Untagged Control packets */
265	PACKET_PTPQ = 0x2, /* PTP Packets */
266	PACKET_DCBCPQ = 0x3, /* DCB Control Packets */
267	PACKET_UPQ = 0x4, /* Untagged Packets */
268	PACKET_MCBCQ = 0x5, /* Multicast & Broadcast Packets */
269};
270
271/* Rx IPC status */
272enum rx_frame_status {
273	good_frame = 0x0,
274	discard_frame = 0x1,
275	csum_none = 0x2,
276	llc_snap = 0x4,
277	dma_own = 0x8,
278	rx_not_ls = 0x10,
279};
280
281/* Tx status */
282enum tx_frame_status {
283	tx_done = 0x0,
284	tx_not_ls = 0x1,
285	tx_err = 0x2,
286	tx_dma_own = 0x4,
287};
288
289enum dma_irq_status {
290	tx_hard_error = 0x1,
291	tx_hard_error_bump_tc = 0x2,
292	handle_rx = 0x4,
293	handle_tx = 0x8,
294};
295
296/* EEE and LPI defines */
297#define	CORE_IRQ_TX_PATH_IN_LPI_MODE	(1 << 0)
298#define	CORE_IRQ_TX_PATH_EXIT_LPI_MODE	(1 << 1)
299#define	CORE_IRQ_RX_PATH_IN_LPI_MODE	(1 << 2)
300#define	CORE_IRQ_RX_PATH_EXIT_LPI_MODE	(1 << 3)
301
302#define CORE_IRQ_MTL_RX_OVERFLOW	BIT(8)
303
304/* Physical Coding Sublayer */
305struct rgmii_adv {
306	unsigned int pause;
307	unsigned int duplex;
308	unsigned int lp_pause;
309	unsigned int lp_duplex;
310};
311
312#define STMMAC_PCS_PAUSE	1
313#define STMMAC_PCS_ASYM_PAUSE	2
314
315/* DMA HW capabilities */
316struct dma_features {
317	unsigned int mbps_10_100;
318	unsigned int mbps_1000;
319	unsigned int half_duplex;
320	unsigned int hash_filter;
321	unsigned int multi_addr;
322	unsigned int pcs;
323	unsigned int sma_mdio;
324	unsigned int pmt_remote_wake_up;
325	unsigned int pmt_magic_frame;
326	unsigned int rmon;
327	/* IEEE 1588-2002 */
328	unsigned int time_stamp;
329	/* IEEE 1588-2008 */
330	unsigned int atime_stamp;
331	/* 802.3az - Energy-Efficient Ethernet (EEE) */
332	unsigned int eee;
333	unsigned int av;
 
334	unsigned int tsoen;
335	/* TX and RX csum */
336	unsigned int tx_coe;
337	unsigned int rx_coe;
338	unsigned int rx_coe_type1;
339	unsigned int rx_coe_type2;
340	unsigned int rxfifo_over_2048;
341	/* TX and RX number of channels */
342	unsigned int number_rx_channel;
343	unsigned int number_tx_channel;
344	/* TX and RX number of queues */
345	unsigned int number_rx_queues;
346	unsigned int number_tx_queues;
 
 
347	/* Alternate (enhanced) DESC mode */
348	unsigned int enh_desc;
349	/* TX and RX FIFO sizes */
350	unsigned int tx_fifo_size;
351	unsigned int rx_fifo_size;
352	/* Automotive Safety Package */
353	unsigned int asp;
354};
355
356/* GMAC TX FIFO is 8K, Rx FIFO is 16K */
357#define BUF_SIZE_16KiB 16384
358#define BUF_SIZE_8KiB 8192
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
359#define BUF_SIZE_4KiB 4096
360#define BUF_SIZE_2KiB 2048
361
362/* Power Down and WOL */
363#define PMT_NOT_SUPPORTED 0
364#define PMT_SUPPORTED 1
365
366/* Common MAC defines */
367#define MAC_CTRL_REG		0x00000000	/* MAC Control */
368#define MAC_ENABLE_TX		0x00000008	/* Transmitter Enable */
369#define MAC_ENABLE_RX		0x00000004	/* Receiver Enable */
370
371/* Default LPI timers */
372#define STMMAC_DEFAULT_LIT_LS	0x3E8
373#define STMMAC_DEFAULT_TWT_LS	0x1E
374
375#define STMMAC_CHAIN_MODE	0x1
376#define STMMAC_RING_MODE	0x2
377
378#define JUMBO_LEN		9000
379
380/* Descriptors helpers */
381struct stmmac_desc_ops {
382	/* DMA RX descriptor ring initialization */
383	void (*init_rx_desc) (struct dma_desc *p, int disable_rx_ic, int mode,
384			      int end);
385	/* DMA TX descriptor ring initialization */
386	void (*init_tx_desc) (struct dma_desc *p, int mode, int end);
387
388	/* Invoked by the xmit function to prepare the tx descriptor */
389	void (*prepare_tx_desc) (struct dma_desc *p, int is_fs, int len,
390				 bool csum_flag, int mode, bool tx_own,
391				 bool ls, unsigned int tot_pkt_len);
392	void (*prepare_tso_tx_desc)(struct dma_desc *p, int is_fs, int len1,
393				    int len2, bool tx_own, bool ls,
394				    unsigned int tcphdrlen,
395				    unsigned int tcppayloadlen);
396	/* Set/get the owner of the descriptor */
397	void (*set_tx_owner) (struct dma_desc *p);
398	int (*get_tx_owner) (struct dma_desc *p);
399	/* Clean the tx descriptor as soon as the tx irq is received */
400	void (*release_tx_desc) (struct dma_desc *p, int mode);
401	/* Clear interrupt on tx frame completion. When this bit is
402	 * set an interrupt happens as soon as the frame is transmitted */
403	void (*set_tx_ic)(struct dma_desc *p);
404	/* Last tx segment reports the transmit status */
405	int (*get_tx_ls) (struct dma_desc *p);
406	/* Return the transmit status looking at the TDES1 */
407	int (*tx_status) (void *data, struct stmmac_extra_stats *x,
408			  struct dma_desc *p, void __iomem *ioaddr);
409	/* Get the buffer size from the descriptor */
410	int (*get_tx_len) (struct dma_desc *p);
411	/* Handle extra events on specific interrupts hw dependent */
412	void (*set_rx_owner) (struct dma_desc *p);
413	/* Get the receive frame size */
414	int (*get_rx_frame_len) (struct dma_desc *p, int rx_coe_type);
415	/* Return the reception status looking at the RDES1 */
416	int (*rx_status) (void *data, struct stmmac_extra_stats *x,
417			  struct dma_desc *p);
418	void (*rx_extended_status) (void *data, struct stmmac_extra_stats *x,
419				    struct dma_extended_desc *p);
420	/* Set tx timestamp enable bit */
421	void (*enable_tx_timestamp) (struct dma_desc *p);
422	/* get tx timestamp status */
423	int (*get_tx_timestamp_status) (struct dma_desc *p);
424	/* get timestamp value */
425	 u64(*get_timestamp) (void *desc, u32 ats);
426	/* get rx timestamp status */
427	int (*get_rx_timestamp_status)(void *desc, void *next_desc, u32 ats);
428	/* Display ring */
429	void (*display_ring)(void *head, unsigned int size, bool rx);
430	/* set MSS via context descriptor */
431	void (*set_mss)(struct dma_desc *p, unsigned int mss);
432};
433
434extern const struct stmmac_desc_ops enh_desc_ops;
435extern const struct stmmac_desc_ops ndesc_ops;
436
437/* Specific DMA helpers */
438struct stmmac_dma_ops {
439	/* DMA core initialization */
440	int (*reset)(void __iomem *ioaddr);
441	void (*init)(void __iomem *ioaddr, struct stmmac_dma_cfg *dma_cfg,
442		     u32 dma_tx, u32 dma_rx, int atds);
443	void (*init_chan)(void __iomem *ioaddr,
444			  struct stmmac_dma_cfg *dma_cfg, u32 chan);
445	void (*init_rx_chan)(void __iomem *ioaddr,
446			     struct stmmac_dma_cfg *dma_cfg,
447			     u32 dma_rx_phy, u32 chan);
448	void (*init_tx_chan)(void __iomem *ioaddr,
449			     struct stmmac_dma_cfg *dma_cfg,
450			     u32 dma_tx_phy, u32 chan);
451	/* Configure the AXI Bus Mode Register */
452	void (*axi)(void __iomem *ioaddr, struct stmmac_axi *axi);
453	/* Dump DMA registers */
454	void (*dump_regs)(void __iomem *ioaddr, u32 *reg_space);
455	/* Set tx/rx threshold in the csr6 register
456	 * An invalid value enables the store-and-forward mode */
457	void (*dma_mode)(void __iomem *ioaddr, int txmode, int rxmode,
458			 int rxfifosz);
459	void (*dma_rx_mode)(void __iomem *ioaddr, int mode, u32 channel,
460			    int fifosz, u8 qmode);
461	void (*dma_tx_mode)(void __iomem *ioaddr, int mode, u32 channel,
462			    int fifosz, u8 qmode);
463	/* To track extra statistic (if supported) */
464	void (*dma_diagnostic_fr) (void *data, struct stmmac_extra_stats *x,
465				   void __iomem *ioaddr);
466	void (*enable_dma_transmission) (void __iomem *ioaddr);
467	void (*enable_dma_irq)(void __iomem *ioaddr, u32 chan);
468	void (*disable_dma_irq)(void __iomem *ioaddr, u32 chan);
469	void (*start_tx)(void __iomem *ioaddr, u32 chan);
470	void (*stop_tx)(void __iomem *ioaddr, u32 chan);
471	void (*start_rx)(void __iomem *ioaddr, u32 chan);
472	void (*stop_rx)(void __iomem *ioaddr, u32 chan);
473	int (*dma_interrupt) (void __iomem *ioaddr,
474			      struct stmmac_extra_stats *x, u32 chan);
475	/* If supported then get the optional core features */
476	void (*get_hw_feature)(void __iomem *ioaddr,
477			       struct dma_features *dma_cap);
478	/* Program the HW RX Watchdog */
479	void (*rx_watchdog)(void __iomem *ioaddr, u32 riwt, u32 number_chan);
480	void (*set_tx_ring_len)(void __iomem *ioaddr, u32 len, u32 chan);
481	void (*set_rx_ring_len)(void __iomem *ioaddr, u32 len, u32 chan);
482	void (*set_rx_tail_ptr)(void __iomem *ioaddr, u32 tail_ptr, u32 chan);
483	void (*set_tx_tail_ptr)(void __iomem *ioaddr, u32 tail_ptr, u32 chan);
484	void (*enable_tso)(void __iomem *ioaddr, bool en, u32 chan);
485};
486
487struct mac_device_info;
488
489/* Helpers to program the MAC core */
490struct stmmac_ops {
491	/* MAC core initialization */
492	void (*core_init)(struct mac_device_info *hw, struct net_device *dev);
493	/* Enable the MAC RX/TX */
494	void (*set_mac)(void __iomem *ioaddr, bool enable);
495	/* Enable and verify that the IPC module is supported */
496	int (*rx_ipc)(struct mac_device_info *hw);
497	/* Enable RX Queues */
498	void (*rx_queue_enable)(struct mac_device_info *hw, u8 mode, u32 queue);
499	/* RX Queues Priority */
500	void (*rx_queue_prio)(struct mac_device_info *hw, u32 prio, u32 queue);
501	/* TX Queues Priority */
502	void (*tx_queue_prio)(struct mac_device_info *hw, u32 prio, u32 queue);
503	/* RX Queues Routing */
504	void (*rx_queue_routing)(struct mac_device_info *hw, u8 packet,
505				 u32 queue);
506	/* Program RX Algorithms */
507	void (*prog_mtl_rx_algorithms)(struct mac_device_info *hw, u32 rx_alg);
508	/* Program TX Algorithms */
509	void (*prog_mtl_tx_algorithms)(struct mac_device_info *hw, u32 tx_alg);
510	/* Set MTL TX queues weight */
511	void (*set_mtl_tx_queue_weight)(struct mac_device_info *hw,
512					u32 weight, u32 queue);
513	/* RX MTL queue to RX dma mapping */
514	void (*map_mtl_to_dma)(struct mac_device_info *hw, u32 queue, u32 chan);
515	/* Configure AV Algorithm */
516	void (*config_cbs)(struct mac_device_info *hw, u32 send_slope,
517			   u32 idle_slope, u32 high_credit, u32 low_credit,
518			   u32 queue);
519	/* Dump MAC registers */
520	void (*dump_regs)(struct mac_device_info *hw, u32 *reg_space);
521	/* Handle extra events on specific interrupts hw dependent */
522	int (*host_irq_status)(struct mac_device_info *hw,
523			       struct stmmac_extra_stats *x);
524	/* Handle MTL interrupts */
525	int (*host_mtl_irq_status)(struct mac_device_info *hw, u32 chan);
526	/* Multicast filter setting */
527	void (*set_filter)(struct mac_device_info *hw, struct net_device *dev);
528	/* Flow control setting */
529	void (*flow_ctrl)(struct mac_device_info *hw, unsigned int duplex,
530			  unsigned int fc, unsigned int pause_time, u32 tx_cnt);
531	/* Set power management mode (e.g. magic frame) */
532	void (*pmt)(struct mac_device_info *hw, unsigned long mode);
533	/* Set/Get Unicast MAC addresses */
534	void (*set_umac_addr)(struct mac_device_info *hw, unsigned char *addr,
535			      unsigned int reg_n);
536	void (*get_umac_addr)(struct mac_device_info *hw, unsigned char *addr,
537			      unsigned int reg_n);
538	void (*set_eee_mode)(struct mac_device_info *hw,
539			     bool en_tx_lpi_clockgating);
540	void (*reset_eee_mode)(struct mac_device_info *hw);
541	void (*set_eee_timer)(struct mac_device_info *hw, int ls, int tw);
542	void (*set_eee_pls)(struct mac_device_info *hw, int link);
543	void (*debug)(void __iomem *ioaddr, struct stmmac_extra_stats *x,
544		      u32 rx_queues, u32 tx_queues);
545	/* PCS calls */
546	void (*pcs_ctrl_ane)(void __iomem *ioaddr, bool ane, bool srgmi_ral,
547			     bool loopback);
548	void (*pcs_rane)(void __iomem *ioaddr, bool restart);
549	void (*pcs_get_adv_lp)(void __iomem *ioaddr, struct rgmii_adv *adv);
550	/* Safety Features */
551	int (*safety_feat_config)(void __iomem *ioaddr, unsigned int asp);
552	bool (*safety_feat_irq_status)(struct net_device *ndev,
553			void __iomem *ioaddr, unsigned int asp,
554			struct stmmac_safety_stats *stats);
555	const char *(*safety_feat_dump)(struct stmmac_safety_stats *stats,
556			int index, unsigned long *count);
557};
558
559/* PTP and HW Timer helpers */
560struct stmmac_hwtimestamp {
561	void (*config_hw_tstamping) (void __iomem *ioaddr, u32 data);
562	u32 (*config_sub_second_increment)(void __iomem *ioaddr, u32 ptp_clock,
563					   int gmac4);
564	int (*init_systime) (void __iomem *ioaddr, u32 sec, u32 nsec);
565	int (*config_addend) (void __iomem *ioaddr, u32 addend);
566	int (*adjust_systime) (void __iomem *ioaddr, u32 sec, u32 nsec,
567			       int add_sub, int gmac4);
568	 u64(*get_systime) (void __iomem *ioaddr);
569};
570
571extern const struct stmmac_hwtimestamp stmmac_ptp;
572extern const struct stmmac_mode_ops dwmac4_ring_mode_ops;
573
574struct mac_link {
575	u32 speed_mask;
576	u32 speed10;
577	u32 speed100;
578	u32 speed1000;
 
579	u32 duplex;
 
 
 
 
 
 
 
 
 
 
 
580};
581
582struct mii_regs {
583	unsigned int addr;	/* MII Address */
584	unsigned int data;	/* MII Data */
585	unsigned int addr_shift;	/* MII address shift */
586	unsigned int reg_shift;		/* MII reg shift */
587	unsigned int addr_mask;		/* MII address mask */
588	unsigned int reg_mask;		/* MII reg mask */
589	unsigned int clk_csr_shift;
590	unsigned int clk_csr_mask;
591};
592
593/* Helpers to manage the descriptors for chain and ring modes */
594struct stmmac_mode_ops {
595	void (*init) (void *des, dma_addr_t phy_addr, unsigned int size,
596		      unsigned int extend_desc);
597	unsigned int (*is_jumbo_frm) (int len, int ehn_desc);
598	int (*jumbo_frm)(void *priv, struct sk_buff *skb, int csum);
599	int (*set_16kib_bfsize)(int mtu);
600	void (*init_desc3)(struct dma_desc *p);
601	void (*refill_desc3) (void *priv, struct dma_desc *p);
602	void (*clean_desc3) (void *priv, struct dma_desc *p);
603};
604
605struct mac_device_info {
606	const struct stmmac_ops *mac;
607	const struct stmmac_desc_ops *desc;
608	const struct stmmac_dma_ops *dma;
609	const struct stmmac_mode_ops *mode;
610	const struct stmmac_hwtimestamp *ptp;
 
 
 
 
611	struct mii_regs mii;	/* MII register Addresses */
612	struct mac_link link;
613	void __iomem *pcsr;     /* vpointer to device CSRs */
614	int multicast_filter_bins;
615	int unicast_filter_entries;
616	int mcast_bits_log2;
617	unsigned int rx_csum;
618	unsigned int pcs;
619	unsigned int pmt;
620	unsigned int ps;
 
 
 
 
621};
622
623struct stmmac_rx_routing {
624	u32 reg_mask;
625	u32 reg_shift;
626};
627
628struct mac_device_info *dwmac1000_setup(void __iomem *ioaddr, int mcbins,
629					int perfect_uc_entries,
630					int *synopsys_id);
631struct mac_device_info *dwmac100_setup(void __iomem *ioaddr, int *synopsys_id);
632struct mac_device_info *dwmac4_setup(void __iomem *ioaddr, int mcbins,
633				     int perfect_uc_entries, int *synopsys_id);
634
635void stmmac_set_mac_addr(void __iomem *ioaddr, u8 addr[6],
636			 unsigned int high, unsigned int low);
637void stmmac_get_mac_addr(void __iomem *ioaddr, unsigned char *addr,
638			 unsigned int high, unsigned int low);
639void stmmac_set_mac(void __iomem *ioaddr, bool enable);
640
641void stmmac_dwmac4_set_mac_addr(void __iomem *ioaddr, u8 addr[6],
642				unsigned int high, unsigned int low);
643void stmmac_dwmac4_get_mac_addr(void __iomem *ioaddr, unsigned char *addr,
644				unsigned int high, unsigned int low);
645void stmmac_dwmac4_set_mac(void __iomem *ioaddr, bool enable);
646
647void dwmac_dma_flush_tx_fifo(void __iomem *ioaddr);
648
649extern const struct stmmac_mode_ops ring_mode_ops;
650extern const struct stmmac_mode_ops chain_mode_ops;
651extern const struct stmmac_desc_ops dwmac4_desc_ops;
652
653/**
654 * stmmac_get_synopsys_id - return the SYINID.
655 * @priv: driver private structure
656 * Description: this simple function is to decode and return the SYINID
657 * starting from the HW core register.
658 */
659static inline u32 stmmac_get_synopsys_id(u32 hwid)
660{
661	/* Check Synopsys Id (not available on old chips) */
662	if (likely(hwid)) {
663		u32 uid = ((hwid & 0x0000ff00) >> 8);
664		u32 synid = (hwid & 0x000000ff);
665
666		pr_info("stmmac - user ID: 0x%x, Synopsys ID: 0x%x\n",
667			uid, synid);
668
669		return synid;
670	}
671	return 0;
672}
673#endif /* __COMMON_H__ */
v5.9
  1/* SPDX-License-Identifier: GPL-2.0-only */
  2/*******************************************************************************
  3  STMMAC Common Header File
  4
  5  Copyright (C) 2007-2009  STMicroelectronics Ltd
  6
 
 
 
 
 
 
 
 
 
 
 
  7
  8  Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
  9*******************************************************************************/
 10
 11#ifndef __COMMON_H__
 12#define __COMMON_H__
 13
 14#include <linux/etherdevice.h>
 15#include <linux/netdevice.h>
 16#include <linux/stmmac.h>
 17#include <linux/phy.h>
 18#include <linux/mdio-xpcs.h>
 19#include <linux/module.h>
 20#if IS_ENABLED(CONFIG_VLAN_8021Q)
 21#define STMMAC_VLAN_TAG_USED
 22#include <linux/if_vlan.h>
 23#endif
 24
 25#include "descs.h"
 26#include "hwif.h"
 27#include "mmc.h"
 28
 29/* Synopsys Core versions */
 30#define	DWMAC_CORE_3_40		0x34
 31#define	DWMAC_CORE_3_50		0x35
 32#define	DWMAC_CORE_4_00		0x40
 33#define DWMAC_CORE_4_10		0x41
 34#define DWMAC_CORE_5_00		0x50
 35#define DWMAC_CORE_5_10		0x51
 36#define DWXGMAC_CORE_2_10	0x21
 37#define DWXLGMAC_CORE_2_00	0x20
 38
 39/* Device ID */
 40#define DWXGMAC_ID		0x76
 41#define DWXLGMAC_ID		0x27
 42
 43#define STMMAC_CHAN0	0	/* Always supported and default for all chips */
 44
 45/* These need to be power of two, and >= 4 */
 46#define DMA_TX_SIZE 512
 47#define DMA_RX_SIZE 512
 48#define STMMAC_GET_ENTRY(x, size)	((x + 1) & (size - 1))
 49
 50#undef FRAME_FILTER_DEBUG
 51/* #define FRAME_FILTER_DEBUG */
 52
 53/* Extra statistic and debug information exposed by ethtool */
 54struct stmmac_extra_stats {
 55	/* Transmit errors */
 56	unsigned long tx_underflow ____cacheline_aligned;
 57	unsigned long tx_carrier;
 58	unsigned long tx_losscarrier;
 59	unsigned long vlan_tag;
 60	unsigned long tx_deferred;
 61	unsigned long tx_vlan;
 62	unsigned long tx_jabber;
 63	unsigned long tx_frame_flushed;
 64	unsigned long tx_payload_error;
 65	unsigned long tx_ip_header_error;
 66	/* Receive errors */
 67	unsigned long rx_desc;
 68	unsigned long sa_filter_fail;
 69	unsigned long overflow_error;
 70	unsigned long ipc_csum_error;
 71	unsigned long rx_collision;
 72	unsigned long rx_crc_errors;
 73	unsigned long dribbling_bit;
 74	unsigned long rx_length;
 75	unsigned long rx_mii;
 76	unsigned long rx_multicast;
 77	unsigned long rx_gmac_overflow;
 78	unsigned long rx_watchdog;
 79	unsigned long da_rx_filter_fail;
 80	unsigned long sa_rx_filter_fail;
 81	unsigned long rx_missed_cntr;
 82	unsigned long rx_overflow_cntr;
 83	unsigned long rx_vlan;
 84	unsigned long rx_split_hdr_pkt_n;
 85	/* Tx/Rx IRQ error info */
 86	unsigned long tx_undeflow_irq;
 87	unsigned long tx_process_stopped_irq;
 88	unsigned long tx_jabber_irq;
 89	unsigned long rx_overflow_irq;
 90	unsigned long rx_buf_unav_irq;
 91	unsigned long rx_process_stopped_irq;
 92	unsigned long rx_watchdog_irq;
 93	unsigned long tx_early_irq;
 94	unsigned long fatal_bus_error_irq;
 95	/* Tx/Rx IRQ Events */
 96	unsigned long rx_early_irq;
 97	unsigned long threshold;
 98	unsigned long tx_pkt_n;
 99	unsigned long rx_pkt_n;
100	unsigned long normal_irq_n;
101	unsigned long rx_normal_irq_n;
102	unsigned long napi_poll;
103	unsigned long tx_normal_irq_n;
104	unsigned long tx_clean;
105	unsigned long tx_set_ic_bit;
106	unsigned long irq_receive_pmt_irq_n;
107	/* MMC info */
108	unsigned long mmc_tx_irq_n;
109	unsigned long mmc_rx_irq_n;
110	unsigned long mmc_rx_csum_offload_irq_n;
111	/* EEE */
112	unsigned long irq_tx_path_in_lpi_mode_n;
113	unsigned long irq_tx_path_exit_lpi_mode_n;
114	unsigned long irq_rx_path_in_lpi_mode_n;
115	unsigned long irq_rx_path_exit_lpi_mode_n;
116	unsigned long phy_eee_wakeup_error_n;
117	/* Extended RDES status */
118	unsigned long ip_hdr_err;
119	unsigned long ip_payload_err;
120	unsigned long ip_csum_bypassed;
121	unsigned long ipv4_pkt_rcvd;
122	unsigned long ipv6_pkt_rcvd;
123	unsigned long no_ptp_rx_msg_type_ext;
124	unsigned long ptp_rx_msg_type_sync;
125	unsigned long ptp_rx_msg_type_follow_up;
126	unsigned long ptp_rx_msg_type_delay_req;
127	unsigned long ptp_rx_msg_type_delay_resp;
128	unsigned long ptp_rx_msg_type_pdelay_req;
129	unsigned long ptp_rx_msg_type_pdelay_resp;
130	unsigned long ptp_rx_msg_type_pdelay_follow_up;
131	unsigned long ptp_rx_msg_type_announce;
132	unsigned long ptp_rx_msg_type_management;
133	unsigned long ptp_rx_msg_pkt_reserved_type;
134	unsigned long ptp_frame_type;
135	unsigned long ptp_ver;
136	unsigned long timestamp_dropped;
137	unsigned long av_pkt_rcvd;
138	unsigned long av_tagged_pkt_rcvd;
139	unsigned long vlan_tag_priority_val;
140	unsigned long l3_filter_match;
141	unsigned long l4_filter_match;
142	unsigned long l3_l4_filter_no_match;
143	/* PCS */
144	unsigned long irq_pcs_ane_n;
145	unsigned long irq_pcs_link_n;
146	unsigned long irq_rgmii_n;
147	unsigned long pcs_link;
148	unsigned long pcs_duplex;
149	unsigned long pcs_speed;
150	/* debug register */
151	unsigned long mtl_tx_status_fifo_full;
152	unsigned long mtl_tx_fifo_not_empty;
153	unsigned long mmtl_fifo_ctrl;
154	unsigned long mtl_tx_fifo_read_ctrl_write;
155	unsigned long mtl_tx_fifo_read_ctrl_wait;
156	unsigned long mtl_tx_fifo_read_ctrl_read;
157	unsigned long mtl_tx_fifo_read_ctrl_idle;
158	unsigned long mac_tx_in_pause;
159	unsigned long mac_tx_frame_ctrl_xfer;
160	unsigned long mac_tx_frame_ctrl_idle;
161	unsigned long mac_tx_frame_ctrl_wait;
162	unsigned long mac_tx_frame_ctrl_pause;
163	unsigned long mac_gmii_tx_proto_engine;
164	unsigned long mtl_rx_fifo_fill_level_full;
165	unsigned long mtl_rx_fifo_fill_above_thresh;
166	unsigned long mtl_rx_fifo_fill_below_thresh;
167	unsigned long mtl_rx_fifo_fill_level_empty;
168	unsigned long mtl_rx_fifo_read_ctrl_flush;
169	unsigned long mtl_rx_fifo_read_ctrl_read_data;
170	unsigned long mtl_rx_fifo_read_ctrl_status;
171	unsigned long mtl_rx_fifo_read_ctrl_idle;
172	unsigned long mtl_rx_fifo_ctrl_active;
173	unsigned long mac_rx_frame_ctrl_fifo;
174	unsigned long mac_gmii_rx_proto_engine;
175	/* TSO */
176	unsigned long tx_tso_frames;
177	unsigned long tx_tso_nfrags;
178};
179
180/* Safety Feature statistics exposed by ethtool */
181struct stmmac_safety_stats {
182	unsigned long mac_errors[32];
183	unsigned long mtl_errors[32];
184	unsigned long dma_errors[32];
185};
186
187/* Number of fields in Safety Stats */
188#define STMMAC_SAFETY_FEAT_SIZE	\
189	(sizeof(struct stmmac_safety_stats) / sizeof(unsigned long))
190
191/* CSR Frequency Access Defines*/
192#define CSR_F_35M	35000000
193#define CSR_F_60M	60000000
194#define CSR_F_100M	100000000
195#define CSR_F_150M	150000000
196#define CSR_F_250M	250000000
197#define CSR_F_300M	300000000
198
199#define	MAC_CSR_H_FRQ_MASK	0x20
200
201#define HASH_TABLE_SIZE 64
202#define PAUSE_TIME 0xffff
203
204/* Flow Control defines */
205#define FLOW_OFF	0
206#define FLOW_RX		1
207#define FLOW_TX		2
208#define FLOW_AUTO	(FLOW_TX | FLOW_RX)
209
210/* PCS defines */
211#define STMMAC_PCS_RGMII	(1 << 0)
212#define STMMAC_PCS_SGMII	(1 << 1)
213#define STMMAC_PCS_TBI		(1 << 2)
214#define STMMAC_PCS_RTBI		(1 << 3)
215
216#define SF_DMA_MODE 1		/* DMA STORE-AND-FORWARD Operation Mode */
217
218/* DAM HW feature register fields */
219#define DMA_HW_FEAT_MIISEL	0x00000001	/* 10/100 Mbps Support */
220#define DMA_HW_FEAT_GMIISEL	0x00000002	/* 1000 Mbps Support */
221#define DMA_HW_FEAT_HDSEL	0x00000004	/* Half-Duplex Support */
222#define DMA_HW_FEAT_EXTHASHEN	0x00000008	/* Expanded DA Hash Filter */
223#define DMA_HW_FEAT_HASHSEL	0x00000010	/* HASH Filter */
224#define DMA_HW_FEAT_ADDMAC	0x00000020	/* Multiple MAC Addr Reg */
225#define DMA_HW_FEAT_PCSSEL	0x00000040	/* PCS registers */
226#define DMA_HW_FEAT_L3L4FLTREN	0x00000080	/* Layer 3 & Layer 4 Feature */
227#define DMA_HW_FEAT_SMASEL	0x00000100	/* SMA(MDIO) Interface */
228#define DMA_HW_FEAT_RWKSEL	0x00000200	/* PMT Remote Wakeup */
229#define DMA_HW_FEAT_MGKSEL	0x00000400	/* PMT Magic Packet */
230#define DMA_HW_FEAT_MMCSEL	0x00000800	/* RMON Module */
231#define DMA_HW_FEAT_TSVER1SEL	0x00001000	/* Only IEEE 1588-2002 */
232#define DMA_HW_FEAT_TSVER2SEL	0x00002000	/* IEEE 1588-2008 PTPv2 */
233#define DMA_HW_FEAT_EEESEL	0x00004000	/* Energy Efficient Ethernet */
234#define DMA_HW_FEAT_AVSEL	0x00008000	/* AV Feature */
235#define DMA_HW_FEAT_TXCOESEL	0x00010000	/* Checksum Offload in Tx */
236#define DMA_HW_FEAT_RXTYP1COE	0x00020000	/* IP COE (Type 1) in Rx */
237#define DMA_HW_FEAT_RXTYP2COE	0x00040000	/* IP COE (Type 2) in Rx */
238#define DMA_HW_FEAT_RXFIFOSIZE	0x00080000	/* Rx FIFO > 2048 Bytes */
239#define DMA_HW_FEAT_RXCHCNT	0x00300000	/* No. additional Rx Channels */
240#define DMA_HW_FEAT_TXCHCNT	0x00c00000	/* No. additional Tx Channels */
241#define DMA_HW_FEAT_ENHDESSEL	0x01000000	/* Alternate Descriptor */
242/* Timestamping with Internal System Time */
243#define DMA_HW_FEAT_INTTSEN	0x02000000
244#define DMA_HW_FEAT_FLEXIPPSEN	0x04000000	/* Flexible PPS Output */
245#define DMA_HW_FEAT_SAVLANINS	0x08000000	/* Source Addr or VLAN */
246#define DMA_HW_FEAT_ACTPHYIF	0x70000000	/* Active/selected PHY iface */
247#define DEFAULT_DMA_PBL		8
248
249/* PCS status and mask defines */
250#define	PCS_ANE_IRQ		BIT(2)	/* PCS Auto-Negotiation */
251#define	PCS_LINK_IRQ		BIT(1)	/* PCS Link */
252#define	PCS_RGSMIIIS_IRQ	BIT(0)	/* RGMII or SMII Interrupt */
253
254/* Max/Min RI Watchdog Timer count value */
255#define MAX_DMA_RIWT		0xff
256#define MIN_DMA_RIWT		0x10
257#define DEF_DMA_RIWT		0xa0
258/* Tx coalesce parameters */
259#define STMMAC_COAL_TX_TIMER	1000
260#define STMMAC_MAX_COAL_TX_TICK	100000
261#define STMMAC_TX_MAX_FRAMES	256
262#define STMMAC_TX_FRAMES	25
263#define STMMAC_RX_FRAMES	0
264
265/* Packets types */
266enum packets_types {
267	PACKET_AVCPQ = 0x1, /* AV Untagged Control packets */
268	PACKET_PTPQ = 0x2, /* PTP Packets */
269	PACKET_DCBCPQ = 0x3, /* DCB Control Packets */
270	PACKET_UPQ = 0x4, /* Untagged Packets */
271	PACKET_MCBCQ = 0x5, /* Multicast & Broadcast Packets */
272};
273
274/* Rx IPC status */
275enum rx_frame_status {
276	good_frame = 0x0,
277	discard_frame = 0x1,
278	csum_none = 0x2,
279	llc_snap = 0x4,
280	dma_own = 0x8,
281	rx_not_ls = 0x10,
282};
283
284/* Tx status */
285enum tx_frame_status {
286	tx_done = 0x0,
287	tx_not_ls = 0x1,
288	tx_err = 0x2,
289	tx_dma_own = 0x4,
290};
291
292enum dma_irq_status {
293	tx_hard_error = 0x1,
294	tx_hard_error_bump_tc = 0x2,
295	handle_rx = 0x4,
296	handle_tx = 0x8,
297};
298
299/* EEE and LPI defines */
300#define	CORE_IRQ_TX_PATH_IN_LPI_MODE	(1 << 0)
301#define	CORE_IRQ_TX_PATH_EXIT_LPI_MODE	(1 << 1)
302#define	CORE_IRQ_RX_PATH_IN_LPI_MODE	(1 << 2)
303#define	CORE_IRQ_RX_PATH_EXIT_LPI_MODE	(1 << 3)
304
305#define CORE_IRQ_MTL_RX_OVERFLOW	BIT(8)
306
307/* Physical Coding Sublayer */
308struct rgmii_adv {
309	unsigned int pause;
310	unsigned int duplex;
311	unsigned int lp_pause;
312	unsigned int lp_duplex;
313};
314
315#define STMMAC_PCS_PAUSE	1
316#define STMMAC_PCS_ASYM_PAUSE	2
317
318/* DMA HW capabilities */
319struct dma_features {
320	unsigned int mbps_10_100;
321	unsigned int mbps_1000;
322	unsigned int half_duplex;
323	unsigned int hash_filter;
324	unsigned int multi_addr;
325	unsigned int pcs;
326	unsigned int sma_mdio;
327	unsigned int pmt_remote_wake_up;
328	unsigned int pmt_magic_frame;
329	unsigned int rmon;
330	/* IEEE 1588-2002 */
331	unsigned int time_stamp;
332	/* IEEE 1588-2008 */
333	unsigned int atime_stamp;
334	/* 802.3az - Energy-Efficient Ethernet (EEE) */
335	unsigned int eee;
336	unsigned int av;
337	unsigned int hash_tb_sz;
338	unsigned int tsoen;
339	/* TX and RX csum */
340	unsigned int tx_coe;
341	unsigned int rx_coe;
342	unsigned int rx_coe_type1;
343	unsigned int rx_coe_type2;
344	unsigned int rxfifo_over_2048;
345	/* TX and RX number of channels */
346	unsigned int number_rx_channel;
347	unsigned int number_tx_channel;
348	/* TX and RX number of queues */
349	unsigned int number_rx_queues;
350	unsigned int number_tx_queues;
351	/* PPS output */
352	unsigned int pps_out_num;
353	/* Alternate (enhanced) DESC mode */
354	unsigned int enh_desc;
355	/* TX and RX FIFO sizes */
356	unsigned int tx_fifo_size;
357	unsigned int rx_fifo_size;
358	/* Automotive Safety Package */
359	unsigned int asp;
360	/* RX Parser */
361	unsigned int frpsel;
362	unsigned int frpbs;
363	unsigned int frpes;
364	unsigned int addr64;
365	unsigned int rssen;
366	unsigned int vlhash;
367	unsigned int sphen;
368	unsigned int vlins;
369	unsigned int dvlan;
370	unsigned int l3l4fnum;
371	unsigned int arpoffsel;
372	/* TSN Features */
373	unsigned int estwid;
374	unsigned int estdep;
375	unsigned int estsel;
376	unsigned int fpesel;
377	unsigned int tbssel;
378};
379
380/* RX Buffer size must be multiple of 4/8/16 bytes */
381#define BUF_SIZE_16KiB 16368
382#define BUF_SIZE_8KiB 8188
383#define BUF_SIZE_4KiB 4096
384#define BUF_SIZE_2KiB 2048
385
386/* Power Down and WOL */
387#define PMT_NOT_SUPPORTED 0
388#define PMT_SUPPORTED 1
389
390/* Common MAC defines */
391#define MAC_CTRL_REG		0x00000000	/* MAC Control */
392#define MAC_ENABLE_TX		0x00000008	/* Transmitter Enable */
393#define MAC_ENABLE_RX		0x00000004	/* Receiver Enable */
394
395/* Default LPI timers */
396#define STMMAC_DEFAULT_LIT_LS	0x3E8
397#define STMMAC_DEFAULT_TWT_LS	0x1E
398
399#define STMMAC_CHAIN_MODE	0x1
400#define STMMAC_RING_MODE	0x2
401
402#define JUMBO_LEN		9000
403
404/* Receive Side Scaling */
405#define STMMAC_RSS_HASH_KEY_SIZE	40
406#define STMMAC_RSS_MAX_TABLE_SIZE	256
407
408/* VLAN */
409#define STMMAC_VLAN_NONE	0x0
410#define STMMAC_VLAN_REMOVE	0x1
411#define STMMAC_VLAN_INSERT	0x2
412#define STMMAC_VLAN_REPLACE	0x3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
413
414extern const struct stmmac_desc_ops enh_desc_ops;
415extern const struct stmmac_desc_ops ndesc_ops;
416
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
417struct mac_device_info;
418
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
419extern const struct stmmac_hwtimestamp stmmac_ptp;
420extern const struct stmmac_mode_ops dwmac4_ring_mode_ops;
421
422struct mac_link {
423	u32 speed_mask;
424	u32 speed10;
425	u32 speed100;
426	u32 speed1000;
427	u32 speed2500;
428	u32 duplex;
429	struct {
430		u32 speed2500;
431		u32 speed5000;
432		u32 speed10000;
433	} xgmii;
434	struct {
435		u32 speed25000;
436		u32 speed40000;
437		u32 speed50000;
438		u32 speed100000;
439	} xlgmii;
440};
441
442struct mii_regs {
443	unsigned int addr;	/* MII Address */
444	unsigned int data;	/* MII Data */
445	unsigned int addr_shift;	/* MII address shift */
446	unsigned int reg_shift;		/* MII reg shift */
447	unsigned int addr_mask;		/* MII address mask */
448	unsigned int reg_mask;		/* MII reg mask */
449	unsigned int clk_csr_shift;
450	unsigned int clk_csr_mask;
451};
452
 
 
 
 
 
 
 
 
 
 
 
 
453struct mac_device_info {
454	const struct stmmac_ops *mac;
455	const struct stmmac_desc_ops *desc;
456	const struct stmmac_dma_ops *dma;
457	const struct stmmac_mode_ops *mode;
458	const struct stmmac_hwtimestamp *ptp;
459	const struct stmmac_tc_ops *tc;
460	const struct stmmac_mmc_ops *mmc;
461	const struct mdio_xpcs_ops *xpcs;
462	struct mdio_xpcs_args xpcs_args;
463	struct mii_regs mii;	/* MII register Addresses */
464	struct mac_link link;
465	void __iomem *pcsr;     /* vpointer to device CSRs */
466	unsigned int multicast_filter_bins;
467	unsigned int unicast_filter_entries;
468	unsigned int mcast_bits_log2;
469	unsigned int rx_csum;
470	unsigned int pcs;
471	unsigned int pmt;
472	unsigned int ps;
473	unsigned int xlgmac;
474	unsigned int num_vlan;
475	u32 vlan_filter[32];
476	unsigned int promisc;
477};
478
479struct stmmac_rx_routing {
480	u32 reg_mask;
481	u32 reg_shift;
482};
483
484int dwmac100_setup(struct stmmac_priv *priv);
485int dwmac1000_setup(struct stmmac_priv *priv);
486int dwmac4_setup(struct stmmac_priv *priv);
487int dwxgmac2_setup(struct stmmac_priv *priv);
488int dwxlgmac2_setup(struct stmmac_priv *priv);
 
489
490void stmmac_set_mac_addr(void __iomem *ioaddr, u8 addr[6],
491			 unsigned int high, unsigned int low);
492void stmmac_get_mac_addr(void __iomem *ioaddr, unsigned char *addr,
493			 unsigned int high, unsigned int low);
494void stmmac_set_mac(void __iomem *ioaddr, bool enable);
495
496void stmmac_dwmac4_set_mac_addr(void __iomem *ioaddr, u8 addr[6],
497				unsigned int high, unsigned int low);
498void stmmac_dwmac4_get_mac_addr(void __iomem *ioaddr, unsigned char *addr,
499				unsigned int high, unsigned int low);
500void stmmac_dwmac4_set_mac(void __iomem *ioaddr, bool enable);
501
502void dwmac_dma_flush_tx_fifo(void __iomem *ioaddr);
503
504extern const struct stmmac_mode_ops ring_mode_ops;
505extern const struct stmmac_mode_ops chain_mode_ops;
506extern const struct stmmac_desc_ops dwmac4_desc_ops;
507
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
508#endif /* __COMMON_H__ */