]> git.sur5r.net Git - u-boot/blobdiff - scripts/Makefile.lib
ARM: uniphier: add a field to specify DDR3+
[u-boot] / scripts / Makefile.lib
index 1c949fc0eb966cb13ea1c76fe509f50a92a74494..ad1d9b5d7dd25fd5a4357c93bc7c4818ba8c109d 100644 (file)
@@ -1,3 +1,6 @@
+#
+# SPDX-License-Identifier:     GPL-2.0
+#
 # Backward compatibility
 asflags-y  += $(EXTRA_AFLAGS)
 ccflags-y  += $(EXTRA_CFLAGS)
@@ -297,6 +300,38 @@ $(obj)/%.dtb: $(src)/%.dts FORCE
 
 dtc-tmp = $(subst $(comma),_,$(dot-target).dts.tmp)
 
+# Fonts
+# ---------------------------------------------------------------------------
+
+# Generate an assembly file to wrap the font data
+quiet_cmd_S_ttf= TTF     $@
+# Modified for U-Boot
+cmd_S_ttf=                                             \
+(                                                      \
+       echo '.section .rodata.ttf.init,"a"';           \
+       echo '.balign 16';                              \
+       echo '.global __ttf_$(*F)_begin';               \
+       echo '__ttf_$(*F)_begin:';                      \
+       echo '.incbin "$<" ';                           \
+       echo '__ttf_$(*F)_end:';                        \
+       echo '.global __ttf_$(*F)_end';                 \
+       echo '.balign 16';                              \
+) > $@
+
+$(obj)/%.S: $(src)/%.ttf
+       $(call cmd,S_ttf)
+
+# ACPI
+# ---------------------------------------------------------------------------
+quiet_cmd_acpi_c_asl= ASL     $@
+cmd_acpi_c_asl=         \
+       $(CPP) -x assembler-with-cpp -P -o $<.tmp $<; \
+       iasl -p $< -tc -va $<.tmp; \
+       mv $(patsubst %.asl,%.hex,$<) $@
+
+$(obj)/%.c:    $(src)/%.asl
+       $(call cmd,acpi_c_asl)
+
 # Bzip2
 # ---------------------------------------------------------------------------