upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.2 KiB
55 lines
1.2 KiB
9 years ago
|
/*
|
||
|
* (C) Copyright 2016 Beniamino Galvani <b.galvani@gmail.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#include <common.h>
|
||
|
#include <asm/io.h>
|
||
|
#include <asm/arch/gxbb.h>
|
||
9 years ago
|
#include <asm/arch/sm.h>
|
||
9 years ago
|
#include <dm/platdata.h>
|
||
|
#include <phy.h>
|
||
|
|
||
9 years ago
|
#define EFUSE_SN_OFFSET 20
|
||
|
#define EFUSE_SN_SIZE 16
|
||
|
#define EFUSE_MAC_OFFSET 52
|
||
|
#define EFUSE_MAC_SIZE 6
|
||
|
|
||
9 years ago
|
int board_init(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int misc_init_r(void)
|
||
|
{
|
||
9 years ago
|
u8 mac_addr[EFUSE_MAC_SIZE];
|
||
|
ssize_t len;
|
||
|
|
||
9 years ago
|
/* Set RGMII mode */
|
||
|
setbits_le32(GXBB_ETH_REG_0, GXBB_ETH_REG_0_PHY_INTF |
|
||
|
GXBB_ETH_REG_0_TX_PHASE(1) |
|
||
|
GXBB_ETH_REG_0_TX_RATIO(4) |
|
||
|
GXBB_ETH_REG_0_PHY_CLK_EN |
|
||
|
GXBB_ETH_REG_0_CLK_EN);
|
||
|
|
||
|
/* Enable power and clock gate */
|
||
|
setbits_le32(GXBB_GCLK_MPEG_1, GXBB_GCLK_MPEG_1_ETH);
|
||
|
clrbits_le32(GXBB_MEM_PD_REG_0, GXBB_MEM_PD_REG_0_ETH_MASK);
|
||
|
|
||
|
/* Reset PHY on GPIOZ_14 */
|
||
|
clrbits_le32(GXBB_GPIO_EN(3), BIT(14));
|
||
|
clrbits_le32(GXBB_GPIO_OUT(3), BIT(14));
|
||
|
mdelay(10);
|
||
|
setbits_le32(GXBB_GPIO_OUT(3), BIT(14));
|
||
|
|
||
9 years ago
|
if (!eth_getenv_enetaddr("ethaddr", mac_addr)) {
|
||
|
len = meson_sm_read_efuse(EFUSE_MAC_OFFSET,
|
||
|
mac_addr, EFUSE_MAC_SIZE);
|
||
|
if (len == EFUSE_MAC_SIZE && is_valid_ethaddr(mac_addr))
|
||
|
eth_setenv_enetaddr("ethaddr", mac_addr);
|
||
|
}
|
||
|
|
||
9 years ago
|
return 0;
|
||
|
}
|