stmmac: initial support to manage pcs modes
[firefly-linux-kernel-4.4.55.git] / drivers / net / ethernet / stmicro / stmmac / stmmac.h
1 /*******************************************************************************
2   Copyright (C) 2007-2009  STMicroelectronics Ltd
3
4   This program is free software; you can redistribute it and/or modify it
5   under the terms and conditions of the GNU General Public License,
6   version 2, as published by the Free Software Foundation.
7
8   This program is distributed in the hope it will be useful, but WITHOUT
9   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
11   more details.
12
13   You should have received a copy of the GNU General Public License along with
14   this program; if not, write to the Free Software Foundation, Inc.,
15   51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
16
17   The full GNU General Public License is included in this distribution in
18   the file called "COPYING".
19
20   Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
21 *******************************************************************************/
22
23 #ifndef __STMMAC_H__
24 #define __STMMAC_H__
25
26 #define STMMAC_RESOURCE_NAME   "stmmaceth"
27 #define DRV_MODULE_VERSION      "Nov_2012"
28
29 #include <linux/clk.h>
30 #include <linux/stmmac.h>
31 #include <linux/phy.h>
32 #include <linux/pci.h>
33 #include "common.h"
34
35 struct stmmac_priv {
36         /* Frequently used values are kept adjacent for cache effect */
37         struct dma_desc *dma_tx ____cacheline_aligned;  /* Basic TX desc */
38         struct dma_extended_desc *dma_etx;      /* Extended TX descriptor */
39         dma_addr_t dma_tx_phy;
40         struct sk_buff **tx_skbuff;
41         unsigned int cur_tx;
42         unsigned int dirty_tx;
43         unsigned int dma_tx_size;
44         int tx_coalesce;
45
46         struct dma_desc *dma_rx;                /* Basic RX descriptor */
47         struct dma_extended_desc *dma_erx;      /* Extended RX descriptor */
48         unsigned int cur_rx;
49         unsigned int dirty_rx;
50         struct sk_buff **rx_skbuff;
51         dma_addr_t *rx_skbuff_dma;
52
53         struct net_device *dev;
54         dma_addr_t dma_rx_phy;
55         unsigned int dma_rx_size;
56         unsigned int dma_buf_sz;
57         struct device *device;
58         struct mac_device_info *hw;
59         void __iomem *ioaddr;
60
61         struct stmmac_extra_stats xstats;
62         struct napi_struct napi;
63         int no_csum_insertion;
64
65         struct phy_device *phydev;
66         int oldlink;
67         int speed;
68         int oldduplex;
69         unsigned int flow_ctrl;
70         unsigned int pause;
71         struct mii_bus *mii;
72         int mii_irq[PHY_MAX_ADDR];
73
74         u32 msg_enable;
75         spinlock_t lock;
76         spinlock_t tx_lock;
77         int wolopts;
78         int wol_irq;
79         struct plat_stmmacenet_data *plat;
80         struct stmmac_counters mmc;
81         struct dma_features dma_cap;
82         int hw_cap_support;
83         struct clk *stmmac_clk;
84         int clk_csr;
85         int synopsys_id;
86         struct timer_list eee_ctrl_timer;
87         bool tx_path_in_lpi_mode;
88         int lpi_irq;
89         int eee_enabled;
90         int eee_active;
91         int tx_lpi_timer;
92         struct timer_list txtimer;
93         u32 tx_count_frames;
94         u32 tx_coal_frames;
95         u32 tx_coal_timer;
96         int use_riwt;
97         u32 rx_riwt;
98         unsigned int mode;
99         int extend_desc;
100         int pcs;
101 };
102
103 extern int phyaddr;
104
105 extern int stmmac_mdio_unregister(struct net_device *ndev);
106 extern int stmmac_mdio_register(struct net_device *ndev);
107 extern void stmmac_set_ethtool_ops(struct net_device *netdev);
108 extern const struct stmmac_desc_ops enh_desc_ops;
109 extern const struct stmmac_desc_ops ndesc_ops;
110 int stmmac_freeze(struct net_device *ndev);
111 int stmmac_restore(struct net_device *ndev);
112 int stmmac_resume(struct net_device *ndev);
113 int stmmac_suspend(struct net_device *ndev);
114 int stmmac_dvr_remove(struct net_device *ndev);
115 struct stmmac_priv *stmmac_dvr_probe(struct device *device,
116                                      struct plat_stmmacenet_data *plat_dat,
117                                      void __iomem *addr);
118 void stmmac_disable_eee_mode(struct stmmac_priv *priv);
119 bool stmmac_eee_init(struct stmmac_priv *priv);
120
121 #ifdef CONFIG_STMMAC_PLATFORM
122 extern struct platform_driver stmmac_pltfr_driver;
123 static inline int stmmac_register_platform(void)
124 {
125         int err;
126
127         err = platform_driver_register(&stmmac_pltfr_driver);
128         if (err)
129                 pr_err("stmmac: failed to register the platform driver\n");
130
131         return err;
132 }
133 static inline void stmmac_unregister_platform(void)
134 {
135         platform_driver_unregister(&stmmac_pltfr_driver);
136 }
137 #else
138 static inline int stmmac_register_platform(void)
139 {
140         pr_debug("stmmac: do not register the platf driver\n");
141
142         return 0;
143 }
144 static inline void stmmac_unregister_platform(void)
145 {
146 }
147 #endif /* CONFIG_STMMAC_PLATFORM */
148
149 #ifdef CONFIG_STMMAC_PCI
150 extern struct pci_driver stmmac_pci_driver;
151 static inline int stmmac_register_pci(void)
152 {
153         int err;
154
155         err = pci_register_driver(&stmmac_pci_driver);
156         if (err)
157                 pr_err("stmmac: failed to register the PCI driver\n");
158
159         return err;
160 }
161 static inline void stmmac_unregister_pci(void)
162 {
163         pci_unregister_driver(&stmmac_pci_driver);
164 }
165 #else
166 static inline int stmmac_register_pci(void)
167 {
168         pr_debug("stmmac: do not register the PCI driver\n");
169
170         return 0;
171 }
172 static inline void stmmac_unregister_pci(void)
173 {
174 }
175 #endif /* CONFIG_STMMAC_PCI */
176
177 #endif /* __STMMAC_H__ */