summaryrefslogtreecommitdiffstats
path: root/images
diff options
context:
space:
mode:
authorFrank Wunderlich <frank-w@public-files.de>2022-02-11 10:13:54 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2022-02-11 11:40:27 +0100
commita7f0bcee97dd14ba522b02578ff08e8cafdca1df (patch)
tree076240c512b46a490ce8a98a711b32e1f78d7f0d /images
parent149932efdf368adb4abb2594e3d33899315449a1 (diff)
downloadbarebox-a7f0bcee97dd14ba522b02578ff08e8cafdca1df.tar.gz
barebox-a7f0bcee97dd14ba522b02578ff08e8cafdca1df.tar.xz
ARM: Rockchip: Add rk3568 BananaPi R2 Pro board support
This adds support for the BananaPi R2 Pro board. It is basicly a copy of rk3568 evb board but with slightly modified DTS. Added GPIO-Leds to dts and modified the hw-detection a bit. Tested features so far are: - 1st stage booting - Network - SD card and Emmc - usb (1.1 and 3 work, usb2 not working) - power LED (green) Signed-off-by: Frank Wunderlich <frank-w@public-files.de> Link: https://lore.barebox.org/20220211091354.11573-1-linux@fw-web.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'images')
-rw-r--r--images/Makefile.rockchip7
1 files changed, 7 insertions, 0 deletions
diff --git a/images/Makefile.rockchip b/images/Makefile.rockchip
index 0a485cad24..cdc7772c2e 100644
--- a/images/Makefile.rockchip
+++ b/images/Makefile.rockchip
@@ -14,6 +14,9 @@ image-$(CONFIG_MACH_PHYTEC_SOM_RK3288) += barebox-rk3288-phycore-som.img
pblb-$(CONFIG_MACH_RK3568_EVB) += start_rk3568_evb
image-$(CONFIG_MACH_RK3568_EVB) += barebox-rk3568-evb.img
+pblb-$(CONFIG_MACH_RK3568_BPI_R2PRO) += start_rk3568_bpi_r2pro
+image-$(CONFIG_MACH_RK3568_BPI_R2PRO) += barebox-rk3568-bpi-r2pro.img
+
pblb-$(CONFIG_MACH_PINE64_QUARTZ64) += start_quartz64a
image-$(CONFIG_MACH_PINE64_QUARTZ64) += barebox-quartz64a.img
@@ -24,6 +27,10 @@ $(obj)/barebox-rk3568-evb.img: $(obj)/start_rk3568_evb.pblb \
$(board)/rockchip-rk3568-evb/sdram-init.bin
$(call if_changed,rkimg_image)
+$(obj)/barebox-rk3568-bpi-r2pro.img: $(obj)/start_rk3568_bpi_r2pro.pblb \
+ $(board)/rockchip-rk3568-bpi-r2pro/sdram-init.bin
+ $(call if_changed,rkimg_image)
+
$(obj)/barebox-quartz64a.img: $(obj)/start_quartz64a.pblb \
$(board)/pine64-quartz64/sdram-init.bin
$(call if_changed,rkimg_image)