hc
2023-08-30 862c27fc9920c83318c784bfdadf43a65df1ec8f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
 * Applied Micro X-Gene SoC Ethernet v2 Driver
 *
 * Copyright (c) 2017, Applied Micro Circuits Corporation
 * Author(s): Iyappan Subramanian <isubramanian@apm.com>
 *          Keyur Chudgar <kchudgar@apm.com>
 *
 * This program is free software; you can redistribute  it and/or modify it
 * under  the terms of  the GNU General  Public License as published by the
 * Free Software Foundation;  either version 2 of the  License, or (at your
 * option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
#include "main.h"
 
/* create circular linked list of descriptors */
void xge_setup_desc(struct xge_desc_ring *ring)
{
   struct xge_raw_desc *raw_desc;
   dma_addr_t dma_h, next_dma;
   u16 offset;
   int i;
 
   for (i = 0; i < XGENE_ENET_NUM_DESC; i++) {
       raw_desc = &ring->raw_desc[i];
 
       offset = (i + 1) & (XGENE_ENET_NUM_DESC - 1);
       next_dma = ring->dma_addr + (offset * XGENE_ENET_DESC_SIZE);
 
       raw_desc->m0 = cpu_to_le64(SET_BITS(E, 1) |
                      SET_BITS(PKT_SIZE, SLOT_EMPTY));
       dma_h = upper_32_bits(next_dma);
       raw_desc->m1 = cpu_to_le64(SET_BITS(NEXT_DESC_ADDRL, next_dma) |
                      SET_BITS(NEXT_DESC_ADDRH, dma_h));
   }
}
 
void xge_update_tx_desc_addr(struct xge_pdata *pdata)
{
   struct xge_desc_ring *ring = pdata->tx_ring;
   dma_addr_t dma_addr = ring->dma_addr;
 
   xge_wr_csr(pdata, DMATXDESCL, dma_addr);
   xge_wr_csr(pdata, DMATXDESCH, upper_32_bits(dma_addr));
 
   ring->head = 0;
   ring->tail = 0;
}
 
void xge_update_rx_desc_addr(struct xge_pdata *pdata)
{
   struct xge_desc_ring *ring = pdata->rx_ring;
   dma_addr_t dma_addr = ring->dma_addr;
 
   xge_wr_csr(pdata, DMARXDESCL, dma_addr);
   xge_wr_csr(pdata, DMARXDESCH, upper_32_bits(dma_addr));
 
   ring->head = 0;
   ring->tail = 0;
}
 
void xge_intr_enable(struct xge_pdata *pdata)
{
   u32 data;
 
   data = RX_PKT_RCVD | TX_PKT_SENT;
   xge_wr_csr(pdata, DMAINTRMASK, data);
}
 
void xge_intr_disable(struct xge_pdata *pdata)
{
   xge_wr_csr(pdata, DMAINTRMASK, 0);
}