2014-05-05 10:52:28 +00:00
|
|
|
#include <common.h>
|
|
|
|
#include <netdev.h>
|
|
|
|
#include <miiphy.h>
|
|
|
|
#include <asm/gpio.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/arch/clock.h>
|
|
|
|
#include <asm/arch/gpio.h>
|
|
|
|
|
|
|
|
int sunxi_gmac_initialize(bd_t *bis)
|
|
|
|
{
|
|
|
|
int pin;
|
|
|
|
struct sunxi_ccm_reg *const ccm =
|
|
|
|
(struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
|
|
|
|
|
|
|
|
/* Set up clock gating */
|
|
|
|
setbits_le32(&ccm->ahb_gate1, 0x1 << AHB_GATE_OFFSET_GMAC);
|
|
|
|
|
|
|
|
/* Set MII clock */
|
2014-06-09 09:37:01 +00:00
|
|
|
#ifdef CONFIG_RGMII
|
2014-05-05 10:52:28 +00:00
|
|
|
setbits_le32(&ccm->gmac_clk_cfg, CCM_GMAC_CTRL_TX_CLK_SRC_INT_RGMII |
|
|
|
|
CCM_GMAC_CTRL_GPIT_RGMII);
|
2014-06-09 09:37:01 +00:00
|
|
|
#else
|
|
|
|
setbits_le32(&ccm->gmac_clk_cfg, CCM_GMAC_CTRL_TX_CLK_SRC_MII |
|
|
|
|
CCM_GMAC_CTRL_GPIT_MII);
|
|
|
|
#endif
|
2014-05-05 10:52:28 +00:00
|
|
|
|
2014-09-30 16:45:32 +00:00
|
|
|
/*
|
|
|
|
* In order for the gmac nic to work reliable on the Bananapi, we
|
|
|
|
* need to set bits 10-12 GTXDC "GMAC Transmit Clock Delay Chain"
|
|
|
|
* of the GMAC clk register to 3.
|
|
|
|
*/
|
2014-11-11 12:21:26 +00:00
|
|
|
#ifdef CONFIG_TARGET_BANANAPI
|
2014-09-30 16:45:32 +00:00
|
|
|
setbits_le32(&ccm->gmac_clk_cfg, 0x3 << 10);
|
|
|
|
#endif
|
|
|
|
|
2014-05-05 10:52:28 +00:00
|
|
|
/* Configure pin mux settings for GMAC */
|
|
|
|
for (pin = SUNXI_GPA(0); pin <= SUNXI_GPA(16); pin++) {
|
2014-06-09 09:37:01 +00:00
|
|
|
#ifdef CONFIG_RGMII
|
2014-05-05 10:52:28 +00:00
|
|
|
/* skip unused pins in RGMII mode */
|
|
|
|
if (pin == SUNXI_GPA(9) || pin == SUNXI_GPA(14))
|
|
|
|
continue;
|
2014-06-09 09:37:01 +00:00
|
|
|
#endif
|
2014-05-05 10:52:28 +00:00
|
|
|
sunxi_gpio_set_cfgpin(pin, SUN7I_GPA0_GMAC);
|
|
|
|
sunxi_gpio_set_drv(pin, 3);
|
|
|
|
}
|
|
|
|
|
2014-06-09 09:37:01 +00:00
|
|
|
#ifdef CONFIG_RGMII
|
2014-05-05 10:52:28 +00:00
|
|
|
return designware_initialize(SUNXI_GMAC_BASE, PHY_INTERFACE_MODE_RGMII);
|
2014-06-09 09:37:01 +00:00
|
|
|
#else
|
|
|
|
return designware_initialize(SUNXI_GMAC_BASE, PHY_INTERFACE_MODE_MII);
|
|
|
|
#endif
|
2014-05-05 10:52:28 +00:00
|
|
|
}
|