parisc: Initialize the fault vector earlier in the boot process.
authorHelge Deller <deller@gmx.de>
Fri, 20 Nov 2015 09:50:01 +0000 (10:50 +0100)
committerHelge Deller <deller@gmx.de>
Sun, 22 Nov 2015 11:22:43 +0000 (12:22 +0100)
commit4182d0cdf853fb044b969318289ae9f451f69c86
tree7601eb68a3601c5124cbe511fb3bd0ae90a93af2
parent1f25ad26d65b3740f44d6e03edcd34a5f7b58850
parisc: Initialize the fault vector earlier in the boot process.

A fault vector on parisc needs to be 2K aligned.  Furthermore the
checksum of the fault vector needs to sum up to 0 which is being
calculated and written at runtime.

Up to now we aligned both PA20 and PA11 fault vectors on the same 4K
page in order to easily write the checksum after having mapped the
kernel read-only (by mapping this page only as read-write).
But when we want to map the kernel text and data on huge pages this
makes things harder.
So, simplify it by aligning both fault vectors on 2K boundries and write
the checksum before we map the page read-only.

Signed-off-by: Helge Deller <deller@gmx.de>
arch/parisc/kernel/entry.S
arch/parisc/kernel/setup.c
arch/parisc/kernel/traps.c