blob: e25093510b0cd462af521f45aa5b3f43c98c0213 [file] [log] [blame]
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +00001/*******************************************************************************
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#include <linux/io.h>
24#include "common.h"
25#include "dwmac_dma.h"
26
27#undef DWMAC_DMA_DEBUG
28#ifdef DWMAC_DMA_DEBUG
Giuseppe CAVALLARObded18c2011-04-10 23:16:44 +000029#define DWMAC_LIB_DBG(fmt, args...) printk(fmt, ## args)
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +000030#else
Giuseppe CAVALLARObded18c2011-04-10 23:16:44 +000031#define DWMAC_LIB_DBG(fmt, args...) do { } while (0)
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +000032#endif
33
34/* CSR1 enables the transmit DMA to check for new descriptor */
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +000035void dwmac_enable_dma_transmission(void __iomem *ioaddr)
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +000036{
37 writel(1, ioaddr + DMA_XMT_POLL_DEMAND);
38}
39
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +000040void dwmac_enable_dma_irq(void __iomem *ioaddr)
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +000041{
42 writel(DMA_INTR_DEFAULT_MASK, ioaddr + DMA_INTR_ENA);
43}
44
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +000045void dwmac_disable_dma_irq(void __iomem *ioaddr)
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +000046{
47 writel(0, ioaddr + DMA_INTR_ENA);
48}
49
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +000050void dwmac_dma_start_tx(void __iomem *ioaddr)
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +000051{
52 u32 value = readl(ioaddr + DMA_CONTROL);
53 value |= DMA_CONTROL_ST;
54 writel(value, ioaddr + DMA_CONTROL);
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +000055}
56
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +000057void dwmac_dma_stop_tx(void __iomem *ioaddr)
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +000058{
59 u32 value = readl(ioaddr + DMA_CONTROL);
60 value &= ~DMA_CONTROL_ST;
61 writel(value, ioaddr + DMA_CONTROL);
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +000062}
63
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +000064void dwmac_dma_start_rx(void __iomem *ioaddr)
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +000065{
66 u32 value = readl(ioaddr + DMA_CONTROL);
67 value |= DMA_CONTROL_SR;
68 writel(value, ioaddr + DMA_CONTROL);
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +000069}
70
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +000071void dwmac_dma_stop_rx(void __iomem *ioaddr)
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +000072{
73 u32 value = readl(ioaddr + DMA_CONTROL);
74 value &= ~DMA_CONTROL_SR;
75 writel(value, ioaddr + DMA_CONTROL);
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +000076}
77
78#ifdef DWMAC_DMA_DEBUG
79static void show_tx_process_state(unsigned int status)
80{
81 unsigned int state;
82 state = (status & DMA_STATUS_TS_MASK) >> DMA_STATUS_TS_SHIFT;
83
84 switch (state) {
85 case 0:
86 pr_info("- TX (Stopped): Reset or Stop command\n");
87 break;
88 case 1:
89 pr_info("- TX (Running):Fetching the Tx desc\n");
90 break;
91 case 2:
92 pr_info("- TX (Running): Waiting for end of tx\n");
93 break;
94 case 3:
95 pr_info("- TX (Running): Reading the data "
96 "and queuing the data into the Tx buf\n");
97 break;
98 case 6:
99 pr_info("- TX (Suspended): Tx Buff Underflow "
100 "or an unavailable Transmit descriptor\n");
101 break;
102 case 7:
103 pr_info("- TX (Running): Closing Tx descriptor\n");
104 break;
105 default:
106 break;
107 }
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000108}
109
110static void show_rx_process_state(unsigned int status)
111{
112 unsigned int state;
113 state = (status & DMA_STATUS_RS_MASK) >> DMA_STATUS_RS_SHIFT;
114
115 switch (state) {
116 case 0:
117 pr_info("- RX (Stopped): Reset or Stop command\n");
118 break;
119 case 1:
120 pr_info("- RX (Running): Fetching the Rx desc\n");
121 break;
122 case 2:
123 pr_info("- RX (Running):Checking for end of pkt\n");
124 break;
125 case 3:
126 pr_info("- RX (Running): Waiting for Rx pkt\n");
127 break;
128 case 4:
129 pr_info("- RX (Suspended): Unavailable Rx buf\n");
130 break;
131 case 5:
132 pr_info("- RX (Running): Closing Rx descriptor\n");
133 break;
134 case 6:
135 pr_info("- RX(Running): Flushing the current frame"
136 " from the Rx buf\n");
137 break;
138 case 7:
139 pr_info("- RX (Running): Queuing the Rx frame"
140 " from the Rx buf into memory\n");
141 break;
142 default:
143 break;
144 }
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000145}
146#endif
147
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +0000148int dwmac_dma_interrupt(void __iomem *ioaddr,
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000149 struct stmmac_extra_stats *x)
150{
151 int ret = 0;
152 /* read the status register (CSR5) */
153 u32 intr_status = readl(ioaddr + DMA_STATUS);
154
Giuseppe CAVALLARObded18c2011-04-10 23:16:44 +0000155 DWMAC_LIB_DBG(KERN_INFO "%s: [CSR5: 0x%08x]\n", __func__, intr_status);
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000156#ifdef DWMAC_DMA_DEBUG
157 /* It displays the DMA process states (CSR5 register) */
158 show_tx_process_state(intr_status);
159 show_rx_process_state(intr_status);
160#endif
161 /* ABNORMAL interrupts */
162 if (unlikely(intr_status & DMA_STATUS_AIS)) {
Giuseppe CAVALLARObded18c2011-04-10 23:16:44 +0000163 DWMAC_LIB_DBG(KERN_INFO "CSR5[15] DMA ABNORMAL IRQ: ");
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000164 if (unlikely(intr_status & DMA_STATUS_UNF)) {
Giuseppe CAVALLARObded18c2011-04-10 23:16:44 +0000165 DWMAC_LIB_DBG(KERN_INFO "transmit underflow\n");
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000166 ret = tx_hard_error_bump_tc;
167 x->tx_undeflow_irq++;
168 }
169 if (unlikely(intr_status & DMA_STATUS_TJT)) {
Giuseppe CAVALLARObded18c2011-04-10 23:16:44 +0000170 DWMAC_LIB_DBG(KERN_INFO "transmit jabber\n");
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000171 x->tx_jabber_irq++;
172 }
173 if (unlikely(intr_status & DMA_STATUS_OVF)) {
Giuseppe CAVALLARObded18c2011-04-10 23:16:44 +0000174 DWMAC_LIB_DBG(KERN_INFO "recv overflow\n");
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000175 x->rx_overflow_irq++;
176 }
177 if (unlikely(intr_status & DMA_STATUS_RU)) {
Giuseppe CAVALLARObded18c2011-04-10 23:16:44 +0000178 DWMAC_LIB_DBG(KERN_INFO "receive buffer unavailable\n");
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000179 x->rx_buf_unav_irq++;
180 }
181 if (unlikely(intr_status & DMA_STATUS_RPS)) {
Giuseppe CAVALLARObded18c2011-04-10 23:16:44 +0000182 DWMAC_LIB_DBG(KERN_INFO "receive process stopped\n");
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000183 x->rx_process_stopped_irq++;
184 }
185 if (unlikely(intr_status & DMA_STATUS_RWT)) {
Giuseppe CAVALLARObded18c2011-04-10 23:16:44 +0000186 DWMAC_LIB_DBG(KERN_INFO "receive watchdog\n");
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000187 x->rx_watchdog_irq++;
188 }
189 if (unlikely(intr_status & DMA_STATUS_ETI)) {
Giuseppe CAVALLARObded18c2011-04-10 23:16:44 +0000190 DWMAC_LIB_DBG(KERN_INFO "transmit early interrupt\n");
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000191 x->tx_early_irq++;
192 }
193 if (unlikely(intr_status & DMA_STATUS_TPS)) {
Giuseppe CAVALLARObded18c2011-04-10 23:16:44 +0000194 DWMAC_LIB_DBG(KERN_INFO "transmit process stopped\n");
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000195 x->tx_process_stopped_irq++;
196 ret = tx_hard_error;
197 }
198 if (unlikely(intr_status & DMA_STATUS_FBI)) {
Giuseppe CAVALLARObded18c2011-04-10 23:16:44 +0000199 DWMAC_LIB_DBG(KERN_INFO "fatal bus error\n");
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000200 x->fatal_bus_error_irq++;
201 ret = tx_hard_error;
202 }
203 }
204 /* TX/RX NORMAL interrupts */
205 if (intr_status & DMA_STATUS_NIS) {
206 x->normal_irq_n++;
207 if (likely((intr_status & DMA_STATUS_RI) ||
208 (intr_status & (DMA_STATUS_TI))))
209 ret = handle_tx_rx;
210 }
211 /* Optional hardware blocks, interrupts should be disabled */
212 if (unlikely(intr_status &
213 (DMA_STATUS_GPI | DMA_STATUS_GMI | DMA_STATUS_GLI)))
214 pr_info("%s: unexpected status %08x\n", __func__, intr_status);
215 /* Clear the interrupt by writing a logic 1 to the CSR5[15-0] */
216 writel((intr_status & 0x1ffff), ioaddr + DMA_STATUS);
217
Giuseppe CAVALLARObded18c2011-04-10 23:16:44 +0000218 DWMAC_LIB_DBG(KERN_INFO "\n\n");
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000219 return ret;
220}
221
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +0000222void dwmac_dma_flush_tx_fifo(void __iomem *ioaddr)
Giuseppe CAVALLARO688911c2010-04-13 20:21:13 +0000223{
224 u32 csr6 = readl(ioaddr + DMA_CONTROL);
225 writel((csr6 | DMA_CONTROL_FTF), ioaddr + DMA_CONTROL);
226
227 do {} while ((readl(ioaddr + DMA_CONTROL) & DMA_CONTROL_FTF));
228}
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000229
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +0000230void stmmac_set_mac_addr(void __iomem *ioaddr, u8 addr[6],
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000231 unsigned int high, unsigned int low)
232{
233 unsigned long data;
234
235 data = (addr[5] << 8) | addr[4];
236 writel(data, ioaddr + high);
237 data = (addr[3] << 24) | (addr[2] << 16) | (addr[1] << 8) | addr[0];
238 writel(data, ioaddr + low);
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000239}
240
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +0000241void stmmac_get_mac_addr(void __iomem *ioaddr, unsigned char *addr,
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000242 unsigned int high, unsigned int low)
243{
244 unsigned int hi_addr, lo_addr;
245
246 /* Read the MAC address from the hardware */
247 hi_addr = readl(ioaddr + high);
248 lo_addr = readl(ioaddr + low);
249
250 /* Extract the MAC address from the high and low words */
251 addr[0] = lo_addr & 0xff;
252 addr[1] = (lo_addr >> 8) & 0xff;
253 addr[2] = (lo_addr >> 16) & 0xff;
254 addr[3] = (lo_addr >> 24) & 0xff;
255 addr[4] = hi_addr & 0xff;
256 addr[5] = (hi_addr >> 8) & 0xff;
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +0000257}
258