]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/powerpc/cpu/mpc83xx/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[karo-tx-uboot.git] / arch / powerpc / cpu / mpc83xx / Makefile
1 #
2 # (C) Copyright 2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # Copyright 2004 Freescale Semiconductor, Inc.
6 #
7 # SPDX-License-Identifier:      GPL-2.0+
8 #
9
10 include $(TOPDIR)/config.mk
11
12 LIB     = $(obj)lib$(CPU).o
13
14 MINIMAL=
15
16 ifdef CONFIG_SPL_BUILD
17 ifdef CONFIG_SPL_INIT_MINIMAL
18 MINIMAL=y
19 endif
20 endif
21
22 START   = start.o
23
24 ifdef MINIMAL
25
26 COBJS-y += spl_minimal.o
27
28 else
29
30 COBJS-y += traps.o
31 COBJS-y += cpu.o
32 COBJS-y += cpu_init.o
33 COBJS-y += speed.o
34 COBJS-y += interrupts.o
35 COBJS-y += ecc.o
36 COBJS-$(CONFIG_QE) += qe_io.o
37 COBJS-$(CONFIG_FSL_SERDES) += serdes.o
38 COBJS-$(CONFIG_PCI) += pci.o
39 COBJS-$(CONFIG_PCIE) += pcie.o
40 COBJS-$(CONFIG_OF_LIBFDT) += fdt.o
41
42 # Stub implementations of cache management functions for USB
43 COBJS-y += cache.o
44
45 ifdef CONFIG_FSL_DDR2
46 COBJS_LN-$(CONFIG_MPC8349) += ddr-gen2.o
47 else
48 COBJS-y += spd_sdram.o
49 endif
50 COBJS-$(CONFIG_FSL_DDR2) += law.o
51
52 endif # not minimal
53
54 COBJS   := $(COBJS-y)
55 SRCS    := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) $(addprefix $(obj),$(COBJS_LN-y:.o=.c))
56 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS) $(COBJS_LN-y))
57 START   := $(addprefix $(obj),$(START))
58
59 all:    $(obj).depend $(START) $(LIB)
60
61 $(LIB): $(OBJS)
62         $(call cmd_link_o_target, $(OBJS))
63
64 $(obj)ddr-gen1.c:
65         ln -sf $(SRCTREE)/arch/powerpc/cpu/mpc85xx/ddr-gen1.c $(obj)ddr-gen1.c
66
67 $(obj)ddr-gen2.c:
68         ln -sf $(SRCTREE)/arch/powerpc/cpu/mpc85xx/ddr-gen2.c $(obj)ddr-gen2.c
69
70 $(obj)ddr-gen3.c:
71         ln -sf $(SRCTREE)/arch/powerpc/cpu/mpc85xx/ddr-gen3.c $(obj)ddr-gen3.c
72
73 #########################################################################
74
75 # defines $(obj).depend target
76 include $(SRCTREE)/rules.mk
77
78 sinclude $(obj).depend
79
80 #########################################################################