2005-09-26 02:04:21 -04:00
|
|
|
#
|
|
|
|
# Makefile for the linux kernel.
|
|
|
|
#
|
|
|
|
|
2005-09-29 23:51:25 -04:00
|
|
|
ifeq ($(CONFIG_PPC64),y)
|
|
|
|
EXTRA_CFLAGS += -mno-minimal-toc
|
|
|
|
endif
|
2005-09-30 02:16:52 -04:00
|
|
|
ifeq ($(CONFIG_PPC32),y)
|
2005-10-05 22:06:20 -04:00
|
|
|
CFLAGS_prom_init.o += -fPIC
|
2005-10-05 23:24:50 -04:00
|
|
|
CFLAGS_btext.o += -fPIC
|
2005-09-30 02:16:52 -04:00
|
|
|
endif
|
2005-10-05 22:06:20 -04:00
|
|
|
|
2005-10-18 00:19:41 -04:00
|
|
|
obj-y := semaphore.o cputable.o ptrace.o syscalls.o \
|
2006-01-09 04:17:01 -05:00
|
|
|
irq.o align.o signal_32.o pmc.o vdso.o
|
2005-11-11 05:15:21 -05:00
|
|
|
obj-y += vdso32/
|
2005-10-27 06:20:42 -04:00
|
|
|
obj-$(CONFIG_PPC64) += setup_64.o binfmt_elf32.o sys_ppc32.o \
|
2005-11-08 21:38:01 -05:00
|
|
|
signal_64.o ptrace32.o systbl.o \
|
2006-01-09 23:52:14 -05:00
|
|
|
paca.o cpu_setup_power4.o \
|
2005-11-23 01:57:25 -05:00
|
|
|
firmware.o sysfs.o idle_64.o
|
2005-11-11 05:15:21 -05:00
|
|
|
obj-$(CONFIG_PPC64) += vdso64/
|
2005-10-10 08:50:37 -04:00
|
|
|
obj-$(CONFIG_ALTIVEC) += vecemu.o vector.o
|
|
|
|
obj-$(CONFIG_POWER4) += idle_power4.o
|
2006-01-09 04:17:01 -05:00
|
|
|
obj-$(CONFIG_PPC_OF) += of_device.o prom_parse.o
|
2005-11-09 23:26:20 -05:00
|
|
|
procfs-$(CONFIG_PPC64) := proc_ppc64.o
|
|
|
|
obj-$(CONFIG_PROC_FS) += $(procfs-y)
|
|
|
|
rtaspci-$(CONFIG_PPC64) := rtas_pci.o
|
2005-11-13 23:49:48 -05:00
|
|
|
obj-$(CONFIG_PPC_RTAS) += rtas.o rtas-rtc.o $(rtaspci-y)
|
2005-11-02 22:41:19 -05:00
|
|
|
obj-$(CONFIG_RTAS_FLASH) += rtas_flash.o
|
|
|
|
obj-$(CONFIG_RTAS_PROC) += rtas-proc.o
|
2005-11-09 23:26:20 -05:00
|
|
|
obj-$(CONFIG_LPARCFG) += lparcfg.o
|
2005-10-24 00:22:37 -04:00
|
|
|
obj-$(CONFIG_IBMVIO) += vio.o
|
2005-11-16 02:56:43 -05:00
|
|
|
obj-$(CONFIG_IBMEBUS) += ibmebus.o
|
2005-11-03 21:28:58 -05:00
|
|
|
obj-$(CONFIG_GENERIC_TBSYNC) += smp-tbsync.o
|
2005-11-17 23:43:34 -05:00
|
|
|
obj64-$(CONFIG_PPC_MULTIPLATFORM) += nvram_64.o
|
2005-12-04 02:39:37 -05:00
|
|
|
obj-$(CONFIG_CRASH_DUMP) += crash_dump.o
|
2005-10-10 08:50:37 -04:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_PPC_MERGE),y)
|
|
|
|
|
2005-10-10 07:52:43 -04:00
|
|
|
extra-$(CONFIG_PPC_STD_MMU) := head_32.o
|
2005-09-30 02:16:52 -04:00
|
|
|
extra-$(CONFIG_PPC64) := head_64.o
|
2005-09-26 02:04:21 -04:00
|
|
|
extra-$(CONFIG_40x) := head_4xx.o
|
|
|
|
extra-$(CONFIG_44x) := head_44x.o
|
|
|
|
extra-$(CONFIG_FSL_BOOKE) := head_fsl_booke.o
|
|
|
|
extra-$(CONFIG_8xx) := head_8xx.o
|
|
|
|
extra-y += vmlinux.lds
|
|
|
|
|
2005-10-19 19:23:26 -04:00
|
|
|
obj-y += process.o init_task.o time.o \
|
2005-11-23 01:57:25 -05:00
|
|
|
prom.o traps.o setup-common.o udbg.o
|
2005-10-27 23:50:39 -04:00
|
|
|
obj-$(CONFIG_PPC32) += entry_32.o setup_32.o misc_32.o systbl.o
|
2005-11-14 01:30:17 -05:00
|
|
|
obj-$(CONFIG_PPC64) += misc_64.o dma_64.o iommu.o
|
2006-01-09 05:32:42 -05:00
|
|
|
obj-$(CONFIG_PPC_MULTIPLATFORM) += prom_init.o
|
2005-09-28 06:28:14 -04:00
|
|
|
obj-$(CONFIG_MODULES) += ppc_ksyms.o
|
2005-10-05 22:06:20 -04:00
|
|
|
obj-$(CONFIG_BOOTX_TEXT) += btext.o
|
2005-10-27 09:54:36 -04:00
|
|
|
obj-$(CONFIG_6xx) += idle_6xx.o
|
2005-11-04 18:33:55 -05:00
|
|
|
obj-$(CONFIG_SMP) += smp.o
|
2005-11-14 01:30:17 -05:00
|
|
|
obj-$(CONFIG_KPROBES) += kprobes.o
|
2006-01-10 00:19:05 -05:00
|
|
|
obj-$(CONFIG_PPC_UDBG_16550) += legacy_serial.o udbg_16550.o
|
2005-11-14 01:30:17 -05:00
|
|
|
module-$(CONFIG_PPC64) += module_64.o
|
|
|
|
obj-$(CONFIG_MODULES) += $(module-y)
|
|
|
|
|
|
|
|
pci64-$(CONFIG_PPC64) += pci_64.o pci_dn.o pci_iommu.o \
|
|
|
|
pci_direct_iommu.o iomap.o
|
|
|
|
obj-$(CONFIG_PCI) += $(pci64-y)
|
[PATCH] powerpc: Merge kexec
This patch merges, to some extent, the PPC32 and PPC64 kexec implementations.
We adopt the PPC32 approach of having ppc_md callbacks for the kexec functions.
The current PPC64 implementation becomes the "default" implementation for PPC64
which platforms can select if they need no special treatment.
I've added these default callbacks to pseries/maple/cell/powermac, this means
iSeries no longer supports kexec - but it never worked anyway.
I've renamed PPC32's machine_kexec_simple to default_machine_kexec, inline with
PPC64. Judging by the comments it might be better named machine_kexec_non_of,
or something, but at the moment it's the only implementation for PPC32 so it's
the "default".
Kexec requires machine_shutdown(), which is in machine_kexec.c on PPC32, but we
already have in setup-common.c on powerpc. All this does is call
ppc_md.nvram_sync, which only powermac implements, so instead make
machine_shutdown a ppc_md member and have it call core99_nvram_sync directly
on powermac.
I've also stuck relocate_kernel.S into misc_32.S for powerpc.
Built for ARCH=ppc, and 32 & 64 bit ARCH=powerpc, with KEXEC=y/n. Booted on
P5 LPAR and successfully kexec'ed.
Should apply on top of 493f25ef4087395891c99fcfe2c72e62e293e89f.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
2005-11-14 07:35:00 -05:00
|
|
|
kexec-$(CONFIG_PPC64) := machine_kexec_64.o
|
|
|
|
kexec-$(CONFIG_PPC32) := machine_kexec_32.o
|
2005-12-04 02:39:43 -05:00
|
|
|
obj-$(CONFIG_KEXEC) += machine_kexec.o crash.o $(kexec-y)
|
2005-09-30 02:16:52 -04:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_PPC_ISERIES),y)
|
2005-10-10 08:45:07 -04:00
|
|
|
$(obj)/head_64.o: $(obj)/lparmap.s
|
|
|
|
AFLAGS_head_64.o += -I$(obj)
|
|
|
|
endif
|
2005-10-11 08:08:12 -04:00
|
|
|
|
|
|
|
else
|
2005-11-14 01:30:17 -05:00
|
|
|
# stuff used from here for ARCH=ppc
|
2005-11-04 18:33:55 -05:00
|
|
|
smpobj-$(CONFIG_SMP) += smp.o
|
2005-10-11 08:08:12 -04:00
|
|
|
|
2005-09-30 02:16:52 -04:00
|
|
|
endif
|
[PATCH] powerpc: Fix handling of fpscr on 64-bit
The recent merge of fpu.S broken the handling of fpscr for
ARCH=powerpc and CONFIG_PPC64=y. FP registers could be corrupted,
leading to strange random application crashes.
The confusion arises, because the thread_struct has (and requires) a
64-bit area to save the fpscr, because we use load/store double
instructions to get it in to/out of the FPU. However, only the low
32-bits are actually used, so we want to treat it as a 32-bit quantity
when manipulating its bits to avoid extra load/stores on 32-bit. This
patch replaces the current definition with a structure of two 32-bit
quantities (pad and val), to clarify things as much as is possible.
The 'val' field is used when manipulating bits, the structure itself
is used when obtaining the address for loading/unloading the value
from the FPU.
While we're at it, consolidate the 4 (!) almost identical versions of
cvt_fd() and cvt_df() (arch/ppc/kernel/misc.S,
arch/ppc64/kernel/misc.S, arch/powerpc/kernel/misc_32.S,
arch/powerpc/kernel/misc_64.S) into a single version in fpu.S. The
new version takes a pointer to thread_struct and applies the correct
offset itself, rather than a pointer to the fpscr field itself, again
to avoid confusion as to which is the correct field to use.
Finally, this patch makes ARCH=ppc64 also use the consolidated fpu.S
code, which it previously did not.
Built for G5 (ARCH=ppc64 and ARCH=powerpc), 32-bit powermac (ARCH=ppc
and ARCH=powerpc) and Walnut (ARCH=ppc, CONFIG_MATH_EMULATION=y).
Booted on G5 (ARCH=powerpc) and things which previously fell over no
longer do.
Signed-off-by: David Gibson <dwg@au1.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
2005-10-27 02:27:25 -04:00
|
|
|
|
2005-11-17 23:43:34 -05:00
|
|
|
obj-$(CONFIG_PPC64) += $(obj64-y)
|
|
|
|
|
[PATCH] powerpc: Fix handling of fpscr on 64-bit
The recent merge of fpu.S broken the handling of fpscr for
ARCH=powerpc and CONFIG_PPC64=y. FP registers could be corrupted,
leading to strange random application crashes.
The confusion arises, because the thread_struct has (and requires) a
64-bit area to save the fpscr, because we use load/store double
instructions to get it in to/out of the FPU. However, only the low
32-bits are actually used, so we want to treat it as a 32-bit quantity
when manipulating its bits to avoid extra load/stores on 32-bit. This
patch replaces the current definition with a structure of two 32-bit
quantities (pad and val), to clarify things as much as is possible.
The 'val' field is used when manipulating bits, the structure itself
is used when obtaining the address for loading/unloading the value
from the FPU.
While we're at it, consolidate the 4 (!) almost identical versions of
cvt_fd() and cvt_df() (arch/ppc/kernel/misc.S,
arch/ppc64/kernel/misc.S, arch/powerpc/kernel/misc_32.S,
arch/powerpc/kernel/misc_64.S) into a single version in fpu.S. The
new version takes a pointer to thread_struct and applies the correct
offset itself, rather than a pointer to the fpscr field itself, again
to avoid confusion as to which is the correct field to use.
Finally, this patch makes ARCH=ppc64 also use the consolidated fpu.S
code, which it previously did not.
Built for G5 (ARCH=ppc64 and ARCH=powerpc), 32-bit powermac (ARCH=ppc
and ARCH=powerpc) and Walnut (ARCH=ppc, CONFIG_MATH_EMULATION=y).
Booted on G5 (ARCH=powerpc) and things which previously fell over no
longer do.
Signed-off-by: David Gibson <dwg@au1.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
2005-10-27 02:27:25 -04:00
|
|
|
extra-$(CONFIG_PPC_FPU) += fpu.o
|
2005-10-27 22:51:45 -04:00
|
|
|
extra-$(CONFIG_PPC64) += entry_64.o
|