mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-29 23:46:41 +07:00
c9c2877d08
The firmare in most parisc machines maintains a Page Deallocation Table (PDT) which holds a list of physical memory addresses where hardware detected memory errors (single bit and double bit errors). This patch adds the missing PDC firmware calls and the logic to read the PDT from firmware, report all current PDT entries and exclude the reported bad memory from being used by Linux. Signed-off-by: Helge Deller <deller@gmx.de>
34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
Makefile
#
|
|
# Makefile for arch/parisc/kernel
|
|
#
|
|
|
|
extra-y := head.o vmlinux.lds
|
|
|
|
obj-y := cache.o pacache.o setup.o pdt.o traps.o time.o irq.o \
|
|
pa7300lc.o syscall.o entry.o sys_parisc.o firmware.o \
|
|
ptrace.o hardware.o inventory.o drivers.o \
|
|
signal.o hpmc.o real2.o parisc_ksyms.o unaligned.o \
|
|
process.o processor.o pdc_cons.o pdc_chassis.o unwind.o \
|
|
topology.o
|
|
|
|
ifdef CONFIG_FUNCTION_TRACER
|
|
# Do not profile debug and lowlevel utilities
|
|
CFLAGS_REMOVE_ftrace.o = -pg
|
|
CFLAGS_REMOVE_cache.o = -pg
|
|
CFLAGS_REMOVE_perf.o = -pg
|
|
CFLAGS_REMOVE_unwind.o = -pg
|
|
endif
|
|
|
|
obj-$(CONFIG_SMP) += smp.o
|
|
obj-$(CONFIG_PA11) += pci-dma.o
|
|
obj-$(CONFIG_PCI) += pci.o
|
|
obj-$(CONFIG_MODULES) += module.o
|
|
obj-$(CONFIG_64BIT) += binfmt_elf32.o sys_parisc32.o signal32.o
|
|
obj-$(CONFIG_STACKTRACE)+= stacktrace.o
|
|
obj-$(CONFIG_AUDIT) += audit.o
|
|
obj64-$(CONFIG_AUDIT) += compat_audit.o
|
|
# only supported for PCX-W/U in 64-bit mode at the moment
|
|
obj-$(CONFIG_64BIT) += perf.o perf_asm.o $(obj64-y)
|
|
obj-$(CONFIG_FUNCTION_TRACER) += ftrace.o
|
|
obj-$(CONFIG_FUNCTION_GRAPH_TRACER) += ftrace.o
|