123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /*
- * 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);
- }
|