1 /*******************************************************************************
2 This is the driver for the GMAC on-chip Ethernet controller for ST SoCs.
3 DWC Ether MAC 10/100/1000 Universal version 3.41a has been used for
6 This only implements the mac core functions for this chip.
8 Copyright (C) 2007-2009 STMicroelectronics Ltd
10 This program is free software; you can redistribute it and/or modify it
11 under the terms and conditions of the GNU General Public License,
12 version 2, as published by the Free Software Foundation.
14 This program is distributed in the hope it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 You should have received a copy of the GNU General Public License along with
20 this program; if not, write to the Free Software Foundation, Inc.,
21 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
23 The full GNU General Public License is included in this distribution in
24 the file called "COPYING".
26 Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
27 *******************************************************************************/
29 #include <linux/crc32.h>
30 #include <linux/slab.h>
31 #include <linux/ethtool.h>
33 #include "dwmac1000.h"
35 static void dwmac1000_core_init(void __iomem
*ioaddr
, int mtu
)
37 u32 value
= readl(ioaddr
+ GMAC_CONTROL
);
38 value
|= GMAC_CORE_INIT
;
40 value
|= GMAC_CONTROL_2K
;
42 value
|= GMAC_CONTROL_JE
;
44 writel(value
, ioaddr
+ GMAC_CONTROL
);
46 /* Mask GMAC interrupts */
47 writel(0x207, ioaddr
+ GMAC_INT_MASK
);
49 #ifdef STMMAC_VLAN_TAG_USED
50 /* Tag detection without filtering */
51 writel(0x0, ioaddr
+ GMAC_VLAN_TAG
);
55 static int dwmac1000_rx_ipc_enable(void __iomem
*ioaddr
)
57 u32 value
= readl(ioaddr
+ GMAC_CONTROL
);
59 value
|= GMAC_CONTROL_IPC
;
60 writel(value
, ioaddr
+ GMAC_CONTROL
);
62 value
= readl(ioaddr
+ GMAC_CONTROL
);
64 return !!(value
& GMAC_CONTROL_IPC
);
67 static void dwmac1000_dump_regs(void __iomem
*ioaddr
)
70 pr_info("\tDWMAC1000 regs (base addr = 0x%p)\n", ioaddr
);
72 for (i
= 0; i
< 55; i
++) {
74 pr_info("\tReg No. %d (offset 0x%x): 0x%08x\n", i
,
75 offset
, readl(ioaddr
+ offset
));
79 static void dwmac1000_set_umac_addr(void __iomem
*ioaddr
, unsigned char *addr
,
82 stmmac_set_mac_addr(ioaddr
, addr
, GMAC_ADDR_HIGH(reg_n
),
83 GMAC_ADDR_LOW(reg_n
));
86 static void dwmac1000_get_umac_addr(void __iomem
*ioaddr
, unsigned char *addr
,
89 stmmac_get_mac_addr(ioaddr
, addr
, GMAC_ADDR_HIGH(reg_n
),
90 GMAC_ADDR_LOW(reg_n
));
93 static void dwmac1000_set_filter(struct net_device
*dev
, int id
)
95 void __iomem
*ioaddr
= (void __iomem
*)dev
->base_addr
;
96 unsigned int value
= 0;
97 unsigned int perfect_addr_number
;
99 pr_debug("%s: # mcasts %d, # unicast %d\n", __func__
,
100 netdev_mc_count(dev
), netdev_uc_count(dev
));
102 if (dev
->flags
& IFF_PROMISC
)
103 value
= GMAC_FRAME_FILTER_PR
;
104 else if ((netdev_mc_count(dev
) > HASH_TABLE_SIZE
)
105 || (dev
->flags
& IFF_ALLMULTI
)) {
106 value
= GMAC_FRAME_FILTER_PM
; /* pass all multi */
107 writel(0xffffffff, ioaddr
+ GMAC_HASH_HIGH
);
108 writel(0xffffffff, ioaddr
+ GMAC_HASH_LOW
);
109 } else if (!netdev_mc_empty(dev
)) {
111 struct netdev_hw_addr
*ha
;
113 /* Hash filter for multicast */
114 value
= GMAC_FRAME_FILTER_HMC
;
116 memset(mc_filter
, 0, sizeof(mc_filter
));
117 netdev_for_each_mc_addr(ha
, dev
) {
118 /* The upper 6 bits of the calculated CRC are used to
119 * index the contens of the hash table
121 int bit_nr
= bitrev32(~crc32_le(~0, ha
->addr
, 6)) >> 26;
122 /* The most significant bit determines the register to
123 * use (H/L) while the other 5 bits determine the bit
124 * within the register.
126 mc_filter
[bit_nr
>> 5] |= 1 << (bit_nr
& 31);
128 writel(mc_filter
[0], ioaddr
+ GMAC_HASH_LOW
);
129 writel(mc_filter
[1], ioaddr
+ GMAC_HASH_HIGH
);
132 /* Extra 16 regs are available in cores newer than the 3.40. */
133 if (id
> DWMAC_CORE_3_40
)
134 perfect_addr_number
= GMAC_MAX_PERFECT_ADDRESSES
;
136 perfect_addr_number
= GMAC_MAX_PERFECT_ADDRESSES
/ 2;
138 /* Handle multiple unicast addresses (perfect filtering) */
139 if (netdev_uc_count(dev
) > perfect_addr_number
)
140 /* Switch to promiscuous mode if more than 16 addrs
143 value
|= GMAC_FRAME_FILTER_PR
;
146 struct netdev_hw_addr
*ha
;
148 netdev_for_each_uc_addr(ha
, dev
) {
149 dwmac1000_set_umac_addr(ioaddr
, ha
->addr
, reg
);
154 #ifdef FRAME_FILTER_DEBUG
155 /* Enable Receive all mode (to debug filtering_fail errors) */
156 value
|= GMAC_FRAME_FILTER_RA
;
158 writel(value
, ioaddr
+ GMAC_FRAME_FILTER
);
160 pr_debug("\tFilter: 0x%08x\n\tHash: HI 0x%08x, LO 0x%08x\n",
161 readl(ioaddr
+ GMAC_FRAME_FILTER
),
162 readl(ioaddr
+ GMAC_HASH_HIGH
), readl(ioaddr
+ GMAC_HASH_LOW
));
165 static void dwmac1000_flow_ctrl(void __iomem
*ioaddr
, unsigned int duplex
,
166 unsigned int fc
, unsigned int pause_time
)
168 unsigned int flow
= 0;
170 pr_debug("GMAC Flow-Control:\n");
172 pr_debug("\tReceive Flow-Control ON\n");
173 flow
|= GMAC_FLOW_CTRL_RFE
;
176 pr_debug("\tTransmit Flow-Control ON\n");
177 flow
|= GMAC_FLOW_CTRL_TFE
;
181 pr_debug("\tduplex mode: PAUSE %d\n", pause_time
);
182 flow
|= (pause_time
<< GMAC_FLOW_CTRL_PT_SHIFT
);
185 writel(flow
, ioaddr
+ GMAC_FLOW_CTRL
);
188 static void dwmac1000_pmt(void __iomem
*ioaddr
, unsigned long mode
)
190 unsigned int pmt
= 0;
192 if (mode
& WAKE_MAGIC
) {
193 pr_debug("GMAC: WOL Magic frame\n");
194 pmt
|= power_down
| magic_pkt_en
;
196 if (mode
& WAKE_UCAST
) {
197 pr_debug("GMAC: WOL on global unicast\n");
198 pmt
|= global_unicast
;
201 writel(pmt
, ioaddr
+ GMAC_PMT
);
204 static int dwmac1000_irq_status(void __iomem
*ioaddr
,
205 struct stmmac_extra_stats
*x
)
207 u32 intr_status
= readl(ioaddr
+ GMAC_INT_STATUS
);
210 /* Not used events (e.g. MMC interrupts) are not handled. */
211 if ((intr_status
& mmc_tx_irq
))
213 if (unlikely(intr_status
& mmc_rx_irq
))
215 if (unlikely(intr_status
& mmc_rx_csum_offload_irq
))
216 x
->mmc_rx_csum_offload_irq_n
++;
217 if (unlikely(intr_status
& pmt_irq
)) {
218 /* clear the PMT bits 5 and 6 by reading the PMT status reg */
219 readl(ioaddr
+ GMAC_PMT
);
220 x
->irq_receive_pmt_irq_n
++;
222 /* MAC trx/rx EEE LPI entry/exit interrupts */
223 if (intr_status
& lpiis_irq
) {
224 /* Clean LPI interrupt by reading the Reg 12 */
225 ret
= readl(ioaddr
+ LPI_CTRL_STATUS
);
227 if (ret
& LPI_CTRL_STATUS_TLPIEN
)
228 x
->irq_tx_path_in_lpi_mode_n
++;
229 if (ret
& LPI_CTRL_STATUS_TLPIEX
)
230 x
->irq_tx_path_exit_lpi_mode_n
++;
231 if (ret
& LPI_CTRL_STATUS_RLPIEN
)
232 x
->irq_rx_path_in_lpi_mode_n
++;
233 if (ret
& LPI_CTRL_STATUS_RLPIEX
)
234 x
->irq_rx_path_exit_lpi_mode_n
++;
237 if ((intr_status
& pcs_ane_irq
) || (intr_status
& pcs_link_irq
)) {
238 readl(ioaddr
+ GMAC_AN_STATUS
);
241 if (intr_status
& rgmii_irq
) {
242 u32 status
= readl(ioaddr
+ GMAC_S_R_GMII
);
245 /* Save and dump the link status. */
246 if (status
& GMAC_S_R_GMII_LINK
) {
247 int speed_value
= (status
& GMAC_S_R_GMII_SPEED
) >>
248 GMAC_S_R_GMII_SPEED_SHIFT
;
249 x
->pcs_duplex
= (status
& GMAC_S_R_GMII_MODE
);
251 if (speed_value
== GMAC_S_R_GMII_SPEED_125
)
252 x
->pcs_speed
= SPEED_1000
;
253 else if (speed_value
== GMAC_S_R_GMII_SPEED_25
)
254 x
->pcs_speed
= SPEED_100
;
256 x
->pcs_speed
= SPEED_10
;
259 pr_debug("%s: Link is Up - %d/%s\n", __func__
,
261 x
->pcs_duplex
? "Full" : "Half");
264 pr_debug("%s: Link is Down\n", __func__
);
271 static void dwmac1000_set_eee_mode(void __iomem
*ioaddr
)
275 /* Enable the link status receive on RGMII, SGMII ore SMII
276 * receive path and instruct the transmit to enter in LPI
279 value
= readl(ioaddr
+ LPI_CTRL_STATUS
);
280 value
|= LPI_CTRL_STATUS_LPIEN
| LPI_CTRL_STATUS_LPITXA
;
281 writel(value
, ioaddr
+ LPI_CTRL_STATUS
);
284 static void dwmac1000_reset_eee_mode(void __iomem
*ioaddr
)
288 value
= readl(ioaddr
+ LPI_CTRL_STATUS
);
289 value
&= ~(LPI_CTRL_STATUS_LPIEN
| LPI_CTRL_STATUS_LPITXA
);
290 writel(value
, ioaddr
+ LPI_CTRL_STATUS
);
293 static void dwmac1000_set_eee_pls(void __iomem
*ioaddr
, int link
)
297 value
= readl(ioaddr
+ LPI_CTRL_STATUS
);
300 value
|= LPI_CTRL_STATUS_PLS
;
302 value
&= ~LPI_CTRL_STATUS_PLS
;
304 writel(value
, ioaddr
+ LPI_CTRL_STATUS
);
307 static void dwmac1000_set_eee_timer(void __iomem
*ioaddr
, int ls
, int tw
)
309 int value
= ((tw
& 0xffff)) | ((ls
& 0x7ff) << 16);
311 /* Program the timers in the LPI timer control register:
312 * LS: minimum time (ms) for which the link
313 * status from PHY should be ok before transmitting
315 * TW: minimum time (us) for which the core waits
316 * after it has stopped transmitting the LPI pattern.
318 writel(value
, ioaddr
+ LPI_TIMER_CTRL
);
321 static void dwmac1000_ctrl_ane(void __iomem
*ioaddr
, bool restart
)
325 value
= readl(ioaddr
+ GMAC_AN_CTRL
);
326 /* auto negotiation enable and External Loopback enable */
327 value
= GMAC_AN_CTRL_ANE
| GMAC_AN_CTRL_ELE
;
330 value
|= GMAC_AN_CTRL_RAN
;
332 writel(value
, ioaddr
+ GMAC_AN_CTRL
);
335 static void dwmac1000_get_adv(void __iomem
*ioaddr
, struct rgmii_adv
*adv
)
337 u32 value
= readl(ioaddr
+ GMAC_ANE_ADV
);
339 if (value
& GMAC_ANE_FD
)
340 adv
->duplex
= DUPLEX_FULL
;
341 if (value
& GMAC_ANE_HD
)
342 adv
->duplex
|= DUPLEX_HALF
;
344 adv
->pause
= (value
& GMAC_ANE_PSE
) >> GMAC_ANE_PSE_SHIFT
;
346 value
= readl(ioaddr
+ GMAC_ANE_LPA
);
348 if (value
& GMAC_ANE_FD
)
349 adv
->lp_duplex
= DUPLEX_FULL
;
350 if (value
& GMAC_ANE_HD
)
351 adv
->lp_duplex
= DUPLEX_HALF
;
353 adv
->lp_pause
= (value
& GMAC_ANE_PSE
) >> GMAC_ANE_PSE_SHIFT
;
356 static const struct stmmac_ops dwmac1000_ops
= {
357 .core_init
= dwmac1000_core_init
,
358 .rx_ipc
= dwmac1000_rx_ipc_enable
,
359 .dump_regs
= dwmac1000_dump_regs
,
360 .host_irq_status
= dwmac1000_irq_status
,
361 .set_filter
= dwmac1000_set_filter
,
362 .flow_ctrl
= dwmac1000_flow_ctrl
,
363 .pmt
= dwmac1000_pmt
,
364 .set_umac_addr
= dwmac1000_set_umac_addr
,
365 .get_umac_addr
= dwmac1000_get_umac_addr
,
366 .set_eee_mode
= dwmac1000_set_eee_mode
,
367 .reset_eee_mode
= dwmac1000_reset_eee_mode
,
368 .set_eee_timer
= dwmac1000_set_eee_timer
,
369 .set_eee_pls
= dwmac1000_set_eee_pls
,
370 .ctrl_ane
= dwmac1000_ctrl_ane
,
371 .get_adv
= dwmac1000_get_adv
,
374 struct mac_device_info
*dwmac1000_setup(void __iomem
*ioaddr
)
376 struct mac_device_info
*mac
;
377 u32 hwid
= readl(ioaddr
+ GMAC_VERSION
);
379 mac
= kzalloc(sizeof(const struct mac_device_info
), GFP_KERNEL
);
383 mac
->mac
= &dwmac1000_ops
;
384 mac
->dma
= &dwmac1000_dma_ops
;
386 mac
->link
.port
= GMAC_CONTROL_PS
;
387 mac
->link
.duplex
= GMAC_CONTROL_DM
;
388 mac
->link
.speed
= GMAC_CONTROL_FES
;
389 mac
->mii
.addr
= GMAC_MII_ADDR
;
390 mac
->mii
.data
= GMAC_MII_DATA
;
391 mac
->synopsys_uid
= hwid
;