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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
|
|
|
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"
|
2013-03-26 11:43:12 +07:00
|
|
|
#define DRV_MODULE_VERSION "March_2013"
|
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
|
|
|
|
2014-08-27 16:27:00 +07:00
|
|
|
struct stmmac_tx_info {
|
|
|
|
dma_addr_t buf;
|
|
|
|
bool map_as_page;
|
|
|
|
};
|
|
|
|
|
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
|
|
|
struct dma_extended_desc *dma_etx ____cacheline_aligned_in_smp;
|
|
|
|
struct dma_desc *dma_tx;
|
2009-10-15 05:13:45 +07:00
|
|
|
struct sk_buff **tx_skbuff;
|
|
|
|
unsigned int cur_tx;
|
|
|
|
unsigned int dirty_tx;
|
|
|
|
unsigned int dma_tx_size;
|
2013-04-08 09:10:02 +07:00
|
|
|
u32 tx_count_frames;
|
|
|
|
u32 tx_coal_frames;
|
|
|
|
u32 tx_coal_timer;
|
2014-08-27 16:27:00 +07:00
|
|
|
struct stmmac_tx_info *tx_skbuff_dma;
|
2013-04-08 09:10:02 +07:00
|
|
|
dma_addr_t dma_tx_phy;
|
2009-10-15 05:13:45 +07:00
|
|
|
int tx_coalesce;
|
2013-04-08 09:10:02 +07:00
|
|
|
int hwts_tx_en;
|
|
|
|
spinlock_t tx_lock;
|
|
|
|
bool tx_path_in_lpi_mode;
|
|
|
|
struct timer_list txtimer;
|
2009-10-15 05:13:45 +07:00
|
|
|
|
2013-04-08 09:10:02 +07:00
|
|
|
struct dma_desc *dma_rx ____cacheline_aligned_in_smp;
|
|
|
|
struct dma_extended_desc *dma_erx;
|
|
|
|
struct sk_buff **rx_skbuff;
|
2009-10-15 05:13:45 +07:00
|
|
|
unsigned int cur_rx;
|
|
|
|
unsigned int dirty_rx;
|
2013-04-08 09:10:02 +07:00
|
|
|
unsigned int dma_rx_size;
|
|
|
|
unsigned int dma_buf_sz;
|
|
|
|
u32 rx_riwt;
|
|
|
|
int hwts_rx_en;
|
2009-10-15 05:13:45 +07:00
|
|
|
dma_addr_t *rx_skbuff_dma;
|
2013-04-08 09:10:02 +07:00
|
|
|
dma_addr_t dma_rx_phy;
|
2009-10-15 05:13:45 +07:00
|
|
|
|
2013-04-08 09:10:02 +07:00
|
|
|
struct napi_struct napi ____cacheline_aligned_in_smp;
|
|
|
|
|
|
|
|
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
|
|
|
|
2013-04-08 09:10:02 +07:00
|
|
|
struct phy_device *phydev ____cacheline_aligned_in_smp;
|
2009-10-15 05:13:45 +07:00
|
|
|
int oldlink;
|
|
|
|
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:25 +07:00
|
|
|
struct clk *stmmac_clk;
|
2014-01-17 20:24:41 +07:00
|
|
|
struct reset_control *stmmac_rst;
|
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-04-08 09:10:02 +07:00
|
|
|
int pcs;
|
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;
|
2014-08-27 15:37:49 +07:00
|
|
|
struct clk *clk_ptp_ref;
|
|
|
|
unsigned int clk_ptp_rate;
|
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;
|
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);
|
2010-10-13 21:51:25 +07:00
|
|
|
extern const struct stmmac_desc_ops enh_desc_ops;
|
|
|
|
extern const struct stmmac_desc_ops ndesc_ops;
|
2013-03-26 11:43:10 +07:00
|
|
|
extern const struct stmmac_hwtimestamp stmmac_ptp;
|
2013-09-24 01:37:59 +07:00
|
|
|
int stmmac_ptp_register(struct stmmac_priv *priv);
|
|
|
|
void stmmac_ptp_unregister(struct stmmac_priv *priv);
|
2011-12-21 10:58:19 +07:00
|
|
|
int stmmac_resume(struct net_device *ndev);
|
|
|
|
int stmmac_suspend(struct net_device *ndev);
|
|
|
|
int stmmac_dvr_remove(struct net_device *ndev);
|
|
|
|
struct stmmac_priv *stmmac_dvr_probe(struct device *device,
|
2012-02-15 07:10:39 +07:00
|
|
|
struct plat_stmmacenet_data *plat_dat,
|
|
|
|
void __iomem *addr);
|
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-06-08 02:25:07 +07:00
|
|
|
#ifdef CONFIG_STMMAC_PLATFORM
|
2014-09-20 20:29:16 +07:00
|
|
|
extern const struct stmmac_of_data meson6_dwmac_data;
|
2014-01-17 20:24:47 +07:00
|
|
|
extern const struct stmmac_of_data sun7i_gmac_data;
|
2014-10-15 12:30:41 +07:00
|
|
|
extern const struct stmmac_of_data stih4xx_dwmac_data;
|
|
|
|
extern const struct stmmac_of_data stid127_dwmac_data;
|
2014-03-27 10:45:10 +07:00
|
|
|
extern const struct stmmac_of_data socfpga_gmac_data;
|
2012-06-08 02:25:07 +07:00
|
|
|
extern struct platform_driver stmmac_pltfr_driver;
|
2014-11-04 21:49:32 +07:00
|
|
|
|
2012-06-08 02:25:07 +07:00
|
|
|
static inline int stmmac_register_platform(void)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = platform_driver_register(&stmmac_pltfr_driver);
|
|
|
|
if (err)
|
|
|
|
pr_err("stmmac: failed to register the platform driver\n");
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
2013-04-08 09:10:01 +07:00
|
|
|
|
2012-06-08 02:25:07 +07:00
|
|
|
static inline void stmmac_unregister_platform(void)
|
|
|
|
{
|
2012-12-14 08:02:51 +07:00
|
|
|
platform_driver_unregister(&stmmac_pltfr_driver);
|
2012-06-08 02:25:07 +07:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline int stmmac_register_platform(void)
|
|
|
|
{
|
|
|
|
pr_debug("stmmac: do not register the platf driver\n");
|
|
|
|
|
2012-12-14 08:02:51 +07:00
|
|
|
return 0;
|
2012-06-08 02:25:07 +07:00
|
|
|
}
|
2013-04-08 09:10:01 +07:00
|
|
|
|
2012-06-08 02:25:07 +07:00
|
|
|
static inline void stmmac_unregister_platform(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_STMMAC_PLATFORM */
|
|
|
|
|
|
|
|
#ifdef CONFIG_STMMAC_PCI
|
|
|
|
extern struct pci_driver stmmac_pci_driver;
|
|
|
|
static inline int stmmac_register_pci(void)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = pci_register_driver(&stmmac_pci_driver);
|
|
|
|
if (err)
|
|
|
|
pr_err("stmmac: failed to register the PCI driver\n");
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
2013-04-08 09:10:01 +07:00
|
|
|
|
2012-06-08 02:25:07 +07:00
|
|
|
static inline void stmmac_unregister_pci(void)
|
|
|
|
{
|
|
|
|
pci_unregister_driver(&stmmac_pci_driver);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline int stmmac_register_pci(void)
|
|
|
|
{
|
|
|
|
pr_debug("stmmac: do not register the PCI driver\n");
|
|
|
|
|
2012-12-14 08:02:51 +07:00
|
|
|
return 0;
|
2012-06-08 02:25:07 +07:00
|
|
|
}
|
2013-04-08 09:10:01 +07:00
|
|
|
|
2012-06-08 02:25:07 +07:00
|
|
|
static inline void stmmac_unregister_pci(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_STMMAC_PCI */
|
2012-08-23 04:28:18 +07:00
|
|
|
|
|
|
|
#endif /* __STMMAC_H__ */
|