]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/powerpc/cpu/ppc4xx/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-blackfin
[people/ms/u-boot.git] / arch / powerpc / cpu / ppc4xx / Makefile
1 #
2 # (C) Copyright 2000-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # SPDX-License-Identifier: GPL-2.0+
6 #
7
8 extra-y := resetvec.o
9 extra-y += start.o
10
11 obj-y := cache.o
12 obj-y += dcr.o
13 obj-y += kgdb.o
14
15 obj-y += 40x_spd_sdram.o
16
17 ifndef CONFIG_NAND_SPL
18 ifndef CONFIG_NAND_U_BOOT
19 obj-y += 44x_spd_ddr.o
20 endif
21 endif
22 obj-$(CONFIG_SDRAM_PPC4xx_IBM_DDR2) += 44x_spd_ddr2.o
23 obj-$(CONFIG_PPC4xx_DDR_AUTOCALIBRATION) += 4xx_ibm_ddr2_autocalib.o
24 obj-y += 4xx_pci.o
25 obj-y += 4xx_pcie.o
26 obj-y += bedbug_405.o
27 obj-$(CONFIG_CMD_CHIP_CONFIG) += cmd_chip_config.o
28 obj-y += cpu.o
29 obj-y += cpu_init.o
30 obj-y += denali_data_eye.o
31 obj-y += denali_spd_ddr2.o
32 obj-y += ecc.o
33 obj-$(CONFIG_CMD_ECCTEST) += cmd_ecctest.o
34 obj-y += fdt.o
35 obj-y += interrupts.o
36 obj-$(CONFIG_CMD_REGINFO) += reginfo.o
37 obj-y += sdram.o
38 obj-y += speed.o
39 obj-y += tlb.o
40 obj-y += traps.o
41 obj-y += usb.o
42 obj-y += usb_ohci.o
43 obj-$(CONFIG_XILINX_440) += xilinx_irq.o
44 ifndef CONFIG_XILINX_440
45 obj-y += 4xx_uart.o
46 obj-y += gpio.o
47 obj-y += miiphy.o
48 obj-y += uic.o
49 endif
50
51 ifdef CONFIG_SPL_BUILD
52 obj-y += spl_boot.o
53 endif