blob: 4d1f2fdd5c3275c3c9952cd118bda99b544ebd55 [file] [log] [blame]
Vince Bridgers94fb0ef2014-03-17 17:52:35 -05001/* Altera TSE SGDMA and MSGDMA Linux driver
2 * Copyright (C) 2014 Altera Corporation. All rights reserved
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, see <http://www.gnu.org/licenses/>.
15 */
16
17#include <linux/netdevice.h>
18#include "altera_utils.h"
19#include "altera_tse.h"
20#include "altera_msgdmahw.h"
Tobias Klauser652f99e2014-04-28 23:23:13 +020021#include "altera_msgdma.h"
Vince Bridgers94fb0ef2014-03-17 17:52:35 -050022
23/* No initialization work to do for MSGDMA */
24int msgdma_initialize(struct altera_tse_private *priv)
25{
26 return 0;
27}
28
29void msgdma_uninitialize(struct altera_tse_private *priv)
30{
31}
32
Vince Bridgers37c0ffa2014-04-24 16:58:08 -050033void msgdma_start_rxdma(struct altera_tse_private *priv)
34{
35}
36
Vince Bridgers94fb0ef2014-03-17 17:52:35 -050037void msgdma_reset(struct altera_tse_private *priv)
38{
39 int counter;
40 struct msgdma_csr *txcsr =
41 (struct msgdma_csr *)priv->tx_dma_csr;
42 struct msgdma_csr *rxcsr =
43 (struct msgdma_csr *)priv->rx_dma_csr;
44
45 /* Reset Rx mSGDMA */
46 iowrite32(MSGDMA_CSR_STAT_MASK, &rxcsr->status);
47 iowrite32(MSGDMA_CSR_CTL_RESET, &rxcsr->control);
48
49 counter = 0;
50 while (counter++ < ALTERA_TSE_SW_RESET_WATCHDOG_CNTR) {
51 if (tse_bit_is_clear(&rxcsr->status,
52 MSGDMA_CSR_STAT_RESETTING))
53 break;
54 udelay(1);
55 }
56
57 if (counter >= ALTERA_TSE_SW_RESET_WATCHDOG_CNTR)
58 netif_warn(priv, drv, priv->dev,
59 "TSE Rx mSGDMA resetting bit never cleared!\n");
60
61 /* clear all status bits */
62 iowrite32(MSGDMA_CSR_STAT_MASK, &rxcsr->status);
63
64 /* Reset Tx mSGDMA */
65 iowrite32(MSGDMA_CSR_STAT_MASK, &txcsr->status);
66 iowrite32(MSGDMA_CSR_CTL_RESET, &txcsr->control);
67
68 counter = 0;
69 while (counter++ < ALTERA_TSE_SW_RESET_WATCHDOG_CNTR) {
70 if (tse_bit_is_clear(&txcsr->status,
71 MSGDMA_CSR_STAT_RESETTING))
72 break;
73 udelay(1);
74 }
75
76 if (counter >= ALTERA_TSE_SW_RESET_WATCHDOG_CNTR)
77 netif_warn(priv, drv, priv->dev,
78 "TSE Tx mSGDMA resetting bit never cleared!\n");
79
80 /* clear all status bits */
81 iowrite32(MSGDMA_CSR_STAT_MASK, &txcsr->status);
82}
83
84void msgdma_disable_rxirq(struct altera_tse_private *priv)
85{
86 struct msgdma_csr *csr = priv->rx_dma_csr;
87 tse_clear_bit(&csr->control, MSGDMA_CSR_CTL_GLOBAL_INTR);
88}
89
90void msgdma_enable_rxirq(struct altera_tse_private *priv)
91{
92 struct msgdma_csr *csr = priv->rx_dma_csr;
93 tse_set_bit(&csr->control, MSGDMA_CSR_CTL_GLOBAL_INTR);
94}
95
96void msgdma_disable_txirq(struct altera_tse_private *priv)
97{
98 struct msgdma_csr *csr = priv->tx_dma_csr;
99 tse_clear_bit(&csr->control, MSGDMA_CSR_CTL_GLOBAL_INTR);
100}
101
102void msgdma_enable_txirq(struct altera_tse_private *priv)
103{
104 struct msgdma_csr *csr = priv->tx_dma_csr;
105 tse_set_bit(&csr->control, MSGDMA_CSR_CTL_GLOBAL_INTR);
106}
107
108void msgdma_clear_rxirq(struct altera_tse_private *priv)
109{
110 struct msgdma_csr *csr = priv->rx_dma_csr;
111 iowrite32(MSGDMA_CSR_STAT_IRQ, &csr->status);
112}
113
114void msgdma_clear_txirq(struct altera_tse_private *priv)
115{
116 struct msgdma_csr *csr = priv->tx_dma_csr;
117 iowrite32(MSGDMA_CSR_STAT_IRQ, &csr->status);
118}
119
120/* return 0 to indicate transmit is pending */
121int msgdma_tx_buffer(struct altera_tse_private *priv, struct tse_buffer *buffer)
122{
123 struct msgdma_extended_desc *desc = priv->tx_dma_desc;
124
125 iowrite32(lower_32_bits(buffer->dma_addr), &desc->read_addr_lo);
126 iowrite32(upper_32_bits(buffer->dma_addr), &desc->read_addr_hi);
127 iowrite32(0, &desc->write_addr_lo);
128 iowrite32(0, &desc->write_addr_hi);
129 iowrite32(buffer->len, &desc->len);
130 iowrite32(0, &desc->burst_seq_num);
131 iowrite32(MSGDMA_DESC_TX_STRIDE, &desc->stride);
132 iowrite32(MSGDMA_DESC_CTL_TX_SINGLE, &desc->control);
133 return 0;
134}
135
136u32 msgdma_tx_completions(struct altera_tse_private *priv)
137{
138 u32 ready = 0;
139 u32 inuse;
140 u32 status;
141 struct msgdma_csr *txcsr =
142 (struct msgdma_csr *)priv->tx_dma_csr;
143
144 /* Get number of sent descriptors */
145 inuse = ioread32(&txcsr->rw_fill_level) & 0xffff;
146
147 if (inuse) { /* Tx FIFO is not empty */
148 ready = priv->tx_prod - priv->tx_cons - inuse - 1;
149 } else {
150 /* Check for buffered last packet */
151 status = ioread32(&txcsr->status);
152 if (status & MSGDMA_CSR_STAT_BUSY)
153 ready = priv->tx_prod - priv->tx_cons - 1;
154 else
155 ready = priv->tx_prod - priv->tx_cons;
156 }
157 return ready;
158}
159
160/* Put buffer to the mSGDMA RX FIFO
161 */
Vince Bridgers37c0ffa2014-04-24 16:58:08 -0500162void msgdma_add_rx_desc(struct altera_tse_private *priv,
Vince Bridgers94fb0ef2014-03-17 17:52:35 -0500163 struct tse_buffer *rxbuffer)
164{
165 struct msgdma_extended_desc *desc = priv->rx_dma_desc;
166 u32 len = priv->rx_dma_buf_sz;
167 dma_addr_t dma_addr = rxbuffer->dma_addr;
168 u32 control = (MSGDMA_DESC_CTL_END_ON_EOP
169 | MSGDMA_DESC_CTL_END_ON_LEN
170 | MSGDMA_DESC_CTL_TR_COMP_IRQ
171 | MSGDMA_DESC_CTL_EARLY_IRQ
172 | MSGDMA_DESC_CTL_TR_ERR_IRQ
173 | MSGDMA_DESC_CTL_GO);
174
175 iowrite32(0, &desc->read_addr_lo);
176 iowrite32(0, &desc->read_addr_hi);
177 iowrite32(lower_32_bits(dma_addr), &desc->write_addr_lo);
178 iowrite32(upper_32_bits(dma_addr), &desc->write_addr_hi);
179 iowrite32(len, &desc->len);
180 iowrite32(0, &desc->burst_seq_num);
181 iowrite32(0x00010001, &desc->stride);
182 iowrite32(control, &desc->control);
Vince Bridgers94fb0ef2014-03-17 17:52:35 -0500183}
184
185/* status is returned on upper 16 bits,
186 * length is returned in lower 16 bits
187 */
188u32 msgdma_rx_status(struct altera_tse_private *priv)
189{
190 u32 rxstatus = 0;
191 u32 pktlength;
192 u32 pktstatus;
193 struct msgdma_csr *rxcsr =
194 (struct msgdma_csr *)priv->rx_dma_csr;
195 struct msgdma_response *rxresp =
196 (struct msgdma_response *)priv->rx_dma_resp;
197
198 if (ioread32(&rxcsr->resp_fill_level) & 0xffff) {
199 pktlength = ioread32(&rxresp->bytes_transferred);
200 pktstatus = ioread32(&rxresp->status);
201 rxstatus = pktstatus;
202 rxstatus = rxstatus << 16;
203 rxstatus |= (pktlength & 0xffff);
204 }
205 return rxstatus;
206}