]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/net/ethernet/stmicro/stmmac/enh_desc.c
Merge remote-tracking branches 'asoc/topic/inntel', 'asoc/topic/input', 'asoc/topic...
[mirror_ubuntu-bionic-kernel.git] / drivers / net / ethernet / stmicro / stmmac / enh_desc.c
CommitLineData
56b106ae
GC
1/*******************************************************************************
2 This contains the functions to handle the enhanced descriptors.
3
293e4365 4 Copyright (C) 2007-2014 STMicroelectronics Ltd
56b106ae
GC
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
23*******************************************************************************/
24
38912bdb 25#include <linux/stmmac.h>
56b106ae 26#include "common.h"
286a8372 27#include "descs_com.h"
56b106ae
GC
28
29static int enh_desc_get_tx_status(void *data, struct stmmac_extra_stats *x,
ad01b7d4 30 struct dma_desc *p, void __iomem *ioaddr)
56b106ae 31{
56b106ae 32 struct net_device_stats *stats = (struct net_device_stats *)data;
293e4365 33 unsigned int tdes0 = p->des0;
c363b658
FG
34 int ret = tx_done;
35
36 /* Get tx owner first */
37 if (unlikely(tdes0 & ETDES0_OWN))
38 return tx_dma_own;
39
40 /* Verify tx error by looking at the last segment. */
41 if (likely(!(tdes0 & ETDES0_LAST_SEGMENT)))
42 return tx_not_ls;
56b106ae 43
293e4365
GC
44 if (unlikely(tdes0 & ETDES0_ERROR_SUMMARY)) {
45 if (unlikely(tdes0 & ETDES0_JABBER_TIMEOUT))
56b106ae 46 x->tx_jabber++;
56b106ae 47
293e4365 48 if (unlikely(tdes0 & ETDES0_FRAME_FLUSHED)) {
56b106ae 49 x->tx_frame_flushed++;
688911c2 50 dwmac_dma_flush_tx_fifo(ioaddr);
56b106ae
GC
51 }
52
293e4365 53 if (unlikely(tdes0 & ETDES0_LOSS_CARRIER)) {
56b106ae
GC
54 x->tx_losscarrier++;
55 stats->tx_carrier_errors++;
56 }
293e4365 57 if (unlikely(tdes0 & ETDES0_NO_CARRIER)) {
56b106ae
GC
58 x->tx_carrier++;
59 stats->tx_carrier_errors++;
60 }
293e4365
GC
61 if (unlikely((tdes0 & ETDES0_LATE_COLLISION) ||
62 (tdes0 & ETDES0_EXCESSIVE_COLLISIONS)))
63 stats->collisions +=
64 (tdes0 & ETDES0_COLLISION_COUNT_MASK) >> 3;
83d7af64 65
293e4365 66 if (unlikely(tdes0 & ETDES0_EXCESSIVE_DEFERRAL))
56b106ae 67 x->tx_deferred++;
56b106ae 68
293e4365 69 if (unlikely(tdes0 & ETDES0_UNDERFLOW_ERROR)) {
688911c2 70 dwmac_dma_flush_tx_fifo(ioaddr);
56b106ae
GC
71 x->tx_underflow++;
72 }
73
293e4365 74 if (unlikely(tdes0 & ETDES0_IP_HEADER_ERROR))
56b106ae 75 x->tx_ip_header_error++;
56b106ae 76
293e4365 77 if (unlikely(tdes0 & ETDES0_PAYLOAD_ERROR)) {
56b106ae 78 x->tx_payload_error++;
688911c2 79 dwmac_dma_flush_tx_fifo(ioaddr);
56b106ae
GC
80 }
81
c363b658 82 ret = tx_err;
56b106ae
GC
83 }
84
293e4365 85 if (unlikely(tdes0 & ETDES0_DEFERRED))
56b106ae 86 x->tx_deferred++;
83d7af64 87
56b106ae 88#ifdef STMMAC_VLAN_TAG_USED
293e4365 89 if (tdes0 & ETDES0_VLAN_FRAME)
56b106ae 90 x->tx_vlan++;
56b106ae
GC
91#endif
92
93 return ret;
94}
95
96static int enh_desc_get_tx_len(struct dma_desc *p)
97{
293e4365 98 return (p->des1 & ETDES1_BUFFER1_SIZE_MASK);
56b106ae
GC
99}
100
101static int enh_desc_coe_rdes0(int ipc_err, int type, int payload_err)
102{
103 int ret = good_frame;
104 u32 status = (type << 2 | ipc_err << 1 | payload_err) & 0x7;
105
106 /* bits 5 7 0 | Frame status
107 * ----------------------------------------------------------
108 * 0 0 0 | IEEE 802.3 Type frame (length < 1536 octects)
109 * 1 0 0 | IPv4/6 No CSUM errorS.
110 * 1 0 1 | IPv4/6 CSUM PAYLOAD error
111 * 1 1 0 | IPv4/6 CSUM IP HR error
112 * 1 1 1 | IPv4/6 IP PAYLOAD AND HEADER errorS
113 * 0 0 1 | IPv4/6 unsupported IP PAYLOAD
114 * 0 1 1 | COE bypassed.. no IPv4/6 frame
115 * 0 1 0 | Reserved.
116 */
83d7af64 117 if (status == 0x0)
3eeb2997 118 ret = llc_snap;
83d7af64 119 else if (status == 0x4)
56b106ae 120 ret = good_frame;
83d7af64 121 else if (status == 0x5)
56b106ae 122 ret = csum_none;
83d7af64 123 else if (status == 0x6)
56b106ae 124 ret = csum_none;
83d7af64 125 else if (status == 0x7)
56b106ae 126 ret = csum_none;
83d7af64 127 else if (status == 0x1)
56b106ae 128 ret = discard_frame;
83d7af64 129 else if (status == 0x3)
56b106ae 130 ret = discard_frame;
56b106ae
GC
131 return ret;
132}
133
c24602ef
GC
134static void enh_desc_get_ext_status(void *data, struct stmmac_extra_stats *x,
135 struct dma_extended_desc *p)
136{
293e4365
GC
137 unsigned int rdes0 = p->basic.des0;
138 unsigned int rdes4 = p->des4;
139
140 if (unlikely(rdes0 & ERDES0_RX_MAC_ADDR)) {
141 int message_type = (rdes4 & ERDES4_MSG_TYPE_MASK) >> 8;
142
143 if (rdes4 & ERDES4_IP_HDR_ERR)
c24602ef 144 x->ip_hdr_err++;
293e4365 145 if (rdes4 & ERDES4_IP_PAYLOAD_ERR)
c24602ef 146 x->ip_payload_err++;
293e4365 147 if (rdes4 & ERDES4_IP_CSUM_BYPASSED)
c24602ef 148 x->ip_csum_bypassed++;
293e4365 149 if (rdes4 & ERDES4_IPV4_PKT_RCVD)
c24602ef 150 x->ipv4_pkt_rcvd++;
293e4365 151 if (rdes4 & ERDES4_IPV6_PKT_RCVD)
c24602ef 152 x->ipv6_pkt_rcvd++;
ee112c12
GC
153
154 if (message_type == RDES_EXT_NO_PTP)
155 x->no_ptp_rx_msg_type_ext++;
156 else if (message_type == RDES_EXT_SYNC)
157 x->ptp_rx_msg_type_sync++;
293e4365 158 else if (message_type == RDES_EXT_FOLLOW_UP)
ee112c12 159 x->ptp_rx_msg_type_follow_up++;
293e4365 160 else if (message_type == RDES_EXT_DELAY_REQ)
ee112c12 161 x->ptp_rx_msg_type_delay_req++;
293e4365 162 else if (message_type == RDES_EXT_DELAY_RESP)
ee112c12 163 x->ptp_rx_msg_type_delay_resp++;
293e4365 164 else if (message_type == RDES_EXT_PDELAY_REQ)
ee112c12 165 x->ptp_rx_msg_type_pdelay_req++;
293e4365 166 else if (message_type == RDES_EXT_PDELAY_RESP)
ee112c12 167 x->ptp_rx_msg_type_pdelay_resp++;
293e4365 168 else if (message_type == RDES_EXT_PDELAY_FOLLOW_UP)
ee112c12
GC
169 x->ptp_rx_msg_type_pdelay_follow_up++;
170 else if (message_type == RDES_PTP_ANNOUNCE)
171 x->ptp_rx_msg_type_announce++;
172 else if (message_type == RDES_PTP_MANAGEMENT)
173 x->ptp_rx_msg_type_management++;
174 else if (message_type == RDES_PTP_PKT_RESERVED_TYPE)
175 x->ptp_rx_msg_pkt_reserved_type++;
176
293e4365 177 if (rdes4 & ERDES4_PTP_FRAME_TYPE)
c24602ef 178 x->ptp_frame_type++;
293e4365 179 if (rdes4 & ERDES4_PTP_VER)
c24602ef 180 x->ptp_ver++;
293e4365 181 if (rdes4 & ERDES4_TIMESTAMP_DROPPED)
c24602ef 182 x->timestamp_dropped++;
293e4365 183 if (rdes4 & ERDES4_AV_PKT_RCVD)
c24602ef 184 x->av_pkt_rcvd++;
293e4365 185 if (rdes4 & ERDES4_AV_TAGGED_PKT_RCVD)
c24602ef 186 x->av_tagged_pkt_rcvd++;
293e4365 187 if ((rdes4 & ERDES4_VLAN_TAG_PRI_VAL_MASK) >> 18)
c24602ef 188 x->vlan_tag_priority_val++;
293e4365 189 if (rdes4 & ERDES4_L3_FILTER_MATCH)
c24602ef 190 x->l3_filter_match++;
293e4365 191 if (rdes4 & ERDES4_L4_FILTER_MATCH)
c24602ef 192 x->l4_filter_match++;
293e4365 193 if ((rdes4 & ERDES4_L3_L4_FILT_NO_MATCH_MASK) >> 26)
c24602ef
GC
194 x->l3_l4_filter_no_match++;
195 }
196}
197
56b106ae
GC
198static int enh_desc_get_rx_status(void *data, struct stmmac_extra_stats *x,
199 struct dma_desc *p)
200{
56b106ae 201 struct net_device_stats *stats = (struct net_device_stats *)data;
293e4365
GC
202 unsigned int rdes0 = p->des0;
203 int ret = good_frame;
56b106ae 204
c1fa3212
FG
205 if (unlikely(rdes0 & RDES0_OWN))
206 return dma_own;
207
293e4365
GC
208 if (unlikely(rdes0 & RDES0_ERROR_SUMMARY)) {
209 if (unlikely(rdes0 & RDES0_DESCRIPTOR_ERROR)) {
56b106ae
GC
210 x->rx_desc++;
211 stats->rx_length_errors++;
212 }
293e4365 213 if (unlikely(rdes0 & RDES0_OVERFLOW_ERROR))
56b106ae 214 x->rx_gmac_overflow++;
56b106ae 215
293e4365 216 if (unlikely(rdes0 & RDES0_IPC_CSUM_ERROR))
83d7af64 217 pr_err("\tIPC Csum Error/Giant frame\n");
56b106ae 218
293e4365 219 if (unlikely(rdes0 & RDES0_COLLISION))
56b106ae 220 stats->collisions++;
293e4365 221 if (unlikely(rdes0 & RDES0_RECEIVE_WATCHDOG))
56b106ae 222 x->rx_watchdog++;
83d7af64 223
293e4365 224 if (unlikely(rdes0 & RDES0_MII_ERROR)) /* GMII */
56b106ae 225 x->rx_mii++;
83d7af64 226
293e4365 227 if (unlikely(rdes0 & RDES0_CRC_ERROR)) {
56b106ae
GC
228 x->rx_crc++;
229 stats->rx_crc_errors++;
230 }
231 ret = discard_frame;
232 }
233
234 /* After a payload csum error, the ES bit is set.
235 * It doesn't match with the information reported into the databook.
236 * At any rate, we need to understand if the CSUM hw computation is ok
237 * and report this info to the upper layers. */
293e4365
GC
238 ret = enh_desc_coe_rdes0(!!(rdes0 & RDES0_IPC_CSUM_ERROR),
239 !!(rdes0 & RDES0_FRAME_TYPE),
240 !!(rdes0 & ERDES0_RX_MAC_ADDR));
56b106ae 241
293e4365 242 if (unlikely(rdes0 & RDES0_DRIBBLING))
1cc5a735 243 x->dribbling_bit++;
83d7af64 244
293e4365 245 if (unlikely(rdes0 & RDES0_SA_FILTER_FAIL)) {
56b106ae
GC
246 x->sa_rx_filter_fail++;
247 ret = discard_frame;
248 }
293e4365 249 if (unlikely(rdes0 & RDES0_DA_FILTER_FAIL)) {
56b106ae
GC
250 x->da_rx_filter_fail++;
251 ret = discard_frame;
252 }
293e4365 253 if (unlikely(rdes0 & RDES0_LENGTH_ERROR)) {
56b106ae
GC
254 x->rx_length++;
255 ret = discard_frame;
256 }
257#ifdef STMMAC_VLAN_TAG_USED
293e4365 258 if (rdes0 & RDES0_VLAN_TAG)
56b106ae 259 x->rx_vlan++;
56b106ae 260#endif
c24602ef 261
56b106ae
GC
262 return ret;
263}
264
c24602ef
GC
265static void enh_desc_init_rx_desc(struct dma_desc *p, int disable_rx_ic,
266 int mode, int end)
56b106ae 267{
293e4365
GC
268 p->des0 |= RDES0_OWN;
269 p->des1 |= ((BUF_SIZE_8KiB - 1) & ERDES1_BUFFER1_SIZE_MASK);
286a8372 270
c24602ef 271 if (mode == STMMAC_CHAIN_MODE)
293e4365 272 ehn_desc_rx_set_on_chain(p);
c24602ef
GC
273 else
274 ehn_desc_rx_set_on_ring(p, end);
286a8372 275
c24602ef 276 if (disable_rx_ic)
293e4365 277 p->des1 |= ERDES1_DISABLE_IC;
56b106ae
GC
278}
279
c24602ef 280static void enh_desc_init_tx_desc(struct dma_desc *p, int mode, int end)
56b106ae 281{
293e4365 282 p->des0 &= ~ETDES0_OWN;
c24602ef 283 if (mode == STMMAC_CHAIN_MODE)
293e4365 284 enh_desc_end_tx_desc_on_chain(p);
c24602ef 285 else
293e4365 286 enh_desc_end_tx_desc_on_ring(p, end);
56b106ae
GC
287}
288
289static int enh_desc_get_tx_owner(struct dma_desc *p)
290{
293e4365 291 return (p->des0 & ETDES0_OWN) >> 31;
56b106ae
GC
292}
293
56b106ae
GC
294static void enh_desc_set_tx_owner(struct dma_desc *p)
295{
293e4365 296 p->des0 |= ETDES0_OWN;
56b106ae
GC
297}
298
299static void enh_desc_set_rx_owner(struct dma_desc *p)
300{
293e4365 301 p->des0 |= RDES0_OWN;
56b106ae
GC
302}
303
304static int enh_desc_get_tx_ls(struct dma_desc *p)
305{
293e4365 306 return (p->des0 & ETDES0_LAST_SEGMENT) >> 29;
56b106ae
GC
307}
308
4a7d666a 309static void enh_desc_release_tx_desc(struct dma_desc *p, int mode)
56b106ae 310{
293e4365 311 int ter = (p->des0 & ETDES0_END_RING) >> 21;
56b106ae 312
b71c7aaa 313 memset(p, 0, offsetof(struct dma_desc, des2));
4a7d666a 314 if (mode == STMMAC_CHAIN_MODE)
293e4365 315 enh_desc_end_tx_desc_on_chain(p);
4a7d666a
GC
316 else
317 enh_desc_end_tx_desc_on_ring(p, ter);
56b106ae
GC
318}
319
320static void enh_desc_prepare_tx_desc(struct dma_desc *p, int is_fs, int len,
be434d50 321 bool csum_flag, int mode, bool tx_own,
0e80bdc9 322 bool ls)
56b106ae 323{
293e4365
GC
324 unsigned int tdes0 = p->des0;
325
0e80bdc9
GC
326 if (mode == STMMAC_CHAIN_MODE)
327 enh_set_tx_desc_len_on_chain(p, len);
328 else
329 enh_set_tx_desc_len_on_ring(p, len);
330
293e4365
GC
331 if (is_fs)
332 tdes0 |= ETDES0_FIRST_SEGMENT;
333 else
334 tdes0 &= ~ETDES0_FIRST_SEGMENT;
335
336 if (likely(csum_flag))
337 tdes0 |= (TX_CIC_FULL << ETDES0_CHECKSUM_INSERTION_SHIFT);
338 else
339 tdes0 &= ~(TX_CIC_FULL << ETDES0_CHECKSUM_INSERTION_SHIFT);
340
0e80bdc9
GC
341 if (ls)
342 tdes0 |= ETDES0_LAST_SEGMENT;
343
344 /* Finally set the OWN bit. Later the DMA will start! */
be434d50
GC
345 if (tx_own)
346 tdes0 |= ETDES0_OWN;
347
348 if (is_fs & tx_own)
349 /* When the own bit, for the first frame, has to be set, all
350 * descriptors for the same frame has to be set before, to
351 * avoid race condition.
352 */
353 wmb();
354
293e4365 355 p->des0 = tdes0;
56b106ae
GC
356}
357
0e80bdc9 358static void enh_desc_set_tx_ic(struct dma_desc *p)
56b106ae 359{
0e80bdc9 360 p->des0 |= ETDES0_INTERRUPT;
56b106ae
GC
361}
362
38912bdb 363static int enh_desc_get_rx_frame_len(struct dma_desc *p, int rx_coe_type)
56b106ae 364{
293e4365 365 unsigned int csum = 0;
38912bdb
DS
366 /* The type-1 checksum offload engines append the checksum at
367 * the end of frame and the two bytes of checksum are added in
368 * the length.
369 * Adjust for that in the framelen for type-1 checksum offload
293e4365
GC
370 * engines.
371 */
38912bdb 372 if (rx_coe_type == STMMAC_RX_COE_TYPE1)
293e4365
GC
373 csum = 2;
374
375 return (((p->des0 & RDES0_FRAME_LEN_MASK) >> RDES0_FRAME_LEN_SHIFT) -
376 csum);
56b106ae
GC
377}
378
891434b1
RK
379static void enh_desc_enable_tx_timestamp(struct dma_desc *p)
380{
293e4365 381 p->des0 |= ETDES0_TIME_STAMP_ENABLE;
891434b1
RK
382}
383
384static int enh_desc_get_tx_timestamp_status(struct dma_desc *p)
385{
293e4365 386 return (p->des0 & ETDES0_TIME_STAMP_STATUS) >> 17;
891434b1
RK
387}
388
389static u64 enh_desc_get_timestamp(void *desc, u32 ats)
390{
391 u64 ns;
392
393 if (ats) {
394 struct dma_extended_desc *p = (struct dma_extended_desc *)desc;
395 ns = p->des6;
396 /* convert high/sec time stamp value to nanosecond */
397 ns += p->des7 * 1000000000ULL;
398 } else {
399 struct dma_desc *p = (struct dma_desc *)desc;
400 ns = p->des2;
401 ns += p->des3 * 1000000000ULL;
402 }
403
404 return ns;
405}
406
407static int enh_desc_get_rx_timestamp_status(void *desc, u32 ats)
408{
409 if (ats) {
410 struct dma_extended_desc *p = (struct dma_extended_desc *)desc;
293e4365 411 return (p->basic.des0 & RDES0_IPC_CSUM_ERROR) >> 7;
891434b1
RK
412 } else {
413 struct dma_desc *p = (struct dma_desc *)desc;
414 if ((p->des2 == 0xffffffff) && (p->des3 == 0xffffffff))
415 /* timestamp is corrupted, hence don't store it */
416 return 0;
417 else
418 return 1;
419 }
420}
421
d0225e7d
AT
422static void enh_desc_display_ring(void *head, unsigned int size, bool rx)
423{
424 struct dma_extended_desc *ep = (struct dma_extended_desc *)head;
425 int i;
426
427 pr_info("Extended %s descriptor ring:\n", rx ? "RX" : "TX");
428
429 for (i = 0; i < size; i++) {
430 u64 x;
431
432 x = *(u64 *)ep;
433 pr_info("%d [0x%x]: 0x%x 0x%x 0x%x 0x%x\n",
434 i, (unsigned int)virt_to_phys(ep),
435 (unsigned int)x, (unsigned int)(x >> 32),
436 ep->basic.des2, ep->basic.des3);
437 ep++;
438 }
439 pr_info("\n");
440}
441
cadb7924 442const struct stmmac_desc_ops enh_desc_ops = {
56b106ae
GC
443 .tx_status = enh_desc_get_tx_status,
444 .rx_status = enh_desc_get_rx_status,
445 .get_tx_len = enh_desc_get_tx_len,
446 .init_rx_desc = enh_desc_init_rx_desc,
447 .init_tx_desc = enh_desc_init_tx_desc,
448 .get_tx_owner = enh_desc_get_tx_owner,
56b106ae
GC
449 .release_tx_desc = enh_desc_release_tx_desc,
450 .prepare_tx_desc = enh_desc_prepare_tx_desc,
0e80bdc9 451 .set_tx_ic = enh_desc_set_tx_ic,
56b106ae
GC
452 .get_tx_ls = enh_desc_get_tx_ls,
453 .set_tx_owner = enh_desc_set_tx_owner,
454 .set_rx_owner = enh_desc_set_rx_owner,
455 .get_rx_frame_len = enh_desc_get_rx_frame_len,
c24602ef 456 .rx_extended_status = enh_desc_get_ext_status,
891434b1
RK
457 .enable_tx_timestamp = enh_desc_enable_tx_timestamp,
458 .get_tx_timestamp_status = enh_desc_get_tx_timestamp_status,
459 .get_timestamp = enh_desc_get_timestamp,
460 .get_rx_timestamp_status = enh_desc_get_rx_timestamp_status,
d0225e7d 461 .display_ring = enh_desc_display_ring,
56b106ae 462};