diff options
author | Helge Deller <deller@gmx.de> | 2017-05-11 22:24:15 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2017-05-12 09:14:15 +0200 |
commit | c9c2877d08d9aa0ca0a5c227ac795fbb76269300 (patch) | |
tree | bb8c33d2619840e10d29c4e5caed49e8267bf4ba /arch/parisc/kernel/Makefile | |
parent | c8c3735997a3aa184fa81742bb6c4062a26af2f3 (diff) | |
download | blackbird-obmc-linux-c9c2877d08d9aa0ca0a5c227ac795fbb76269300.tar.gz blackbird-obmc-linux-c9c2877d08d9aa0ca0a5c227ac795fbb76269300.zip |
parisc: Add Page Deallocation Table (PDT) support
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>
Diffstat (limited to 'arch/parisc/kernel/Makefile')
-rw-r--r-- | arch/parisc/kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/kernel/Makefile b/arch/parisc/kernel/Makefile index 69a11183d48d..c4294df69fb6 100644 --- a/arch/parisc/kernel/Makefile +++ b/arch/parisc/kernel/Makefile @@ -4,7 +4,7 @@ extra-y := head.o vmlinux.lds -obj-y := cache.o pacache.o setup.o traps.o time.o irq.o \ +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 \ |