From 8d14f8e898b4cd4d9ff76b6afcbaf25bf37aa1e7 Mon Sep 17 00:00:00 2001 From: Michael Riesch Date: Wed, 10 Nov 2021 11:45:30 +0100 Subject: arm: rockchip: add support for the quartz64 board The Pine64 Quartz64 board features the Rockchip RK3566, a reduced but largely identical version of the RK3568. Two models (A and B) of the Quartz64 board are envisaged, where this patch targets the already available model A. Signed-off-by: Michael Riesch Signed-off-by: Sascha Hauer --- images/Makefile.rockchip | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'images') diff --git a/images/Makefile.rockchip b/images/Makefile.rockchip index e64fccec6b..19980914b2 100644 --- a/images/Makefile.rockchip +++ b/images/Makefile.rockchip @@ -13,9 +13,16 @@ 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_PINE64_QUARTZ64) += start_quartz64a +image-$(CONFIG_MACH_PINE64_QUARTZ64) += barebox-quartz64a.img + quiet_cmd_rkimg_image = RK-IMG $@ cmd_rkimg_image = $(objtree)/scripts/rkimage -o $@ $(word 2,$^) $(word 1,$^) $(obj)/barebox-rk3568-evb.img: $(obj)/start_rk3568_evb.pblb \ $(board)/rockchip-rk3568-evb/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) -- cgit v1.2.1