Makefile 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # (C) Copyright 2000-2006
  4. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  5. obj-y = cpu_info.o
  6. obj-y += emac.o
  7. obj-$(CONFIG_DISPLAY_BOARDINFO) += board.o
  8. obj-$(CONFIG_GLOBAL_TIMER) += timer.o
  9. obj-$(CONFIG_TMU_TIMER) += ../../sh/lib/time.o
  10. obj-$(CONFIG_SH73A0) += lowlevel_init.o cpu_info-sh73a0.o pfc-sh73a0.o
  11. obj-$(CONFIG_R8A7740) += lowlevel_init.o cpu_info-r8a7740.o pfc-r8a7740.o
  12. obj-$(CONFIG_RCAR_GEN2) += lowlevel_init_ca15.o cpu_info-rcar.o
  13. obj-$(CONFIG_RCAR_GEN3) += lowlevel_init_gen3.o cpu_info-rcar.o memmap-gen3.o
  14. OBJCOPYFLAGS_u-boot-spl.srec := -O srec
  15. quiet_cmd_objcopy = OBJCOPY $@
  16. cmd_objcopy = $(OBJCOPY) --gap-fill=0x00 $(OBJCOPYFLAGS) \
  17. $(OBJCOPYFLAGS_$(@F)) $< $@
  18. spl/u-boot-spl.srec: spl/u-boot-spl FORCE
  19. $(call if_changed,objcopy)
  20. ifneq ($(CONFIG_R8A77990)$(CONFIG_R8A77995),)
  21. #
  22. # The first 6 generate statements generate the R-Car Gen3 SCIF loader header.
  23. # The subsequent generate statements represent the following chunk of assembler
  24. # code, which copies the loaded data from 0xe6304030 to 0xe6318000. This is to
  25. # work around a limitation of the D3/E3 BootROM, which does not permit loading
  26. # to 0xe6318000 directly.
  27. #
  28. # mov x0, #0xe6000000
  29. # orr x0, x0, #0x00300000
  30. # orr x1, x0, #0x00004000
  31. # orr x1, x1, #0x00000030
  32. #
  33. # orr x2, x0, #0x00018000
  34. # mov x0, x2
  35. # mov x3, #0x7000
  36. #1: ldp x4, x5, [x1], #16
  37. #
  38. # stp x4, x5, [x2], #16
  39. # subs x3, x3, #16
  40. # b.ge 1b
  41. # br x0
  42. #
  43. quiet_cmd_srec_cat = SRECCAT $@
  44. cmd_srec_cat = srec_cat -output $@ -M 8 $< -M 8 \
  45. -offset -0x13fd0 \
  46. -Output_Block_Size 16 \
  47. -generate 0xe6300400 0xe6300404 -l-e-constant 0x0 4 \
  48. -generate 0xe630048c 0xe6300490 -l-e-constant 0x0 4 \
  49. -generate 0xe63005d4 0xe63005d8 -l-e-constant 0xe6304000 4 \
  50. -generate 0xe63006e4 0xe63006e8 -l-e-constant $2 4 \
  51. -generate 0xe6301154 0xe6301158 -l-e-constant 0xe6304000 4 \
  52. -generate 0xe6301264 0xe6301268 -l-e-constant $2 4 \
  53. -generate 0xe6304000 0xe6304004 -l-e-constant 0xd2bcc000 4 \
  54. -generate 0xe6304004 0xe6304008 -l-e-constant 0xb26c0400 4 \
  55. -generate 0xe6304008 0xe630400c -l-e-constant 0xb2720001 4 \
  56. -generate 0xe630400c 0xe6304010 -l-e-constant 0xb27c0421 4 \
  57. -generate 0xe6304010 0xe6304014 -l-e-constant 0xb2710402 4 \
  58. -generate 0xe6304014 0xe6304018 -l-e-constant 0xaa0203e0 4 \
  59. -generate 0xe6304018 0xe630401c -l-e-constant 0xd28e0003 4 \
  60. -generate 0xe630401c 0xe6304020 -l-e-constant 0xa8c11424 4 \
  61. -generate 0xe6304020 0xe6304024 -l-e-constant 0xa8811444 4 \
  62. -generate 0xe6304024 0xe6304028 -l-e-constant 0xf1004063 4 \
  63. -generate 0xe6304028 0xe630402c -l-e-constant 0x54ffffaa 4 \
  64. -generate 0xe630402c 0xe6304030 -l-e-constant 0xd61f0000 4
  65. else
  66. quiet_cmd_srec_cat = SRECCAT $@
  67. cmd_srec_cat = srec_cat -output $@ -M 8 $< -M 8 \
  68. -Output_Block_Size 16 \
  69. -generate 0xe6300400 0xe6300404 -l-e-constant 0x0 4 \
  70. -generate 0xe630048c 0xe6300490 -l-e-constant 0x0 4 \
  71. -generate 0xe63005d4 0xe63005d8 -l-e-constant $(CONFIG_SPL_TEXT_BASE) 4 \
  72. -generate 0xe63006e4 0xe63006e8 -l-e-constant $2 4 \
  73. -generate 0xe6301154 0xe6301158 -l-e-constant $(CONFIG_SPL_TEXT_BASE) 4 \
  74. -generate 0xe6301264 0xe6301268 -l-e-constant $2 4
  75. endif
  76. spl/u-boot-spl.scif: spl/u-boot-spl.srec spl/u-boot-spl.bin
  77. $(call cmd,srec_cat,$(shell wc -c spl/u-boot-spl.bin | awk '{printf("0x%08x\n",$$1)}'))
  78. # if srec_cat is present build u-boot-spl.scif by default
  79. has_srec_cat = $(call try-run,srec_cat -VERSion,y,n)
  80. INPUTS-$(has_srec_cat) += u-boot-spl.scif
  81. CLEAN_FILES += u-boot-spl.scif