diff options
author | Hans de Goede <hdegoede@redhat.com> | 2014-12-31 11:30:26 +0100 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2015-01-14 14:56:37 +0100 |
commit | 81ec10015181bcf19a190ae4bea94bb1ac8d1da6 (patch) | |
tree | f9795d577b79bc31e893791b0bf852dc32a0577f /board/sunxi/gmac.c | |
parent | 25508ab26cb9ceb8ac9cdf12a851b7047fa791b2 (diff) | |
download | u-boot-81ec10015181bcf19a190ae4bea94bb1ac8d1da6.tar.gz |
sun7i: Add new Bananapro board / defconfig
Add support for the new Bananapro A20 development board from lemaker.org.
This board features 1G RAM, 2 USB A receptacles, 1 micro USB receptacle for
OTG, 1 micro USB receptacle for power, HDMI, sata, Gbit ethernet, ir receiver,
3.5 mm jack for a/v out, on board microphone, 40 gpio pins and sdio wifi.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
Diffstat (limited to 'board/sunxi/gmac.c')
-rw-r--r-- | board/sunxi/gmac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/sunxi/gmac.c b/board/sunxi/gmac.c index 571bc9e0ab..4e4615e12f 100644 --- a/board/sunxi/gmac.c +++ b/board/sunxi/gmac.c @@ -34,7 +34,7 @@ int sunxi_gmac_initialize(bd_t *bis) * need to set bits 10-12 GTXDC "GMAC Transmit Clock Delay Chain" * of the GMAC clk register to 3. */ -#ifdef CONFIG_TARGET_BANANAPI +#if defined CONFIG_TARGET_BANANAPI || defined CONFIG_TARGET_BANANAPRO setbits_le32(&ccm->gmac_clk_cfg, 0x3 << 10); #endif |