Makefile.lib 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  1. # SPDX-License-Identifier: GPL-2.0
  2. # Backward compatibility
  3. asflags-y += $(EXTRA_AFLAGS)
  4. ccflags-y += $(EXTRA_CFLAGS)
  5. cppflags-y += $(EXTRA_CPPFLAGS)
  6. ldflags-y += $(EXTRA_LDFLAGS)
  7. #
  8. # flags that take effect in sub directories
  9. export KBUILD_SUBDIR_ASFLAGS := $(KBUILD_SUBDIR_ASFLAGS) $(subdir-asflags-y)
  10. export KBUILD_SUBDIR_CCFLAGS := $(KBUILD_SUBDIR_CCFLAGS) $(subdir-ccflags-y)
  11. # Figure out what we need to build from the various variables
  12. # ===========================================================================
  13. # When an object is listed to be built compiled-in and modular,
  14. # only build the compiled-in version
  15. obj-m := $(filter-out $(obj-y),$(obj-m))
  16. # Libraries are always collected in one lib file.
  17. # Filter out objects already built-in
  18. lib-y := $(filter-out $(obj-y), $(sort $(lib-y) $(lib-m)))
  19. # Handle objects in subdirs
  20. # ---------------------------------------------------------------------------
  21. # o if we encounter foo/ in $(obj-y), replace it by foo/built-in.o
  22. # and add the directory to the list of dirs to descend into: $(subdir-y)
  23. # o if we encounter foo/ in $(obj-m), remove it from $(obj-m)
  24. # and add the directory to the list of dirs to descend into: $(subdir-m)
  25. # Determine modorder.
  26. # Unfortunately, we don't have information about ordering between -y
  27. # and -m subdirs. Just put -y's first.
  28. modorder := $(patsubst %/,%/modules.order, $(filter %/, $(obj-y)) $(obj-m:.o=.ko))
  29. __subdir-y := $(patsubst %/,%,$(filter %/, $(obj-y)))
  30. subdir-y += $(__subdir-y)
  31. __subdir-m := $(patsubst %/,%,$(filter %/, $(obj-m)))
  32. subdir-m += $(__subdir-m)
  33. obj-y := $(patsubst %/, %/built-in.o, $(obj-y))
  34. obj-m := $(filter-out %/, $(obj-m))
  35. # Subdirectories we need to descend into
  36. subdir-ym := $(sort $(subdir-y) $(subdir-m))
  37. # if $(foo-objs) exists, foo.o is a composite object
  38. multi-used-y := $(sort $(foreach m,$(obj-y), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
  39. multi-used-m := $(sort $(foreach m,$(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
  40. multi-used := $(multi-used-y) $(multi-used-m)
  41. single-used-m := $(sort $(filter-out $(multi-used-m),$(obj-m)))
  42. # Build list of the parts of our composite objects, our composite
  43. # objects depend on those (obviously)
  44. multi-objs-y := $(foreach m, $(multi-used-y), $($(m:.o=-objs)) $($(m:.o=-y)))
  45. multi-objs-m := $(foreach m, $(multi-used-m), $($(m:.o=-objs)) $($(m:.o=-y)))
  46. # $(subdir-obj-y) is the list of objects in $(obj-y) which uses dir/ to
  47. # tell kbuild to descend
  48. subdir-obj-y := $(filter %/built-in.o, $(obj-y))
  49. # Replace multi-part objects by their individual parts, look at local dir only
  50. real-objs-y := $(foreach m, $(filter-out $(subdir-obj-y), $(obj-y)), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))),$($(m:.o=-objs)) $($(m:.o=-y)),$(m))) $(extra-y)
  51. real-objs-m := $(foreach m, $(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))),$($(m:.o=-objs)) $($(m:.o=-y)),$(m)))
  52. # Add subdir path
  53. extra-y := $(addprefix $(obj)/,$(extra-y))
  54. always := $(addprefix $(obj)/,$(always))
  55. targets := $(addprefix $(obj)/,$(targets))
  56. modorder := $(addprefix $(obj)/,$(modorder))
  57. obj-y := $(addprefix $(obj)/,$(obj-y))
  58. obj-m := $(addprefix $(obj)/,$(obj-m))
  59. lib-y := $(addprefix $(obj)/,$(lib-y))
  60. subdir-obj-y := $(addprefix $(obj)/,$(subdir-obj-y))
  61. real-objs-y := $(addprefix $(obj)/,$(real-objs-y))
  62. real-objs-m := $(addprefix $(obj)/,$(real-objs-m))
  63. single-used-m := $(addprefix $(obj)/,$(single-used-m))
  64. multi-used-y := $(addprefix $(obj)/,$(multi-used-y))
  65. multi-used-m := $(addprefix $(obj)/,$(multi-used-m))
  66. multi-objs-y := $(addprefix $(obj)/,$(multi-objs-y))
  67. multi-objs-m := $(addprefix $(obj)/,$(multi-objs-m))
  68. subdir-ym := $(addprefix $(obj)/,$(subdir-ym))
  69. # These flags are needed for modversions and compiling, so we define them here
  70. # already
  71. # $(modname_flags) #defines KBUILD_MODNAME as the name of the module it will
  72. # end up in (or would, if it gets compiled in)
  73. # Note: Files that end up in two or more modules are compiled without the
  74. # KBUILD_MODNAME definition. The reason is that any made-up name would
  75. # differ in different configs.
  76. name-fix = $(squote)$(quote)$(subst $(comma),_,$(subst -,_,$1))$(quote)$(squote)
  77. basename_flags = -DKBUILD_BASENAME=$(call name-fix,$(basetarget))
  78. modname_flags = $(if $(filter 1,$(words $(modname))),\
  79. -DKBUILD_MODNAME=$(call name-fix,$(modname)))
  80. orig_c_flags = $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) $(KBUILD_SUBDIR_CCFLAGS) \
  81. $(ccflags-y) $(CFLAGS_$(basetarget).o)
  82. _c_flags = $(filter-out $(CFLAGS_REMOVE_$(basetarget).o), $(orig_c_flags))
  83. orig_a_flags = $(KBUILD_CPPFLAGS) $(KBUILD_AFLAGS) $(KBUILD_SUBDIR_ASFLAGS) \
  84. $(asflags-y) $(AFLAGS_$(basetarget).o)
  85. _a_flags = $(filter-out $(AFLAGS_REMOVE_$(basetarget).o), $(orig_a_flags))
  86. _cpp_flags = $(KBUILD_CPPFLAGS) $(cppflags-y) $(CPPFLAGS_$(@F))
  87. #
  88. # Enable gcov profiling flags for a file, directory or for all files depending
  89. # on variables GCOV_PROFILE_obj.o, GCOV_PROFILE and CONFIG_GCOV_PROFILE_ALL
  90. # (in this order)
  91. #
  92. ifeq ($(CONFIG_GCOV_KERNEL),y)
  93. _c_flags += $(if $(patsubst n%,, \
  94. $(GCOV_PROFILE_$(basetarget).o)$(GCOV_PROFILE)$(CONFIG_GCOV_PROFILE_ALL)), \
  95. $(CFLAGS_GCOV))
  96. endif
  97. #
  98. # Enable address sanitizer flags for kernel except some files or directories
  99. # we don't want to check (depends on variables KASAN_SANITIZE_obj.o, KASAN_SANITIZE)
  100. #
  101. ifeq ($(CONFIG_KASAN),y)
  102. _c_flags += $(if $(patsubst n%,, \
  103. $(KASAN_SANITIZE_$(basetarget).o)$(KASAN_SANITIZE)y), \
  104. $(CFLAGS_KASAN))
  105. endif
  106. # If building the kernel in a separate objtree expand all occurrences
  107. # of -Idir to -I$(srctree)/dir except for absolute paths (starting with '/').
  108. ifeq ($(KBUILD_SRC),)
  109. __c_flags = $(_c_flags)
  110. __a_flags = $(_a_flags)
  111. __cpp_flags = $(_cpp_flags)
  112. else
  113. # -I$(obj) locates generated .h files
  114. # $(call addtree,-I$(obj)) locates .h files in srctree, from generated .c files
  115. # and locates generated .h files
  116. # FIXME: Replace both with specific CFLAGS* statements in the makefiles
  117. __c_flags = $(if $(obj),$(call addtree,-I$(src)) -I$(obj)) \
  118. $(call flags,_c_flags)
  119. __a_flags = $(call flags,_a_flags)
  120. __cpp_flags = $(call flags,_cpp_flags)
  121. endif
  122. # Modified for U-Boot: LINUXINCLUDE -> UBOOTINCLUDE
  123. c_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(UBOOTINCLUDE) \
  124. $(__c_flags) $(modkern_cflags) \
  125. $(basename_flags) $(modname_flags)
  126. a_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(UBOOTINCLUDE) \
  127. $(__a_flags) $(modkern_aflags)
  128. cpp_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(UBOOTINCLUDE) \
  129. $(__cpp_flags)
  130. ld_flags = $(KBUILD_LDFLAGS) $(ldflags-y) $(LDFLAGS_$(@F))
  131. # Try these files in order to find the U-Boot-specific .dtsi include file
  132. u_boot_dtsi_options = $(strip $(wildcard $(dir $<)$(basename $(notdir $<))-u-boot.dtsi) \
  133. $(wildcard $(dir $<)$(subst $\",,$(CONFIG_SYS_SOC))-u-boot.dtsi) \
  134. $(wildcard $(dir $<)$(subst $\",,$(CONFIG_SYS_CPU))-u-boot.dtsi) \
  135. $(wildcard $(dir $<)$(subst $\",,$(CONFIG_SYS_VENDOR))-u-boot.dtsi) \
  136. $(wildcard $(dir $<)u-boot.dtsi))
  137. u_boot_dtsi_options_raw = $(warning Automatic .dtsi inclusion: options: \
  138. $(dir $<)$(basename $(notdir $<))-u-boot.dtsi \
  139. $(dir $<)$(subst $\",,$(CONFIG_SYS_SOC))-u-boot.dtsi \
  140. $(dir $<)$(subst $\",,$(CONFIG_SYS_CPU))-u-boot.dtsi \
  141. $(dir $<)$(subst $\",,$(CONFIG_SYS_VENDOR))-u-boot.dtsi \
  142. $(dir $<)u-boot.dtsi ... \
  143. found: $(if $(u_boot_dtsi_options),"$(u_boot_dtsi_options)",nothing!))
  144. # Uncomment for debugging
  145. # This shows all the files that were considered and the one that we chose.
  146. # u_boot_dtsi_options_debug = $(u_boot_dtsi_options_raw)
  147. # We use the first match
  148. u_boot_dtsi = $(strip $(u_boot_dtsi_options_debug) \
  149. $(notdir $(firstword $(u_boot_dtsi_options))))
  150. # Modified for U-Boot
  151. dtc_cpp_flags = -Wp,-MD,$(depfile).pre.tmp -nostdinc \
  152. -I$(srctree)/arch/$(ARCH)/dts \
  153. -I$(srctree)/arch/$(ARCH)/dts/include \
  154. -Iinclude \
  155. -I$(srctree)/include \
  156. -I$(srctree)/arch/$(ARCH)/include \
  157. -include $(srctree)/include/linux/kconfig.h \
  158. -D__ASSEMBLY__ \
  159. -undef -D__DTS__
  160. # Finds the multi-part object the current object will be linked into
  161. modname-multi = $(sort $(foreach m,$(multi-used),\
  162. $(if $(filter $(subst $(obj)/,,$*.o), $($(m:.o=-objs)) $($(m:.o=-y))),$(m:.o=))))
  163. # Useful for describing the dependency of composite objects
  164. # Usage:
  165. # $(call multi_depend, multi_used_targets, suffix_to_remove, suffix_to_add)
  166. define multi_depend
  167. $(foreach m, $(notdir $1), \
  168. $(eval $(obj)/$m: \
  169. $(addprefix $(obj)/, $(foreach s, $3, $($(m:%$(strip $2)=%$(s)))))))
  170. endef
  171. # LEX
  172. # ---------------------------------------------------------------------------
  173. quiet_cmd_flex = LEX $@
  174. cmd_flex = $(LEX) -o$@ -L $<
  175. $(obj)/%.lex.c: $(src)/%.l FORCE
  176. $(call if_changed,flex)
  177. # YACC
  178. # ---------------------------------------------------------------------------
  179. quiet_cmd_bison = YACC $@
  180. cmd_bison = $(YACC) -o$@ -t -l $<
  181. $(obj)/%.tab.c: $(src)/%.y FORCE
  182. $(call if_changed,bison)
  183. quiet_cmd_bison_h = YACC $@
  184. cmd_bison_h = $(YACC) -o/dev/null --defines=$@ -t -l $<
  185. $(obj)/%.tab.h: $(src)/%.y FORCE
  186. $(call if_changed,bison_h)
  187. # Shipped files
  188. # ===========================================================================
  189. quiet_cmd_shipped = SHIPPED $@
  190. cmd_shipped = cat $< > $@
  191. $(obj)/%: $(src)/%_shipped
  192. $(call cmd,shipped)
  193. # Commands useful for building a boot image
  194. # ===========================================================================
  195. #
  196. # Use as following:
  197. #
  198. # target: source(s) FORCE
  199. # $(if_changed,ld/objcopy/gzip)
  200. #
  201. # and add target to extra-y so that we know we have to
  202. # read in the saved command line
  203. # Linking
  204. # ---------------------------------------------------------------------------
  205. quiet_cmd_ld = LD $@
  206. cmd_ld = $(LD) $(ld_flags) $(filter-out FORCE,$^) -o $@
  207. # Objcopy
  208. # ---------------------------------------------------------------------------
  209. quiet_cmd_objcopy = OBJCOPY $@
  210. cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@
  211. # Gzip
  212. # ---------------------------------------------------------------------------
  213. quiet_cmd_gzip = GZIP $@
  214. cmd_gzip = (cat $(filter-out FORCE,$^) | gzip -n -f -9 > $@) || \
  215. (rm -f $@ ; false)
  216. # DTC
  217. # ---------------------------------------------------------------------------
  218. # Disable noisy checks by default
  219. ifeq ($(findstring 1,$(KBUILD_ENABLE_EXTRA_GCC_CHECKS)),)
  220. DTC_FLAGS += -Wno-unit_address_vs_reg \
  221. -Wno-unit_address_format \
  222. -Wno-avoid_unnecessary_addr_size \
  223. -Wno-alias_paths \
  224. -Wno-graph_child_address \
  225. -Wno-graph_port \
  226. -Wno-unique_unit_address \
  227. -Wno-simple_bus_reg \
  228. -Wno-pci_device_reg
  229. # U-Boot specific disables
  230. DTC_FLAGS += -Wno-pci_bridge \
  231. -Wno-pci_device_bus_num
  232. endif
  233. ifneq ($(findstring 2,$(KBUILD_ENABLE_EXTRA_GCC_CHECKS)),)
  234. DTC_FLAGS += -Wnode_name_chars_strict \
  235. -Wproperty_name_chars_strict
  236. endif
  237. DTC_FLAGS += $(DTC_FLAGS_$(basetarget))
  238. # Generate an assembly file to wrap the output of the device tree compiler
  239. quiet_cmd_dt_S_dtb= DTB $@
  240. # Modified for U-Boot
  241. cmd_dt_S_dtb= \
  242. ( \
  243. echo '.section .dtb.init.rodata,"a"'; \
  244. echo '.balign 16'; \
  245. echo '.global __dtb_$(subst -,_,$(*F))_begin'; \
  246. echo '__dtb_$(subst -,_,$(*F))_begin:'; \
  247. echo '.incbin "$<" '; \
  248. echo '__dtb_$(subst -,_,$(*F))_end:'; \
  249. echo '.global __dtb_$(subst -,_,$(*F))_end'; \
  250. echo '.balign 16'; \
  251. ) > $@
  252. $(obj)/%.dtb.S: $(obj)/%.dtb
  253. $(call cmd,dt_S_dtb)
  254. ifeq ($(CONFIG_OF_LIBFDT_OVERLAY),y)
  255. DTC_FLAGS += -@
  256. endif
  257. quiet_cmd_dtc = DTC $@
  258. # Modified for U-Boot
  259. # Bring in any U-Boot-specific include at the end of the file
  260. cmd_dtc = mkdir -p $(dir ${dtc-tmp}) ; \
  261. (cat $<; $(if $(u_boot_dtsi),echo '$(pound)include "$(u_boot_dtsi)"')) > $(pre-tmp); \
  262. $(CPP) $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $(pre-tmp) ; \
  263. $(DTC) -O dtb -o $@ -b 0 \
  264. -i $(dir $<) $(DTC_FLAGS) \
  265. -d $(depfile).dtc.tmp $(dtc-tmp) || \
  266. (echo "Check $(shell pwd)/$(pre-tmp) for errors" && false) \
  267. ; \
  268. sed "s:$(pre-tmp):$(<):" $(depfile).pre.tmp $(depfile).dtc.tmp > $(depfile)
  269. $(obj)/%.dtb: $(src)/%.dts FORCE
  270. $(call if_changed_dep,dtc)
  271. pre-tmp = $(subst $(comma),_,$(dot-target).pre.tmp)
  272. dtc-tmp = $(subst $(comma),_,$(dot-target).dts.tmp)
  273. # DTCO
  274. # ---------------------------------------------------------------------------
  275. quiet_cmd_dtco = DTCO $@
  276. # Rule for objects only; does not put specific u-boot include at the end
  277. # No generation of assembly file either
  278. # Modified for U-Boot
  279. cmd_dtco = mkdir -p $(dir ${dtc-tmp}) ; \
  280. $(CPP) $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $< ; \
  281. $(DTC) -@ -O dtb -o $@ -b 0 \
  282. -i $(dir $<) $(DTC_FLAGS) \
  283. -d $(depfile).dtc.tmp $(dtc-tmp) ; \
  284. cat $(depfile).pre.tmp $(depfile).dtc.tmp > $(depfile)
  285. $(obj)/%.dtbo: $(src)/%.dts FORCE
  286. $(call if_changed_dep,dtco)
  287. # Fonts
  288. # ---------------------------------------------------------------------------
  289. # Generate an assembly file to wrap the font data
  290. quiet_cmd_S_ttf= TTF $@
  291. # Modified for U-Boot
  292. cmd_S_ttf= \
  293. ( \
  294. echo '.section .rodata.ttf.init,"a"'; \
  295. echo '.balign 16'; \
  296. echo '.global __ttf_$(*F)_begin'; \
  297. echo '__ttf_$(*F)_begin:'; \
  298. echo '.incbin "$<" '; \
  299. echo '__ttf_$(*F)_end:'; \
  300. echo '.global __ttf_$(*F)_end'; \
  301. echo '.balign 16'; \
  302. ) > $@
  303. $(obj)/%.S: $(src)/%.ttf
  304. $(call cmd,S_ttf)
  305. # EFI applications
  306. # A Makefile target *.efi is built as EFI application.
  307. # A Makefile target *_efi.S wraps *.efi as built-in EFI application.
  308. # ---------------------------------------------------------------------------
  309. # Generate an assembly file to wrap the EFI app
  310. cmd_S_efi= \
  311. ( \
  312. echo '.section .rodata.$*.init,"a"'; \
  313. echo '.balign 16'; \
  314. echo '.global __efi_$*_begin'; \
  315. echo '__efi_$*_begin:'; \
  316. echo '.incbin "$<" '; \
  317. echo '__efi_$*_end:'; \
  318. echo '.global __efi_$*_end'; \
  319. echo '.balign 16'; \
  320. ) > $@
  321. $(obj)/%_efi.S: $(obj)/%.efi
  322. $(call cmd,S_efi)
  323. quiet_cmd_efi_objcopy = OBJCOPY $@
  324. cmd_efi_objcopy = $(OBJCOPY) -j .header -j .text -j .sdata -j .data -j \
  325. .dynamic -j .dynsym -j .rel* -j .rela* -j .reloc \
  326. $(if $(EFI_TARGET),$(EFI_TARGET),-O binary) $^ $@
  327. $(obj)/%.efi: $(obj)/%_efi.so
  328. $(call cmd,efi_objcopy)
  329. quiet_cmd_efi_ld = LD $@
  330. cmd_efi_ld = $(LD) -nostdlib -znocombreloc -T $(EFI_LDS_PATH) -shared \
  331. -Bsymbolic -s $^ -o $@
  332. EFI_LDS_PATH = $(srctree)/arch/$(ARCH)/lib/$(EFI_LDS)
  333. $(obj)/efi_crt0.o: $(srctree)/arch/$(ARCH)/lib/$(EFI_CRT0:.o=.S) FORCE
  334. $(call if_changed_dep,as_o_S)
  335. $(obj)/efi_reloc.o: $(srctree)/arch/$(ARCH)/lib/$(EFI_RELOC:.o=.c) $(recordmcount_source) FORCE
  336. $(call cmd,force_checksrc)
  337. $(call if_changed_rule,cc_o_c)
  338. $(obj)/%_efi.so: $(obj)/%.o $(obj)/efi_crt0.o $(obj)/efi_reloc.o $(obj)/efi_freestanding.o
  339. $(call cmd,efi_ld)
  340. targets += $(obj)/efi_crt0.o $(obj)/efi_reloc.o $(obj)/efi_freestanding.o
  341. CFLAGS_REMOVE_efi_reloc.o := $(LTO_CFLAGS)
  342. CFLAGS_REMOVE_efi_freestanding.o := $(LTO_CFLAGS)
  343. # ACPI
  344. # ---------------------------------------------------------------------------
  345. #
  346. # This first sends the file (typically dsdt.asl) through the preprocessor
  347. # resolve includes and any CONFIG options used. This produces dsdt.asl.tmp
  348. # which is pure ASL code. The Intel ASL (ACPI (Advanced Configuration and Power
  349. # Interface) Source Language compiler (iasl) then converts this ASL code into a
  350. # C file containing the hex data to build into U-Boot. This file is called
  351. # dsdt.hex (despite us setting the prefix to .../dsdt.asl.tmp) so must be
  352. # renamed to dsdt.c for consumption by the build system.
  353. ASL_TMP = $(patsubst %.c,%.asl.tmp,$@)
  354. quiet_cmd_acpi_c_asl= ASL $<
  355. cmd_acpi_c_asl= \
  356. $(CPP) -x assembler-with-cpp -D__ASSEMBLY__ -D__ACPI__ \
  357. -P $(UBOOTINCLUDE) -o $(ASL_TMP) $< && \
  358. iasl -p $@ -tc $(ASL_TMP) $(if $(KBUILD_VERBOSE:1=), >/dev/null) && \
  359. mv $(patsubst %.c,%.hex,$@) $@
  360. $(obj)/dsdt.c: $(src)/dsdt.asl
  361. $(call cmd,acpi_c_asl)
  362. $(Q)sed -i -e "s,dsdt_aml_code,AmlCode," $@
  363. # Bzip2
  364. # ---------------------------------------------------------------------------
  365. # Bzip2 and LZMA do not include size in file... so we have to fake that;
  366. # append the size as a 32-bit littleendian number as gzip does.
  367. size_append = printf $(shell \
  368. dec_size=0; \
  369. for F in $1; do \
  370. fsize=$$(stat -c "%s" $$F); \
  371. dec_size=$$(expr $$dec_size + $$fsize); \
  372. done; \
  373. printf "%08x\n" $$dec_size | \
  374. sed 's/\(..\)/\1 /g' | { \
  375. read ch0 ch1 ch2 ch3; \
  376. for ch in $$ch3 $$ch2 $$ch1 $$ch0; do \
  377. printf '%s%03o' '\\' $$((0x$$ch)); \
  378. done; \
  379. } \
  380. )
  381. quiet_cmd_bzip2 = BZIP2 $@
  382. cmd_bzip2 = (cat $(filter-out FORCE,$^) | \
  383. bzip2 -9 && $(call size_append, $(filter-out FORCE,$^))) > $@ || \
  384. (rm -f $@ ; false)
  385. # Lzma
  386. # ---------------------------------------------------------------------------
  387. quiet_cmd_lzma = LZMA $@
  388. cmd_lzma = (cat $(filter-out FORCE,$^) | \
  389. lzma -9 && $(call size_append, $(filter-out FORCE,$^))) > $@ || \
  390. (rm -f $@ ; false)
  391. quiet_cmd_lzo = LZO $@
  392. cmd_lzo = (cat $(filter-out FORCE,$^) | \
  393. lzop -9 && $(call size_append, $(filter-out FORCE,$^))) > $@ || \
  394. (rm -f $@ ; false)
  395. quiet_cmd_lz4 = LZ4 $@
  396. cmd_lz4 = (cat $(filter-out FORCE,$^) | \
  397. lz4c -l -c1 stdin stdout && $(call size_append, $(filter-out FORCE,$^))) > $@ || \
  398. (rm -f $@ ; false)
  399. # U-Boot mkimage
  400. # ---------------------------------------------------------------------------
  401. MKIMAGE := $(srctree)/scripts/mkuboot.sh
  402. # SRCARCH just happens to match slightly more than ARCH (on sparc), so reduces
  403. # the number of overrides in arch makefiles
  404. UIMAGE_ARCH ?= $(SRCARCH)
  405. UIMAGE_COMPRESSION ?= $(if $(2),$(2),none)
  406. UIMAGE_OPTS-y ?=
  407. UIMAGE_TYPE ?= kernel
  408. UIMAGE_LOADADDR ?= arch_must_set_this
  409. UIMAGE_ENTRYADDR ?= $(UIMAGE_LOADADDR)
  410. UIMAGE_NAME ?= 'Linux-$(KERNELRELEASE)'
  411. UIMAGE_IN ?= $<
  412. UIMAGE_OUT ?= $@
  413. quiet_cmd_uimage = UIMAGE $(UIMAGE_OUT)
  414. cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A $(UIMAGE_ARCH) -O linux \
  415. -C $(UIMAGE_COMPRESSION) $(UIMAGE_OPTS-y) \
  416. -T $(UIMAGE_TYPE) \
  417. -a $(UIMAGE_LOADADDR) -e $(UIMAGE_ENTRYADDR) \
  418. -n $(UIMAGE_NAME) -d $(UIMAGE_IN) $(UIMAGE_OUT)
  419. # XZ
  420. # ---------------------------------------------------------------------------
  421. # Use xzkern to compress the kernel image and xzmisc to compress other things.
  422. #
  423. # xzkern uses a big LZMA2 dictionary since it doesn't increase memory usage
  424. # of the kernel decompressor. A BCJ filter is used if it is available for
  425. # the target architecture. xzkern also appends uncompressed size of the data
  426. # using size_append. The .xz format has the size information available at
  427. # the end of the file too, but it's in more complex format and it's good to
  428. # avoid changing the part of the boot code that reads the uncompressed size.
  429. # Note that the bytes added by size_append will make the xz tool think that
  430. # the file is corrupt. This is expected.
  431. #
  432. # xzmisc doesn't use size_append, so it can be used to create normal .xz
  433. # files. xzmisc uses smaller LZMA2 dictionary than xzkern, because a very
  434. # big dictionary would increase the memory usage too much in the multi-call
  435. # decompression mode. A BCJ filter isn't used either.
  436. quiet_cmd_xzkern = XZKERN $@
  437. cmd_xzkern = (cat $(filter-out FORCE,$^) | \
  438. sh $(srctree)/scripts/xz_wrap.sh && \
  439. $(call size_append, $(filter-out FORCE,$^))) > $@ || \
  440. (rm -f $@ ; false)
  441. quiet_cmd_xzmisc = XZMISC $@
  442. cmd_xzmisc = (cat $(filter-out FORCE,$^) | \
  443. xz --check=crc32 --lzma2=dict=1MiB) > $@ || \
  444. (rm -f $@ ; false)
  445. # Additional commands for U-Boot
  446. #
  447. # mkimage
  448. # ---------------------------------------------------------------------------
  449. MKIMAGEOUTPUT ?= /dev/null
  450. quiet_cmd_mkimage = MKIMAGE $@
  451. cmd_mkimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -d $< $@ \
  452. >$(MKIMAGEOUTPUT) $(if $(KBUILD_VERBOSE:0=), && cat $(MKIMAGEOUTPUT))
  453. # fdtgrep
  454. # ---------------------------------------------------------------------------
  455. # Pass the original device tree file through fdtgrep twice. The first pass
  456. # removes any unwanted nodes (i.e. those which don't have the
  457. # 'u-boot,dm-pre-reloc' property and thus are not needed by SPL. The second
  458. # pass removes various unused properties from the remaining nodes.
  459. # The output is typically a much smaller device tree file.
  460. ifeq ($(CONFIG_TPL_BUILD),y)
  461. fdtgrep_props := -b u-boot,dm-pre-reloc -b u-boot,dm-tpl
  462. else
  463. fdtgrep_props := -b u-boot,dm-pre-reloc -b u-boot,dm-spl
  464. endif
  465. quiet_cmd_fdtgrep = FDTGREP $@
  466. cmd_fdtgrep = $(objtree)/tools/fdtgrep $(fdtgrep_props) -RT $< \
  467. -n /chosen -n /config -O dtb | \
  468. $(objtree)/tools/fdtgrep -r -O dtb - -o $@ \
  469. -P u-boot,dm-pre-reloc -P u-boot,dm-spl -P u-boot,dm-tpl \
  470. $(addprefix -P ,$(subst $\",,$(CONFIG_OF_SPL_REMOVE_PROPS)))
  471. # fdt_rm_props
  472. # ---------------------------------------------------------------------------
  473. # Pass the original device tree file through fdtgrep. This removes various
  474. # unused properties. The output is typically a smaller device tree file.
  475. quiet_cmd_fdt_rm_props = FDTGREP $@
  476. cmd_fdt_rm_props = cat $< | $(objtree)/tools/fdtgrep -r -O dtb - -o $@ \
  477. $(addprefix -P ,$(subst $\",,$(CONFIG_OF_REMOVE_PROPS)))
  478. # ASM offsets
  479. # ---------------------------------------------------------------------------
  480. # Default sed regexp - multiline due to syntax constraints
  481. define sed-offsets
  482. "s:[[:space:]]*\.ascii[[:space:]]*\"\(.*\)\":\1:; \
  483. /^->/{s:->#\(.*\):/* \1 */:; \
  484. s:^->\([^ ]*\) [\$$#]*\([-0-9]*\) \(.*\):#define \1 \2 /* \3 */:; \
  485. s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; \
  486. s:->::; p;}"
  487. endef
  488. # Use filechk to avoid rebuilds when a header changes, but the resulting file
  489. # does not
  490. define filechk_offsets
  491. (set -e; \
  492. echo "#ifndef $2"; \
  493. echo "#define $2"; \
  494. echo "/*"; \
  495. echo " * DO NOT MODIFY."; \
  496. echo " *"; \
  497. echo " * This file was generated by Kbuild"; \
  498. echo " */"; \
  499. echo ""; \
  500. sed -ne $(sed-offsets); \
  501. echo ""; \
  502. echo "#endif" )
  503. endef