1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312 |
- #include <common.h>
- #include <dm.h>
- #include <malloc.h>
- #include <memalign.h>
- #include <miiphy.h>
- #include <net.h>
- #include <netdev.h>
- #include "fec_mxc.h"
- #include <asm/io.h>
- #include <linux/errno.h>
- #include <linux/compiler.h>
- #include <asm/arch/clock.h>
- #include <asm/arch/imx-regs.h>
- #include <asm/imx-common/sys_proto.h>
- DECLARE_GLOBAL_DATA_PTR;
- #define FEC_XFER_TIMEOUT 5000
- #define FEC_DMA_RX_MINALIGN 64
- #ifndef CONFIG_MII
- #error "CONFIG_MII has to be defined!"
- #endif
- #ifndef CONFIG_FEC_XCV_TYPE
- #define CONFIG_FEC_XCV_TYPE MII100
- #endif
- #ifdef CONFIG_MX28
- #define CONFIG_FEC_MXC_SWAP_PACKET
- #endif
- #define RXDESC_PER_CACHELINE (ARCH_DMA_MINALIGN/sizeof(struct fec_bd))
- #if ((ARCH_DMA_MINALIGN < 16) || (ARCH_DMA_MINALIGN % 16 != 0))
- #error "ARCH_DMA_MINALIGN must be multiple of 16!"
- #endif
- #if ((PKTALIGN < ARCH_DMA_MINALIGN) || \
- (PKTALIGN % ARCH_DMA_MINALIGN != 0))
- #error "PKTALIGN must be multiple of ARCH_DMA_MINALIGN!"
- #endif
- #undef DEBUG
- #ifdef CONFIG_FEC_MXC_SWAP_PACKET
- static void swap_packet(uint32_t *packet, int length)
- {
- int i;
- for (i = 0; i < DIV_ROUND_UP(length, 4); i++)
- packet[i] = __swab32(packet[i]);
- }
- #endif
- static int fec_mdio_read(struct ethernet_regs *eth, uint8_t phyaddr,
- uint8_t regaddr)
- {
- uint32_t reg;
- uint32_t phy;
- uint32_t start;
- int val;
-
- writel(FEC_IEVENT_MII, ð->ievent);
- reg = regaddr << FEC_MII_DATA_RA_SHIFT;
- phy = phyaddr << FEC_MII_DATA_PA_SHIFT;
- writel(FEC_MII_DATA_ST | FEC_MII_DATA_OP_RD | FEC_MII_DATA_TA |
- phy | reg, ð->mii_data);
-
- start = get_timer(0);
- while (!(readl(ð->ievent) & FEC_IEVENT_MII)) {
- if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) {
- printf("Read MDIO failed...\n");
- return -1;
- }
- }
-
- writel(FEC_IEVENT_MII, ð->ievent);
-
- val = (unsigned short)readl(ð->mii_data);
- debug("%s: phy: %02x reg:%02x val:%#x\n", __func__, phyaddr,
- regaddr, val);
- return val;
- }
- static void fec_mii_setspeed(struct ethernet_regs *eth)
- {
-
- u32 pclk = imx_get_fecclk();
- u32 speed = DIV_ROUND_UP(pclk, 5000000);
- u32 hold = DIV_ROUND_UP(pclk, 100000000) - 1;
- #ifdef FEC_QUIRK_ENET_MAC
- speed--;
- #endif
- writel(speed << 1 | hold << 8, ð->mii_speed);
- debug("%s: mii_speed %08x\n", __func__, readl(ð->mii_speed));
- }
- static int fec_mdio_write(struct ethernet_regs *eth, uint8_t phyaddr,
- uint8_t regaddr, uint16_t data)
- {
- uint32_t reg;
- uint32_t phy;
- uint32_t start;
- reg = regaddr << FEC_MII_DATA_RA_SHIFT;
- phy = phyaddr << FEC_MII_DATA_PA_SHIFT;
- writel(FEC_MII_DATA_ST | FEC_MII_DATA_OP_WR |
- FEC_MII_DATA_TA | phy | reg | data, ð->mii_data);
-
- start = get_timer(0);
- while (!(readl(ð->ievent) & FEC_IEVENT_MII)) {
- if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) {
- printf("Write MDIO failed...\n");
- return -1;
- }
- }
-
- writel(FEC_IEVENT_MII, ð->ievent);
- debug("%s: phy: %02x reg:%02x val:%#x\n", __func__, phyaddr,
- regaddr, data);
- return 0;
- }
- static int fec_phy_read(struct mii_dev *bus, int phyaddr, int dev_addr,
- int regaddr)
- {
- return fec_mdio_read(bus->priv, phyaddr, regaddr);
- }
- static int fec_phy_write(struct mii_dev *bus, int phyaddr, int dev_addr,
- int regaddr, u16 data)
- {
- return fec_mdio_write(bus->priv, phyaddr, regaddr, data);
- }
- #ifndef CONFIG_PHYLIB
- static int miiphy_restart_aneg(struct eth_device *dev)
- {
- int ret = 0;
- #if !defined(CONFIG_FEC_MXC_NO_ANEG)
- struct fec_priv *fec = (struct fec_priv *)dev->priv;
- struct ethernet_regs *eth = fec->bus->priv;
-
- #ifdef CONFIG_MX27
- fec_mdio_write(eth, fec->phy_id, MII_DCOUNTER, 0x00FF);
- #endif
- fec_mdio_write(eth, fec->phy_id, MII_BMCR, BMCR_RESET);
- udelay(1000);
-
- fec_mdio_write(eth, fec->phy_id, MII_ADVERTISE,
- LPA_100FULL | LPA_100HALF | LPA_10FULL |
- LPA_10HALF | PHY_ANLPAR_PSB_802_3);
- fec_mdio_write(eth, fec->phy_id, MII_BMCR,
- BMCR_ANENABLE | BMCR_ANRESTART);
- if (fec->mii_postcall)
- ret = fec->mii_postcall(fec->phy_id);
- #endif
- return ret;
- }
- #ifndef CONFIG_FEC_FIXED_SPEED
- static int miiphy_wait_aneg(struct eth_device *dev)
- {
- uint32_t start;
- int status;
- struct fec_priv *fec = (struct fec_priv *)dev->priv;
- struct ethernet_regs *eth = fec->bus->priv;
-
- start = get_timer(0);
- do {
- if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
- printf("%s: Autonegotiation timeout\n", dev->name);
- return -1;
- }
- status = fec_mdio_read(eth, fec->phy_id, MII_BMSR);
- if (status < 0) {
- printf("%s: Autonegotiation failed. status: %d\n",
- dev->name, status);
- return -1;
- }
- } while (!(status & BMSR_LSTATUS));
- return 0;
- }
- #endif
- #endif
- static int fec_rx_task_enable(struct fec_priv *fec)
- {
- writel(FEC_R_DES_ACTIVE_RDAR, &fec->eth->r_des_active);
- return 0;
- }
- static int fec_rx_task_disable(struct fec_priv *fec)
- {
- return 0;
- }
- static int fec_tx_task_enable(struct fec_priv *fec)
- {
- writel(FEC_X_DES_ACTIVE_TDAR, &fec->eth->x_des_active);
- return 0;
- }
- static int fec_tx_task_disable(struct fec_priv *fec)
- {
- return 0;
- }
- static void fec_rbd_init(struct fec_priv *fec, int count, int dsize)
- {
- uint32_t size;
- uint8_t *data;
- int i;
-
- size = roundup(dsize, ARCH_DMA_MINALIGN);
- for (i = 0; i < count; i++) {
- data = (uint8_t *)fec->rbd_base[i].data_pointer;
- memset(data, 0, dsize);
- flush_dcache_range((uint32_t)data, (uint32_t)data + size);
- fec->rbd_base[i].status = FEC_RBD_EMPTY;
- fec->rbd_base[i].data_length = 0;
- }
-
- fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY;
- fec->rbd_index = 0;
- flush_dcache_range((unsigned)fec->rbd_base,
- (unsigned)fec->rbd_base + size);
- }
- static void fec_tbd_init(struct fec_priv *fec)
- {
- unsigned addr = (unsigned)fec->tbd_base;
- unsigned size = roundup(2 * sizeof(struct fec_bd),
- ARCH_DMA_MINALIGN);
- memset(fec->tbd_base, 0, size);
- fec->tbd_base[0].status = 0;
- fec->tbd_base[1].status = FEC_TBD_WRAP;
- fec->tbd_index = 0;
- flush_dcache_range(addr, addr + size);
- }
- static void fec_rbd_clean(int last, struct fec_bd *prbd)
- {
- unsigned short flags = FEC_RBD_EMPTY;
- if (last)
- flags |= FEC_RBD_WRAP;
- writew(flags, &prbd->status);
- writew(0, &prbd->data_length);
- }
- static int fec_get_hwaddr(int dev_id, unsigned char *mac)
- {
- imx_get_mac_from_fuse(dev_id, mac);
- return !is_valid_ethaddr(mac);
- }
- #ifdef CONFIG_DM_ETH
- static int fecmxc_set_hwaddr(struct udevice *dev)
- #else
- static int fec_set_hwaddr(struct eth_device *dev)
- #endif
- {
- #ifdef CONFIG_DM_ETH
- struct fec_priv *fec = dev_get_priv(dev);
- struct eth_pdata *pdata = dev_get_platdata(dev);
- uchar *mac = pdata->enetaddr;
- #else
- uchar *mac = dev->enetaddr;
- struct fec_priv *fec = (struct fec_priv *)dev->priv;
- #endif
- writel(0, &fec->eth->iaddr1);
- writel(0, &fec->eth->iaddr2);
- writel(0, &fec->eth->gaddr1);
- writel(0, &fec->eth->gaddr2);
-
- writel((mac[0] << 24) + (mac[1] << 16) + (mac[2] << 8) + mac[3],
- &fec->eth->paddr1);
- writel((mac[4] << 24) + (mac[5] << 16) + 0x8808, &fec->eth->paddr2);
- return 0;
- }
- static void fec_reg_setup(struct fec_priv *fec)
- {
- uint32_t rcntrl;
-
- writel(0x00000000, &fec->eth->imask);
-
- writel(0xffffffff, &fec->eth->ievent);
-
-
- rcntrl = PKTSIZE << FEC_RCNTRL_MAX_FL_SHIFT;
- if (fec->xcv_type != SEVENWIRE)
- rcntrl |= FEC_RCNTRL_FCE | FEC_RCNTRL_MII_MODE;
- if (fec->xcv_type == RGMII)
- rcntrl |= FEC_RCNTRL_RGMII;
- else if (fec->xcv_type == RMII)
- rcntrl |= FEC_RCNTRL_RMII;
- writel(rcntrl, &fec->eth->r_cntrl);
- }
- #ifdef CONFIG_DM_ETH
- static int fec_open(struct udevice *dev)
- #else
- static int fec_open(struct eth_device *edev)
- #endif
- {
- #ifdef CONFIG_DM_ETH
- struct fec_priv *fec = dev_get_priv(dev);
- #else
- struct fec_priv *fec = (struct fec_priv *)edev->priv;
- #endif
- int speed;
- uint32_t addr, size;
- int i;
- debug("fec_open: fec_open(dev)\n");
-
- writel(1 << 2, &fec->eth->x_cntrl);
- fec->rbd_index = 0;
-
- for (i = 0; i < FEC_RBD_NUM - 1; i++)
- fec_rbd_clean(0, &fec->rbd_base[i]);
- fec_rbd_clean(1, &fec->rbd_base[i]);
-
- size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd),
- ARCH_DMA_MINALIGN);
- addr = (uint32_t)fec->rbd_base;
- flush_dcache_range(addr, addr + size);
- #ifdef FEC_QUIRK_ENET_MAC
-
- writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_DBSWAP,
- &fec->eth->ecntrl);
-
- writel(readl(&fec->eth->x_wmrk) | FEC_X_WMRK_STRFWD,
- &fec->eth->x_wmrk);
- #endif
-
- writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_ETHER_EN,
- &fec->eth->ecntrl);
- #if defined(CONFIG_MX25) || defined(CONFIG_MX53) || defined(CONFIG_MX6SL)
- udelay(100);
-
-
- writew(0, &fec->eth->miigsk_enr);
-
- while (readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY)
- udelay(2);
-
- writew(MIIGSK_CFGR_IF_MODE_RMII, &fec->eth->miigsk_cfgr);
-
- writew(MIIGSK_ENR_EN, &fec->eth->miigsk_enr);
-
- int max_loops = 10;
- while ((readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY) == 0) {
- if (--max_loops <= 0) {
- printf("WAIT for MII Gasket ready timed out\n");
- break;
- }
- }
- #endif
- #ifdef CONFIG_PHYLIB
- {
-
- int ret = phy_startup(fec->phydev);
- if (ret) {
- printf("Could not initialize PHY %s\n",
- fec->phydev->dev->name);
- return ret;
- }
- speed = fec->phydev->speed;
- }
- #elif CONFIG_FEC_FIXED_SPEED
- speed = CONFIG_FEC_FIXED_SPEED;
- #else
- miiphy_wait_aneg(edev);
- speed = miiphy_speed(edev->name, fec->phy_id);
- miiphy_duplex(edev->name, fec->phy_id);
- #endif
- #ifdef FEC_QUIRK_ENET_MAC
- {
- u32 ecr = readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_SPEED;
- u32 rcr = readl(&fec->eth->r_cntrl) & ~FEC_RCNTRL_RMII_10T;
- if (speed == _1000BASET)
- ecr |= FEC_ECNTRL_SPEED;
- else if (speed != _100BASET)
- rcr |= FEC_RCNTRL_RMII_10T;
- writel(ecr, &fec->eth->ecntrl);
- writel(rcr, &fec->eth->r_cntrl);
- }
- #endif
- debug("%s:Speed=%i\n", __func__, speed);
-
- fec_rx_task_enable(fec);
- udelay(100000);
- return 0;
- }
- #ifdef CONFIG_DM_ETH
- static int fecmxc_init(struct udevice *dev)
- #else
- static int fec_init(struct eth_device *dev, bd_t *bd)
- #endif
- {
- #ifdef CONFIG_DM_ETH
- struct fec_priv *fec = dev_get_priv(dev);
- #else
- struct fec_priv *fec = (struct fec_priv *)dev->priv;
- #endif
- uint32_t mib_ptr = (uint32_t)&fec->eth->rmon_t_drop;
- int i;
-
- #ifdef CONFIG_DM_ETH
- fecmxc_set_hwaddr(dev);
- #else
- fec_set_hwaddr(dev);
- #endif
-
- fec_tbd_init(fec);
-
- fec_rbd_init(fec, FEC_RBD_NUM, FEC_MAX_PKT_SIZE);
- fec_reg_setup(fec);
- if (fec->xcv_type != SEVENWIRE)
- fec_mii_setspeed(fec->bus->priv);
-
- writel(0x00010020, &fec->eth->op_pause);
- writel(0x2, &fec->eth->x_wmrk);
-
- writel(0x00000000, &fec->eth->gaddr1);
- writel(0x00000000, &fec->eth->gaddr2);
-
- if (!is_mx6ul()) {
-
- for (i = mib_ptr; i <= mib_ptr + 0xfc; i += 4)
- writel(0, i);
-
- writel(0x520, &fec->eth->r_fstart);
- }
-
- writel(FEC_MAX_PKT_SIZE, &fec->eth->emrbr);
- writel((uint32_t)fec->tbd_base, &fec->eth->etdsr);
- writel((uint32_t)fec->rbd_base, &fec->eth->erdsr);
- #ifndef CONFIG_PHYLIB
- if (fec->xcv_type != SEVENWIRE)
- miiphy_restart_aneg(dev);
- #endif
- fec_open(dev);
- return 0;
- }
- #ifdef CONFIG_DM_ETH
- static void fecmxc_halt(struct udevice *dev)
- #else
- static void fec_halt(struct eth_device *dev)
- #endif
- {
- #ifdef CONFIG_DM_ETH
- struct fec_priv *fec = dev_get_priv(dev);
- #else
- struct fec_priv *fec = (struct fec_priv *)dev->priv;
- #endif
- int counter = 0xffff;
-
- writel(FEC_TCNTRL_GTS | readl(&fec->eth->x_cntrl),
- &fec->eth->x_cntrl);
- debug("eth_halt: wait for stop regs\n");
-
- while ((counter--) && (!(readl(&fec->eth->ievent) & FEC_IEVENT_GRA)))
- udelay(1);
-
- fec_tx_task_disable(fec);
- fec_rx_task_disable(fec);
-
- writel(readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_ETHER_EN,
- &fec->eth->ecntrl);
- fec->rbd_index = 0;
- fec->tbd_index = 0;
- debug("eth_halt: done\n");
- }
- #ifdef CONFIG_DM_ETH
- static int fecmxc_send(struct udevice *dev, void *packet, int length)
- #else
- static int fec_send(struct eth_device *dev, void *packet, int length)
- #endif
- {
- unsigned int status;
- uint32_t size, end;
- uint32_t addr;
- int timeout = FEC_XFER_TIMEOUT;
- int ret = 0;
-
- #ifdef CONFIG_DM_ETH
- struct fec_priv *fec = dev_get_priv(dev);
- #else
- struct fec_priv *fec = (struct fec_priv *)dev->priv;
- #endif
-
- if ((length > 1500) || (length <= 0)) {
- printf("Payload (%d) too large\n", length);
- return -1;
- }
-
- #ifdef CONFIG_FEC_MXC_SWAP_PACKET
- swap_packet((uint32_t *)packet, length);
- #endif
- addr = (uint32_t)packet;
- end = roundup(addr + length, ARCH_DMA_MINALIGN);
- addr &= ~(ARCH_DMA_MINALIGN - 1);
- flush_dcache_range(addr, end);
- writew(length, &fec->tbd_base[fec->tbd_index].data_length);
- writel(addr, &fec->tbd_base[fec->tbd_index].data_pointer);
-
- status = readw(&fec->tbd_base[fec->tbd_index].status) & FEC_TBD_WRAP;
- status |= FEC_TBD_LAST | FEC_TBD_TC | FEC_TBD_READY;
- writew(status, &fec->tbd_base[fec->tbd_index].status);
-
- size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
- addr = (uint32_t)fec->tbd_base;
- flush_dcache_range(addr, addr + size);
-
- readl(addr + size - 4);
-
- fec_tx_task_enable(fec);
-
- while (--timeout) {
- if (!(readl(&fec->eth->x_des_active) & FEC_X_DES_ACTIVE_TDAR))
- break;
- }
- if (!timeout) {
- ret = -EINVAL;
- goto out;
- }
-
- timeout = FEC_XFER_TIMEOUT;
- while (--timeout) {
- invalidate_dcache_range(addr, addr + size);
- if (!(readw(&fec->tbd_base[fec->tbd_index].status) &
- FEC_TBD_READY))
- break;
- }
- if (!timeout)
- ret = -EINVAL;
- out:
- debug("fec_send: status 0x%x index %d ret %i\n",
- readw(&fec->tbd_base[fec->tbd_index].status),
- fec->tbd_index, ret);
-
- if (fec->tbd_index)
- fec->tbd_index = 0;
- else
- fec->tbd_index = 1;
- return ret;
- }
- #ifdef CONFIG_DM_ETH
- static int fecmxc_recv(struct udevice *dev, int flags, uchar **packetp)
- #else
- static int fec_recv(struct eth_device *dev)
- #endif
- {
- #ifdef CONFIG_DM_ETH
- struct fec_priv *fec = dev_get_priv(dev);
- #else
- struct fec_priv *fec = (struct fec_priv *)dev->priv;
- #endif
- struct fec_bd *rbd = &fec->rbd_base[fec->rbd_index];
- unsigned long ievent;
- int frame_length, len = 0;
- uint16_t bd_status;
- uint32_t addr, size, end;
- int i;
- ALLOC_CACHE_ALIGN_BUFFER(uchar, buff, FEC_MAX_PKT_SIZE);
-
- ievent = readl(&fec->eth->ievent);
- writel(ievent, &fec->eth->ievent);
- debug("fec_recv: ievent 0x%lx\n", ievent);
- if (ievent & FEC_IEVENT_BABR) {
- #ifdef CONFIG_DM_ETH
- fecmxc_halt(dev);
- fecmxc_init(dev);
- #else
- fec_halt(dev);
- fec_init(dev, fec->bd);
- #endif
- printf("some error: 0x%08lx\n", ievent);
- return 0;
- }
- if (ievent & FEC_IEVENT_HBERR) {
-
- writel(0x00000001 | readl(&fec->eth->x_cntrl),
- &fec->eth->x_cntrl);
- }
- if (ievent & FEC_IEVENT_GRA) {
-
- if (readl(&fec->eth->x_cntrl) & 0x00000001) {
- #ifdef CONFIG_DM_ETH
- fecmxc_halt(dev);
- #else
- fec_halt(dev);
- #endif
- writel(~0x00000001 & readl(&fec->eth->x_cntrl),
- &fec->eth->x_cntrl);
- #ifdef CONFIG_DM_ETH
- fecmxc_init(dev);
- #else
- fec_init(dev, fec->bd);
- #endif
- }
- }
-
- addr = (uint32_t)rbd;
- addr &= ~(ARCH_DMA_MINALIGN - 1);
- size = roundup(sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
- invalidate_dcache_range(addr, addr + size);
- bd_status = readw(&rbd->status);
- debug("fec_recv: status 0x%x\n", bd_status);
- if (!(bd_status & FEC_RBD_EMPTY)) {
- if ((bd_status & FEC_RBD_LAST) && !(bd_status & FEC_RBD_ERR) &&
- ((readw(&rbd->data_length) - 4) > 14)) {
-
- addr = readl(&rbd->data_pointer);
- frame_length = readw(&rbd->data_length) - 4;
-
- end = roundup(addr + frame_length, ARCH_DMA_MINALIGN);
- addr &= ~(ARCH_DMA_MINALIGN - 1);
- invalidate_dcache_range(addr, end);
-
- #ifdef CONFIG_FEC_MXC_SWAP_PACKET
- swap_packet((uint32_t *)addr, frame_length);
- #endif
- memcpy(buff, (char *)addr, frame_length);
- net_process_received_packet(buff, frame_length);
- len = frame_length;
- } else {
- if (bd_status & FEC_RBD_ERR)
- printf("error frame: 0x%08x 0x%08x\n",
- addr, bd_status);
- }
-
- size = RXDESC_PER_CACHELINE - 1;
- if ((fec->rbd_index & size) == size) {
- i = fec->rbd_index - size;
- addr = (uint32_t)&fec->rbd_base[i];
- for (; i <= fec->rbd_index ; i++) {
- fec_rbd_clean(i == (FEC_RBD_NUM - 1),
- &fec->rbd_base[i]);
- }
- flush_dcache_range(addr,
- addr + ARCH_DMA_MINALIGN);
- }
- fec_rx_task_enable(fec);
- fec->rbd_index = (fec->rbd_index + 1) % FEC_RBD_NUM;
- }
- debug("fec_recv: stop\n");
- return len;
- }
- static void fec_set_dev_name(char *dest, int dev_id)
- {
- sprintf(dest, (dev_id == -1) ? "FEC" : "FEC%i", dev_id);
- }
- static int fec_alloc_descs(struct fec_priv *fec)
- {
- unsigned int size;
- int i;
- uint8_t *data;
-
- size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
- fec->tbd_base = memalign(ARCH_DMA_MINALIGN, size);
- if (!fec->tbd_base)
- goto err_tx;
-
- size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
- fec->rbd_base = memalign(ARCH_DMA_MINALIGN, size);
- if (!fec->rbd_base)
- goto err_rx;
- memset(fec->rbd_base, 0, size);
-
-
- size = roundup(FEC_MAX_PKT_SIZE, FEC_DMA_RX_MINALIGN);
- for (i = 0; i < FEC_RBD_NUM; i++) {
- data = memalign(FEC_DMA_RX_MINALIGN, size);
- if (!data) {
- printf("%s: error allocating rxbuf %d\n", __func__, i);
- goto err_ring;
- }
- memset(data, 0, size);
- fec->rbd_base[i].data_pointer = (uint32_t)data;
- fec->rbd_base[i].status = FEC_RBD_EMPTY;
- fec->rbd_base[i].data_length = 0;
-
- flush_dcache_range((uint32_t)data, (uint32_t)data + size);
- }
-
- fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY;
- fec->rbd_index = 0;
- fec->tbd_index = 0;
- return 0;
- err_ring:
- for (; i >= 0; i--)
- free((void *)fec->rbd_base[i].data_pointer);
- free(fec->rbd_base);
- err_rx:
- free(fec->tbd_base);
- err_tx:
- return -ENOMEM;
- }
- static void fec_free_descs(struct fec_priv *fec)
- {
- int i;
- for (i = 0; i < FEC_RBD_NUM; i++)
- free((void *)fec->rbd_base[i].data_pointer);
- free(fec->rbd_base);
- free(fec->tbd_base);
- }
- struct mii_dev *fec_get_miibus(uint32_t base_addr, int dev_id)
- {
- struct ethernet_regs *eth = (struct ethernet_regs *)base_addr;
- struct mii_dev *bus;
- int ret;
- bus = mdio_alloc();
- if (!bus) {
- printf("mdio_alloc failed\n");
- return NULL;
- }
- bus->read = fec_phy_read;
- bus->write = fec_phy_write;
- bus->priv = eth;
- fec_set_dev_name(bus->name, dev_id);
- ret = mdio_register(bus);
- if (ret) {
- printf("mdio_register failed\n");
- free(bus);
- return NULL;
- }
- fec_mii_setspeed(eth);
- return bus;
- }
- #ifndef CONFIG_DM_ETH
- #ifdef CONFIG_PHYLIB
- int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr,
- struct mii_dev *bus, struct phy_device *phydev)
- #else
- static int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr,
- struct mii_dev *bus, int phy_id)
- #endif
- {
- struct eth_device *edev;
- struct fec_priv *fec;
- unsigned char ethaddr[6];
- uint32_t start;
- int ret = 0;
-
- edev = (struct eth_device *)malloc(sizeof(struct eth_device));
- if (!edev) {
- puts("fec_mxc: not enough malloc memory for eth_device\n");
- ret = -ENOMEM;
- goto err1;
- }
- fec = (struct fec_priv *)malloc(sizeof(struct fec_priv));
- if (!fec) {
- puts("fec_mxc: not enough malloc memory for fec_priv\n");
- ret = -ENOMEM;
- goto err2;
- }
- memset(edev, 0, sizeof(*edev));
- memset(fec, 0, sizeof(*fec));
- ret = fec_alloc_descs(fec);
- if (ret)
- goto err3;
- edev->priv = fec;
- edev->init = fec_init;
- edev->send = fec_send;
- edev->recv = fec_recv;
- edev->halt = fec_halt;
- edev->write_hwaddr = fec_set_hwaddr;
- fec->eth = (struct ethernet_regs *)base_addr;
- fec->bd = bd;
- fec->xcv_type = CONFIG_FEC_XCV_TYPE;
-
- writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_RESET, &fec->eth->ecntrl);
- start = get_timer(0);
- while (readl(&fec->eth->ecntrl) & FEC_ECNTRL_RESET) {
- if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
- printf("FEC MXC: Timeout resetting chip\n");
- goto err4;
- }
- udelay(10);
- }
- fec_reg_setup(fec);
- fec_set_dev_name(edev->name, dev_id);
- fec->dev_id = (dev_id == -1) ? 0 : dev_id;
- fec->bus = bus;
- fec_mii_setspeed(bus->priv);
- #ifdef CONFIG_PHYLIB
- fec->phydev = phydev;
- phy_connect_dev(phydev, edev);
-
- phy_config(phydev);
- #else
- fec->phy_id = phy_id;
- #endif
- eth_register(edev);
- if (fec_get_hwaddr(dev_id, ethaddr) == 0) {
- debug("got MAC%d address from fuse: %pM\n", dev_id, ethaddr);
- memcpy(edev->enetaddr, ethaddr, 6);
- if (!getenv("ethaddr"))
- eth_setenv_enetaddr("ethaddr", ethaddr);
- }
- return ret;
- err4:
- fec_free_descs(fec);
- err3:
- free(fec);
- err2:
- free(edev);
- err1:
- return ret;
- }
- int fecmxc_initialize_multi(bd_t *bd, int dev_id, int phy_id, uint32_t addr)
- {
- uint32_t base_mii;
- struct mii_dev *bus = NULL;
- #ifdef CONFIG_PHYLIB
- struct phy_device *phydev = NULL;
- #endif
- int ret;
- #ifdef CONFIG_MX28
-
- base_mii = MXS_ENET0_BASE;
- #else
- base_mii = addr;
- #endif
- debug("eth_init: fec_probe(bd, %i, %i) @ %08x\n", dev_id, phy_id, addr);
- bus = fec_get_miibus(base_mii, dev_id);
- if (!bus)
- return -ENOMEM;
- #ifdef CONFIG_PHYLIB
- phydev = phy_find_by_mask(bus, 1 << phy_id, PHY_INTERFACE_MODE_RGMII);
- if (!phydev) {
- mdio_unregister(bus);
- free(bus);
- return -ENOMEM;
- }
- ret = fec_probe(bd, dev_id, addr, bus, phydev);
- #else
- ret = fec_probe(bd, dev_id, addr, bus, phy_id);
- #endif
- if (ret) {
- #ifdef CONFIG_PHYLIB
- free(phydev);
- #endif
- mdio_unregister(bus);
- free(bus);
- }
- return ret;
- }
- #ifdef CONFIG_FEC_MXC_PHYADDR
- int fecmxc_initialize(bd_t *bd)
- {
- return fecmxc_initialize_multi(bd, -1, CONFIG_FEC_MXC_PHYADDR,
- IMX_FEC_BASE);
- }
- #endif
- #ifndef CONFIG_PHYLIB
- int fecmxc_register_mii_postcall(struct eth_device *dev, int (*cb)(int))
- {
- struct fec_priv *fec = (struct fec_priv *)dev->priv;
- fec->mii_postcall = cb;
- return 0;
- }
- #endif
- #else
- static int fecmxc_read_rom_hwaddr(struct udevice *dev)
- {
- struct fec_priv *priv = dev_get_priv(dev);
- struct eth_pdata *pdata = dev_get_platdata(dev);
- return fec_get_hwaddr(priv->dev_id, pdata->enetaddr);
- }
- static const struct eth_ops fecmxc_ops = {
- .start = fecmxc_init,
- .send = fecmxc_send,
- .recv = fecmxc_recv,
- .stop = fecmxc_halt,
- .write_hwaddr = fecmxc_set_hwaddr,
- .read_rom_hwaddr = fecmxc_read_rom_hwaddr,
- };
- static int fec_phy_init(struct fec_priv *priv, struct udevice *dev)
- {
- struct phy_device *phydev;
- int mask = 0xffffffff;
- #ifdef CONFIG_PHYLIB
- mask = 1 << CONFIG_FEC_MXC_PHYADDR;
- #endif
- phydev = phy_find_by_mask(priv->bus, mask, priv->interface);
- if (!phydev)
- return -ENODEV;
- phy_connect_dev(phydev, dev);
- priv->phydev = phydev;
- phy_config(phydev);
- return 0;
- }
- static int fecmxc_probe(struct udevice *dev)
- {
- struct eth_pdata *pdata = dev_get_platdata(dev);
- struct fec_priv *priv = dev_get_priv(dev);
- struct mii_dev *bus = NULL;
- int dev_id = -1;
- uint32_t start;
- int ret;
- ret = fec_alloc_descs(priv);
- if (ret)
- return ret;
- bus = fec_get_miibus((uint32_t)priv->eth, dev_id);
- if (!bus)
- goto err_mii;
- priv->bus = bus;
- priv->xcv_type = CONFIG_FEC_XCV_TYPE;
- priv->interface = pdata->phy_interface;
- ret = fec_phy_init(priv, dev);
- if (ret)
- goto err_phy;
-
- writel(readl(&priv->eth->ecntrl) | FEC_ECNTRL_RESET,
- &priv->eth->ecntrl);
- start = get_timer(0);
- while (readl(&priv->eth->ecntrl) & FEC_ECNTRL_RESET) {
- if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
- printf("FEC MXC: Timeout reseting chip\n");
- goto err_timeout;
- }
- udelay(10);
- }
- fec_reg_setup(priv);
- fec_set_dev_name((char *)dev->name, dev_id);
- priv->dev_id = (dev_id == -1) ? 0 : dev_id;
- return 0;
- err_timeout:
- free(priv->phydev);
- err_phy:
- mdio_unregister(bus);
- free(bus);
- err_mii:
- fec_free_descs(priv);
- return ret;
- }
- static int fecmxc_remove(struct udevice *dev)
- {
- struct fec_priv *priv = dev_get_priv(dev);
- free(priv->phydev);
- fec_free_descs(priv);
- mdio_unregister(priv->bus);
- mdio_free(priv->bus);
- return 0;
- }
- static int fecmxc_ofdata_to_platdata(struct udevice *dev)
- {
- struct eth_pdata *pdata = dev_get_platdata(dev);
- struct fec_priv *priv = dev_get_priv(dev);
- const char *phy_mode;
- pdata->iobase = (phys_addr_t)dev_get_addr(dev);
- priv->eth = (struct ethernet_regs *)pdata->iobase;
- pdata->phy_interface = -1;
- phy_mode = fdt_getprop(gd->fdt_blob, dev->of_offset, "phy-mode", NULL);
- if (phy_mode)
- pdata->phy_interface = phy_get_interface_by_name(phy_mode);
- if (pdata->phy_interface == -1) {
- debug("%s: Invalid PHY interface '%s'\n", __func__, phy_mode);
- return -EINVAL;
- }
-
- return 0;
- }
- static const struct udevice_id fecmxc_ids[] = {
- { .compatible = "fsl,imx6q-fec" },
- { }
- };
- U_BOOT_DRIVER(fecmxc_gem) = {
- .name = "fecmxc",
- .id = UCLASS_ETH,
- .of_match = fecmxc_ids,
- .ofdata_to_platdata = fecmxc_ofdata_to_platdata,
- .probe = fecmxc_probe,
- .remove = fecmxc_remove,
- .ops = &fecmxc_ops,
- .priv_auto_alloc_size = sizeof(struct fec_priv),
- .platdata_auto_alloc_size = sizeof(struct eth_pdata),
- };
- #endif
|