12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031 |
- /*
- * Copyright (C) 2014 Freescale Semiconductor
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
- #include <common.h>
- #include <asm/io.h>
- #include <asm/types.h>
- #include <malloc.h>
- #include <net.h>
- #include <hwconfig.h>
- #include <phy.h>
- #include <linux/compat.h>
- #include <fsl-mc/fsl_dpmac.h>
- #include <fsl-mc/ldpaa_wriop.h>
- #include "ldpaa_eth.h"
- #ifdef CONFIG_PHYLIB
- static int init_phy(struct eth_device *dev)
- {
- struct ldpaa_eth_priv *priv = (struct ldpaa_eth_priv *)dev->priv;
- struct phy_device *phydev = NULL;
- struct mii_dev *bus;
- bus = wriop_get_mdio(priv->dpmac_id);
- if (bus == NULL)
- return 0;
- phydev = phy_connect(bus, wriop_get_phy_address(priv->dpmac_id),
- dev, wriop_get_enet_if(priv->dpmac_id));
- if (!phydev) {
- printf("Failed to connect\n");
- return -1;
- }
- priv->phydev = phydev;
- return phy_config(phydev);
- }
- #endif
- #ifdef DEBUG
- static void ldpaa_eth_get_dpni_counter(void)
- {
- int err = 0;
- u64 value;
- err = dpni_get_counter(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle,
- DPNI_CNT_ING_FRAME,
- &value);
- if (err < 0) {
- printf("dpni_get_counter: DPNI_CNT_ING_FRAME failed\n");
- return;
- }
- printf("DPNI_CNT_ING_FRAME=%lld\n", value);
- err = dpni_get_counter(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle,
- DPNI_CNT_ING_BYTE,
- &value);
- if (err < 0) {
- printf("dpni_get_counter: DPNI_CNT_ING_BYTE failed\n");
- return;
- }
- printf("DPNI_CNT_ING_BYTE=%lld\n", value);
- err = dpni_get_counter(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle,
- DPNI_CNT_ING_FRAME_DROP ,
- &value);
- if (err < 0) {
- printf("dpni_get_counter: DPNI_CNT_ING_FRAME_DROP failed\n");
- return;
- }
- printf("DPNI_CNT_ING_FRAME_DROP =%lld\n", value);
- err = dpni_get_counter(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle,
- DPNI_CNT_ING_FRAME_DISCARD,
- &value);
- if (err < 0) {
- printf("dpni_get_counter: DPNI_CNT_ING_FRAME_DISCARD failed\n");
- return;
- }
- printf("DPNI_CNT_ING_FRAME_DISCARD=%lld\n", value);
- err = dpni_get_counter(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle,
- DPNI_CNT_EGR_FRAME,
- &value);
- if (err < 0) {
- printf("dpni_get_counter: DPNI_CNT_EGR_FRAME failed\n");
- return;
- }
- printf("DPNI_CNT_EGR_FRAME=%lld\n", value);
- err = dpni_get_counter(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle,
- DPNI_CNT_EGR_BYTE ,
- &value);
- if (err < 0) {
- printf("dpni_get_counter: DPNI_CNT_EGR_BYTE failed\n");
- return;
- }
- printf("DPNI_CNT_EGR_BYTE =%lld\n", value);
- err = dpni_get_counter(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle,
- DPNI_CNT_EGR_FRAME_DISCARD ,
- &value);
- if (err < 0) {
- printf("dpni_get_counter: DPNI_CNT_EGR_FRAME_DISCARD failed\n");
- return;
- }
- printf("DPNI_CNT_EGR_FRAME_DISCARD =%lld\n", value);
- }
- static void ldpaa_eth_get_dpmac_counter(struct eth_device *net_dev)
- {
- struct ldpaa_eth_priv *priv = (struct ldpaa_eth_priv *)net_dev->priv;
- int err = 0;
- u64 value;
- err = dpmac_get_counter(dflt_mc_io, MC_CMD_NO_FLAGS,
- priv->dpmac_handle,
- DPMAC_CNT_ING_BYTE,
- &value);
- if (err < 0) {
- printf("dpmac_get_counter: DPMAC_CNT_ING_BYTE failed\n");
- return;
- }
- printf("DPMAC_CNT_ING_BYTE=%lld\n", value);
- err = dpmac_get_counter(dflt_mc_io, MC_CMD_NO_FLAGS,
- priv->dpmac_handle,
- DPMAC_CNT_ING_FRAME_DISCARD,
- &value);
- if (err < 0) {
- printf("dpmac_get_counter: DPMAC_CNT_ING_FRAME_DISCARD failed\n");
- return;
- }
- printf("DPMAC_CNT_ING_FRAME_DISCARD=%lld\n", value);
- err = dpmac_get_counter(dflt_mc_io, MC_CMD_NO_FLAGS,
- priv->dpmac_handle,
- DPMAC_CNT_ING_ALIGN_ERR,
- &value);
- if (err < 0) {
- printf("dpmac_get_counter: DPMAC_CNT_ING_ALIGN_ERR failed\n");
- return;
- }
- printf("DPMAC_CNT_ING_ALIGN_ERR =%lld\n", value);
- err = dpmac_get_counter(dflt_mc_io, MC_CMD_NO_FLAGS,
- priv->dpmac_handle,
- DPMAC_CNT_ING_BYTE,
- &value);
- if (err < 0) {
- printf("dpmac_get_counter: DPMAC_CNT_ING_BYTE failed\n");
- return;
- }
- printf("DPMAC_CNT_ING_BYTE=%lld\n", value);
- err = dpmac_get_counter(dflt_mc_io, MC_CMD_NO_FLAGS,
- priv->dpmac_handle,
- DPMAC_CNT_ING_ERR_FRAME,
- &value);
- if (err < 0) {
- printf("dpmac_get_counter: DPMAC_CNT_ING_ERR_FRAME failed\n");
- return;
- }
- printf("DPMAC_CNT_ING_ERR_FRAME=%lld\n", value);
- err = dpmac_get_counter(dflt_mc_io, MC_CMD_NO_FLAGS,
- priv->dpmac_handle,
- DPMAC_CNT_EGR_BYTE ,
- &value);
- if (err < 0) {
- printf("dpmac_get_counter: DPMAC_CNT_EGR_BYTE failed\n");
- return;
- }
- printf("DPMAC_CNT_EGR_BYTE =%lld\n", value);
- err = dpmac_get_counter(dflt_mc_io, MC_CMD_NO_FLAGS,
- priv->dpmac_handle,
- DPMAC_CNT_EGR_ERR_FRAME ,
- &value);
- if (err < 0) {
- printf("dpmac_get_counter: DPMAC_CNT_EGR_ERR_FRAME failed\n");
- return;
- }
- printf("DPMAC_CNT_EGR_ERR_FRAME =%lld\n", value);
- }
- #endif
- static void ldpaa_eth_rx(struct ldpaa_eth_priv *priv,
- const struct dpaa_fd *fd)
- {
- u64 fd_addr;
- uint16_t fd_offset;
- uint32_t fd_length;
- struct ldpaa_fas *fas;
- uint32_t status, err;
- u32 timeo = (CONFIG_SYS_HZ * 2) / 1000;
- u32 time_start;
- struct qbman_release_desc releasedesc;
- struct qbman_swp *swp = dflt_dpio->sw_portal;
- fd_addr = ldpaa_fd_get_addr(fd);
- fd_offset = ldpaa_fd_get_offset(fd);
- fd_length = ldpaa_fd_get_len(fd);
- debug("Rx frame:data addr=0x%p size=0x%x\n", (u64 *)fd_addr, fd_length);
- if (fd->simple.frc & LDPAA_FD_FRC_FASV) {
- /* Read the frame annotation status word and check for errors */
- fas = (struct ldpaa_fas *)
- ((uint8_t *)(fd_addr) +
- dflt_dpni->buf_layout.private_data_size);
- status = le32_to_cpu(fas->status);
- if (status & LDPAA_ETH_RX_ERR_MASK) {
- printf("Rx frame error(s): 0x%08x\n",
- status & LDPAA_ETH_RX_ERR_MASK);
- goto error;
- } else if (status & LDPAA_ETH_RX_UNSUPP_MASK) {
- printf("Unsupported feature in bitmask: 0x%08x\n",
- status & LDPAA_ETH_RX_UNSUPP_MASK);
- goto error;
- }
- }
- debug("Rx frame: To Upper layer\n");
- net_process_received_packet((uint8_t *)(fd_addr) + fd_offset,
- fd_length);
- error:
- flush_dcache_range(fd_addr, fd_addr + LDPAA_ETH_RX_BUFFER_SIZE);
- qbman_release_desc_clear(&releasedesc);
- qbman_release_desc_set_bpid(&releasedesc, dflt_dpbp->dpbp_attr.bpid);
- time_start = get_timer(0);
- do {
- /* Release buffer into the QBMAN */
- err = qbman_swp_release(swp, &releasedesc, &fd_addr, 1);
- } while (get_timer(time_start) < timeo && err == -EBUSY);
- if (err == -EBUSY)
- printf("Rx frame: QBMAN buffer release fails\n");
- return;
- }
- static int ldpaa_eth_pull_dequeue_rx(struct eth_device *dev)
- {
- struct ldpaa_eth_priv *priv = (struct ldpaa_eth_priv *)dev->priv;
- const struct ldpaa_dq *dq;
- const struct dpaa_fd *fd;
- int i = 5, err = 0, status;
- u32 timeo = (CONFIG_SYS_HZ * 2) / 1000;
- u32 time_start;
- static struct qbman_pull_desc pulldesc;
- struct qbman_swp *swp = dflt_dpio->sw_portal;
- while (--i) {
- qbman_pull_desc_clear(&pulldesc);
- qbman_pull_desc_set_numframes(&pulldesc, 1);
- qbman_pull_desc_set_fq(&pulldesc, priv->rx_dflt_fqid);
- err = qbman_swp_pull(swp, &pulldesc);
- if (err < 0) {
- printf("Dequeue frames error:0x%08x\n", err);
- continue;
- }
- time_start = get_timer(0);
- do {
- dq = qbman_swp_dqrr_next(swp);
- } while (get_timer(time_start) < timeo && !dq);
- if (dq) {
- /* Check for valid frame. If not sent a consume
- * confirmation to QBMAN otherwise give it to NADK
- * application and then send consume confirmation to
- * QBMAN.
- */
- status = (uint8_t)ldpaa_dq_flags(dq);
- if ((status & LDPAA_DQ_STAT_VALIDFRAME) == 0) {
- debug("Dequeue RX frames:");
- debug("No frame delivered\n");
- qbman_swp_dqrr_consume(swp, dq);
- continue;
- }
- fd = ldpaa_dq_fd(dq);
- /* Obtain FD and process it */
- ldpaa_eth_rx(priv, fd);
- qbman_swp_dqrr_consume(swp, dq);
- break;
- } else {
- err = -ENODATA;
- debug("No DQRR entries\n");
- break;
- }
- }
- return err;
- }
- static int ldpaa_eth_tx(struct eth_device *net_dev, void *buf, int len)
- {
- struct ldpaa_eth_priv *priv = (struct ldpaa_eth_priv *)net_dev->priv;
- struct dpaa_fd fd;
- u64 buffer_start;
- int data_offset, err;
- u32 timeo = (CONFIG_SYS_HZ * 10) / 1000;
- u32 time_start;
- struct qbman_swp *swp = dflt_dpio->sw_portal;
- struct qbman_eq_desc ed;
- struct qbman_release_desc releasedesc;
- /* Setup the FD fields */
- memset(&fd, 0, sizeof(fd));
- data_offset = priv->tx_data_offset;
- do {
- err = qbman_swp_acquire(dflt_dpio->sw_portal,
- dflt_dpbp->dpbp_attr.bpid,
- &buffer_start, 1);
- } while (err == -EBUSY);
- if (err < 0) {
- printf("qbman_swp_acquire() failed\n");
- return -ENOMEM;
- }
- debug("TX data: malloc buffer start=0x%p\n", (u64 *)buffer_start);
- memcpy(((uint8_t *)(buffer_start) + data_offset), buf, len);
- flush_dcache_range(buffer_start, buffer_start +
- LDPAA_ETH_RX_BUFFER_SIZE);
- ldpaa_fd_set_addr(&fd, (u64)buffer_start);
- ldpaa_fd_set_offset(&fd, (uint16_t)(data_offset));
- ldpaa_fd_set_bpid(&fd, dflt_dpbp->dpbp_attr.bpid);
- ldpaa_fd_set_len(&fd, len);
- fd.simple.ctrl = LDPAA_FD_CTRL_ASAL | LDPAA_FD_CTRL_PTA |
- LDPAA_FD_CTRL_PTV1;
- qbman_eq_desc_clear(&ed);
- qbman_eq_desc_set_no_orp(&ed, 0);
- qbman_eq_desc_set_qd(&ed, priv->tx_qdid, priv->tx_flow_id, 0);
- time_start = get_timer(0);
- while (get_timer(time_start) < timeo) {
- err = qbman_swp_enqueue(swp, &ed,
- (const struct qbman_fd *)(&fd));
- if (err != -EBUSY)
- break;
- }
- if (err < 0) {
- printf("error enqueueing Tx frame\n");
- goto error;
- }
- return err;
- error:
- qbman_release_desc_clear(&releasedesc);
- qbman_release_desc_set_bpid(&releasedesc, dflt_dpbp->dpbp_attr.bpid);
- time_start = get_timer(0);
- do {
- /* Release buffer into the QBMAN */
- err = qbman_swp_release(swp, &releasedesc, &buffer_start, 1);
- } while (get_timer(time_start) < timeo && err == -EBUSY);
- if (err == -EBUSY)
- printf("TX data: QBMAN buffer release fails\n");
- return err;
- }
- static int ldpaa_eth_open(struct eth_device *net_dev, bd_t *bd)
- {
- struct ldpaa_eth_priv *priv = (struct ldpaa_eth_priv *)net_dev->priv;
- struct dpni_queue_attr rx_queue_attr;
- struct dpmac_link_state dpmac_link_state = { 0 };
- #ifdef DEBUG
- struct dpni_link_state link_state;
- #endif
- int err = 0;
- struct mii_dev *bus;
- phy_interface_t enet_if;
- if (net_dev->state == ETH_STATE_ACTIVE)
- return 0;
- if (get_mc_boot_status() != 0) {
- printf("ERROR (MC is not booted)\n");
- return -ENODEV;
- }
- if (get_dpl_apply_status() == 0) {
- printf("ERROR (DPL is deployed. No device available)\n");
- return -ENODEV;
- }
- /* DPMAC initialization */
- err = ldpaa_dpmac_setup(priv);
- if (err < 0)
- goto err_dpmac_setup;
- #ifdef CONFIG_PHYLIB
- if (priv->phydev)
- err = phy_startup(priv->phydev);
- if (err) {
- printf("%s: Could not initialize\n",
- priv->phydev->dev->name);
- goto err_dpamc_bind;
- }
- #else
- priv->phydev = (struct phy_device *)malloc(sizeof(struct phy_device));
- memset(priv->phydev, 0, sizeof(struct phy_device));
- priv->phydev->speed = SPEED_1000;
- priv->phydev->link = 1;
- priv->phydev->duplex = DUPLEX_FULL;
- #endif
- bus = wriop_get_mdio(priv->dpmac_id);
- enet_if = wriop_get_enet_if(priv->dpmac_id);
- if ((bus == NULL) &&
- (enet_if == PHY_INTERFACE_MODE_XGMII)) {
- priv->phydev = (struct phy_device *)
- malloc(sizeof(struct phy_device));
- memset(priv->phydev, 0, sizeof(struct phy_device));
- priv->phydev->speed = SPEED_10000;
- priv->phydev->link = 1;
- priv->phydev->duplex = DUPLEX_FULL;
- }
- if (!priv->phydev->link) {
- printf("%s: No link.\n", priv->phydev->dev->name);
- err = -1;
- goto err_dpamc_bind;
- }
- /* DPMAC binding DPNI */
- err = ldpaa_dpmac_bind(priv);
- if (err)
- goto err_dpamc_bind;
- /* DPNI initialization */
- err = ldpaa_dpni_setup(priv);
- if (err < 0)
- goto err_dpni_setup;
- err = ldpaa_dpbp_setup();
- if (err < 0)
- goto err_dpbp_setup;
- /* DPNI binding DPBP */
- err = ldpaa_dpni_bind(priv);
- if (err)
- goto err_dpni_bind;
- err = dpni_add_mac_addr(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle, net_dev->enetaddr);
- if (err) {
- printf("dpni_add_mac_addr() failed\n");
- return err;
- }
- err = dpni_enable(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_handle);
- if (err < 0) {
- printf("dpni_enable() failed\n");
- return err;
- }
- dpmac_link_state.rate = priv->phydev->speed;
- if (priv->phydev->autoneg == AUTONEG_DISABLE)
- dpmac_link_state.options &= ~DPMAC_LINK_OPT_AUTONEG;
- else
- dpmac_link_state.options |= DPMAC_LINK_OPT_AUTONEG;
- if (priv->phydev->duplex == DUPLEX_HALF)
- dpmac_link_state.options |= DPMAC_LINK_OPT_HALF_DUPLEX;
- dpmac_link_state.up = priv->phydev->link;
- err = dpmac_set_link_state(dflt_mc_io, MC_CMD_NO_FLAGS,
- priv->dpmac_handle, &dpmac_link_state);
- if (err < 0) {
- printf("dpmac_set_link_state() failed\n");
- return err;
- }
- #ifdef DEBUG
- err = dpni_get_link_state(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle, &link_state);
- if (err < 0) {
- printf("dpni_get_link_state() failed\n");
- return err;
- }
- printf("link status: %d - ", link_state.up);
- link_state.up == 0 ? printf("down\n") :
- link_state.up == 1 ? printf("up\n") : printf("error state\n");
- #endif
- /* TODO: support multiple Rx flows */
- err = dpni_get_rx_flow(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle, 0, 0, &rx_queue_attr);
- if (err) {
- printf("dpni_get_rx_flow() failed\n");
- goto err_rx_flow;
- }
- priv->rx_dflt_fqid = rx_queue_attr.fqid;
- err = dpni_get_qdid(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_handle,
- &priv->tx_qdid);
- if (err) {
- printf("dpni_get_qdid() failed\n");
- goto err_qdid;
- }
- return priv->phydev->link;
- err_qdid:
- err_rx_flow:
- dpni_disable(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_handle);
- err_dpni_bind:
- ldpaa_dpbp_free();
- err_dpbp_setup:
- dpni_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_handle);
- err_dpni_setup:
- err_dpamc_bind:
- dpmac_destroy(dflt_mc_io, MC_CMD_NO_FLAGS, priv->dpmac_handle);
- err_dpmac_setup:
- return err;
- }
- static void ldpaa_eth_stop(struct eth_device *net_dev)
- {
- struct ldpaa_eth_priv *priv = (struct ldpaa_eth_priv *)net_dev->priv;
- int err = 0;
- #ifdef CONFIG_PHYLIB
- struct mii_dev *bus = wriop_get_mdio(priv->dpmac_id);
- #endif
- if ((net_dev->state == ETH_STATE_PASSIVE) ||
- (net_dev->state == ETH_STATE_INIT))
- return;
- #ifdef DEBUG
- ldpaa_eth_get_dpni_counter();
- ldpaa_eth_get_dpmac_counter(net_dev);
- #endif
- err = dprc_disconnect(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dprc_handle, &dpmac_endpoint);
- if (err < 0)
- printf("dprc_disconnect() failed dpmac_endpoint\n");
- err = dpmac_destroy(dflt_mc_io, MC_CMD_NO_FLAGS, priv->dpmac_handle);
- if (err < 0)
- printf("dpmac_destroy() failed\n");
- /* Stop Tx and Rx traffic */
- err = dpni_disable(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_handle);
- if (err < 0)
- printf("dpni_disable() failed\n");
- #ifdef CONFIG_PHYLIB
- if (priv->phydev && bus != NULL)
- phy_shutdown(priv->phydev);
- else
- free(priv->phydev);
- #endif
- ldpaa_dpbp_free();
- dpni_reset(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_handle);
- dpni_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_handle);
- }
- static void ldpaa_dpbp_drain_cnt(int count)
- {
- uint64_t buf_array[7];
- void *addr;
- int ret, i;
- BUG_ON(count > 7);
- do {
- ret = qbman_swp_acquire(dflt_dpio->sw_portal,
- dflt_dpbp->dpbp_attr.bpid,
- buf_array, count);
- if (ret < 0) {
- printf("qbman_swp_acquire() failed\n");
- return;
- }
- for (i = 0; i < ret; i++) {
- addr = (void *)buf_array[i];
- debug("Free: buffer addr =0x%p\n", addr);
- free(addr);
- }
- } while (ret);
- }
- static void ldpaa_dpbp_drain(void)
- {
- int i;
- for (i = 0; i < LDPAA_ETH_NUM_BUFS; i += 7)
- ldpaa_dpbp_drain_cnt(7);
- }
- static int ldpaa_bp_add_7(uint16_t bpid)
- {
- uint64_t buf_array[7];
- u8 *addr;
- int i;
- struct qbman_release_desc rd;
- for (i = 0; i < 7; i++) {
- addr = memalign(LDPAA_ETH_BUF_ALIGN, LDPAA_ETH_RX_BUFFER_SIZE);
- if (!addr) {
- printf("addr allocation failed\n");
- goto err_alloc;
- }
- memset(addr, 0x00, LDPAA_ETH_RX_BUFFER_SIZE);
- flush_dcache_range((u64)addr,
- (u64)(addr + LDPAA_ETH_RX_BUFFER_SIZE));
- buf_array[i] = (uint64_t)addr;
- debug("Release: buffer addr =0x%p\n", addr);
- }
- release_bufs:
- /* In case the portal is busy, retry until successful.
- * This function is guaranteed to succeed in a reasonable amount
- * of time.
- */
- do {
- mdelay(1);
- qbman_release_desc_clear(&rd);
- qbman_release_desc_set_bpid(&rd, bpid);
- } while (qbman_swp_release(dflt_dpio->sw_portal, &rd, buf_array, i));
- return i;
- err_alloc:
- if (i)
- goto release_bufs;
- return 0;
- }
- static int ldpaa_dpbp_seed(uint16_t bpid)
- {
- int i;
- int count;
- for (i = 0; i < LDPAA_ETH_NUM_BUFS; i += 7) {
- count = ldpaa_bp_add_7(bpid);
- if (count < 7)
- printf("Buffer Seed= %d\n", count);
- }
- return 0;
- }
- static int ldpaa_dpbp_setup(void)
- {
- int err;
- err = dpbp_open(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpbp->dpbp_attr.id,
- &dflt_dpbp->dpbp_handle);
- if (err) {
- printf("dpbp_open() failed\n");
- goto err_open;
- }
- err = dpbp_enable(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpbp->dpbp_handle);
- if (err) {
- printf("dpbp_enable() failed\n");
- goto err_enable;
- }
- err = dpbp_get_attributes(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpbp->dpbp_handle,
- &dflt_dpbp->dpbp_attr);
- if (err) {
- printf("dpbp_get_attributes() failed\n");
- goto err_get_attr;
- }
- err = ldpaa_dpbp_seed(dflt_dpbp->dpbp_attr.bpid);
- if (err) {
- printf("Buffer seeding failed for DPBP %d (bpid=%d)\n",
- dflt_dpbp->dpbp_attr.id, dflt_dpbp->dpbp_attr.bpid);
- goto err_seed;
- }
- return 0;
- err_seed:
- err_get_attr:
- dpbp_disable(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpbp->dpbp_handle);
- err_enable:
- dpbp_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpbp->dpbp_handle);
- err_open:
- return err;
- }
- static void ldpaa_dpbp_free(void)
- {
- ldpaa_dpbp_drain();
- dpbp_disable(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpbp->dpbp_handle);
- dpbp_reset(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpbp->dpbp_handle);
- dpbp_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpbp->dpbp_handle);
- }
- static int ldpaa_dpmac_version_check(struct fsl_mc_io *mc_io,
- struct ldpaa_eth_priv *priv)
- {
- struct dpmac_attr attr;
- int error;
- memset(&attr, 0, sizeof(struct dpmac_attr));
- error = dpmac_get_attributes(mc_io, MC_CMD_NO_FLAGS,
- priv->dpmac_handle,
- &attr);
- if (error == 0) {
- if ((attr.version.major != DPMAC_VER_MAJOR) ||
- (attr.version.minor != DPMAC_VER_MINOR)) {
- printf("DPMAC version mismatch found %u.%u,",
- attr.version.major, attr.version.minor);
- printf("supported version is %u.%u\n",
- DPMAC_VER_MAJOR, DPMAC_VER_MINOR);
- }
- }
- return error;
- }
- static int ldpaa_dpmac_setup(struct ldpaa_eth_priv *priv)
- {
- int err = 0;
- struct dpmac_cfg dpmac_cfg;
- dpmac_cfg.mac_id = priv->dpmac_id;
- err = dpmac_create(dflt_mc_io, MC_CMD_NO_FLAGS, &dpmac_cfg,
- &priv->dpmac_handle);
- if (err)
- printf("dpmac_create() failed\n");
- err = ldpaa_dpmac_version_check(dflt_mc_io, priv);
- if (err < 0)
- printf("ldpaa_dpmac_version_check() failed: %d\n", err);
- return err;
- }
- static int ldpaa_dpmac_bind(struct ldpaa_eth_priv *priv)
- {
- int err = 0;
- struct dprc_connection_cfg dprc_connection_cfg = {
- /* If both rates are zero the connection */
- /* will be configured in "best effort" mode. */
- .committed_rate = 0,
- .max_rate = 0
- };
- #ifdef DEBUG
- struct dprc_endpoint dbg_endpoint;
- int state = 0;
- #endif
- memset(&dpmac_endpoint, 0, sizeof(struct dprc_endpoint));
- strcpy(dpmac_endpoint.type, "dpmac");
- dpmac_endpoint.id = priv->dpmac_id;
- memset(&dpni_endpoint, 0, sizeof(struct dprc_endpoint));
- strcpy(dpni_endpoint.type, "dpni");
- dpni_endpoint.id = dflt_dpni->dpni_id;
- err = dprc_connect(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dprc_handle,
- &dpmac_endpoint,
- &dpni_endpoint,
- &dprc_connection_cfg);
- if (err)
- printf("dprc_connect() failed\n");
- #ifdef DEBUG
- err = dprc_get_connection(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dprc_handle, &dpni_endpoint,
- &dbg_endpoint, &state);
- printf("%s, DPMAC Type= %s\n", __func__, dbg_endpoint.type);
- printf("%s, DPMAC ID= %d\n", __func__, dbg_endpoint.id);
- printf("%s, DPMAC State= %d\n", __func__, state);
- memset(&dbg_endpoint, 0, sizeof(struct dprc_endpoint));
- err = dprc_get_connection(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dprc_handle, &dpmac_endpoint,
- &dbg_endpoint, &state);
- printf("%s, DPNI Type= %s\n", __func__, dbg_endpoint.type);
- printf("%s, DPNI ID= %d\n", __func__, dbg_endpoint.id);
- printf("%s, DPNI State= %d\n", __func__, state);
- #endif
- return err;
- }
- static int ldpaa_dpni_setup(struct ldpaa_eth_priv *priv)
- {
- int err;
- /* and get a handle for the DPNI this interface is associate with */
- err = dpni_open(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_id,
- &dflt_dpni->dpni_handle);
- if (err) {
- printf("dpni_open() failed\n");
- goto err_open;
- }
- err = dpni_get_attributes(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle,
- &dflt_dpni->dpni_attrs);
- if (err) {
- printf("dpni_get_attributes() failed (err=%d)\n", err);
- goto err_get_attr;
- }
- /* Configure our buffers' layout */
- dflt_dpni->buf_layout.options = DPNI_BUF_LAYOUT_OPT_PARSER_RESULT |
- DPNI_BUF_LAYOUT_OPT_FRAME_STATUS |
- DPNI_BUF_LAYOUT_OPT_PRIVATE_DATA_SIZE |
- DPNI_BUF_LAYOUT_OPT_DATA_ALIGN;
- dflt_dpni->buf_layout.pass_parser_result = true;
- dflt_dpni->buf_layout.pass_frame_status = true;
- dflt_dpni->buf_layout.private_data_size = LDPAA_ETH_SWA_SIZE;
- /* HW erratum mandates data alignment in multiples of 256 */
- dflt_dpni->buf_layout.data_align = LDPAA_ETH_BUF_ALIGN;
- /* ...rx, ... */
- err = dpni_set_rx_buffer_layout(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle,
- &dflt_dpni->buf_layout);
- if (err) {
- printf("dpni_set_rx_buffer_layout() failed");
- goto err_buf_layout;
- }
- /* ... tx, ... */
- /* remove Rx-only options */
- dflt_dpni->buf_layout.options &= ~(DPNI_BUF_LAYOUT_OPT_DATA_ALIGN |
- DPNI_BUF_LAYOUT_OPT_PARSER_RESULT);
- err = dpni_set_tx_buffer_layout(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle,
- &dflt_dpni->buf_layout);
- if (err) {
- printf("dpni_set_tx_buffer_layout() failed");
- goto err_buf_layout;
- }
- /* ... tx-confirm. */
- dflt_dpni->buf_layout.options &= ~DPNI_BUF_LAYOUT_OPT_PRIVATE_DATA_SIZE;
- err = dpni_set_tx_conf_buffer_layout(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle,
- &dflt_dpni->buf_layout);
- if (err) {
- printf("dpni_set_tx_conf_buffer_layout() failed");
- goto err_buf_layout;
- }
- /* Now that we've set our tx buffer layout, retrieve the minimum
- * required tx data offset.
- */
- err = dpni_get_tx_data_offset(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle,
- &priv->tx_data_offset);
- if (err) {
- printf("dpni_get_tx_data_offset() failed\n");
- goto err_data_offset;
- }
- /* Warn in case TX data offset is not multiple of 64 bytes. */
- WARN_ON(priv->tx_data_offset % 64);
- /* Accomodate SWA space. */
- priv->tx_data_offset += LDPAA_ETH_SWA_SIZE;
- debug("priv->tx_data_offset=%d\n", priv->tx_data_offset);
- return 0;
- err_data_offset:
- err_buf_layout:
- err_get_attr:
- dpni_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_handle);
- err_open:
- return err;
- }
- static int ldpaa_dpni_bind(struct ldpaa_eth_priv *priv)
- {
- struct dpni_pools_cfg pools_params;
- struct dpni_tx_flow_cfg dflt_tx_flow;
- struct dpni_tx_conf_cfg tx_conf_cfg;
- int err = 0;
- memset(&pools_params, 0, sizeof(pools_params));
- pools_params.num_dpbp = 1;
- pools_params.pools[0].dpbp_id = (uint16_t)dflt_dpbp->dpbp_attr.id;
- pools_params.pools[0].buffer_size = LDPAA_ETH_RX_BUFFER_SIZE;
- err = dpni_set_pools(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle, &pools_params);
- if (err) {
- printf("dpni_set_pools() failed\n");
- return err;
- }
- priv->tx_flow_id = DPNI_NEW_FLOW_ID;
- memset(&dflt_tx_flow, 0, sizeof(dflt_tx_flow));
- dflt_tx_flow.use_common_tx_conf_queue = 0;
- err = dpni_set_tx_flow(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle, &priv->tx_flow_id,
- &dflt_tx_flow);
- if (err) {
- printf("dpni_set_tx_flow() failed\n");
- return err;
- }
- memset(&tx_conf_cfg, 0, sizeof(struct dpni_tx_conf_cfg));
- tx_conf_cfg.errors_only = true;
- /*Set tx-conf and error configuration*/
- err = dpni_set_tx_conf(dflt_mc_io, MC_CMD_NO_FLAGS,
- dflt_dpni->dpni_handle,
- priv->tx_flow_id, &tx_conf_cfg);
- if (err) {
- printf("dpni_set_tx_conf() failed\n");
- return err;
- }
- return 0;
- }
- static int ldpaa_eth_netdev_init(struct eth_device *net_dev,
- phy_interface_t enet_if)
- {
- int err;
- struct ldpaa_eth_priv *priv = (struct ldpaa_eth_priv *)net_dev->priv;
- sprintf(net_dev->name, "DPMAC%d@%s", priv->dpmac_id,
- phy_interface_strings[enet_if]);
- net_dev->iobase = 0;
- net_dev->init = ldpaa_eth_open;
- net_dev->halt = ldpaa_eth_stop;
- net_dev->send = ldpaa_eth_tx;
- net_dev->recv = ldpaa_eth_pull_dequeue_rx;
- #ifdef CONFIG_PHYLIB
- err = init_phy(net_dev);
- if (err < 0)
- return err;
- #endif
- err = eth_register(net_dev);
- if (err < 0) {
- printf("eth_register() = %d\n", err);
- return err;
- }
- return 0;
- }
- int ldpaa_eth_init(int dpmac_id, phy_interface_t enet_if)
- {
- struct eth_device *net_dev = NULL;
- struct ldpaa_eth_priv *priv = NULL;
- int err = 0;
- /* Net device */
- net_dev = (struct eth_device *)malloc(sizeof(struct eth_device));
- if (!net_dev) {
- printf("eth_device malloc() failed\n");
- return -ENOMEM;
- }
- memset(net_dev, 0, sizeof(struct eth_device));
- /* alloc the ldpaa ethernet private struct */
- priv = (struct ldpaa_eth_priv *)malloc(sizeof(struct ldpaa_eth_priv));
- if (!priv) {
- printf("ldpaa_eth_priv malloc() failed\n");
- return -ENOMEM;
- }
- memset(priv, 0, sizeof(struct ldpaa_eth_priv));
- net_dev->priv = (void *)priv;
- priv->net_dev = (struct eth_device *)net_dev;
- priv->dpmac_id = dpmac_id;
- debug("%s dpmac_id=%d\n", __func__, dpmac_id);
- err = ldpaa_eth_netdev_init(net_dev, enet_if);
- if (err)
- goto err_netdev_init;
- debug("ldpaa ethernet: Probed interface %s\n", net_dev->name);
- return 0;
- err_netdev_init:
- free(priv);
- net_dev->priv = NULL;
- free(net_dev);
- return err;
- }
|