123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- /*******************************************************************************
- This is the driver for the GMAC on-chip Ethernet controller for ST SoCs.
- DWC Ether MAC 10/100/1000 Universal version 3.41a has been used for
- developing this code.
- This contains the functions to handle the dma.
- Copyright (C) 2007-2009 STMicroelectronics Ltd
- This program is free software; you can redistribute it and/or modify it
- under the terms and conditions of the GNU General Public License,
- version 2, as published by the Free Software Foundation.
- This program is distributed in the hope 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, write to the Free Software Foundation, Inc.,
- 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
- The full GNU General Public License is included in this distribution in
- the file called "COPYING".
- Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
- *******************************************************************************/
- #include <asm/io.h>
- #include "dwmac1000.h"
- #include "dwmac_dma.h"
- static void dwmac1000_dma_axi(void __iomem *ioaddr, struct stmmac_axi *axi)
- {
- u32 value = readl(ioaddr + DMA_AXI_BUS_MODE);
- int i;
- pr_info("dwmac1000: Master AXI performs %s burst length\n",
- !(value & DMA_AXI_UNDEF) ? "fixed" : "any");
- if (axi->axi_lpi_en)
- value |= DMA_AXI_EN_LPI;
- if (axi->axi_xit_frm)
- value |= DMA_AXI_LPI_XIT_FRM;
- value &= ~DMA_AXI_WR_OSR_LMT;
- value |= (axi->axi_wr_osr_lmt & DMA_AXI_WR_OSR_LMT_MASK) <<
- DMA_AXI_WR_OSR_LMT_SHIFT;
- value &= ~DMA_AXI_RD_OSR_LMT;
- value |= (axi->axi_rd_osr_lmt & DMA_AXI_RD_OSR_LMT_MASK) <<
- DMA_AXI_RD_OSR_LMT_SHIFT;
- /* Depending on the UNDEF bit the Master AXI will perform any burst
- * length according to the BLEN programmed (by default all BLEN are
- * set).
- */
- for (i = 0; i < AXI_BLEN; i++) {
- switch (axi->axi_blen[i]) {
- case 256:
- value |= DMA_AXI_BLEN256;
- break;
- case 128:
- value |= DMA_AXI_BLEN128;
- break;
- case 64:
- value |= DMA_AXI_BLEN64;
- break;
- case 32:
- value |= DMA_AXI_BLEN32;
- break;
- case 16:
- value |= DMA_AXI_BLEN16;
- break;
- case 8:
- value |= DMA_AXI_BLEN8;
- break;
- case 4:
- value |= DMA_AXI_BLEN4;
- break;
- }
- }
- writel(value, ioaddr + DMA_AXI_BUS_MODE);
- }
- static void dwmac1000_dma_init(void __iomem *ioaddr, int pbl, int fb, int mb,
- int aal, u32 dma_tx, u32 dma_rx, int atds)
- {
- u32 value = readl(ioaddr + DMA_BUS_MODE);
- /*
- * Set the DMA PBL (Programmable Burst Length) mode.
- *
- * Note: before stmmac core 3.50 this mode bit was 4xPBL, and
- * post 3.5 mode bit acts as 8*PBL.
- *
- * This configuration doesn't take care about the Separate PBL
- * so only the bits: 13-8 are programmed with the PBL passed from the
- * platform.
- */
- value |= DMA_BUS_MODE_MAXPBL;
- value &= ~DMA_BUS_MODE_PBL_MASK;
- value |= (pbl << DMA_BUS_MODE_PBL_SHIFT);
- /* Set the Fixed burst mode */
- if (fb)
- value |= DMA_BUS_MODE_FB;
- /* Mixed Burst has no effect when fb is set */
- if (mb)
- value |= DMA_BUS_MODE_MB;
- if (atds)
- value |= DMA_BUS_MODE_ATDS;
- if (aal)
- value |= DMA_BUS_MODE_AAL;
- writel(value, ioaddr + DMA_BUS_MODE);
- /* Mask interrupts by writing to CSR7 */
- writel(DMA_INTR_DEFAULT_MASK, ioaddr + DMA_INTR_ENA);
- /* RX/TX descriptor base address lists must be written into
- * DMA CSR3 and CSR4, respectively
- */
- writel(dma_tx, ioaddr + DMA_TX_BASE_ADDR);
- writel(dma_rx, ioaddr + DMA_RCV_BASE_ADDR);
- }
- static u32 dwmac1000_configure_fc(u32 csr6, int rxfifosz)
- {
- csr6 &= ~DMA_CONTROL_RFA_MASK;
- csr6 &= ~DMA_CONTROL_RFD_MASK;
- /* Leave flow control disabled if receive fifo size is less than
- * 4K or 0. Otherwise, send XOFF when fifo is 1K less than full,
- * and send XON when 2K less than full.
- */
- if (rxfifosz < 4096) {
- csr6 &= ~DMA_CONTROL_EFC;
- pr_debug("GMAC: disabling flow control, rxfifo too small(%d)\n",
- rxfifosz);
- } else {
- csr6 |= DMA_CONTROL_EFC;
- csr6 |= RFA_FULL_MINUS_1K;
- csr6 |= RFD_FULL_MINUS_2K;
- }
- return csr6;
- }
- static void dwmac1000_dma_operation_mode(void __iomem *ioaddr, int txmode,
- int rxmode, int rxfifosz)
- {
- u32 csr6 = readl(ioaddr + DMA_CONTROL);
- if (txmode == SF_DMA_MODE) {
- pr_debug("GMAC: enable TX store and forward mode\n");
- /* Transmit COE type 2 cannot be done in cut-through mode. */
- csr6 |= DMA_CONTROL_TSF;
- /* Operating on second frame increase the performance
- * especially when transmit store-and-forward is used.
- */
- csr6 |= DMA_CONTROL_OSF;
- } else {
- pr_debug("GMAC: disabling TX SF (threshold %d)\n", txmode);
- csr6 &= ~DMA_CONTROL_TSF;
- csr6 &= DMA_CONTROL_TC_TX_MASK;
- /* Set the transmit threshold */
- if (txmode <= 32)
- csr6 |= DMA_CONTROL_TTC_32;
- else if (txmode <= 64)
- csr6 |= DMA_CONTROL_TTC_64;
- else if (txmode <= 128)
- csr6 |= DMA_CONTROL_TTC_128;
- else if (txmode <= 192)
- csr6 |= DMA_CONTROL_TTC_192;
- else
- csr6 |= DMA_CONTROL_TTC_256;
- }
- if (rxmode == SF_DMA_MODE) {
- pr_debug("GMAC: enable RX store and forward mode\n");
- csr6 |= DMA_CONTROL_RSF;
- } else {
- pr_debug("GMAC: disable RX SF mode (threshold %d)\n", rxmode);
- csr6 &= ~DMA_CONTROL_RSF;
- csr6 &= DMA_CONTROL_TC_RX_MASK;
- if (rxmode <= 32)
- csr6 |= DMA_CONTROL_RTC_32;
- else if (rxmode <= 64)
- csr6 |= DMA_CONTROL_RTC_64;
- else if (rxmode <= 96)
- csr6 |= DMA_CONTROL_RTC_96;
- else
- csr6 |= DMA_CONTROL_RTC_128;
- }
- /* Configure flow control based on rx fifo size */
- csr6 = dwmac1000_configure_fc(csr6, rxfifosz);
- writel(csr6, ioaddr + DMA_CONTROL);
- }
- static void dwmac1000_dump_dma_regs(void __iomem *ioaddr)
- {
- int i;
- pr_info(" DMA registers\n");
- for (i = 0; i < 22; i++) {
- if ((i < 9) || (i > 17)) {
- int offset = i * 4;
- pr_err("\t Reg No. %d (offset 0x%x): 0x%08x\n", i,
- (DMA_BUS_MODE + offset),
- readl(ioaddr + DMA_BUS_MODE + offset));
- }
- }
- }
- static void dwmac1000_get_hw_feature(void __iomem *ioaddr,
- struct dma_features *dma_cap)
- {
- u32 hw_cap = readl(ioaddr + DMA_HW_FEATURE);
- dma_cap->mbps_10_100 = (hw_cap & DMA_HW_FEAT_MIISEL);
- dma_cap->mbps_1000 = (hw_cap & DMA_HW_FEAT_GMIISEL) >> 1;
- dma_cap->half_duplex = (hw_cap & DMA_HW_FEAT_HDSEL) >> 2;
- dma_cap->hash_filter = (hw_cap & DMA_HW_FEAT_HASHSEL) >> 4;
- dma_cap->multi_addr = (hw_cap & DMA_HW_FEAT_ADDMAC) >> 5;
- dma_cap->pcs = (hw_cap & DMA_HW_FEAT_PCSSEL) >> 6;
- dma_cap->sma_mdio = (hw_cap & DMA_HW_FEAT_SMASEL) >> 8;
- dma_cap->pmt_remote_wake_up = (hw_cap & DMA_HW_FEAT_RWKSEL) >> 9;
- dma_cap->pmt_magic_frame = (hw_cap & DMA_HW_FEAT_MGKSEL) >> 10;
- /* MMC */
- dma_cap->rmon = (hw_cap & DMA_HW_FEAT_MMCSEL) >> 11;
- /* IEEE 1588-2002 */
- dma_cap->time_stamp =
- (hw_cap & DMA_HW_FEAT_TSVER1SEL) >> 12;
- /* IEEE 1588-2008 */
- dma_cap->atime_stamp = (hw_cap & DMA_HW_FEAT_TSVER2SEL) >> 13;
- /* 802.3az - Energy-Efficient Ethernet (EEE) */
- dma_cap->eee = (hw_cap & DMA_HW_FEAT_EEESEL) >> 14;
- dma_cap->av = (hw_cap & DMA_HW_FEAT_AVSEL) >> 15;
- /* TX and RX csum */
- dma_cap->tx_coe = (hw_cap & DMA_HW_FEAT_TXCOESEL) >> 16;
- dma_cap->rx_coe_type1 = (hw_cap & DMA_HW_FEAT_RXTYP1COE) >> 17;
- dma_cap->rx_coe_type2 = (hw_cap & DMA_HW_FEAT_RXTYP2COE) >> 18;
- dma_cap->rxfifo_over_2048 = (hw_cap & DMA_HW_FEAT_RXFIFOSIZE) >> 19;
- /* TX and RX number of channels */
- dma_cap->number_rx_channel = (hw_cap & DMA_HW_FEAT_RXCHCNT) >> 20;
- dma_cap->number_tx_channel = (hw_cap & DMA_HW_FEAT_TXCHCNT) >> 22;
- /* Alternate (enhanced) DESC mode */
- dma_cap->enh_desc = (hw_cap & DMA_HW_FEAT_ENHDESSEL) >> 24;
- }
- static void dwmac1000_rx_watchdog(void __iomem *ioaddr, u32 riwt)
- {
- writel(riwt, ioaddr + DMA_RX_WATCHDOG);
- }
- const struct stmmac_dma_ops dwmac1000_dma_ops = {
- .reset = dwmac_dma_reset,
- .init = dwmac1000_dma_init,
- .axi = dwmac1000_dma_axi,
- .dump_regs = dwmac1000_dump_dma_regs,
- .dma_mode = dwmac1000_dma_operation_mode,
- .enable_dma_transmission = dwmac_enable_dma_transmission,
- .enable_dma_irq = dwmac_enable_dma_irq,
- .disable_dma_irq = dwmac_disable_dma_irq,
- .start_tx = dwmac_dma_start_tx,
- .stop_tx = dwmac_dma_stop_tx,
- .start_rx = dwmac_dma_start_rx,
- .stop_rx = dwmac_dma_stop_rx,
- .dma_interrupt = dwmac_dma_interrupt,
- .get_hw_feature = dwmac1000_get_hw_feature,
- .rx_watchdog = dwmac1000_rx_watchdog,
- };
|