xref: /linux/arch/powerpc/kernel/Makefile (revision b950bdd0fc247d0ab4aea88d46e8cced3eac949e)
114cf11afSPaul Mackerras#
214cf11afSPaul Mackerras# Makefile for the linux kernel.
314cf11afSPaul Mackerras#
414cf11afSPaul Mackerras
580fdf470SRoland McGrathCFLAGS_ptrace.o		+= -DUTS_MACHINE='"$(UTS_MACHINE)"'
680fdf470SRoland McGrath
7bd142b70SStephen Rothwellifeq ($(CONFIG_PPC64),y)
808a644ecSStephen RothwellCFLAGS_prom_init.o	+= -mno-minimal-toc
9bd142b70SStephen Rothwellendif
10cabb5587SStephen Rothwellifeq ($(CONFIG_PPC32),y)
119b6b563cSPaul MackerrasCFLAGS_prom_init.o      += -fPIC
12b3491269SPaul MackerrasCFLAGS_btext.o		+= -fPIC
13cabb5587SStephen Rothwellendif
149b6b563cSPaul Mackerras
154e491d14SSteven Rostedtifdef CONFIG_FTRACE
164e491d14SSteven Rostedt# Do not trace early boot code
174e491d14SSteven RostedtCFLAGS_REMOVE_cputable.o = -pg
184e491d14SSteven RostedtCFLAGS_REMOVE_prom_init.o = -pg
194e491d14SSteven Rostedt
204e491d14SSteven Rostedtifdef CONFIG_DYNAMIC_FTRACE
214e491d14SSteven Rostedt# dynamic ftrace setup.
224e491d14SSteven RostedtCFLAGS_REMOVE_ftrace.o = -pg
234e491d14SSteven Rostedtendif
244e491d14SSteven Rostedt
254e491d14SSteven Rostedtendif
264e491d14SSteven Rostedt
2764ac24e7SMatthew Wilcoxobj-y				:= cputable.o ptrace.o syscalls.o \
28624cee31SPaul Mackerras				   irq.o align.o signal_32.o pmc.o vdso.o \
2922e38f29SBenjamin Herrenschmidt				   init_task.o process.o systbl.o idle.o \
30*b950bdd0SBenjamin Herrenschmidt				   signal.o sysfs.o
31a7f290daSBenjamin Herrenschmidtobj-y				+= vdso32/
3201e31dbaSRoland McGrathobj-$(CONFIG_PPC64)		+= setup_64.o sys_ppc32.o \
338568daa4SPaul Mackerras				   signal_64.o ptrace32.o \
342e974251SOlof Johansson				   paca.o cpu_setup_ppc970.o \
351199919bSOlof Johansson				   cpu_setup_pa6t.o \
36*b950bdd0SBenjamin Herrenschmidt				   firmware.o nvram_64.o
37a7f290daSBenjamin Herrenschmidtobj-$(CONFIG_PPC64)		+= vdso64/
3840ef8cbcSPaul Mackerrasobj-$(CONFIG_ALTIVEC)		+= vecemu.o vector.o
39f39224a8SPaul Mackerrasobj-$(CONFIG_PPC_970_NAP)	+= idle_power4.o
407eebde70SBenjamin Herrenschmidtobj-$(CONFIG_PPC_OF)		+= of_device.o of_platform.o prom_parse.o
416f668280SDomen Puncerobj-$(CONFIG_PPC_CLOCK)		+= clock.o
42d3d2176aSDavid Gibsonprocfs-$(CONFIG_PPC64)		:= proc_ppc64.o
43d3d2176aSDavid Gibsonobj-$(CONFIG_PROC_FS)		+= $(procfs-y)
44bed59275SStephen Rothwellrtaspci-$(CONFIG_PPC64)-$(CONFIG_PCI)	:= rtas_pci.o
45bed59275SStephen Rothwellobj-$(CONFIG_PPC_RTAS)		+= rtas.o rtas-rtc.o $(rtaspci-y-y)
46f4fcbbe9SPaul Mackerrasobj-$(CONFIG_RTAS_FLASH)	+= rtas_flash.o
47f4fcbbe9SPaul Mackerrasobj-$(CONFIG_RTAS_PROC)		+= rtas-proc.o
48d3d2176aSDavid Gibsonobj-$(CONFIG_LPARCFG)		+= lparcfg.o
4958046019SStephen Rothwellobj-$(CONFIG_IBMVIO)		+= vio.o
50d7a30103SHeiko J Schickobj-$(CONFIG_IBMEBUS)           += ibmebus.o
518ad200d7SPaul Mackerrasobj-$(CONFIG_GENERIC_TBSYNC)	+= smp-tbsync.o
520cc4746cSMichael Ellermanobj-$(CONFIG_CRASH_DUMP)	+= crash_dump.o
53fc4033b2SKumar Galaobj-$(CONFIG_E500)		+= idle_e500.o
549b781727SPaul Mackerrasobj-$(CONFIG_6xx)		+= idle_6xx.o l2cr_6xx.o cpu_setup_6xx.o
559b781727SPaul Mackerrasobj-$(CONFIG_TAU)		+= tau_6xx.o
562578bfaeSStephen Rothwellobj-$(CONFIG_HIBERNATION)	+= swsusp.o suspend.o \
572578bfaeSStephen Rothwell				   swsusp_$(CONFIG_WORD_SIZE).o
582578bfaeSStephen Rothwellobj64-$(CONFIG_HIBERNATION)	+= swsusp_asm64.o
59f0c426bcSKumar Galaobj-$(CONFIG_MODULES)		+= module.o module_$(CONFIG_WORD_SIZE).o
6026f571d7SPaul Mackerrasobj-$(CONFIG_44x)		+= cpu_setup_44x.o
6140ef8cbcSPaul Mackerras
6270d64ceaSPaul Mackerrasextra-$(CONFIG_PPC_STD_MMU)	:= head_32.o
63cabb5587SStephen Rothwellextra-$(CONFIG_PPC64)		:= head_64.o
6415f6527eSJosh Boyerextra-$(CONFIG_40x)		:= head_40x.o
6514cf11afSPaul Mackerrasextra-$(CONFIG_44x)		:= head_44x.o
6614cf11afSPaul Mackerrasextra-$(CONFIG_FSL_BOOKE)	:= head_fsl_booke.o
6714cf11afSPaul Mackerrasextra-$(CONFIG_8xx)		:= head_8xx.o
6814cf11afSPaul Mackerrasextra-y				+= vmlinux.lds
6914cf11afSPaul Mackerras
70127efeb2SStephen Rothwellobj-y				+= time.o prom.o traps.o setup-common.o \
712578bfaeSStephen Rothwell				   udbg.o misc.o io.o \
722578bfaeSStephen Rothwell				   misc_$(CONFIG_WORD_SIZE).o
732578bfaeSStephen Rothwellobj-$(CONFIG_PPC32)		+= entry_32.o setup_32.o
742578bfaeSStephen Rothwellobj-$(CONFIG_PPC64)		+= dma_64.o iommu.o
7517ce452fSJason Wesselobj-$(CONFIG_KGDB)		+= kgdb.o
76be42d5faSPaul Mackerrasobj-$(CONFIG_PPC_MULTIPLATFORM)	+= prom_init.o
7720c8c210SPaul Mackerrasobj-$(CONFIG_MODULES)		+= ppc_ksyms.o
789b6b563cSPaul Mackerrasobj-$(CONFIG_BOOTX_TEXT)	+= btext.o
795ad57078SPaul Mackerrasobj-$(CONFIG_SMP)		+= smp.o
807568cb4eSPaul Mackerrasobj-$(CONFIG_KPROBES)		+= kprobes.o
8113b8a272SPaul Mackerrasobj-$(CONFIG_PPC_UDBG_16550)	+= legacy_serial.o udbg_16550.o
82fd3e0bbcSChristoph Hellwigobj-$(CONFIG_STACKTRACE)	+= stacktrace.o
834c75a6f4SBenjamin Herrenschmidt
842578bfaeSStephen Rothwellpci64-$(CONFIG_PPC64)		+= pci_dn.o isa-bridge.o
852578bfaeSStephen Rothwellobj-$(CONFIG_PCI)		+= pci_$(CONFIG_WORD_SIZE).o $(pci64-y) \
862578bfaeSStephen Rothwell				   pci-common.o
87df87ef55SMichael Ellermanobj-$(CONFIG_PCI_MSI)		+= msi.o
882578bfaeSStephen Rothwellobj-$(CONFIG_KEXEC)		+= machine_kexec.o crash.o \
892578bfaeSStephen Rothwell				   machine_kexec_$(CONFIG_WORD_SIZE).o
90c0803799SAl Viroobj-$(CONFIG_AUDIT)		+= audit.o
91c0803799SAl Viroobj64-$(CONFIG_AUDIT)		+= compat_audit.o
92cabb5587SStephen Rothwell
934e491d14SSteven Rostedtobj-$(CONFIG_DYNAMIC_FTRACE)	+= ftrace.o
944e491d14SSteven Rostedt
955dd57a13SScott Woodobj-$(CONFIG_8XX_MINIMAL_FPEMU) += softemu8xx.o
965dd57a13SScott Wood
974cb3cee0SBenjamin Herrenschmidtifneq ($(CONFIG_PPC_INDIRECT_IO),y)
9868a64357SBenjamin Herrenschmidtobj-y				+= iomap.o
994cb3cee0SBenjamin Herrenschmidtendif
1004cb3cee0SBenjamin Herrenschmidt
101437a58dbSPaul Mackerrasobj-$(CONFIG_PPC64)		+= $(obj64-y)
102437a58dbSPaul Mackerras
10325c8a78bSDavid Gibsonextra-$(CONFIG_PPC_FPU)		+= fpu.o
104640768eeSStephen Rothwellextra-$(CONFIG_PPC64)		+= entry_64.o
1050a4690cfSStephen Rothwell
1060a4690cfSStephen Rothwellextra-y				+= systbl_chk.i
1070a4690cfSStephen Rothwell$(obj)/systbl.o:		systbl_chk
1080a4690cfSStephen Rothwell
1090a4690cfSStephen Rothwellquiet_cmd_systbl_chk = CALL    $<
1100a4690cfSStephen Rothwell      cmd_systbl_chk = $(CONFIG_SHELL) $< $(obj)/systbl_chk.i
1110a4690cfSStephen Rothwell
1120a4690cfSStephen RothwellPHONY += systbl_chk
1130a4690cfSStephen Rothwellsystbl_chk: $(src)/systbl_chk.sh $(obj)/systbl_chk.i
1140a4690cfSStephen Rothwell	$(call cmd,systbl_chk)
115e4ccde02SKumar Gala
1165c02cd2fSMichael Ellerman$(obj)/built-in.o:		prom_init_check
1175c02cd2fSMichael Ellerman
1185c02cd2fSMichael Ellermanquiet_cmd_prom_init_check = CALL    $<
1195c02cd2fSMichael Ellerman      cmd_prom_init_check = $(CONFIG_SHELL) $< "$(NM)" "$(obj)/prom_init.o"
1205c02cd2fSMichael Ellerman
1215c02cd2fSMichael EllermanPHONY += prom_init_check
1225c02cd2fSMichael Ellermanprom_init_check: $(src)/prom_init_check.sh $(obj)/prom_init.o
1235c02cd2fSMichael Ellerman	$(call cmd,prom_init_check)
1245c02cd2fSMichael Ellerman
125e4ccde02SKumar Galaclean-files := vmlinux.lds
126