2019-05-29 21:18:05 +07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2009-10-15 05:13:45 +07:00
|
|
|
/*******************************************************************************
|
|
|
|
Copyright (C) 2007-2009 STMicroelectronics Ltd
|
|
|
|
|
|
|
|
|
|
|
|
Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2012-08-23 04:28:18 +07:00
|
|
|
#ifndef __STMMAC_H__
|
|
|
|
#define __STMMAC_H__
|
|
|
|
|
2011-12-21 10:58:19 +07:00
|
|
|
#define STMMAC_RESOURCE_NAME "stmmaceth"
|
2016-04-01 16:37:36 +07:00
|
|
|
#define DRV_MODULE_VERSION "Jan_2016"
|
2012-04-04 11:33:25 +07:00
|
|
|
|
|
|
|
#include <linux/clk.h>
|
2019-08-07 15:03:14 +07:00
|
|
|
#include <linux/if_vlan.h>
|
2010-01-07 06:07:14 +07:00
|
|
|
#include <linux/stmmac.h>
|
2019-06-11 22:18:46 +07:00
|
|
|
#include <linux/phylink.h>
|
2012-06-08 02:25:07 +07:00
|
|
|
#include <linux/pci.h>
|
2009-10-15 05:13:45 +07:00
|
|
|
#include "common.h"
|
2013-03-26 11:43:11 +07:00
|
|
|
#include <linux/ptp_clock_kernel.h>
|
2019-01-20 23:05:15 +07:00
|
|
|
#include <linux/net_tstamp.h>
|
2014-01-17 20:24:41 +07:00
|
|
|
#include <linux/reset.h>
|
2019-07-09 15:03:00 +07:00
|
|
|
#include <net/page_pool.h>
|
2009-10-15 05:13:45 +07:00
|
|
|
|
2015-05-21 01:03:07 +07:00
|
|
|
struct stmmac_resources {
|
|
|
|
void __iomem *addr;
|
|
|
|
const char *mac;
|
|
|
|
int wol_irq;
|
|
|
|
int lpi_irq;
|
|
|
|
int irq;
|
|
|
|
};
|
|
|
|
|
2014-08-27 16:27:00 +07:00
|
|
|
struct stmmac_tx_info {
|
|
|
|
dma_addr_t buf;
|
|
|
|
bool map_as_page;
|
2016-02-29 20:27:31 +07:00
|
|
|
unsigned len;
|
2016-02-29 20:27:32 +07:00
|
|
|
bool last_segment;
|
2016-02-29 20:27:33 +07:00
|
|
|
bool is_jumbo;
|
2014-08-27 16:27:00 +07:00
|
|
|
};
|
|
|
|
|
2017-04-06 15:49:10 +07:00
|
|
|
/* Frequently used values are kept adjacent for cache effect */
|
|
|
|
struct stmmac_tx_queue {
|
2018-09-17 15:22:56 +07:00
|
|
|
u32 tx_count_frames;
|
|
|
|
struct timer_list txtimer;
|
2017-04-06 15:49:10 +07:00
|
|
|
u32 queue_index;
|
|
|
|
struct stmmac_priv *priv_data;
|
|
|
|
struct dma_extended_desc *dma_etx ____cacheline_aligned_in_smp;
|
|
|
|
struct dma_desc *dma_tx;
|
|
|
|
struct sk_buff **tx_skbuff;
|
|
|
|
struct stmmac_tx_info *tx_skbuff_dma;
|
|
|
|
unsigned int cur_tx;
|
|
|
|
unsigned int dirty_tx;
|
|
|
|
dma_addr_t dma_tx_phy;
|
|
|
|
u32 tx_tail_addr;
|
2018-02-20 00:11:09 +07:00
|
|
|
u32 mss;
|
2017-04-06 15:49:10 +07:00
|
|
|
};
|
|
|
|
|
2019-07-09 15:03:00 +07:00
|
|
|
struct stmmac_rx_buffer {
|
|
|
|
struct page *page;
|
2019-08-18 01:54:43 +07:00
|
|
|
struct page *sec_page;
|
2019-07-09 15:03:00 +07:00
|
|
|
dma_addr_t addr;
|
2019-08-18 01:54:43 +07:00
|
|
|
dma_addr_t sec_addr;
|
2019-07-09 15:03:00 +07:00
|
|
|
};
|
|
|
|
|
2017-04-06 15:49:09 +07:00
|
|
|
struct stmmac_rx_queue {
|
2019-07-09 15:02:58 +07:00
|
|
|
u32 rx_count_frames;
|
2017-04-06 15:49:09 +07:00
|
|
|
u32 queue_index;
|
2019-07-09 15:03:00 +07:00
|
|
|
struct page_pool *page_pool;
|
|
|
|
struct stmmac_rx_buffer *buf_pool;
|
2017-04-06 15:49:09 +07:00
|
|
|
struct stmmac_priv *priv_data;
|
|
|
|
struct dma_extended_desc *dma_erx;
|
|
|
|
struct dma_desc *dma_rx ____cacheline_aligned_in_smp;
|
|
|
|
unsigned int cur_rx;
|
|
|
|
unsigned int dirty_rx;
|
|
|
|
u32 rx_zeroc_thresh;
|
|
|
|
dma_addr_t dma_rx_phy;
|
|
|
|
u32 rx_tail_addr;
|
2019-08-18 01:54:41 +07:00
|
|
|
unsigned int state_saved;
|
|
|
|
struct {
|
|
|
|
struct sk_buff *skb;
|
|
|
|
unsigned int len;
|
|
|
|
unsigned int error;
|
|
|
|
} state;
|
2018-09-17 15:22:56 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct stmmac_channel {
|
2019-02-19 16:38:47 +07:00
|
|
|
struct napi_struct rx_napi ____cacheline_aligned_in_smp;
|
|
|
|
struct napi_struct tx_napi ____cacheline_aligned_in_smp;
|
2018-09-17 15:22:56 +07:00
|
|
|
struct stmmac_priv *priv_data;
|
|
|
|
u32 index;
|
2017-04-06 15:49:09 +07:00
|
|
|
};
|
|
|
|
|
2018-05-04 16:01:38 +07:00
|
|
|
struct stmmac_tc_entry {
|
|
|
|
bool in_use;
|
|
|
|
bool in_hw;
|
|
|
|
bool is_last;
|
|
|
|
bool is_frag;
|
|
|
|
void *frag_ptr;
|
|
|
|
unsigned int table_pos;
|
|
|
|
u32 handle;
|
|
|
|
u32 prio;
|
|
|
|
struct {
|
|
|
|
u32 match_data;
|
|
|
|
u32 match_en;
|
|
|
|
u8 af:1;
|
|
|
|
u8 rf:1;
|
|
|
|
u8 im:1;
|
|
|
|
u8 nc:1;
|
|
|
|
u8 res1:4;
|
|
|
|
u8 frame_offset;
|
|
|
|
u8 ok_index;
|
|
|
|
u8 dma_ch_no;
|
|
|
|
u32 res2;
|
|
|
|
} __packed val;
|
|
|
|
};
|
|
|
|
|
2018-06-01 00:01:27 +07:00
|
|
|
#define STMMAC_PPS_MAX 4
|
|
|
|
struct stmmac_pps_cfg {
|
|
|
|
bool available;
|
|
|
|
struct timespec64 start;
|
|
|
|
struct timespec64 period;
|
|
|
|
};
|
|
|
|
|
2019-08-07 15:03:12 +07:00
|
|
|
struct stmmac_rss {
|
|
|
|
int enable;
|
|
|
|
u8 key[STMMAC_RSS_HASH_KEY_SIZE];
|
|
|
|
u32 table[STMMAC_RSS_MAX_TABLE_SIZE];
|
|
|
|
};
|
|
|
|
|
2009-10-15 05:13:45 +07:00
|
|
|
struct stmmac_priv {
|
|
|
|
/* Frequently used values are kept adjacent for cache effect */
|
2013-04-08 09:10:02 +07:00
|
|
|
u32 tx_coal_frames;
|
|
|
|
u32 tx_coal_timer;
|
2019-07-09 15:02:58 +07:00
|
|
|
u32 rx_coal_frames;
|
2017-04-06 15:49:10 +07:00
|
|
|
|
2009-10-15 05:13:45 +07:00
|
|
|
int tx_coalesce;
|
2013-04-08 09:10:02 +07:00
|
|
|
int hwts_tx_en;
|
|
|
|
bool tx_path_in_lpi_mode;
|
2016-04-01 16:37:34 +07:00
|
|
|
bool tso;
|
2019-08-18 01:54:43 +07:00
|
|
|
int sph;
|
2009-10-15 05:13:45 +07:00
|
|
|
|
2013-04-08 09:10:02 +07:00
|
|
|
unsigned int dma_buf_sz;
|
2016-02-29 20:27:41 +07:00
|
|
|
unsigned int rx_copybreak;
|
2013-04-08 09:10:02 +07:00
|
|
|
u32 rx_riwt;
|
|
|
|
int hwts_rx_en;
|
2017-03-29 12:05:40 +07:00
|
|
|
|
2013-04-08 09:10:02 +07:00
|
|
|
void __iomem *ioaddr;
|
2009-10-15 05:13:45 +07:00
|
|
|
struct net_device *dev;
|
|
|
|
struct device *device;
|
2010-01-07 06:07:17 +07:00
|
|
|
struct mac_device_info *hw;
|
2018-06-15 22:17:27 +07:00
|
|
|
int (*hwif_quirks)(struct stmmac_priv *priv);
|
2018-05-24 21:09:07 +07:00
|
|
|
struct mutex lock;
|
2009-10-15 05:13:45 +07:00
|
|
|
|
2017-04-06 15:49:09 +07:00
|
|
|
/* RX Queue */
|
|
|
|
struct stmmac_rx_queue rx_queue[MTL_MAX_RX_QUEUES];
|
|
|
|
|
2017-04-06 15:49:10 +07:00
|
|
|
/* TX Queue */
|
|
|
|
struct stmmac_tx_queue tx_queue[MTL_MAX_TX_QUEUES];
|
|
|
|
|
2018-09-17 15:22:56 +07:00
|
|
|
/* Generic channel for NAPI */
|
|
|
|
struct stmmac_channel channel[STMMAC_CH_MAX];
|
|
|
|
|
2009-10-15 05:13:45 +07:00
|
|
|
int speed;
|
|
|
|
unsigned int flow_ctrl;
|
|
|
|
unsigned int pause;
|
|
|
|
struct mii_bus *mii;
|
2011-07-20 07:05:23 +07:00
|
|
|
int mii_irq[PHY_MAX_ADDR];
|
2009-10-15 05:13:45 +07:00
|
|
|
|
2019-06-11 22:18:46 +07:00
|
|
|
struct phylink_config phylink_config;
|
|
|
|
struct phylink *phylink;
|
|
|
|
|
2013-04-08 09:10:02 +07:00
|
|
|
struct stmmac_extra_stats xstats ____cacheline_aligned_in_smp;
|
2018-03-29 16:40:19 +07:00
|
|
|
struct stmmac_safety_stats sstats;
|
2010-11-24 09:37:58 +07:00
|
|
|
struct plat_stmmacenet_data *plat;
|
2011-09-02 04:51:41 +07:00
|
|
|
struct dma_features dma_cap;
|
2013-04-08 09:10:02 +07:00
|
|
|
struct stmmac_counters mmc;
|
2011-11-17 04:58:00 +07:00
|
|
|
int hw_cap_support;
|
2013-04-08 09:10:02 +07:00
|
|
|
int synopsys_id;
|
|
|
|
u32 msg_enable;
|
|
|
|
int wolopts;
|
|
|
|
int wol_irq;
|
2012-04-04 11:33:27 +07:00
|
|
|
int clk_csr;
|
2012-06-28 04:14:37 +07:00
|
|
|
struct timer_list eee_ctrl_timer;
|
|
|
|
int lpi_irq;
|
|
|
|
int eee_enabled;
|
|
|
|
int eee_active;
|
|
|
|
int tx_lpi_timer;
|
2013-03-26 11:43:05 +07:00
|
|
|
unsigned int mode;
|
2018-04-23 15:05:15 +07:00
|
|
|
unsigned int chain_mode;
|
2013-03-26 11:43:06 +07:00
|
|
|
int extend_desc;
|
2019-01-20 23:05:15 +07:00
|
|
|
struct hwtstamp_config tstamp_config;
|
2013-03-26 11:43:11 +07:00
|
|
|
struct ptp_clock *ptp_clock;
|
|
|
|
struct ptp_clock_info ptp_clock_ops;
|
2013-04-08 09:10:02 +07:00
|
|
|
unsigned int default_addend;
|
2018-06-01 00:01:27 +07:00
|
|
|
u32 sub_second_inc;
|
|
|
|
u32 systime_flags;
|
2013-04-08 09:10:02 +07:00
|
|
|
u32 adv_ts;
|
|
|
|
int use_riwt;
|
2014-01-16 17:53:00 +07:00
|
|
|
int irq_wake;
|
2013-03-26 11:43:11 +07:00
|
|
|
spinlock_t ptp_lock;
|
2016-04-01 16:37:32 +07:00
|
|
|
void __iomem *mmcaddr;
|
2016-11-14 15:27:29 +07:00
|
|
|
void __iomem *ptpaddr;
|
2019-08-07 15:03:14 +07:00
|
|
|
unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
|
2015-05-23 09:03:29 +07:00
|
|
|
|
|
|
|
#ifdef CONFIG_DEBUG_FS
|
|
|
|
struct dentry *dbgfs_dir;
|
|
|
|
#endif
|
2018-03-29 16:40:18 +07:00
|
|
|
|
|
|
|
unsigned long state;
|
|
|
|
struct workqueue_struct *wq;
|
|
|
|
struct work_struct service_task;
|
2018-05-04 16:01:38 +07:00
|
|
|
|
|
|
|
/* TC Handling */
|
|
|
|
unsigned int tc_entries_max;
|
|
|
|
unsigned int tc_off_max;
|
|
|
|
struct stmmac_tc_entry *tc_entries;
|
2018-06-01 00:01:27 +07:00
|
|
|
|
|
|
|
/* Pulse Per Second output */
|
|
|
|
struct stmmac_pps_cfg pps[STMMAC_PPS_MAX];
|
2019-08-07 15:03:12 +07:00
|
|
|
|
|
|
|
/* Receive Side Scaling */
|
|
|
|
struct stmmac_rss rss;
|
2018-03-29 16:40:18 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
enum stmmac_state {
|
|
|
|
STMMAC_DOWN,
|
|
|
|
STMMAC_RESET_REQUESTED,
|
|
|
|
STMMAC_RESETING,
|
|
|
|
STMMAC_SERVICE_SCHED,
|
2009-10-15 05:13:45 +07:00
|
|
|
};
|
|
|
|
|
2013-09-24 01:37:59 +07:00
|
|
|
int stmmac_mdio_unregister(struct net_device *ndev);
|
|
|
|
int stmmac_mdio_register(struct net_device *ndev);
|
2014-01-16 17:52:27 +07:00
|
|
|
int stmmac_mdio_reset(struct mii_bus *mii);
|
2013-09-24 01:37:59 +07:00
|
|
|
void stmmac_set_ethtool_ops(struct net_device *netdev);
|
2014-11-05 16:45:32 +07:00
|
|
|
|
2016-10-19 14:06:41 +07:00
|
|
|
void stmmac_ptp_register(struct stmmac_priv *priv);
|
2013-09-24 01:37:59 +07:00
|
|
|
void stmmac_ptp_unregister(struct stmmac_priv *priv);
|
2016-05-02 03:58:19 +07:00
|
|
|
int stmmac_resume(struct device *dev);
|
|
|
|
int stmmac_suspend(struct device *dev);
|
|
|
|
int stmmac_dvr_remove(struct device *dev);
|
2015-05-21 01:03:08 +07:00
|
|
|
int stmmac_dvr_probe(struct device *device,
|
|
|
|
struct plat_stmmacenet_data *plat_dat,
|
|
|
|
struct stmmac_resources *res);
|
2012-06-28 04:14:37 +07:00
|
|
|
void stmmac_disable_eee_mode(struct stmmac_priv *priv);
|
|
|
|
bool stmmac_eee_init(struct stmmac_priv *priv);
|
2012-04-04 11:33:25 +07:00
|
|
|
|
2019-05-24 15:20:19 +07:00
|
|
|
#if IS_ENABLED(CONFIG_STMMAC_SELFTESTS)
|
|
|
|
void stmmac_selftest_run(struct net_device *dev,
|
|
|
|
struct ethtool_test *etest, u64 *buf);
|
|
|
|
void stmmac_selftest_get_strings(struct stmmac_priv *priv, u8 *data);
|
|
|
|
int stmmac_selftest_get_count(struct stmmac_priv *priv);
|
|
|
|
#else
|
|
|
|
static inline void stmmac_selftest_run(struct net_device *dev,
|
|
|
|
struct ethtool_test *etest, u64 *buf)
|
|
|
|
{
|
|
|
|
/* Not enabled */
|
|
|
|
}
|
|
|
|
static inline void stmmac_selftest_get_strings(struct stmmac_priv *priv,
|
|
|
|
u8 *data)
|
|
|
|
{
|
|
|
|
/* Not enabled */
|
|
|
|
}
|
|
|
|
static inline int stmmac_selftest_get_count(struct stmmac_priv *priv)
|
|
|
|
{
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_STMMAC_SELFTESTS */
|
|
|
|
|
2012-08-23 04:28:18 +07:00
|
|
|
#endif /* __STMMAC_H__ */
|