blob: f2aa5a81ad9c3140ab7abf4e417a5092e567ecbf [file] [log] [blame]
Jeremy Kerr7cd58e42007-12-20 16:39:59 +09001/*
Ian Munsiee83d0162014-10-08 19:54:50 +11002 * CoProcessor (SPU/AFU) mm fault handler
Jeremy Kerr7cd58e42007-12-20 16:39:59 +09003 *
4 * (C) Copyright IBM Deutschland Entwicklung GmbH 2007
5 *
6 * Author: Arnd Bergmann <arndb@de.ibm.com>
7 * Author: Jeremy Kerr <jk@ozlabs.org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2, or (at your option)
12 * any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23#include <linux/sched.h>
24#include <linux/mm.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040025#include <linux/export.h>
Ian Munsiee83d0162014-10-08 19:54:50 +110026#include <asm/reg.h>
Ian Munsie73d16a62014-10-08 19:54:51 +110027#include <asm/copro.h>
Ian Munsiebe3ebfe2014-10-08 19:54:52 +110028#include <asm/spu.h>
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090029
30/*
31 * This ought to be kept in sync with the powerpc specific do_page_fault
32 * function. Currently, there are a few corner cases that we haven't had
33 * to handle fortunately.
34 */
Ian Munsiee83d0162014-10-08 19:54:50 +110035int copro_handle_mm_fault(struct mm_struct *mm, unsigned long ea,
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090036 unsigned long dsisr, unsigned *flt)
37{
38 struct vm_area_struct *vma;
39 unsigned long is_write;
40 int ret;
41
Jeremy Kerr60ee03192009-02-17 11:44:14 +110042 if (mm == NULL)
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090043 return -EFAULT;
Jeremy Kerr60ee03192009-02-17 11:44:14 +110044
45 if (mm->pgd == NULL)
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090046 return -EFAULT;
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090047
48 down_read(&mm->mmap_sem);
Jeremy Kerr60ee03192009-02-17 11:44:14 +110049 ret = -EFAULT;
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090050 vma = find_vma(mm, ea);
51 if (!vma)
Jeremy Kerr60ee03192009-02-17 11:44:14 +110052 goto out_unlock;
53
54 if (ea < vma->vm_start) {
55 if (!(vma->vm_flags & VM_GROWSDOWN))
56 goto out_unlock;
57 if (expand_stack(vma, ea))
58 goto out_unlock;
59 }
60
Ian Munsiee83d0162014-10-08 19:54:50 +110061 is_write = dsisr & DSISR_ISSTORE;
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090062 if (is_write) {
63 if (!(vma->vm_flags & VM_WRITE))
Jeremy Kerr60ee03192009-02-17 11:44:14 +110064 goto out_unlock;
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090065 } else {
Ian Munsiee83d0162014-10-08 19:54:50 +110066 if (dsisr & DSISR_PROTFAULT)
Jeremy Kerr60ee03192009-02-17 11:44:14 +110067 goto out_unlock;
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090068 if (!(vma->vm_flags & (VM_READ | VM_EXEC)))
Jeremy Kerr60ee03192009-02-17 11:44:14 +110069 goto out_unlock;
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090070 }
Jeremy Kerr60ee03192009-02-17 11:44:14 +110071
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090072 ret = 0;
Linus Torvaldsd06063c2009-04-10 09:01:23 -070073 *flt = handle_mm_fault(mm, vma, ea, is_write ? FAULT_FLAG_WRITE : 0);
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090074 if (unlikely(*flt & VM_FAULT_ERROR)) {
75 if (*flt & VM_FAULT_OOM) {
76 ret = -ENOMEM;
Jeremy Kerr60ee03192009-02-17 11:44:14 +110077 goto out_unlock;
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090078 } else if (*flt & VM_FAULT_SIGBUS) {
79 ret = -EFAULT;
Jeremy Kerr60ee03192009-02-17 11:44:14 +110080 goto out_unlock;
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090081 }
82 BUG();
83 }
Jeremy Kerr60ee03192009-02-17 11:44:14 +110084
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090085 if (*flt & VM_FAULT_MAJOR)
86 current->maj_flt++;
87 else
88 current->min_flt++;
Jeremy Kerr60ee03192009-02-17 11:44:14 +110089
90out_unlock:
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090091 up_read(&mm->mmap_sem);
92 return ret;
Jeremy Kerr7cd58e42007-12-20 16:39:59 +090093}
Ian Munsiee83d0162014-10-08 19:54:50 +110094EXPORT_SYMBOL_GPL(copro_handle_mm_fault);
Ian Munsie73d16a62014-10-08 19:54:51 +110095
96int copro_calculate_slb(struct mm_struct *mm, u64 ea, struct copro_slb *slb)
97{
98 u64 vsid;
99 int psize, ssize;
100
101 slb->esid = (ea & ESID_MASK) | SLB_ESID_V;
102
103 switch (REGION_ID(ea)) {
104 case USER_REGION_ID:
105 pr_devel("%s: 0x%llx -- USER_REGION_ID\n", __func__, ea);
106 psize = get_slice_psize(mm, ea);
107 ssize = user_segment_size(ea);
108 vsid = get_vsid(mm->context.id, ea, ssize);
109 break;
110 case VMALLOC_REGION_ID:
111 pr_devel("%s: 0x%llx -- VMALLOC_REGION_ID\n", __func__, ea);
112 if (ea < VMALLOC_END)
113 psize = mmu_vmalloc_psize;
114 else
115 psize = mmu_io_psize;
116 ssize = mmu_kernel_ssize;
117 vsid = get_kernel_vsid(ea, mmu_kernel_ssize);
118 break;
119 case KERNEL_REGION_ID:
120 pr_devel("%s: 0x%llx -- KERNEL_REGION_ID\n", __func__, ea);
121 psize = mmu_linear_psize;
122 ssize = mmu_kernel_ssize;
123 vsid = get_kernel_vsid(ea, mmu_kernel_ssize);
124 break;
125 default:
126 pr_debug("%s: invalid region access at %016llx\n", __func__, ea);
127 return 1;
128 }
129
130 vsid = (vsid << slb_vsid_shift(ssize)) | SLB_VSID_USER;
131
132 vsid |= mmu_psize_defs[psize].sllp |
133 ((ssize == MMU_SEGSIZE_1T) ? SLB_VSID_B_1T : 0);
134
135 slb->vsid = vsid;
136
137 return 0;
138}
139EXPORT_SYMBOL_GPL(copro_calculate_slb);
Ian Munsiebe3ebfe2014-10-08 19:54:52 +1100140
141void copro_flush_all_slbs(struct mm_struct *mm)
142{
143#ifdef CONFIG_SPU_BASE
144 spu_flush_all_slbs(mm);
145#endif
146}
147EXPORT_SYMBOL_GPL(copro_flush_all_slbs);