Merge branch 'master' of git://git.denx.de/u-boot-net

This commit is contained in:
Wolfgang Denk 2010-02-08 22:09:24 +01:00
commit 0b692dcb19
3 changed files with 45 additions and 53 deletions

View File

@ -293,7 +293,7 @@ int miiphy_info (char *devname, unsigned char addr, unsigned int *oui,
int miiphy_reset (char *devname, unsigned char addr) int miiphy_reset (char *devname, unsigned char addr)
{ {
unsigned short reg; unsigned short reg;
int loop_cnt; int timeout = 500;
if (miiphy_read (devname, addr, PHY_BMCR, &reg) != 0) { if (miiphy_read (devname, addr, PHY_BMCR, &reg) != 0) {
debug ("PHY status read failed\n"); debug ("PHY status read failed\n");
@ -311,13 +311,13 @@ int miiphy_reset (char *devname, unsigned char addr)
* auto-clearing). This should happen within 0.5 seconds per the * auto-clearing). This should happen within 0.5 seconds per the
* IEEE spec. * IEEE spec.
*/ */
loop_cnt = 0;
reg = 0x8000; reg = 0x8000;
while (((reg & 0x8000) != 0) && (loop_cnt++ < 1000000)) { while (((reg & 0x8000) != 0) && timeout--) {
if (miiphy_read (devname, addr, PHY_BMCR, &reg) != 0) { if (miiphy_read(devname, addr, PHY_BMCR, &reg) != 0) {
debug ("PHY status read failed\n"); debug("PHY status read failed\n");
return (-1); return -1;
} }
udelay(1000);
} }
if ((reg & 0x8000) == 0) { if ((reg & 0x8000) == 0) {
return (0); return (0);

View File

@ -108,6 +108,17 @@ static int fec_miiphy_read(char *dev, uint8_t phyAddr, uint8_t regAddr,
return 0; return 0;
} }
static void fec_mii_setspeed(struct fec_priv *fec)
{
/*
* Set MII_SPEED = (1/(mii_speed * 2)) * System Clock
* and do not drop the Preamble.
*/
writel((((imx_get_fecclk() / 1000000) + 2) / 5) << 1,
&fec->eth->mii_speed);
debug("fec_init: mii_speed %#lx\n",
fec->eth->mii_speed);
}
static int fec_miiphy_write(char *dev, uint8_t phyAddr, uint8_t regAddr, static int fec_miiphy_write(char *dev, uint8_t phyAddr, uint8_t regAddr,
uint16_t data) uint16_t data)
{ {
@ -236,7 +247,7 @@ static int fec_rbd_init(struct fec_priv *fec, int count, int size)
fec->rdb_ptr = malloc(size * count + DB_DATA_ALIGNMENT); fec->rdb_ptr = malloc(size * count + DB_DATA_ALIGNMENT);
p = (uint32_t)fec->rdb_ptr; p = (uint32_t)fec->rdb_ptr;
if (!p) { if (!p) {
puts("fec_imx27: not enough malloc memory!\n"); puts("fec_mxc: not enough malloc memory\n");
return -ENOMEM; return -ENOMEM;
} }
memset((void *)p, 0, size * count + DB_DATA_ALIGNMENT); memset((void *)p, 0, size * count + DB_DATA_ALIGNMENT);
@ -299,6 +310,13 @@ static void fec_rbd_clean(int last, struct fec_bd *pRbd)
static int fec_get_hwaddr(struct eth_device *dev, unsigned char *mac) static int fec_get_hwaddr(struct eth_device *dev, unsigned char *mac)
{ {
/*
* The MX27 can store the mac address in internal eeprom
* This mechanism is not supported now by MX51
*/
#ifdef CONFIG_MX51
return -1;
#else
struct iim_regs *iim = (struct iim_regs *)IMX_IIM_BASE; struct iim_regs *iim = (struct iim_regs *)IMX_IIM_BASE;
int i; int i;
@ -306,10 +324,12 @@ static int fec_get_hwaddr(struct eth_device *dev, unsigned char *mac)
mac[6-1-i] = readl(&iim->iim_bank_area0[IIM0_MAC + i]); mac[6-1-i] = readl(&iim->iim_bank_area0[IIM0_MAC + i]);
return is_valid_ether_addr(mac); return is_valid_ether_addr(mac);
#endif
} }
static int fec_set_hwaddr(struct eth_device *dev, unsigned char *mac) static int fec_set_hwaddr(struct eth_device *dev)
{ {
uchar *mac = dev->enetaddr;
struct fec_priv *fec = (struct fec_priv *)dev->priv; struct fec_priv *fec = (struct fec_priv *)dev->priv;
writel(0, &fec->eth->iaddr1); writel(0, &fec->eth->iaddr1);
@ -373,7 +393,7 @@ static int fec_init(struct eth_device *dev, bd_t* bd)
sizeof(struct fec_bd) + DB_ALIGNMENT); sizeof(struct fec_bd) + DB_ALIGNMENT);
base = (uint32_t)fec->base_ptr; base = (uint32_t)fec->base_ptr;
if (!base) { if (!base) {
puts("fec_imx27: not enough malloc memory!\n"); puts("fec_mxc: not enough malloc memory\n");
return -ENOMEM; return -ENOMEM;
} }
memset((void *)base, 0, (2 + FEC_RBD_NUM) * memset((void *)base, 0, (2 + FEC_RBD_NUM) *
@ -411,14 +431,8 @@ static int fec_init(struct eth_device *dev, bd_t* bd)
* Frame length=1518; MII mode; * Frame length=1518; MII mode;
*/ */
writel(0x05ee0024, &fec->eth->r_cntrl); /* FIXME 0x05ee0004 */ writel(0x05ee0024, &fec->eth->r_cntrl); /* FIXME 0x05ee0004 */
/*
* Set MII_SPEED = (1/(mii_speed * 2)) * System Clock fec_mii_setspeed(fec);
* and do not drop the Preamble.
*/
writel((((imx_get_ahbclk() / 1000000) + 2) / 5) << 1,
&fec->eth->mii_speed);
debug("fec_init: mii_speed %#lx\n",
(((imx_get_ahbclk() / 1000000) + 2) / 5) << 1);
} }
/* /*
* Set Opcode/Pause Duration Register * Set Opcode/Pause Duration Register
@ -460,6 +474,7 @@ static int fec_init(struct eth_device *dev, bd_t* bd)
miiphy_restart_aneg(dev); miiphy_restart_aneg(dev);
fec_open(dev); fec_open(dev);
fec_set_hwaddr(dev);
return 0; return 0;
} }
@ -522,7 +537,7 @@ static int fec_send(struct eth_device *dev, volatile void* packet, int length)
* Check for valid length of data. * Check for valid length of data.
*/ */
if ((length > 1500) || (length <= 0)) { if ((length > 1500) || (length <= 0)) {
printf("Payload (%d) to large!\n", length); printf("Payload (%d) too large\n", length);
return -1; return -1;
} }
@ -651,22 +666,14 @@ static int fec_recv(struct eth_device *dev)
static int fec_probe(bd_t *bd) static int fec_probe(bd_t *bd)
{ {
struct pll_regs *pll = (struct pll_regs *)IMX_PLL_BASE;
struct eth_device *edev; struct eth_device *edev;
struct fec_priv *fec = &gfec; struct fec_priv *fec = &gfec;
unsigned char ethaddr_str[20];
unsigned char ethaddr[6]; unsigned char ethaddr[6];
char *tmp = getenv("ethaddr");
char *end;
/* enable FEC clock */
writel(readl(&pll->pccr1) | PCCR1_HCLK_FEC, &pll->pccr1);
writel(readl(&pll->pccr0) | PCCR0_FEC_EN, &pll->pccr0);
/* create and fill edev struct */ /* create and fill edev struct */
edev = (struct eth_device *)malloc(sizeof(struct eth_device)); edev = (struct eth_device *)malloc(sizeof(struct eth_device));
if (!edev) { if (!edev) {
puts("fec_imx27: not enough malloc memory!\n"); puts("fec_mxc: not enough malloc memory\n");
return -ENOMEM; return -ENOMEM;
} }
edev->priv = fec; edev->priv = fec;
@ -702,14 +709,7 @@ static int fec_probe(bd_t *bd)
* Frame length=1518; MII mode; * Frame length=1518; MII mode;
*/ */
writel(0x05ee0024, &fec->eth->r_cntrl); /* FIXME 0x05ee0004 */ writel(0x05ee0024, &fec->eth->r_cntrl); /* FIXME 0x05ee0004 */
/* fec_mii_setspeed(fec);
* Set MII_SPEED = (1/(mii_speed * 2)) * System Clock
* and do not drop the Preamble.
*/
writel((((imx_get_ahbclk() / 1000000) + 2) / 5) << 1,
&fec->eth->mii_speed);
debug("fec_init: mii_speed %#lx\n",
(((imx_get_ahbclk() / 1000000) + 2) / 5) << 1);
sprintf(edev->name, "FEC_MXC"); sprintf(edev->name, "FEC_MXC");
@ -717,20 +717,11 @@ static int fec_probe(bd_t *bd)
eth_register(edev); eth_register(edev);
if ((NULL != tmp) && (12 <= strlen(tmp))) { if (fec_get_hwaddr(edev, ethaddr) == 0) {
int i;
/* convert MAC from string to int */
for (i = 0; i < 6; i++) {
ethaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
if (tmp)
tmp = (*end) ? end + 1 : end;
}
} else if (fec_get_hwaddr(edev, ethaddr) == 0) {
printf("got MAC address from EEPROM: %pM\n", ethaddr); printf("got MAC address from EEPROM: %pM\n", ethaddr);
setenv("ethaddr", (char *)ethaddr_str); memcpy(edev->enetaddr, ethaddr, 6);
fec_set_hwaddr(edev);
} }
memcpy(edev->enetaddr, ethaddr, 6);
fec_set_hwaddr(edev, ethaddr);
return 0; return 0;
} }

View File

@ -39,6 +39,7 @@
#include "kirkwood_egiga.h" #include "kirkwood_egiga.h"
#define KIRKWOOD_PHY_ADR_REQUEST 0xee #define KIRKWOOD_PHY_ADR_REQUEST 0xee
#define KWGBE_SMI_REG (((struct kwgbe_registers *)KW_EGIGA0_BASE)->smi)
/* /*
* smi_reg_read - miiphy_read callback function. * smi_reg_read - miiphy_read callback function.
@ -76,7 +77,7 @@ static int smi_reg_read(char *devname, u8 phy_adr, u8 reg_ofs, u16 * data)
/* wait till the SMI is not busy */ /* wait till the SMI is not busy */
do { do {
/* read smi register */ /* read smi register */
smi_reg = KWGBEREG_RD(regs->smi); smi_reg = KWGBEREG_RD(KWGBE_SMI_REG);
if (timeout-- == 0) { if (timeout-- == 0) {
printf("Err..(%s) SMI busy timeout\n", __FUNCTION__); printf("Err..(%s) SMI busy timeout\n", __FUNCTION__);
return -EFAULT; return -EFAULT;
@ -89,14 +90,14 @@ static int smi_reg_read(char *devname, u8 phy_adr, u8 reg_ofs, u16 * data)
| KWGBE_PHY_SMI_OPCODE_READ; | KWGBE_PHY_SMI_OPCODE_READ;
/* write the smi register */ /* write the smi register */
KWGBEREG_WR(regs->smi, smi_reg); KWGBEREG_WR(KWGBE_SMI_REG, smi_reg);
/*wait till read value is ready */ /*wait till read value is ready */
timeout = KWGBE_PHY_SMI_TIMEOUT; timeout = KWGBE_PHY_SMI_TIMEOUT;
do { do {
/* read smi register */ /* read smi register */
smi_reg = KWGBEREG_RD(regs->smi); smi_reg = KWGBEREG_RD(KWGBE_SMI_REG);
if (timeout-- == 0) { if (timeout-- == 0) {
printf("Err..(%s) SMI read ready timeout\n", printf("Err..(%s) SMI read ready timeout\n",
__FUNCTION__); __FUNCTION__);
@ -107,7 +108,7 @@ static int smi_reg_read(char *devname, u8 phy_adr, u8 reg_ofs, u16 * data)
/* Wait for the data to update in the SMI register */ /* Wait for the data to update in the SMI register */
for (timeout = 0; timeout < KWGBE_PHY_SMI_TIMEOUT; timeout++) ; for (timeout = 0; timeout < KWGBE_PHY_SMI_TIMEOUT; timeout++) ;
*data = (u16) (KWGBEREG_RD(regs->smi) & KWGBE_PHY_SMI_DATA_MASK); *data = (u16) (KWGBEREG_RD(KWGBE_SMI_REG) & KWGBE_PHY_SMI_DATA_MASK);
debug("%s:(adr %d, off %d) value= %04x\n", __FUNCTION__, phy_adr, debug("%s:(adr %d, off %d) value= %04x\n", __FUNCTION__, phy_adr,
reg_ofs, *data); reg_ofs, *data);
@ -150,7 +151,7 @@ static int smi_reg_write(char *devname, u8 phy_adr, u8 reg_ofs, u16 data)
timeout = KWGBE_PHY_SMI_TIMEOUT; timeout = KWGBE_PHY_SMI_TIMEOUT;
do { do {
/* read smi register */ /* read smi register */
smi_reg = KWGBEREG_RD(regs->smi); smi_reg = KWGBEREG_RD(KWGBE_SMI_REG);
if (timeout-- == 0) { if (timeout-- == 0) {
printf("Err..(%s) SMI busy timeout\n", __FUNCTION__); printf("Err..(%s) SMI busy timeout\n", __FUNCTION__);
return -ETIME; return -ETIME;
@ -164,7 +165,7 @@ static int smi_reg_write(char *devname, u8 phy_adr, u8 reg_ofs, u16 data)
smi_reg &= ~KWGBE_PHY_SMI_OPCODE_READ; smi_reg &= ~KWGBE_PHY_SMI_OPCODE_READ;
/* write the smi register */ /* write the smi register */
KWGBEREG_WR(regs->smi, smi_reg); KWGBEREG_WR(KWGBE_SMI_REG, smi_reg);
return 0; return 0;
} }