2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-03-20 09:12:20 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
*
|
|
|
|
* Intel Platform Controller Hub EG20T (codename Topcliff) GMAC Driver
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:39 +00:00
|
|
|
#include <cpu_func.h>
|
2015-08-28 05:25:57 +00:00
|
|
|
#include <dm.h>
|
2015-03-20 09:12:20 +00:00
|
|
|
#include <errno.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2020-02-03 14:36:16 +00:00
|
|
|
#include <malloc.h>
|
2015-03-20 09:12:20 +00:00
|
|
|
#include <asm/io.h>
|
|
|
|
#include <pci.h>
|
|
|
|
#include <miiphy.h>
|
2020-05-10 17:40:11 +00:00
|
|
|
#include <linux/delay.h>
|
2015-03-20 09:12:20 +00:00
|
|
|
#include "pch_gbe.h"
|
|
|
|
|
|
|
|
#if !defined(CONFIG_PHYLIB)
|
|
|
|
# error "PCH Gigabit Ethernet driver requires PHYLIB - missing CONFIG_PHYLIB"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static struct pci_device_id supported[] = {
|
2015-08-28 05:25:57 +00:00
|
|
|
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TCF_GBE) },
|
2015-03-20 09:12:20 +00:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
static void pch_gbe_mac_read(struct pch_gbe_regs *mac_regs, u8 *addr)
|
|
|
|
{
|
|
|
|
u32 macid_hi, macid_lo;
|
|
|
|
|
|
|
|
macid_hi = readl(&mac_regs->mac_adr[0].high);
|
|
|
|
macid_lo = readl(&mac_regs->mac_adr[0].low) & 0xffff;
|
|
|
|
debug("pch_gbe: macid_hi %#x macid_lo %#x\n", macid_hi, macid_lo);
|
|
|
|
|
|
|
|
addr[0] = (u8)(macid_hi & 0xff);
|
|
|
|
addr[1] = (u8)((macid_hi >> 8) & 0xff);
|
|
|
|
addr[2] = (u8)((macid_hi >> 16) & 0xff);
|
|
|
|
addr[3] = (u8)((macid_hi >> 24) & 0xff);
|
|
|
|
addr[4] = (u8)(macid_lo & 0xff);
|
|
|
|
addr[5] = (u8)((macid_lo >> 8) & 0xff);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pch_gbe_mac_write(struct pch_gbe_regs *mac_regs, u8 *addr)
|
|
|
|
{
|
|
|
|
u32 macid_hi, macid_lo;
|
|
|
|
ulong start;
|
|
|
|
|
|
|
|
macid_hi = addr[0] + (addr[1] << 8) + (addr[2] << 16) + (addr[3] << 24);
|
|
|
|
macid_lo = addr[4] + (addr[5] << 8);
|
|
|
|
|
|
|
|
writel(macid_hi, &mac_regs->mac_adr[0].high);
|
|
|
|
writel(macid_lo, &mac_regs->mac_adr[0].low);
|
|
|
|
writel(0xfffe, &mac_regs->addr_mask);
|
|
|
|
|
|
|
|
start = get_timer(0);
|
|
|
|
while (get_timer(start) < PCH_GBE_TIMEOUT) {
|
|
|
|
if (!(readl(&mac_regs->addr_mask) & PCH_GBE_BUSY))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
udelay(10);
|
|
|
|
}
|
|
|
|
|
|
|
|
return -ETIME;
|
|
|
|
}
|
|
|
|
|
2015-08-28 05:25:57 +00:00
|
|
|
static int pch_gbe_reset(struct udevice *dev)
|
2015-03-20 09:12:20 +00:00
|
|
|
{
|
2015-08-28 05:25:57 +00:00
|
|
|
struct pch_gbe_priv *priv = dev_get_priv(dev);
|
2020-12-03 23:55:20 +00:00
|
|
|
struct eth_pdata *plat = dev_get_plat(dev);
|
2015-03-20 09:12:20 +00:00
|
|
|
struct pch_gbe_regs *mac_regs = priv->mac_regs;
|
|
|
|
ulong start;
|
|
|
|
|
|
|
|
priv->rx_idx = 0;
|
|
|
|
priv->tx_idx = 0;
|
|
|
|
|
|
|
|
writel(PCH_GBE_ALL_RST, &mac_regs->reset);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Configure the MAC to RGMII mode after reset
|
|
|
|
*
|
|
|
|
* For some unknown reason, we must do the configuration here right
|
|
|
|
* after resetting the whole MAC, otherwise the reset bit in the RESET
|
|
|
|
* register will never be cleared by the hardware. And there is another
|
|
|
|
* way of having the same magic, that is to configure the MODE register
|
|
|
|
* to have the MAC work in MII/GMII mode, which is how current Linux
|
|
|
|
* pch_gbe driver does. Since anyway we need program the MAC to RGMII
|
|
|
|
* mode in the driver, we just do it here.
|
|
|
|
*
|
|
|
|
* Note: this behavior is not documented in the hardware manual.
|
|
|
|
*/
|
|
|
|
writel(PCH_GBE_RGMII_MODE_RGMII | PCH_GBE_CHIP_TYPE_INTERNAL,
|
|
|
|
&mac_regs->rgmii_ctrl);
|
|
|
|
|
|
|
|
start = get_timer(0);
|
|
|
|
while (get_timer(start) < PCH_GBE_TIMEOUT) {
|
|
|
|
if (!(readl(&mac_regs->reset) & PCH_GBE_ALL_RST)) {
|
|
|
|
/*
|
|
|
|
* Soft reset clears hardware MAC address registers,
|
|
|
|
* so we have to reload MAC address here in order to
|
|
|
|
* make linux pch_gbe driver happy.
|
|
|
|
*/
|
2015-08-28 05:25:57 +00:00
|
|
|
return pch_gbe_mac_write(mac_regs, plat->enetaddr);
|
2015-03-20 09:12:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
udelay(10);
|
|
|
|
}
|
|
|
|
|
|
|
|
debug("pch_gbe: reset timeout\n");
|
|
|
|
return -ETIME;
|
|
|
|
}
|
|
|
|
|
2015-08-28 05:25:57 +00:00
|
|
|
static void pch_gbe_rx_descs_init(struct udevice *dev)
|
2015-03-20 09:12:20 +00:00
|
|
|
{
|
2015-08-28 05:25:57 +00:00
|
|
|
struct pch_gbe_priv *priv = dev_get_priv(dev);
|
2015-03-20 09:12:20 +00:00
|
|
|
struct pch_gbe_regs *mac_regs = priv->mac_regs;
|
|
|
|
struct pch_gbe_rx_desc *rx_desc = &priv->rx_desc[0];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
memset(rx_desc, 0, sizeof(struct pch_gbe_rx_desc) * PCH_GBE_DESC_NUM);
|
|
|
|
for (i = 0; i < PCH_GBE_DESC_NUM; i++)
|
2017-04-30 19:57:07 +00:00
|
|
|
rx_desc[i].buffer_addr = dm_pci_virt_to_mem(priv->dev,
|
2017-04-30 19:57:06 +00:00
|
|
|
priv->rx_buff[i]);
|
2015-03-20 09:12:20 +00:00
|
|
|
|
2017-04-30 19:57:08 +00:00
|
|
|
flush_dcache_range((ulong)rx_desc, (ulong)&rx_desc[PCH_GBE_DESC_NUM]);
|
|
|
|
|
2017-04-30 19:57:07 +00:00
|
|
|
writel(dm_pci_virt_to_mem(priv->dev, rx_desc),
|
2015-03-20 09:12:20 +00:00
|
|
|
&mac_regs->rx_dsc_base);
|
|
|
|
writel(sizeof(struct pch_gbe_rx_desc) * (PCH_GBE_DESC_NUM - 1),
|
|
|
|
&mac_regs->rx_dsc_size);
|
|
|
|
|
2017-04-30 19:57:07 +00:00
|
|
|
writel(dm_pci_virt_to_mem(priv->dev, rx_desc + 1),
|
2015-03-20 09:12:20 +00:00
|
|
|
&mac_regs->rx_dsc_sw_p);
|
|
|
|
}
|
|
|
|
|
2015-08-28 05:25:57 +00:00
|
|
|
static void pch_gbe_tx_descs_init(struct udevice *dev)
|
2015-03-20 09:12:20 +00:00
|
|
|
{
|
2015-08-28 05:25:57 +00:00
|
|
|
struct pch_gbe_priv *priv = dev_get_priv(dev);
|
2015-03-20 09:12:20 +00:00
|
|
|
struct pch_gbe_regs *mac_regs = priv->mac_regs;
|
|
|
|
struct pch_gbe_tx_desc *tx_desc = &priv->tx_desc[0];
|
|
|
|
|
|
|
|
memset(tx_desc, 0, sizeof(struct pch_gbe_tx_desc) * PCH_GBE_DESC_NUM);
|
|
|
|
|
2017-04-30 19:57:08 +00:00
|
|
|
flush_dcache_range((ulong)tx_desc, (ulong)&tx_desc[PCH_GBE_DESC_NUM]);
|
|
|
|
|
2017-04-30 19:57:07 +00:00
|
|
|
writel(dm_pci_virt_to_mem(priv->dev, tx_desc),
|
2015-03-20 09:12:20 +00:00
|
|
|
&mac_regs->tx_dsc_base);
|
|
|
|
writel(sizeof(struct pch_gbe_tx_desc) * (PCH_GBE_DESC_NUM - 1),
|
|
|
|
&mac_regs->tx_dsc_size);
|
2017-04-30 19:57:07 +00:00
|
|
|
writel(dm_pci_virt_to_mem(priv->dev, tx_desc + 1),
|
2015-03-20 09:12:20 +00:00
|
|
|
&mac_regs->tx_dsc_sw_p);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pch_gbe_adjust_link(struct pch_gbe_regs *mac_regs,
|
|
|
|
struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
if (!phydev->link) {
|
|
|
|
printf("%s: No link.\n", phydev->dev->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
clrbits_le32(&mac_regs->rgmii_ctrl,
|
|
|
|
PCH_GBE_RGMII_RATE_2_5M | PCH_GBE_CRS_SEL);
|
|
|
|
clrbits_le32(&mac_regs->mode,
|
|
|
|
PCH_GBE_MODE_GMII_ETHER | PCH_GBE_MODE_FULL_DUPLEX);
|
|
|
|
|
|
|
|
switch (phydev->speed) {
|
|
|
|
case 1000:
|
|
|
|
setbits_le32(&mac_regs->rgmii_ctrl, PCH_GBE_RGMII_RATE_125M);
|
|
|
|
setbits_le32(&mac_regs->mode, PCH_GBE_MODE_GMII_ETHER);
|
|
|
|
break;
|
|
|
|
case 100:
|
|
|
|
setbits_le32(&mac_regs->rgmii_ctrl, PCH_GBE_RGMII_RATE_25M);
|
|
|
|
setbits_le32(&mac_regs->mode, PCH_GBE_MODE_MII_ETHER);
|
|
|
|
break;
|
|
|
|
case 10:
|
|
|
|
setbits_le32(&mac_regs->rgmii_ctrl, PCH_GBE_RGMII_RATE_2_5M);
|
|
|
|
setbits_le32(&mac_regs->mode, PCH_GBE_MODE_MII_ETHER);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (phydev->duplex) {
|
|
|
|
setbits_le32(&mac_regs->rgmii_ctrl, PCH_GBE_CRS_SEL);
|
|
|
|
setbits_le32(&mac_regs->mode, PCH_GBE_MODE_FULL_DUPLEX);
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Speed: %d, %s duplex\n", phydev->speed,
|
|
|
|
(phydev->duplex) ? "full" : "half");
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-08-28 05:25:57 +00:00
|
|
|
static int pch_gbe_start(struct udevice *dev)
|
2015-03-20 09:12:20 +00:00
|
|
|
{
|
2015-08-28 05:25:57 +00:00
|
|
|
struct pch_gbe_priv *priv = dev_get_priv(dev);
|
2015-03-20 09:12:20 +00:00
|
|
|
struct pch_gbe_regs *mac_regs = priv->mac_regs;
|
|
|
|
|
|
|
|
if (pch_gbe_reset(dev))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
pch_gbe_rx_descs_init(dev);
|
|
|
|
pch_gbe_tx_descs_init(dev);
|
|
|
|
|
|
|
|
/* Enable frame bursting */
|
|
|
|
writel(PCH_GBE_MODE_FR_BST, &mac_regs->mode);
|
|
|
|
/* Disable TCP/IP accelerator */
|
|
|
|
writel(PCH_GBE_RX_TCPIPACC_OFF, &mac_regs->tcpip_acc);
|
|
|
|
/* Disable RX flow control */
|
|
|
|
writel(0, &mac_regs->rx_fctrl);
|
|
|
|
/* Configure RX/TX mode */
|
|
|
|
writel(PCH_GBE_RH_ALM_EMP_16 | PCH_GBE_RH_ALM_FULL_16 |
|
|
|
|
PCH_GBE_RH_RD_TRG_32, &mac_regs->rx_mode);
|
|
|
|
writel(PCH_GBE_TM_TH_TX_STRT_32 | PCH_GBE_TM_TH_ALM_EMP_16 |
|
|
|
|
PCH_GBE_TM_TH_ALM_FULL_32 | PCH_GBE_TM_ST_AND_FD |
|
|
|
|
PCH_GBE_TM_SHORT_PKT, &mac_regs->tx_mode);
|
|
|
|
|
|
|
|
/* Start up the PHY */
|
|
|
|
if (phy_startup(priv->phydev)) {
|
|
|
|
printf("Could not initialize PHY %s\n",
|
|
|
|
priv->phydev->dev->name);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pch_gbe_adjust_link(mac_regs, priv->phydev);
|
|
|
|
|
|
|
|
if (!priv->phydev->link)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Enable TX & RX */
|
|
|
|
writel(PCH_GBE_RX_DMA_EN | PCH_GBE_TX_DMA_EN, &mac_regs->dma_ctrl);
|
|
|
|
writel(PCH_GBE_MRE_MAC_RX_EN, &mac_regs->mac_rx_en);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-08-28 05:25:57 +00:00
|
|
|
static void pch_gbe_stop(struct udevice *dev)
|
2015-03-20 09:12:20 +00:00
|
|
|
{
|
2015-08-28 05:25:57 +00:00
|
|
|
struct pch_gbe_priv *priv = dev_get_priv(dev);
|
2015-03-20 09:12:20 +00:00
|
|
|
|
|
|
|
pch_gbe_reset(dev);
|
|
|
|
|
|
|
|
phy_shutdown(priv->phydev);
|
|
|
|
}
|
|
|
|
|
2015-08-28 05:25:57 +00:00
|
|
|
static int pch_gbe_send(struct udevice *dev, void *packet, int length)
|
2015-03-20 09:12:20 +00:00
|
|
|
{
|
2015-08-28 05:25:57 +00:00
|
|
|
struct pch_gbe_priv *priv = dev_get_priv(dev);
|
2015-03-20 09:12:20 +00:00
|
|
|
struct pch_gbe_regs *mac_regs = priv->mac_regs;
|
|
|
|
struct pch_gbe_tx_desc *tx_head, *tx_desc;
|
|
|
|
u16 frame_ctrl = 0;
|
|
|
|
u32 int_st;
|
|
|
|
ulong start;
|
|
|
|
|
2017-04-30 19:57:08 +00:00
|
|
|
flush_dcache_range((ulong)packet, (ulong)packet + length);
|
|
|
|
|
2015-03-20 09:12:20 +00:00
|
|
|
tx_head = &priv->tx_desc[0];
|
|
|
|
tx_desc = &priv->tx_desc[priv->tx_idx];
|
|
|
|
|
|
|
|
if (length < 64)
|
|
|
|
frame_ctrl |= PCH_GBE_TXD_CTRL_APAD;
|
|
|
|
|
2017-04-30 19:57:07 +00:00
|
|
|
tx_desc->buffer_addr = dm_pci_virt_to_mem(priv->dev, packet);
|
2015-03-20 09:12:20 +00:00
|
|
|
tx_desc->length = length;
|
|
|
|
tx_desc->tx_words_eob = length + 3;
|
|
|
|
tx_desc->tx_frame_ctrl = frame_ctrl;
|
|
|
|
tx_desc->dma_status = 0;
|
|
|
|
tx_desc->gbec_status = 0;
|
|
|
|
|
2017-04-30 19:57:08 +00:00
|
|
|
flush_dcache_range((ulong)tx_desc, (ulong)&tx_desc[1]);
|
|
|
|
|
2015-03-20 09:12:20 +00:00
|
|
|
/* Test the wrap-around condition */
|
|
|
|
if (++priv->tx_idx >= PCH_GBE_DESC_NUM)
|
|
|
|
priv->tx_idx = 0;
|
|
|
|
|
2017-04-30 19:57:07 +00:00
|
|
|
writel(dm_pci_virt_to_mem(priv->dev, tx_head + priv->tx_idx),
|
2015-03-20 09:12:20 +00:00
|
|
|
&mac_regs->tx_dsc_sw_p);
|
|
|
|
|
|
|
|
start = get_timer(0);
|
|
|
|
while (get_timer(start) < PCH_GBE_TIMEOUT) {
|
|
|
|
int_st = readl(&mac_regs->int_st);
|
|
|
|
if (int_st & PCH_GBE_INT_TX_CMPLT)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
udelay(10);
|
|
|
|
}
|
|
|
|
|
|
|
|
debug("pch_gbe: sent failed\n");
|
|
|
|
return -ETIME;
|
|
|
|
}
|
|
|
|
|
2015-08-28 05:25:57 +00:00
|
|
|
static int pch_gbe_recv(struct udevice *dev, int flags, uchar **packetp)
|
2015-03-20 09:12:20 +00:00
|
|
|
{
|
2015-08-28 05:25:57 +00:00
|
|
|
struct pch_gbe_priv *priv = dev_get_priv(dev);
|
2015-03-20 09:12:20 +00:00
|
|
|
struct pch_gbe_regs *mac_regs = priv->mac_regs;
|
2015-08-28 05:25:57 +00:00
|
|
|
struct pch_gbe_rx_desc *rx_desc;
|
2017-04-30 19:57:07 +00:00
|
|
|
ulong hw_desc, length;
|
|
|
|
void *buffer;
|
2015-03-20 09:12:20 +00:00
|
|
|
|
|
|
|
rx_desc = &priv->rx_desc[priv->rx_idx];
|
|
|
|
|
|
|
|
readl(&mac_regs->int_st);
|
|
|
|
hw_desc = readl(&mac_regs->rx_dsc_hw_p_hld);
|
|
|
|
|
|
|
|
/* Just return if not receiving any packet */
|
2017-04-30 19:57:07 +00:00
|
|
|
if (virt_to_phys(rx_desc) == hw_desc)
|
2015-08-28 05:25:57 +00:00
|
|
|
return -EAGAIN;
|
2015-03-20 09:12:20 +00:00
|
|
|
|
2017-04-30 19:57:08 +00:00
|
|
|
/* Invalidate the descriptor */
|
|
|
|
invalidate_dcache_range((ulong)rx_desc, (ulong)&rx_desc[1]);
|
|
|
|
|
2015-03-20 09:12:20 +00:00
|
|
|
length = rx_desc->rx_words_eob - 3 - ETH_FCS_LEN;
|
2017-04-30 19:57:07 +00:00
|
|
|
buffer = dm_pci_mem_to_virt(priv->dev, rx_desc->buffer_addr, length, 0);
|
2017-04-30 19:57:08 +00:00
|
|
|
invalidate_dcache_range((ulong)buffer, (ulong)buffer + length);
|
2017-04-30 19:57:07 +00:00
|
|
|
*packetp = (uchar *)buffer;
|
2015-08-28 05:25:57 +00:00
|
|
|
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pch_gbe_free_pkt(struct udevice *dev, uchar *packet, int length)
|
|
|
|
{
|
|
|
|
struct pch_gbe_priv *priv = dev_get_priv(dev);
|
|
|
|
struct pch_gbe_regs *mac_regs = priv->mac_regs;
|
|
|
|
struct pch_gbe_rx_desc *rx_head = &priv->rx_desc[0];
|
|
|
|
int rx_swp;
|
2015-03-20 09:12:20 +00:00
|
|
|
|
|
|
|
/* Test the wrap-around condition */
|
|
|
|
if (++priv->rx_idx >= PCH_GBE_DESC_NUM)
|
|
|
|
priv->rx_idx = 0;
|
|
|
|
rx_swp = priv->rx_idx;
|
|
|
|
if (++rx_swp >= PCH_GBE_DESC_NUM)
|
|
|
|
rx_swp = 0;
|
|
|
|
|
2017-04-30 19:57:07 +00:00
|
|
|
writel(dm_pci_virt_to_mem(priv->dev, rx_head + rx_swp),
|
2015-03-20 09:12:20 +00:00
|
|
|
&mac_regs->rx_dsc_sw_p);
|
|
|
|
|
2015-08-28 05:25:57 +00:00
|
|
|
return 0;
|
2015-03-20 09:12:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pch_gbe_mdio_ready(struct pch_gbe_regs *mac_regs)
|
|
|
|
{
|
|
|
|
ulong start = get_timer(0);
|
|
|
|
|
|
|
|
while (get_timer(start) < PCH_GBE_TIMEOUT) {
|
|
|
|
if (readl(&mac_regs->miim) & PCH_GBE_MIIM_OPER_READY)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
udelay(10);
|
|
|
|
}
|
|
|
|
|
|
|
|
return -ETIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pch_gbe_mdio_read(struct mii_dev *bus, int addr, int devad, int reg)
|
|
|
|
{
|
|
|
|
struct pch_gbe_regs *mac_regs = bus->priv;
|
|
|
|
u32 miim;
|
|
|
|
|
|
|
|
if (pch_gbe_mdio_ready(mac_regs))
|
|
|
|
return -ETIME;
|
|
|
|
|
|
|
|
miim = (addr << PCH_GBE_MIIM_PHY_ADDR_SHIFT) |
|
|
|
|
(reg << PCH_GBE_MIIM_REG_ADDR_SHIFT) |
|
|
|
|
PCH_GBE_MIIM_OPER_READ;
|
|
|
|
writel(miim, &mac_regs->miim);
|
|
|
|
|
|
|
|
if (pch_gbe_mdio_ready(mac_regs))
|
|
|
|
return -ETIME;
|
|
|
|
|
|
|
|
return readl(&mac_regs->miim) & 0xffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pch_gbe_mdio_write(struct mii_dev *bus, int addr, int devad,
|
|
|
|
int reg, u16 val)
|
|
|
|
{
|
|
|
|
struct pch_gbe_regs *mac_regs = bus->priv;
|
|
|
|
u32 miim;
|
|
|
|
|
|
|
|
if (pch_gbe_mdio_ready(mac_regs))
|
|
|
|
return -ETIME;
|
|
|
|
|
|
|
|
miim = (addr << PCH_GBE_MIIM_PHY_ADDR_SHIFT) |
|
|
|
|
(reg << PCH_GBE_MIIM_REG_ADDR_SHIFT) |
|
|
|
|
PCH_GBE_MIIM_OPER_WRITE | val;
|
|
|
|
writel(miim, &mac_regs->miim);
|
|
|
|
|
|
|
|
if (pch_gbe_mdio_ready(mac_regs))
|
|
|
|
return -ETIME;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-08-28 05:25:57 +00:00
|
|
|
static int pch_gbe_mdio_init(const char *name, struct pch_gbe_regs *mac_regs)
|
2015-03-20 09:12:20 +00:00
|
|
|
{
|
|
|
|
struct mii_dev *bus;
|
|
|
|
|
|
|
|
bus = mdio_alloc();
|
|
|
|
if (!bus) {
|
|
|
|
debug("pch_gbe: failed to allocate MDIO bus\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
bus->read = pch_gbe_mdio_read;
|
|
|
|
bus->write = pch_gbe_mdio_write;
|
2015-12-30 13:05:58 +00:00
|
|
|
strcpy(bus->name, name);
|
2015-03-20 09:12:20 +00:00
|
|
|
|
|
|
|
bus->priv = (void *)mac_regs;
|
|
|
|
|
|
|
|
return mdio_register(bus);
|
|
|
|
}
|
|
|
|
|
2015-08-28 05:25:57 +00:00
|
|
|
static int pch_gbe_phy_init(struct udevice *dev)
|
2015-03-20 09:12:20 +00:00
|
|
|
{
|
2015-08-28 05:25:57 +00:00
|
|
|
struct pch_gbe_priv *priv = dev_get_priv(dev);
|
2020-12-03 23:55:20 +00:00
|
|
|
struct eth_pdata *plat = dev_get_plat(dev);
|
2015-03-20 09:12:20 +00:00
|
|
|
struct phy_device *phydev;
|
|
|
|
int mask = 0xffffffff;
|
|
|
|
|
2015-08-28 05:25:57 +00:00
|
|
|
phydev = phy_find_by_mask(priv->bus, mask, plat->phy_interface);
|
2015-03-20 09:12:20 +00:00
|
|
|
if (!phydev) {
|
|
|
|
printf("pch_gbe: cannot find the phy\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
phy_connect_dev(phydev, dev);
|
|
|
|
|
|
|
|
phydev->supported &= PHY_GBIT_FEATURES;
|
|
|
|
phydev->advertising = phydev->supported;
|
|
|
|
|
|
|
|
priv->phydev = phydev;
|
|
|
|
phy_config(phydev);
|
|
|
|
|
2015-08-28 05:25:57 +00:00
|
|
|
return 0;
|
2015-03-20 09:12:20 +00:00
|
|
|
}
|
|
|
|
|
2018-07-29 07:11:22 +00:00
|
|
|
static int pch_gbe_probe(struct udevice *dev)
|
2015-03-20 09:12:20 +00:00
|
|
|
{
|
|
|
|
struct pch_gbe_priv *priv;
|
2020-12-03 23:55:20 +00:00
|
|
|
struct eth_pdata *plat = dev_get_plat(dev);
|
2016-09-08 06:47:33 +00:00
|
|
|
void *iobase;
|
2017-04-30 19:57:05 +00:00
|
|
|
int err;
|
2015-03-20 09:12:20 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The priv structure contains the descriptors and frame buffers which
|
2015-08-28 05:25:57 +00:00
|
|
|
* need a strict buswidth alignment (64 bytes). This is guaranteed by
|
|
|
|
* DM_FLAG_ALLOC_PRIV_DMA flag in the U_BOOT_DRIVER.
|
2015-03-20 09:12:20 +00:00
|
|
|
*/
|
2015-08-28 05:25:57 +00:00
|
|
|
priv = dev_get_priv(dev);
|
2015-03-20 09:12:20 +00:00
|
|
|
|
2016-02-02 13:57:59 +00:00
|
|
|
priv->dev = dev;
|
2015-03-20 09:12:20 +00:00
|
|
|
|
2016-09-08 06:47:33 +00:00
|
|
|
iobase = dm_pci_map_bar(dev, PCI_BASE_ADDRESS_1, PCI_REGION_MEM);
|
2015-03-20 09:12:20 +00:00
|
|
|
|
2016-09-08 06:47:33 +00:00
|
|
|
plat->iobase = (ulong)iobase;
|
2015-03-20 09:12:20 +00:00
|
|
|
priv->mac_regs = (struct pch_gbe_regs *)iobase;
|
|
|
|
|
|
|
|
/* Read MAC address from SROM and initialize dev->enetaddr with it */
|
2015-08-28 05:25:57 +00:00
|
|
|
pch_gbe_mac_read(priv->mac_regs, plat->enetaddr);
|
2015-03-20 09:12:20 +00:00
|
|
|
|
2015-08-28 05:25:57 +00:00
|
|
|
plat->phy_interface = PHY_INTERFACE_MODE_RGMII;
|
2015-03-20 09:12:20 +00:00
|
|
|
pch_gbe_mdio_init(dev->name, priv->mac_regs);
|
|
|
|
priv->bus = miiphy_get_dev_by_name(dev->name);
|
|
|
|
|
2017-04-30 19:57:05 +00:00
|
|
|
err = pch_gbe_reset(dev);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2015-03-20 09:12:20 +00:00
|
|
|
return pch_gbe_phy_init(dev);
|
|
|
|
}
|
2015-08-28 05:25:57 +00:00
|
|
|
|
2018-07-29 07:11:22 +00:00
|
|
|
static int pch_gbe_remove(struct udevice *dev)
|
2015-10-08 04:32:39 +00:00
|
|
|
{
|
|
|
|
struct pch_gbe_priv *priv = dev_get_priv(dev);
|
|
|
|
|
|
|
|
free(priv->phydev);
|
|
|
|
mdio_unregister(priv->bus);
|
|
|
|
mdio_free(priv->bus);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-08-28 05:25:57 +00:00
|
|
|
static const struct eth_ops pch_gbe_ops = {
|
|
|
|
.start = pch_gbe_start,
|
|
|
|
.send = pch_gbe_send,
|
|
|
|
.recv = pch_gbe_recv,
|
|
|
|
.free_pkt = pch_gbe_free_pkt,
|
|
|
|
.stop = pch_gbe_stop,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct udevice_id pch_gbe_ids[] = {
|
|
|
|
{ .compatible = "intel,pch-gbe" },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(eth_pch_gbe) = {
|
|
|
|
.name = "pch_gbe",
|
|
|
|
.id = UCLASS_ETH,
|
|
|
|
.of_match = pch_gbe_ids,
|
|
|
|
.probe = pch_gbe_probe,
|
2015-10-08 04:32:39 +00:00
|
|
|
.remove = pch_gbe_remove,
|
2015-08-28 05:25:57 +00:00
|
|
|
.ops = &pch_gbe_ops,
|
2020-12-03 23:55:17 +00:00
|
|
|
.priv_auto = sizeof(struct pch_gbe_priv),
|
2020-12-03 23:55:18 +00:00
|
|
|
.plat_auto = sizeof(struct eth_pdata),
|
2015-08-28 05:25:57 +00:00
|
|
|
.flags = DM_FLAG_ALLOC_PRIV_DMA,
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_PCI_DEVICE(eth_pch_gbe, supported);
|