2009-10-15 05:13:45 +07:00
|
|
|
/*******************************************************************************
|
|
|
|
Copyright (C) 2007-2009 STMicroelectronics Ltd
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
|
|
under the terms and conditions of the GNU General Public License,
|
|
|
|
version 2, as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
more details.
|
|
|
|
|
|
|
|
The full GNU General Public License is included in this distribution in
|
|
|
|
the file called "COPYING".
|
|
|
|
|
|
|
|
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>
|
2010-01-07 06:07:14 +07:00
|
|
|
#include <linux/stmmac.h>
|
2011-10-18 07:01:24 +07:00
|
|
|
#include <linux/phy.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>
|
2014-01-17 20:24:41 +07:00
|
|
|
#include <linux/reset.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 {
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2017-04-06 15:49:09 +07:00
|
|
|
struct stmmac_rx_queue {
|
|
|
|
u32 queue_index;
|
|
|
|
struct stmmac_priv *priv_data;
|
|
|
|
struct dma_extended_desc *dma_erx;
|
|
|
|
struct dma_desc *dma_rx ____cacheline_aligned_in_smp;
|
|
|
|
struct sk_buff **rx_skbuff;
|
|
|
|
dma_addr_t *rx_skbuff_dma;
|
|
|
|
unsigned int cur_rx;
|
|
|
|
unsigned int dirty_rx;
|
|
|
|
u32 rx_zeroc_thresh;
|
|
|
|
dma_addr_t dma_rx_phy;
|
|
|
|
u32 rx_tail_addr;
|
2017-04-06 15:49:11 +07:00
|
|
|
struct napi_struct napi ____cacheline_aligned_in_smp;
|
2017-04-06 15:49:09 +07:00
|
|
|
};
|
|
|
|
|
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_count_frames;
|
|
|
|
u32 tx_coal_frames;
|
|
|
|
u32 tx_coal_timer;
|
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;
|
|
|
|
struct timer_list txtimer;
|
2016-04-01 16:37:34 +07:00
|
|
|
bool tso;
|
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;
|
2013-04-08 09:10:02 +07:00
|
|
|
spinlock_t 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];
|
|
|
|
|
2017-05-24 14:16:46 +07:00
|
|
|
bool oldlink;
|
2009-10-15 05:13:45 +07:00
|
|
|
int speed;
|
|
|
|
int oldduplex;
|
|
|
|
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
|
|
|
|
2013-04-08 09:10:02 +07:00
|
|
|
struct stmmac_extra_stats xstats ____cacheline_aligned_in_smp;
|
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;
|
2013-03-26 11:43:06 +07:00
|
|
|
int extend_desc;
|
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;
|
|
|
|
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;
|
2016-04-01 16:37:34 +07:00
|
|
|
u32 mss;
|
2015-05-23 09:03:29 +07:00
|
|
|
|
|
|
|
#ifdef CONFIG_DEBUG_FS
|
|
|
|
struct dentry *dbgfs_dir;
|
|
|
|
struct dentry *dbgfs_rings_status;
|
|
|
|
struct dentry *dbgfs_dma_cap;
|
|
|
|
#endif
|
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
|
|
|
|
2012-08-23 04:28:18 +07:00
|
|
|
#endif /* __STMMAC_H__ */
|