Lines Matching +full:shut +full:- +full:down +full:- +full:gpios
1 // SPDX-License-Identifier: GPL-2.0+
41 if (!dm_gpio_is_valid(&priv->rst_gpio)) in board_netphy_reset()
45 dm_gpio_set_value(&priv->rst_gpio, 0); in board_netphy_reset()
47 dm_gpio_set_value(&priv->rst_gpio, 1); in board_netphy_reset()
56 struct pic32_ectl_regs *ectl_p = priv->ectl_regs; in pic32_mii_init()
57 struct pic32_emac_regs *emac_p = priv->emac_regs; in pic32_mii_init()
63 writel(ETHCON_ON | ETHCON_TXRTS | ETHCON_RXEN, &ectl_p->con1.clr); in pic32_mii_init()
66 wait_for_bit_le32(&ectl_p->stat.raw, ETHSTAT_BUSY, false, in pic32_mii_init()
70 writel(ETHCON_ON, &ectl_p->con1.set); in pic32_mii_init()
75 writel(EMAC_SOFTRESET, &emac_p->cfg1.set); /* reset assert */ in pic32_mii_init()
77 writel(EMAC_SOFTRESET, &emac_p->cfg1.clr); /* reset deassert */ in pic32_mii_init()
80 if (priv->phyif == PHY_INTERFACE_MODE_RMII) { in pic32_mii_init()
81 writel(EMAC_RMII_RESET, &emac_p->supp.set); in pic32_mii_init()
83 writel(EMAC_RMII_RESET, &emac_p->supp.clr); in pic32_mii_init()
86 return pic32_mdio_init(PIC32_MDIO_NAME, (ulong)&emac_p->mii); in pic32_mii_init()
96 priv->phydev = phy_connect(mii, priv->phy_addr, in pic32_phy_init()
97 dev, priv->phyif); in pic32_phy_init()
98 if (!priv->phydev) { in pic32_phy_init()
107 priv->phydev->supported = SUPPORTED_10baseT_Half | in pic32_phy_init()
113 priv->phydev->advertising = ADVERTISED_10baseT_Half | in pic32_phy_init()
119 priv->phydev->autoneg = AUTONEG_ENABLE; in pic32_phy_init()
129 struct phy_device *phydev = priv->phydev; in pic32_mac_adjust_link()
130 struct pic32_emac_regs *emac_p = priv->emac_regs; in pic32_mac_adjust_link()
132 if (!phydev->link) { in pic32_mac_adjust_link()
133 printf("%s: No link.\n", phydev->dev->name); in pic32_mac_adjust_link()
134 return -EINVAL; in pic32_mac_adjust_link()
137 if (phydev->duplex) { in pic32_mac_adjust_link()
138 writel(EMAC_FULLDUP, &emac_p->cfg2.set); in pic32_mac_adjust_link()
139 writel(FULLDUP_GAP_TIME, &emac_p->ipgt.raw); in pic32_mac_adjust_link()
141 writel(EMAC_FULLDUP, &emac_p->cfg2.clr); in pic32_mac_adjust_link()
142 writel(HALFDUP_GAP_TIME, &emac_p->ipgt.raw); in pic32_mac_adjust_link()
145 switch (phydev->speed) { in pic32_mac_adjust_link()
147 writel(EMAC_RMII_SPD100, &emac_p->supp.set); in pic32_mac_adjust_link()
150 writel(EMAC_RMII_SPD100, &emac_p->supp.clr); in pic32_mac_adjust_link()
153 printf("%s: Speed was bad\n", phydev->dev->name); in pic32_mac_adjust_link()
154 return -EINVAL; in pic32_mac_adjust_link()
158 phydev->drv->name, phydev->speed, in pic32_mac_adjust_link()
159 (phydev->port == PORT_TP) ? "T" : "X", in pic32_mac_adjust_link()
160 (phydev->duplex) ? "full" : "half"); in pic32_mac_adjust_link()
167 struct pic32_emac_regs *emac_p = priv->emac_regs; in pic32_mac_init()
172 writel(v, &emac_p->cfg1.raw); in pic32_mac_init()
176 writel(v, &emac_p->cfg2.raw); in pic32_mac_init()
178 /* recommended back-to-back inter-packet gap for 10 Mbps half duplex */ in pic32_mac_init()
179 writel(HALFDUP_GAP_TIME, &emac_p->ipgt.raw); in pic32_mac_init()
181 /* recommended non-back-to-back interpacket gap is 0xc12 */ in pic32_mac_init()
182 writel(0xc12, &emac_p->ipgr.raw); in pic32_mac_init()
185 writel(0x370f, &emac_p->clrt.raw); in pic32_mac_init()
188 writel(0x600, &emac_p->maxf.raw); in pic32_mac_init()
191 writel(macaddr[0] | (macaddr[1] << 8), &emac_p->sa2.raw); in pic32_mac_init()
192 writel(macaddr[2] | (macaddr[3] << 8), &emac_p->sa1.raw); in pic32_mac_init()
193 writel(macaddr[4] | (macaddr[5] << 8), &emac_p->sa0.raw); in pic32_mac_init()
196 writel(EMAC_RMII_SPD100, &emac_p->supp.clr); in pic32_mac_init()
201 stat = phy_read(priv->phydev, priv->phy_addr, MII_BMSR); in pic32_mac_init()
207 printf("MAC: Link is DOWN!\n"); in pic32_mac_init()
215 struct pic32_emac_regs *emac_p = priv->emac_regs; in pic32_mac_reset()
219 writel(EMAC_SOFTRESET, &emac_p->cfg1.raw); in pic32_mac_reset()
223 writel(0, &emac_p->cfg1.raw); in pic32_mac_reset()
226 mii = priv->phydev->bus; in pic32_mac_reset()
227 if (mii && mii->reset) in pic32_mac_reset()
228 mii->reset(mii); in pic32_mac_reset()
234 struct pic32_ectl_regs *ectl_p = priv->ectl_regs; in pic32_ctrl_reset()
238 writel(ETHCON_ON | ETHCON_TXRTS | ETHCON_RXEN, &ectl_p->con1.clr); in pic32_ctrl_reset()
241 wait_for_bit_le32(&ectl_p->stat.raw, ETHSTAT_BUSY, false, in pic32_ctrl_reset()
244 while (readl(&ectl_p->stat.raw) & ETHSTAT_BUFCNT) in pic32_ctrl_reset()
245 writel(ETHCON_BUFCDEC, &ectl_p->con1.set); in pic32_ctrl_reset()
248 writel(0xffffffff, &ectl_p->irq.clr); in pic32_ctrl_reset()
251 writel(0xffffffff, &ectl_p->txst.clr); in pic32_ctrl_reset()
252 writel(0xffffffff, &ectl_p->rxst.clr); in pic32_ctrl_reset()
255 writel(0x00ff, &ectl_p->rxfc.clr); in pic32_ctrl_reset()
266 writel(v, &ectl_p->rxfc.set); in pic32_ctrl_reset()
269 writel(ETHCON_ON, &ectl_p->con1.set); in pic32_ctrl_reset()
274 struct pic32_ectl_regs *ectl_p = priv->ectl_regs; in pic32_rx_desc_init()
278 priv->rxd_idx = 0; in pic32_rx_desc_init()
280 rxd = &priv->rxd_ring[idx]; in pic32_rx_desc_init()
283 rxd->hdr = EDH_NPV | EDH_EOWN | EDH_STICKY; in pic32_rx_desc_init()
286 rxd->data_buff = virt_to_phys(net_rx_packets[idx]); in pic32_rx_desc_init()
289 rxd->next_ed = virt_to_phys(rxd + 1); in pic32_rx_desc_init()
292 rxd->stat1 = 0; in pic32_rx_desc_init()
293 rxd->stat2 = 0; in pic32_rx_desc_init()
296 writel(ETHCON_BUFCDEC, &ectl_p->con1.set); in pic32_rx_desc_init()
300 rxd->next_ed = virt_to_phys(&priv->rxd_ring[0]); in pic32_rx_desc_init()
303 flush_dcache_range((ulong)priv->rxd_ring, in pic32_rx_desc_init()
304 (ulong)priv->rxd_ring + sizeof(priv->rxd_ring)); in pic32_rx_desc_init()
306 /* set rx desc-ring start address */ in pic32_rx_desc_init()
307 writel((ulong)virt_to_phys(&priv->rxd_ring[0]), &ectl_p->rxst.raw); in pic32_rx_desc_init()
310 bufsz = readl(&ectl_p->con2.raw); in pic32_rx_desc_init()
313 writel(bufsz, &ectl_p->con2.raw); in pic32_rx_desc_init()
318 writel(ETHCON_RXEN, &ectl_p->con1.set); in pic32_rx_desc_init()
333 phy_config(priv->phydev); in pic32_eth_start()
336 pic32_mac_init(priv, &pdata->enetaddr[0]); in pic32_eth_start()
342 phy_startup(priv->phydev); in pic32_eth_start()
351 struct pic32_ectl_regs *ectl_p = priv->ectl_regs; in pic32_eth_stop()
352 struct pic32_emac_regs *emac_p = priv->emac_regs; in pic32_eth_stop()
355 if (readl(&ectl_p->con1.raw) & ETHCON_ON) in pic32_eth_stop()
356 phy_reset(priv->phydev); in pic32_eth_stop()
358 /* Shut down the PHY */ in pic32_eth_stop()
359 phy_shutdown(priv->phydev); in pic32_eth_stop()
362 writel(ETHCON_TXRTS | ETHCON_RXEN, &ectl_p->con1.clr); in pic32_eth_stop()
366 writel(EMAC_SOFTRESET, &emac_p->cfg1.raw); in pic32_eth_stop()
369 writel(0, &emac_p->cfg1.raw); in pic32_eth_stop()
373 writel(ETHCON_ON, &ectl_p->con1.clr); in pic32_eth_stop()
376 /* wait until everything is down */ in pic32_eth_stop()
377 wait_for_bit_le32(&ectl_p->stat.raw, ETHSTAT_BUSY, false, in pic32_eth_stop()
381 writel(0xffffffff, &ectl_p->irq.clr); in pic32_eth_stop()
387 struct pic32_ectl_regs *ectl_p = priv->ectl_regs; in pic32_eth_send()
391 txd = &priv->txd_ring[0]; in pic32_eth_send()
394 txd->hdr = EDH_SOP | EDH_EOP | EDH_EOWN | EDH_BCOUNT(length); in pic32_eth_send()
397 txd->data_buff = virt_to_phys(packet); in pic32_eth_send()
400 __func__, __LINE__, txd->hdr, txd->data_buff, txd->stat2, in pic32_eth_send()
401 txd->next_ed); in pic32_eth_send()
410 writel(virt_to_phys(txd), &ectl_p->txst.raw); in pic32_eth_send()
413 writel(ETHCON_TXRTS | ETHCON_ON, &ectl_p->con1.set); in pic32_eth_send()
422 return -ETIMEDOUT; in pic32_eth_send()
425 return -EINTR; in pic32_eth_send()
428 if (readl(&ectl_p->con1.raw) & ETHCON_TXRTS) { in pic32_eth_send()
435 if (!(txd->hdr & EDH_EOWN)) in pic32_eth_send()
446 u32 idx = priv->rxd_idx; in pic32_eth_recv()
450 rxd = &priv->rxd_ring[idx]; in pic32_eth_recv()
454 if (rxd->hdr & EDH_EOWN) in pic32_eth_recv()
455 return -EAGAIN; in pic32_eth_recv()
458 if ((rxd->hdr & (EDH_SOP | EDH_EOP)) != (EDH_SOP | EDH_EOP)) { in pic32_eth_recv()
465 __func__, __LINE__, idx, rxd->hdr, in pic32_eth_recv()
466 rxd->data_buff, rxd->stat2, rxd->next_ed); in pic32_eth_recv()
469 if (!RSV_RX_OK(rxd->stat2) || RSV_CRC_ERR(rxd->stat2)) { in pic32_eth_recv()
476 rx_count = RSV_RX_COUNT(rxd->stat2); in pic32_eth_recv()
484 return rx_count - 4; in pic32_eth_recv()
490 struct pic32_ectl_regs *ectl_p = priv->ectl_regs; in pic32_eth_free_pkt()
492 int idx = priv->rxd_idx; in pic32_eth_free_pkt()
497 return -EAGAIN; in pic32_eth_free_pkt()
501 rxd = &priv->rxd_ring[idx]; in pic32_eth_free_pkt()
502 rxd->hdr = EDH_STICKY | EDH_NPV | EDH_EOWN; in pic32_eth_free_pkt()
507 writel(ETHCON_BUFCDEC, &ectl_p->con1.set); in pic32_eth_free_pkt()
510 __func__, __LINE__, idx, rxd->hdr, rxd->data_buff, in pic32_eth_free_pkt()
511 rxd->stat2, rxd->next_ed); in pic32_eth_free_pkt()
513 priv->rxd_idx = (priv->rxd_idx + 1) % MAX_RX_DESCR; in pic32_eth_free_pkt()
535 int phy_addr = -1; in pic32_eth_probe()
537 addr = fdtdec_get_addr_size(gd->fdt_blob, dev_of_offset(dev), "reg", in pic32_eth_probe()
540 return -EINVAL; in pic32_eth_probe()
543 pdata->iobase = (phys_addr_t)addr; in pic32_eth_probe()
546 pdata->phy_interface = -1; in pic32_eth_probe()
547 phy_mode = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), "phy-mode", in pic32_eth_probe()
550 pdata->phy_interface = phy_get_interface_by_name(phy_mode); in pic32_eth_probe()
551 if (pdata->phy_interface == -1) { in pic32_eth_probe()
553 return -EINVAL; in pic32_eth_probe()
557 offset = fdtdec_lookup_phandle(gd->fdt_blob, dev_of_offset(dev), in pic32_eth_probe()
558 "phy-handle"); in pic32_eth_probe()
560 phy_addr = fdtdec_get_int(gd->fdt_blob, offset, "reg", -1); in pic32_eth_probe()
563 gpio_request_by_name_nodev(dev_ofnode(dev), "reset-gpios", 0, in pic32_eth_probe()
564 &priv->rst_gpio, GPIOD_IS_OUT); in pic32_eth_probe()
566 priv->phyif = pdata->phy_interface; in pic32_eth_probe()
567 priv->phy_addr = phy_addr; in pic32_eth_probe()
568 priv->ectl_regs = iobase; in pic32_eth_probe()
569 priv->emac_regs = iobase + PIC32_EMAC1CFG1; in pic32_eth_probe()
581 dm_gpio_free(dev, &priv->rst_gpio); in pic32_eth_remove()
582 phy_shutdown(priv->phydev); in pic32_eth_remove()
583 free(priv->phydev); in pic32_eth_remove()
587 iounmap(priv->ectl_regs); in pic32_eth_remove()
592 { .compatible = "microchip,pic32mzda-eth" },