diff options
| -rw-r--r-- | arch/arm/mm/alignment.c | 14 | ||||
| -rw-r--r-- | arch/arm/mm/fault.c | 11 |
2 files changed, 23 insertions, 2 deletions
diff --git a/arch/arm/mm/alignment.c b/arch/arm/mm/alignment.c index 77cfdbed9501..d073b64ae87e 100644 --- a/arch/arm/mm/alignment.c +++ b/arch/arm/mm/alignment.c | |||
| @@ -926,8 +926,18 @@ static int __init alignment_init(void) | |||
| 926 | 926 | ||
| 927 | hook_fault_code(1, do_alignment, SIGBUS, BUS_ADRALN, | 927 | hook_fault_code(1, do_alignment, SIGBUS, BUS_ADRALN, |
| 928 | "alignment exception"); | 928 | "alignment exception"); |
| 929 | hook_fault_code(3, do_alignment, SIGBUS, BUS_ADRALN, | 929 | |
| 930 | "alignment exception"); | 930 | /* |
| 931 | * ARMv6K and ARMv7 use fault status 3 (0b00011) as Access Flag section | ||
| 932 | * fault, not as alignment error. | ||
| 933 | * | ||
| 934 | * TODO: handle ARMv6K properly. Runtime check for 'K' extension is | ||
| 935 | * needed. | ||
| 936 | */ | ||
| 937 | if (cpu_architecture() <= CPU_ARCH_ARMv6) { | ||
| 938 | hook_fault_code(3, do_alignment, SIGBUS, BUS_ADRALN, | ||
| 939 | "alignment exception"); | ||
| 940 | } | ||
| 931 | 941 | ||
| 932 | return 0; | 942 | return 0; |
| 933 | } | 943 | } |
diff --git a/arch/arm/mm/fault.c b/arch/arm/mm/fault.c index 5835e63454ff..23b0b03af5ea 100644 --- a/arch/arm/mm/fault.c +++ b/arch/arm/mm/fault.c | |||
| @@ -607,6 +607,17 @@ static int __init exceptions_init(void) | |||
| 607 | "I-cache maintenance fault"); | 607 | "I-cache maintenance fault"); |
| 608 | } | 608 | } |
| 609 | 609 | ||
| 610 | if (cpu_architecture() >= CPU_ARCH_ARMv7) { | ||
| 611 | /* | ||
| 612 | * TODO: Access flag faults introduced in ARMv6K. | ||
| 613 | * Runtime check for 'K' extension is needed | ||
| 614 | */ | ||
| 615 | hook_fault_code(3, do_bad, SIGSEGV, SEGV_MAPERR, | ||
| 616 | "section access flag fault"); | ||
| 617 | hook_fault_code(6, do_bad, SIGSEGV, SEGV_MAPERR, | ||
| 618 | "section access flag fault"); | ||
| 619 | } | ||
| 620 | |||
| 610 | return 0; | 621 | return 0; |
| 611 | } | 622 | } |
| 612 | 623 | ||
