Skip to content
Snippets Groups Projects
Commit 81ec1001 authored by Hans de Goede's avatar Hans de Goede
Browse files

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: default avatarHans de Goede <hdegoede@redhat.com>
Acked-by: default avatarIan Campbell <ijc@hellion.org.uk>
parent 25508ab2
No related branches found
No related tags found
No related merge requests found
...@@ -96,6 +96,10 @@ config TARGET_BANANAPI ...@@ -96,6 +96,10 @@ config TARGET_BANANAPI
bool "BANANAPI" bool "BANANAPI"
depends on MACH_SUN7I depends on MACH_SUN7I
config TARGET_BANANAPRO
bool "BANANAPRO"
depends on MACH_SUN7I
config TARGET_COLOMBUS config TARGET_COLOMBUS
bool "COLOMBUS" bool "COLOMBUS"
depends on MACH_SUN6I depends on MACH_SUN6I
......
...@@ -23,6 +23,7 @@ F: configs/Mele_M9_defconfig ...@@ -23,6 +23,7 @@ F: configs/Mele_M9_defconfig
F: include/configs/sun7i.h F: include/configs/sun7i.h
F: configs/A20-OLinuXino_MICRO_defconfig F: configs/A20-OLinuXino_MICRO_defconfig
F: configs/Bananapi_defconfig F: configs/Bananapi_defconfig
F: configs/Bananapro_defconfig
F: configs/i12-tvbox_defconfig F: configs/i12-tvbox_defconfig
F: configs/Linksprite_pcDuino3_defconfig F: configs/Linksprite_pcDuino3_defconfig
F: configs/Linksprite_pcDuino3_fdt_defconfig F: configs/Linksprite_pcDuino3_fdt_defconfig
......
...@@ -22,6 +22,7 @@ obj-$(CONFIG_TARGET_A20_OLINUXINO_M) += dram_sun7i_384_1024_iow16.o ...@@ -22,6 +22,7 @@ obj-$(CONFIG_TARGET_A20_OLINUXINO_M) += dram_sun7i_384_1024_iow16.o
obj-$(CONFIG_TARGET_AUXTEK_T004) += dram_a10s_olinuxino_m.o obj-$(CONFIG_TARGET_AUXTEK_T004) += dram_a10s_olinuxino_m.o
obj-$(CONFIG_TARGET_BA10_TV_BOX) += dram_sun4i_384_1024_iow8.o obj-$(CONFIG_TARGET_BA10_TV_BOX) += dram_sun4i_384_1024_iow8.o
obj-$(CONFIG_TARGET_BANANAPI) += dram_bananapi.o obj-$(CONFIG_TARGET_BANANAPI) += dram_bananapi.o
obj-$(CONFIG_TARGET_BANANAPRO) += dram_bananapi.o
obj-$(CONFIG_TARGET_CUBIEBOARD) += dram_cubieboard.o obj-$(CONFIG_TARGET_CUBIEBOARD) += dram_cubieboard.o
obj-$(CONFIG_TARGET_CUBIEBOARD2) += dram_cubieboard2.o obj-$(CONFIG_TARGET_CUBIEBOARD2) += dram_cubieboard2.o
obj-$(CONFIG_TARGET_CUBIETRUCK) += dram_cubietruck.o obj-$(CONFIG_TARGET_CUBIETRUCK) += dram_cubietruck.o
......
...@@ -34,7 +34,7 @@ int sunxi_gmac_initialize(bd_t *bis) ...@@ -34,7 +34,7 @@ int sunxi_gmac_initialize(bd_t *bis)
* need to set bits 10-12 GTXDC "GMAC Transmit Clock Delay Chain" * need to set bits 10-12 GTXDC "GMAC Transmit Clock Delay Chain"
* of the GMAC clk register to 3. * 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); setbits_le32(&ccm->gmac_clk_cfg, 0x3 << 10);
#endif #endif
......
CONFIG_SPL=y
CONFIG_SYS_EXTRA_OPTIONS="AXP209_POWER,SUNXI_GMAC,RGMII,MACPWR=SUNXI_GPH(23),AHCI,USB_EHCI"
CONFIG_FDTFILE="sun7i-a20-bananapro.dtb"
CONFIG_USB1_VBUS_PIN="PH0"
CONFIG_USB2_VBUS_PIN="PH1"
+S:CONFIG_ARM=y
+S:CONFIG_ARCH_SUNXI=y
+S:CONFIG_MACH_SUN7I=y
+S:CONFIG_TARGET_BANANAPRO=y
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment