blob: 7d1dce9e7ffc9ddcd6769e08cba179538858f7dd [file] [log] [blame]
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +00001/*******************************************************************************
2 This is the driver for the MAC 10/100 on-chip Ethernet controller
3 currently tested on all the ST boards based on STb7109 and stx7200 SoCs.
4
5 DWC Ether MAC 10/100 Universal version 4.0 has been used for developing
6 this code.
7
Giuseppe CAVALLARO56b106a2010-04-13 20:21:12 +00008 This contains the functions to handle the dma.
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +00009
10 Copyright (C) 2007-2009 STMicroelectronics Ltd
11
12 This program is free software; you can redistribute it and/or modify it
13 under the terms and conditions of the GNU General Public License,
14 version 2, as published by the Free Software Foundation.
15
16 This program is distributed in the hope it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 more details.
20
21 You should have received a copy of the GNU General Public License along with
22 this program; if not, write to the Free Software Foundation, Inc.,
23 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
24
25 The full GNU General Public License is included in this distribution in
26 the file called "COPYING".
27
28 Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
29*******************************************************************************/
30
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +000031#include <asm/io.h>
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +000032#include "dwmac100.h"
33#include "dwmac_dma.h"
34
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +000035static int dwmac100_dma_init(void __iomem *ioaddr, int pbl, int fb, int mb,
36 int burst_len, u32 dma_tx, u32 dma_rx, int atds)
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +000037{
38 u32 value = readl(ioaddr + DMA_BUS_MODE);
Giuseppe CAVALLAROc6298822010-09-17 03:23:41 +000039 int limit;
40
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +000041 /* DMA SW reset */
42 value |= DMA_BUS_MODE_SFT_RESET;
43 writel(value, ioaddr + DMA_BUS_MODE);
Francesco Virlinzibbc17542011-11-16 21:57:58 +000044 limit = 10;
Giuseppe CAVALLAROc6298822010-09-17 03:23:41 +000045 while (limit--) {
46 if (!(readl(ioaddr + DMA_BUS_MODE) & DMA_BUS_MODE_SFT_RESET))
47 break;
Francesco Virlinzibbc17542011-11-16 21:57:58 +000048 mdelay(10);
Giuseppe CAVALLAROc6298822010-09-17 03:23:41 +000049 }
50 if (limit < 0)
51 return -EBUSY;
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +000052
53 /* Enable Application Access by writing to DMA CSR0 */
54 writel(DMA_BUS_MODE_DEFAULT | (pbl << DMA_BUS_MODE_PBL_SHIFT),
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +000055 ioaddr + DMA_BUS_MODE);
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +000056
57 /* Mask interrupts by writing to CSR7 */
58 writel(DMA_INTR_DEFAULT_MASK, ioaddr + DMA_INTR_ENA);
59
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +000060 /* RX/TX descriptor base addr lists must be written into
61 * DMA CSR3 and CSR4, respectively
62 */
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +000063 writel(dma_tx, ioaddr + DMA_TX_BASE_ADDR);
64 writel(dma_rx, ioaddr + DMA_RCV_BASE_ADDR);
65
66 return 0;
67}
68
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +000069/* Store and Forward capability is not used at all.
70 *
71 * The transmit threshold can be programmed by setting the TTC bits in the DMA
72 * control register.
73 */
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +000074static void dwmac100_dma_operation_mode(void __iomem *ioaddr, int txmode,
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +000075 int rxmode)
76{
77 u32 csr6 = readl(ioaddr + DMA_CONTROL);
78
79 if (txmode <= 32)
80 csr6 |= DMA_CONTROL_TTC_32;
81 else if (txmode <= 64)
82 csr6 |= DMA_CONTROL_TTC_64;
83 else
84 csr6 |= DMA_CONTROL_TTC_128;
85
86 writel(csr6, ioaddr + DMA_CONTROL);
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +000087}
88
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +000089static void dwmac100_dump_dma_regs(void __iomem *ioaddr)
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +000090{
91 int i;
92
Giuseppe CAVALLARO83d7af62013-07-02 14:12:36 +020093 pr_debug("DWMAC 100 DMA CSR\n");
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +000094 for (i = 0; i < 9; i++)
95 pr_debug("\t CSR%d (offset 0x%x): 0x%08x\n", i,
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +000096 (DMA_BUS_MODE + i * 4),
97 readl(ioaddr + DMA_BUS_MODE + i * 4));
Giuseppe CAVALLARO83d7af62013-07-02 14:12:36 +020098
99 pr_debug("\tCSR20 (0x%x): 0x%08x, CSR21 (0x%x): 0x%08x\n",
100 DMA_CUR_TX_BUF_ADDR, readl(ioaddr + DMA_CUR_TX_BUF_ADDR),
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000101 DMA_CUR_RX_BUF_ADDR, readl(ioaddr + DMA_CUR_RX_BUF_ADDR));
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +0000102}
103
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000104/* DMA controller has two counters to track the number of the missed frames. */
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +0000105static void dwmac100_dma_diagnostic_fr(void *data, struct stmmac_extra_stats *x,
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +0000106 void __iomem *ioaddr)
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +0000107{
108 struct net_device_stats *stats = (struct net_device_stats *)data;
109 u32 csr8 = readl(ioaddr + DMA_MISSED_FRAME_CTR);
110
111 if (unlikely(csr8)) {
112 if (csr8 & DMA_MISSED_FRAME_OVE) {
113 stats->rx_over_errors += 0x800;
114 x->rx_overflow_cntr += 0x800;
115 } else {
116 unsigned int ove_cntr;
117 ove_cntr = ((csr8 & DMA_MISSED_FRAME_OVE_CNTR) >> 17);
118 stats->rx_over_errors += ove_cntr;
119 x->rx_overflow_cntr += ove_cntr;
120 }
121
122 if (csr8 & DMA_MISSED_FRAME_OVE_M) {
123 stats->rx_missed_errors += 0xffff;
124 x->rx_missed_cntr += 0xffff;
125 } else {
126 unsigned int miss_f = (csr8 & DMA_MISSED_FRAME_M_CNTR);
127 stats->rx_missed_errors += miss_f;
128 x->rx_missed_cntr += miss_f;
129 }
130 }
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +0000131}
132
stephen hemmingercadb7922010-10-13 14:51:25 +0000133const struct stmmac_dma_ops dwmac100_dma_ops = {
Giuseppe CAVALLARO3c32be62010-04-13 20:21:11 +0000134 .init = dwmac100_dma_init,
135 .dump_regs = dwmac100_dump_dma_regs,
136 .dma_mode = dwmac100_dma_operation_mode,
137 .dma_diagnostic_fr = dwmac100_dma_diagnostic_fr,
138 .enable_dma_transmission = dwmac_enable_dma_transmission,
139 .enable_dma_irq = dwmac_enable_dma_irq,
140 .disable_dma_irq = dwmac_disable_dma_irq,
141 .start_tx = dwmac_dma_start_tx,
142 .stop_tx = dwmac_dma_stop_tx,
143 .start_rx = dwmac_dma_start_rx,
144 .stop_rx = dwmac_dma_stop_rx,
145 .dma_interrupt = dwmac_dma_interrupt,
146};