Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * linux/arch/m68k/kernel/sys_m68k.c
  4 *
  5 * This file contains various random system calls that
  6 * have a non-standard calling sequence on the Linux/m68k
  7 * platform.
  8 */
  9
 10#include <linux/capability.h>
 11#include <linux/errno.h>
 12#include <linux/sched.h>
 13#include <linux/mm.h>
 14#include <linux/fs.h>
 15#include <linux/smp.h>
 16#include <linux/sem.h>
 17#include <linux/msg.h>
 18#include <linux/shm.h>
 19#include <linux/stat.h>
 20#include <linux/syscalls.h>
 21#include <linux/mman.h>
 22#include <linux/file.h>
 23#include <linux/ipc.h>
 24
 25#include <asm/setup.h>
 26#include <linux/uaccess.h>
 27#include <asm/cachectl.h>
 28#include <asm/traps.h>
 29#include <asm/page.h>
 30#include <asm/unistd.h>
 31#include <asm/cacheflush.h>
 32
 33#ifdef CONFIG_MMU
 34
 35#include <asm/tlb.h>
 36
 37asmlinkage int do_page_fault(struct pt_regs *regs, unsigned long address,
 38			     unsigned long error_code);
 39
 40asmlinkage long sys_mmap2(unsigned long addr, unsigned long len,
 41	unsigned long prot, unsigned long flags,
 42	unsigned long fd, unsigned long pgoff)
 43{
 44	/*
 45	 * This is wrong for sun3 - there PAGE_SIZE is 8Kb,
 46	 * so we need to shift the argument down by 1; m68k mmap64(3)
 47	 * (in libc) expects the last argument of mmap2 in 4Kb units.
 48	 */
 49	return ksys_mmap_pgoff(addr, len, prot, flags, fd, pgoff);
 50}
 51
 52/* Convert virtual (user) address VADDR to physical address PADDR */
 53#define virt_to_phys_040(vaddr)						\
 54({									\
 55  unsigned long _mmusr, _paddr;						\
 56									\
 57  __asm__ __volatile__ (".chip 68040\n\t"				\
 58			"ptestr (%1)\n\t"				\
 59			"movec %%mmusr,%0\n\t"				\
 60			".chip 68k"					\
 61			: "=r" (_mmusr)					\
 62			: "a" (vaddr));					\
 63  _paddr = (_mmusr & MMU_R_040) ? (_mmusr & PAGE_MASK) : 0;		\
 64  _paddr;								\
 65})
 66
 67static inline int
 68cache_flush_040 (unsigned long addr, int scope, int cache, unsigned long len)
 69{
 70  unsigned long paddr, i;
 71
 72  switch (scope)
 73    {
 74    case FLUSH_SCOPE_ALL:
 75      switch (cache)
 76	{
 77	case FLUSH_CACHE_DATA:
 78	  /* This nop is needed for some broken versions of the 68040.  */
 79	  __asm__ __volatile__ ("nop\n\t"
 80				".chip 68040\n\t"
 81				"cpusha %dc\n\t"
 82				".chip 68k");
 83	  break;
 84	case FLUSH_CACHE_INSN:
 85	  __asm__ __volatile__ ("nop\n\t"
 86				".chip 68040\n\t"
 87				"cpusha %ic\n\t"
 88				".chip 68k");
 89	  break;
 90	default:
 91	case FLUSH_CACHE_BOTH:
 92	  __asm__ __volatile__ ("nop\n\t"
 93				".chip 68040\n\t"
 94				"cpusha %bc\n\t"
 95				".chip 68k");
 96	  break;
 97	}
 98      break;
 99
100    case FLUSH_SCOPE_LINE:
101      /* Find the physical address of the first mapped page in the
102	 address range.  */
103      if ((paddr = virt_to_phys_040(addr))) {
104        paddr += addr & ~(PAGE_MASK | 15);
105        len = (len + (addr & 15) + 15) >> 4;
106      } else {
107	unsigned long tmp = PAGE_SIZE - (addr & ~PAGE_MASK);
108
109	if (len <= tmp)
110	  return 0;
111	addr += tmp;
112	len -= tmp;
113	tmp = PAGE_SIZE;
114	for (;;)
115	  {
116	    if ((paddr = virt_to_phys_040(addr)))
117	      break;
118	    if (len <= tmp)
119	      return 0;
120	    addr += tmp;
121	    len -= tmp;
122	  }
123	len = (len + 15) >> 4;
124      }
125      i = (PAGE_SIZE - (paddr & ~PAGE_MASK)) >> 4;
126      while (len--)
127	{
128	  switch (cache)
129	    {
130	    case FLUSH_CACHE_DATA:
131	      __asm__ __volatile__ ("nop\n\t"
132				    ".chip 68040\n\t"
133				    "cpushl %%dc,(%0)\n\t"
134				    ".chip 68k"
135				    : : "a" (paddr));
136	      break;
137	    case FLUSH_CACHE_INSN:
138	      __asm__ __volatile__ ("nop\n\t"
139				    ".chip 68040\n\t"
140				    "cpushl %%ic,(%0)\n\t"
141				    ".chip 68k"
142				    : : "a" (paddr));
143	      break;
144	    default:
145	    case FLUSH_CACHE_BOTH:
146	      __asm__ __volatile__ ("nop\n\t"
147				    ".chip 68040\n\t"
148				    "cpushl %%bc,(%0)\n\t"
149				    ".chip 68k"
150				    : : "a" (paddr));
151	      break;
152	    }
153	  if (!--i && len)
154	    {
155	      /*
156	       * No need to page align here since it is done by
157	       * virt_to_phys_040().
158	       */
159	      addr += PAGE_SIZE;
160	      i = PAGE_SIZE / 16;
161	      /* Recompute physical address when crossing a page
162	         boundary. */
163	      for (;;)
164		{
165		  if ((paddr = virt_to_phys_040(addr)))
166		    break;
167		  if (len <= i)
168		    return 0;
169		  len -= i;
170		  addr += PAGE_SIZE;
171		}
172	    }
173	  else
174	    paddr += 16;
175	}
176      break;
177
178    default:
179    case FLUSH_SCOPE_PAGE:
180      len += (addr & ~PAGE_MASK) + (PAGE_SIZE - 1);
181      for (len >>= PAGE_SHIFT; len--; addr += PAGE_SIZE)
182	{
183	  if (!(paddr = virt_to_phys_040(addr)))
184	    continue;
185	  switch (cache)
186	    {
187	    case FLUSH_CACHE_DATA:
188	      __asm__ __volatile__ ("nop\n\t"
189				    ".chip 68040\n\t"
190				    "cpushp %%dc,(%0)\n\t"
191				    ".chip 68k"
192				    : : "a" (paddr));
193	      break;
194	    case FLUSH_CACHE_INSN:
195	      __asm__ __volatile__ ("nop\n\t"
196				    ".chip 68040\n\t"
197				    "cpushp %%ic,(%0)\n\t"
198				    ".chip 68k"
199				    : : "a" (paddr));
200	      break;
201	    default:
202	    case FLUSH_CACHE_BOTH:
203	      __asm__ __volatile__ ("nop\n\t"
204				    ".chip 68040\n\t"
205				    "cpushp %%bc,(%0)\n\t"
206				    ".chip 68k"
207				    : : "a" (paddr));
208	      break;
209	    }
210	}
211      break;
212    }
213  return 0;
214}
215
216#define virt_to_phys_060(vaddr)				\
217({							\
218  unsigned long paddr;					\
219  __asm__ __volatile__ (".chip 68060\n\t"		\
220			"plpar (%0)\n\t"		\
221			".chip 68k"			\
222			: "=a" (paddr)			\
223			: "0" (vaddr));			\
224  (paddr); /* XXX */					\
225})
226
227static inline int
228cache_flush_060 (unsigned long addr, int scope, int cache, unsigned long len)
229{
230  unsigned long paddr, i;
231
232  /*
233   * 68060 manual says:
234   *  cpush %dc : flush DC, remains valid (with our %cacr setup)
235   *  cpush %ic : invalidate IC
236   *  cpush %bc : flush DC + invalidate IC
237   */
238  switch (scope)
239    {
240    case FLUSH_SCOPE_ALL:
241      switch (cache)
242	{
243	case FLUSH_CACHE_DATA:
244	  __asm__ __volatile__ (".chip 68060\n\t"
245				"cpusha %dc\n\t"
246				".chip 68k");
247	  break;
248	case FLUSH_CACHE_INSN:
249	  __asm__ __volatile__ (".chip 68060\n\t"
250				"cpusha %ic\n\t"
251				".chip 68k");
252	  break;
253	default:
254	case FLUSH_CACHE_BOTH:
255	  __asm__ __volatile__ (".chip 68060\n\t"
256				"cpusha %bc\n\t"
257				".chip 68k");
258	  break;
259	}
260      break;
261
262    case FLUSH_SCOPE_LINE:
263      /* Find the physical address of the first mapped page in the
264	 address range.  */
265      len += addr & 15;
266      addr &= -16;
267      if (!(paddr = virt_to_phys_060(addr))) {
268	unsigned long tmp = PAGE_SIZE - (addr & ~PAGE_MASK);
269
270	if (len <= tmp)
271	  return 0;
272	addr += tmp;
273	len -= tmp;
274	tmp = PAGE_SIZE;
275	for (;;)
276	  {
277	    if ((paddr = virt_to_phys_060(addr)))
278	      break;
279	    if (len <= tmp)
280	      return 0;
281	    addr += tmp;
282	    len -= tmp;
283	  }
284      }
285      len = (len + 15) >> 4;
286      i = (PAGE_SIZE - (paddr & ~PAGE_MASK)) >> 4;
287      while (len--)
288	{
289	  switch (cache)
290	    {
291	    case FLUSH_CACHE_DATA:
292	      __asm__ __volatile__ (".chip 68060\n\t"
293				    "cpushl %%dc,(%0)\n\t"
294				    ".chip 68k"
295				    : : "a" (paddr));
296	      break;
297	    case FLUSH_CACHE_INSN:
298	      __asm__ __volatile__ (".chip 68060\n\t"
299				    "cpushl %%ic,(%0)\n\t"
300				    ".chip 68k"
301				    : : "a" (paddr));
302	      break;
303	    default:
304	    case FLUSH_CACHE_BOTH:
305	      __asm__ __volatile__ (".chip 68060\n\t"
306				    "cpushl %%bc,(%0)\n\t"
307				    ".chip 68k"
308				    : : "a" (paddr));
309	      break;
310	    }
311	  if (!--i && len)
312	    {
313
314	      /*
315	       * We just want to jump to the first cache line
316	       * in the next page.
317	       */
318	      addr += PAGE_SIZE;
319	      addr &= PAGE_MASK;
320
321	      i = PAGE_SIZE / 16;
322	      /* Recompute physical address when crossing a page
323	         boundary. */
324	      for (;;)
325	        {
326	          if ((paddr = virt_to_phys_060(addr)))
327	            break;
328	          if (len <= i)
329	            return 0;
330	          len -= i;
331	          addr += PAGE_SIZE;
332	        }
333	    }
334	  else
335	    paddr += 16;
336	}
337      break;
338
339    default:
340    case FLUSH_SCOPE_PAGE:
341      len += (addr & ~PAGE_MASK) + (PAGE_SIZE - 1);
342      addr &= PAGE_MASK;	/* Workaround for bug in some
343				   revisions of the 68060 */
344      for (len >>= PAGE_SHIFT; len--; addr += PAGE_SIZE)
345	{
346	  if (!(paddr = virt_to_phys_060(addr)))
347	    continue;
348	  switch (cache)
349	    {
350	    case FLUSH_CACHE_DATA:
351	      __asm__ __volatile__ (".chip 68060\n\t"
352				    "cpushp %%dc,(%0)\n\t"
353				    ".chip 68k"
354				    : : "a" (paddr));
355	      break;
356	    case FLUSH_CACHE_INSN:
357	      __asm__ __volatile__ (".chip 68060\n\t"
358				    "cpushp %%ic,(%0)\n\t"
359				    ".chip 68k"
360				    : : "a" (paddr));
361	      break;
362	    default:
363	    case FLUSH_CACHE_BOTH:
364	      __asm__ __volatile__ (".chip 68060\n\t"
365				    "cpushp %%bc,(%0)\n\t"
366				    ".chip 68k"
367				    : : "a" (paddr));
368	      break;
369	    }
370	}
371      break;
372    }
373  return 0;
374}
375
376/* sys_cacheflush -- flush (part of) the processor cache.  */
377asmlinkage int
378sys_cacheflush (unsigned long addr, int scope, int cache, unsigned long len)
379{
 
380	int ret = -EINVAL;
381
382	if (scope < FLUSH_SCOPE_LINE || scope > FLUSH_SCOPE_ALL ||
383	    cache & ~FLUSH_CACHE_BOTH)
384		goto out;
385
386	if (scope == FLUSH_SCOPE_ALL) {
387		/* Only the superuser may explicitly flush the whole cache. */
388		ret = -EPERM;
389		if (!capable(CAP_SYS_ADMIN))
390			goto out;
391
392		mmap_read_lock(current->mm);
393	} else {
394		struct vm_area_struct *vma;
395
396		/* Check for overflow.  */
397		if (addr + len < addr)
398			goto out;
399
400		/*
401		 * Verify that the specified address region actually belongs
402		 * to this process.
403		 */
404		mmap_read_lock(current->mm);
405		vma = vma_lookup(current->mm, addr);
406		if (!vma || addr + len > vma->vm_end)
407			goto out_unlock;
 
 
 
408	}
409
410	if (CPU_IS_020_OR_030) {
411		if (scope == FLUSH_SCOPE_LINE && len < 256) {
412			unsigned long cacr;
413			__asm__ ("movec %%cacr, %0" : "=r" (cacr));
414			if (cache & FLUSH_CACHE_INSN)
415				cacr |= 4;
416			if (cache & FLUSH_CACHE_DATA)
417				cacr |= 0x400;
418			len >>= 2;
419			while (len--) {
420				__asm__ __volatile__ ("movec %1, %%caar\n\t"
421						      "movec %0, %%cacr"
422						      : /* no outputs */
423						      : "r" (cacr), "r" (addr));
424				addr += 4;
425			}
426		} else {
427			/* Flush the whole cache, even if page granularity requested. */
428			unsigned long cacr;
429			__asm__ ("movec %%cacr, %0" : "=r" (cacr));
430			if (cache & FLUSH_CACHE_INSN)
431				cacr |= 8;
432			if (cache & FLUSH_CACHE_DATA)
433				cacr |= 0x800;
434			__asm__ __volatile__ ("movec %0, %%cacr" : : "r" (cacr));
435		}
436		ret = 0;
437		goto out_unlock;
438	} else {
439	    /*
440	     * 040 or 060: don't blindly trust 'scope', someone could
441	     * try to flush a few megs of memory.
442	     */
443
444	    if (len>=3*PAGE_SIZE && scope<FLUSH_SCOPE_PAGE)
445	        scope=FLUSH_SCOPE_PAGE;
446	    if (len>=10*PAGE_SIZE && scope<FLUSH_SCOPE_ALL)
447	        scope=FLUSH_SCOPE_ALL;
448	    if (CPU_IS_040) {
449		ret = cache_flush_040 (addr, scope, cache, len);
450	    } else if (CPU_IS_060) {
451		ret = cache_flush_060 (addr, scope, cache, len);
452	    }
453	}
454out_unlock:
455	mmap_read_unlock(current->mm);
456out:
457	return ret;
458}
459
460/* This syscall gets its arguments in A0 (mem), D2 (oldval) and
461   D1 (newval).  */
462asmlinkage int
463sys_atomic_cmpxchg_32(unsigned long newval, int oldval, int d3, int d4, int d5,
464		      unsigned long __user * mem)
465{
466	/* This was borrowed from ARM's implementation.  */
467	for (;;) {
468		struct mm_struct *mm = current->mm;
469		pgd_t *pgd;
470		p4d_t *p4d;
471		pud_t *pud;
472		pmd_t *pmd;
473		pte_t *pte;
474		spinlock_t *ptl;
475		unsigned long mem_value;
476
477		mmap_read_lock(mm);
478		pgd = pgd_offset(mm, (unsigned long)mem);
479		if (!pgd_present(*pgd))
480			goto bad_access;
481		p4d = p4d_offset(pgd, (unsigned long)mem);
482		if (!p4d_present(*p4d))
483			goto bad_access;
484		pud = pud_offset(p4d, (unsigned long)mem);
485		if (!pud_present(*pud))
486			goto bad_access;
487		pmd = pmd_offset(pud, (unsigned long)mem);
488		if (!pmd_present(*pmd))
489			goto bad_access;
490		pte = pte_offset_map_lock(mm, pmd, (unsigned long)mem, &ptl);
491		if (!pte_present(*pte) || !pte_dirty(*pte)
492		    || !pte_write(*pte)) {
493			pte_unmap_unlock(pte, ptl);
494			goto bad_access;
495		}
496
497		/*
498		 * No need to check for EFAULT; we know that the page is
499		 * present and writable.
500		 */
501		__get_user(mem_value, mem);
502		if (mem_value == oldval)
503			__put_user(newval, mem);
504
505		pte_unmap_unlock(pte, ptl);
506		mmap_read_unlock(mm);
507		return mem_value;
508
509	      bad_access:
510		mmap_read_unlock(mm);
511		/* This is not necessarily a bad access, we can get here if
512		   a memory we're trying to write to should be copied-on-write.
513		   Make the kernel do the necessary page stuff, then re-iterate.
514		   Simulate a write access fault to do that.  */
515		{
516			/* The first argument of the function corresponds to
517			   D1, which is the first field of struct pt_regs.  */
518			struct pt_regs *fp = (struct pt_regs *)&newval;
519
520			/* '3' is an RMW flag.  */
521			if (do_page_fault(fp, (unsigned long)mem, 3))
522				/* If the do_page_fault() failed, we don't
523				   have anything meaningful to return.
524				   There should be a SIGSEGV pending for
525				   the process.  */
526				return 0xdeadbeef;
527		}
528	}
529}
530
531#else
532
533/* sys_cacheflush -- flush (part of) the processor cache.  */
534asmlinkage int
535sys_cacheflush (unsigned long addr, int scope, int cache, unsigned long len)
536{
537	flush_cache_all();
538	return 0;
539}
540
541/* This syscall gets its arguments in A0 (mem), D2 (oldval) and
542   D1 (newval).  */
543asmlinkage int
544sys_atomic_cmpxchg_32(unsigned long newval, int oldval, int d3, int d4, int d5,
545		      unsigned long __user * mem)
546{
547	struct mm_struct *mm = current->mm;
548	unsigned long mem_value;
549
550	mmap_read_lock(mm);
551
552	mem_value = *mem;
553	if (mem_value == oldval)
554		*mem = newval;
555
556	mmap_read_unlock(mm);
557	return mem_value;
558}
559
560#endif /* CONFIG_MMU */
561
562asmlinkage int sys_getpagesize(void)
563{
564	return PAGE_SIZE;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
565}
566
567asmlinkage unsigned long sys_get_thread_area(void)
568{
569	return current_thread_info()->tp_value;
570}
571
572asmlinkage int sys_set_thread_area(unsigned long tp)
573{
574	current_thread_info()->tp_value = tp;
575	return 0;
576}
577
578asmlinkage int sys_atomic_barrier(void)
579{
580	/* no code needed for uniprocs */
581	return 0;
582}
v3.1
 
  1/*
  2 * linux/arch/m68k/kernel/sys_m68k.c
  3 *
  4 * This file contains various random system calls that
  5 * have a non-standard calling sequence on the Linux/m68k
  6 * platform.
  7 */
  8
  9#include <linux/capability.h>
 10#include <linux/errno.h>
 11#include <linux/sched.h>
 12#include <linux/mm.h>
 13#include <linux/fs.h>
 14#include <linux/smp.h>
 15#include <linux/sem.h>
 16#include <linux/msg.h>
 17#include <linux/shm.h>
 18#include <linux/stat.h>
 19#include <linux/syscalls.h>
 20#include <linux/mman.h>
 21#include <linux/file.h>
 22#include <linux/ipc.h>
 23
 24#include <asm/setup.h>
 25#include <asm/uaccess.h>
 26#include <asm/cachectl.h>
 27#include <asm/traps.h>
 28#include <asm/page.h>
 29#include <asm/unistd.h>
 30#include <asm/cacheflush.h>
 31
 32#ifdef CONFIG_MMU
 33
 34#include <asm/tlb.h>
 35
 36asmlinkage int do_page_fault(struct pt_regs *regs, unsigned long address,
 37			     unsigned long error_code);
 38
 39asmlinkage long sys_mmap2(unsigned long addr, unsigned long len,
 40	unsigned long prot, unsigned long flags,
 41	unsigned long fd, unsigned long pgoff)
 42{
 43	/*
 44	 * This is wrong for sun3 - there PAGE_SIZE is 8Kb,
 45	 * so we need to shift the argument down by 1; m68k mmap64(3)
 46	 * (in libc) expects the last argument of mmap2 in 4Kb units.
 47	 */
 48	return sys_mmap_pgoff(addr, len, prot, flags, fd, pgoff);
 49}
 50
 51/* Convert virtual (user) address VADDR to physical address PADDR */
 52#define virt_to_phys_040(vaddr)						\
 53({									\
 54  unsigned long _mmusr, _paddr;						\
 55									\
 56  __asm__ __volatile__ (".chip 68040\n\t"				\
 57			"ptestr (%1)\n\t"				\
 58			"movec %%mmusr,%0\n\t"				\
 59			".chip 68k"					\
 60			: "=r" (_mmusr)					\
 61			: "a" (vaddr));					\
 62  _paddr = (_mmusr & MMU_R_040) ? (_mmusr & PAGE_MASK) : 0;		\
 63  _paddr;								\
 64})
 65
 66static inline int
 67cache_flush_040 (unsigned long addr, int scope, int cache, unsigned long len)
 68{
 69  unsigned long paddr, i;
 70
 71  switch (scope)
 72    {
 73    case FLUSH_SCOPE_ALL:
 74      switch (cache)
 75	{
 76	case FLUSH_CACHE_DATA:
 77	  /* This nop is needed for some broken versions of the 68040.  */
 78	  __asm__ __volatile__ ("nop\n\t"
 79				".chip 68040\n\t"
 80				"cpusha %dc\n\t"
 81				".chip 68k");
 82	  break;
 83	case FLUSH_CACHE_INSN:
 84	  __asm__ __volatile__ ("nop\n\t"
 85				".chip 68040\n\t"
 86				"cpusha %ic\n\t"
 87				".chip 68k");
 88	  break;
 89	default:
 90	case FLUSH_CACHE_BOTH:
 91	  __asm__ __volatile__ ("nop\n\t"
 92				".chip 68040\n\t"
 93				"cpusha %bc\n\t"
 94				".chip 68k");
 95	  break;
 96	}
 97      break;
 98
 99    case FLUSH_SCOPE_LINE:
100      /* Find the physical address of the first mapped page in the
101	 address range.  */
102      if ((paddr = virt_to_phys_040(addr))) {
103        paddr += addr & ~(PAGE_MASK | 15);
104        len = (len + (addr & 15) + 15) >> 4;
105      } else {
106	unsigned long tmp = PAGE_SIZE - (addr & ~PAGE_MASK);
107
108	if (len <= tmp)
109	  return 0;
110	addr += tmp;
111	len -= tmp;
112	tmp = PAGE_SIZE;
113	for (;;)
114	  {
115	    if ((paddr = virt_to_phys_040(addr)))
116	      break;
117	    if (len <= tmp)
118	      return 0;
119	    addr += tmp;
120	    len -= tmp;
121	  }
122	len = (len + 15) >> 4;
123      }
124      i = (PAGE_SIZE - (paddr & ~PAGE_MASK)) >> 4;
125      while (len--)
126	{
127	  switch (cache)
128	    {
129	    case FLUSH_CACHE_DATA:
130	      __asm__ __volatile__ ("nop\n\t"
131				    ".chip 68040\n\t"
132				    "cpushl %%dc,(%0)\n\t"
133				    ".chip 68k"
134				    : : "a" (paddr));
135	      break;
136	    case FLUSH_CACHE_INSN:
137	      __asm__ __volatile__ ("nop\n\t"
138				    ".chip 68040\n\t"
139				    "cpushl %%ic,(%0)\n\t"
140				    ".chip 68k"
141				    : : "a" (paddr));
142	      break;
143	    default:
144	    case FLUSH_CACHE_BOTH:
145	      __asm__ __volatile__ ("nop\n\t"
146				    ".chip 68040\n\t"
147				    "cpushl %%bc,(%0)\n\t"
148				    ".chip 68k"
149				    : : "a" (paddr));
150	      break;
151	    }
152	  if (!--i && len)
153	    {
154	      /*
155	       * No need to page align here since it is done by
156	       * virt_to_phys_040().
157	       */
158	      addr += PAGE_SIZE;
159	      i = PAGE_SIZE / 16;
160	      /* Recompute physical address when crossing a page
161	         boundary. */
162	      for (;;)
163		{
164		  if ((paddr = virt_to_phys_040(addr)))
165		    break;
166		  if (len <= i)
167		    return 0;
168		  len -= i;
169		  addr += PAGE_SIZE;
170		}
171	    }
172	  else
173	    paddr += 16;
174	}
175      break;
176
177    default:
178    case FLUSH_SCOPE_PAGE:
179      len += (addr & ~PAGE_MASK) + (PAGE_SIZE - 1);
180      for (len >>= PAGE_SHIFT; len--; addr += PAGE_SIZE)
181	{
182	  if (!(paddr = virt_to_phys_040(addr)))
183	    continue;
184	  switch (cache)
185	    {
186	    case FLUSH_CACHE_DATA:
187	      __asm__ __volatile__ ("nop\n\t"
188				    ".chip 68040\n\t"
189				    "cpushp %%dc,(%0)\n\t"
190				    ".chip 68k"
191				    : : "a" (paddr));
192	      break;
193	    case FLUSH_CACHE_INSN:
194	      __asm__ __volatile__ ("nop\n\t"
195				    ".chip 68040\n\t"
196				    "cpushp %%ic,(%0)\n\t"
197				    ".chip 68k"
198				    : : "a" (paddr));
199	      break;
200	    default:
201	    case FLUSH_CACHE_BOTH:
202	      __asm__ __volatile__ ("nop\n\t"
203				    ".chip 68040\n\t"
204				    "cpushp %%bc,(%0)\n\t"
205				    ".chip 68k"
206				    : : "a" (paddr));
207	      break;
208	    }
209	}
210      break;
211    }
212  return 0;
213}
214
215#define virt_to_phys_060(vaddr)				\
216({							\
217  unsigned long paddr;					\
218  __asm__ __volatile__ (".chip 68060\n\t"		\
219			"plpar (%0)\n\t"		\
220			".chip 68k"			\
221			: "=a" (paddr)			\
222			: "0" (vaddr));			\
223  (paddr); /* XXX */					\
224})
225
226static inline int
227cache_flush_060 (unsigned long addr, int scope, int cache, unsigned long len)
228{
229  unsigned long paddr, i;
230
231  /*
232   * 68060 manual says:
233   *  cpush %dc : flush DC, remains valid (with our %cacr setup)
234   *  cpush %ic : invalidate IC
235   *  cpush %bc : flush DC + invalidate IC
236   */
237  switch (scope)
238    {
239    case FLUSH_SCOPE_ALL:
240      switch (cache)
241	{
242	case FLUSH_CACHE_DATA:
243	  __asm__ __volatile__ (".chip 68060\n\t"
244				"cpusha %dc\n\t"
245				".chip 68k");
246	  break;
247	case FLUSH_CACHE_INSN:
248	  __asm__ __volatile__ (".chip 68060\n\t"
249				"cpusha %ic\n\t"
250				".chip 68k");
251	  break;
252	default:
253	case FLUSH_CACHE_BOTH:
254	  __asm__ __volatile__ (".chip 68060\n\t"
255				"cpusha %bc\n\t"
256				".chip 68k");
257	  break;
258	}
259      break;
260
261    case FLUSH_SCOPE_LINE:
262      /* Find the physical address of the first mapped page in the
263	 address range.  */
264      len += addr & 15;
265      addr &= -16;
266      if (!(paddr = virt_to_phys_060(addr))) {
267	unsigned long tmp = PAGE_SIZE - (addr & ~PAGE_MASK);
268
269	if (len <= tmp)
270	  return 0;
271	addr += tmp;
272	len -= tmp;
273	tmp = PAGE_SIZE;
274	for (;;)
275	  {
276	    if ((paddr = virt_to_phys_060(addr)))
277	      break;
278	    if (len <= tmp)
279	      return 0;
280	    addr += tmp;
281	    len -= tmp;
282	  }
283      }
284      len = (len + 15) >> 4;
285      i = (PAGE_SIZE - (paddr & ~PAGE_MASK)) >> 4;
286      while (len--)
287	{
288	  switch (cache)
289	    {
290	    case FLUSH_CACHE_DATA:
291	      __asm__ __volatile__ (".chip 68060\n\t"
292				    "cpushl %%dc,(%0)\n\t"
293				    ".chip 68k"
294				    : : "a" (paddr));
295	      break;
296	    case FLUSH_CACHE_INSN:
297	      __asm__ __volatile__ (".chip 68060\n\t"
298				    "cpushl %%ic,(%0)\n\t"
299				    ".chip 68k"
300				    : : "a" (paddr));
301	      break;
302	    default:
303	    case FLUSH_CACHE_BOTH:
304	      __asm__ __volatile__ (".chip 68060\n\t"
305				    "cpushl %%bc,(%0)\n\t"
306				    ".chip 68k"
307				    : : "a" (paddr));
308	      break;
309	    }
310	  if (!--i && len)
311	    {
312
313	      /*
314	       * We just want to jump to the first cache line
315	       * in the next page.
316	       */
317	      addr += PAGE_SIZE;
318	      addr &= PAGE_MASK;
319
320	      i = PAGE_SIZE / 16;
321	      /* Recompute physical address when crossing a page
322	         boundary. */
323	      for (;;)
324	        {
325	          if ((paddr = virt_to_phys_060(addr)))
326	            break;
327	          if (len <= i)
328	            return 0;
329	          len -= i;
330	          addr += PAGE_SIZE;
331	        }
332	    }
333	  else
334	    paddr += 16;
335	}
336      break;
337
338    default:
339    case FLUSH_SCOPE_PAGE:
340      len += (addr & ~PAGE_MASK) + (PAGE_SIZE - 1);
341      addr &= PAGE_MASK;	/* Workaround for bug in some
342				   revisions of the 68060 */
343      for (len >>= PAGE_SHIFT; len--; addr += PAGE_SIZE)
344	{
345	  if (!(paddr = virt_to_phys_060(addr)))
346	    continue;
347	  switch (cache)
348	    {
349	    case FLUSH_CACHE_DATA:
350	      __asm__ __volatile__ (".chip 68060\n\t"
351				    "cpushp %%dc,(%0)\n\t"
352				    ".chip 68k"
353				    : : "a" (paddr));
354	      break;
355	    case FLUSH_CACHE_INSN:
356	      __asm__ __volatile__ (".chip 68060\n\t"
357				    "cpushp %%ic,(%0)\n\t"
358				    ".chip 68k"
359				    : : "a" (paddr));
360	      break;
361	    default:
362	    case FLUSH_CACHE_BOTH:
363	      __asm__ __volatile__ (".chip 68060\n\t"
364				    "cpushp %%bc,(%0)\n\t"
365				    ".chip 68k"
366				    : : "a" (paddr));
367	      break;
368	    }
369	}
370      break;
371    }
372  return 0;
373}
374
375/* sys_cacheflush -- flush (part of) the processor cache.  */
376asmlinkage int
377sys_cacheflush (unsigned long addr, int scope, int cache, unsigned long len)
378{
379	struct vm_area_struct *vma;
380	int ret = -EINVAL;
381
382	if (scope < FLUSH_SCOPE_LINE || scope > FLUSH_SCOPE_ALL ||
383	    cache & ~FLUSH_CACHE_BOTH)
384		goto out;
385
386	if (scope == FLUSH_SCOPE_ALL) {
387		/* Only the superuser may explicitly flush the whole cache. */
388		ret = -EPERM;
389		if (!capable(CAP_SYS_ADMIN))
390			goto out;
 
 
391	} else {
 
 
 
 
 
 
392		/*
393		 * Verify that the specified address region actually belongs
394		 * to this process.
395		 */
396		vma = find_vma (current->mm, addr);
397		ret = -EINVAL;
398		/* Check for overflow.  */
399		if (addr + len < addr)
400			goto out;
401		if (vma == NULL || addr < vma->vm_start || addr + len > vma->vm_end)
402			goto out;
403	}
404
405	if (CPU_IS_020_OR_030) {
406		if (scope == FLUSH_SCOPE_LINE && len < 256) {
407			unsigned long cacr;
408			__asm__ ("movec %%cacr, %0" : "=r" (cacr));
409			if (cache & FLUSH_CACHE_INSN)
410				cacr |= 4;
411			if (cache & FLUSH_CACHE_DATA)
412				cacr |= 0x400;
413			len >>= 2;
414			while (len--) {
415				__asm__ __volatile__ ("movec %1, %%caar\n\t"
416						      "movec %0, %%cacr"
417						      : /* no outputs */
418						      : "r" (cacr), "r" (addr));
419				addr += 4;
420			}
421		} else {
422			/* Flush the whole cache, even if page granularity requested. */
423			unsigned long cacr;
424			__asm__ ("movec %%cacr, %0" : "=r" (cacr));
425			if (cache & FLUSH_CACHE_INSN)
426				cacr |= 8;
427			if (cache & FLUSH_CACHE_DATA)
428				cacr |= 0x800;
429			__asm__ __volatile__ ("movec %0, %%cacr" : : "r" (cacr));
430		}
431		ret = 0;
432		goto out;
433	} else {
434	    /*
435	     * 040 or 060: don't blindly trust 'scope', someone could
436	     * try to flush a few megs of memory.
437	     */
438
439	    if (len>=3*PAGE_SIZE && scope<FLUSH_SCOPE_PAGE)
440	        scope=FLUSH_SCOPE_PAGE;
441	    if (len>=10*PAGE_SIZE && scope<FLUSH_SCOPE_ALL)
442	        scope=FLUSH_SCOPE_ALL;
443	    if (CPU_IS_040) {
444		ret = cache_flush_040 (addr, scope, cache, len);
445	    } else if (CPU_IS_060) {
446		ret = cache_flush_060 (addr, scope, cache, len);
447	    }
448	}
 
 
449out:
450	return ret;
451}
452
453/* This syscall gets its arguments in A0 (mem), D2 (oldval) and
454   D1 (newval).  */
455asmlinkage int
456sys_atomic_cmpxchg_32(unsigned long newval, int oldval, int d3, int d4, int d5,
457		      unsigned long __user * mem)
458{
459	/* This was borrowed from ARM's implementation.  */
460	for (;;) {
461		struct mm_struct *mm = current->mm;
462		pgd_t *pgd;
 
 
463		pmd_t *pmd;
464		pte_t *pte;
465		spinlock_t *ptl;
466		unsigned long mem_value;
467
468		down_read(&mm->mmap_sem);
469		pgd = pgd_offset(mm, (unsigned long)mem);
470		if (!pgd_present(*pgd))
471			goto bad_access;
472		pmd = pmd_offset(pgd, (unsigned long)mem);
 
 
 
 
 
 
473		if (!pmd_present(*pmd))
474			goto bad_access;
475		pte = pte_offset_map_lock(mm, pmd, (unsigned long)mem, &ptl);
476		if (!pte_present(*pte) || !pte_dirty(*pte)
477		    || !pte_write(*pte)) {
478			pte_unmap_unlock(pte, ptl);
479			goto bad_access;
480		}
481
482		mem_value = *mem;
 
 
 
 
483		if (mem_value == oldval)
484			*mem = newval;
485
486		pte_unmap_unlock(pte, ptl);
487		up_read(&mm->mmap_sem);
488		return mem_value;
489
490	      bad_access:
491		up_read(&mm->mmap_sem);
492		/* This is not necessarily a bad access, we can get here if
493		   a memory we're trying to write to should be copied-on-write.
494		   Make the kernel do the necessary page stuff, then re-iterate.
495		   Simulate a write access fault to do that.  */
496		{
497			/* The first argument of the function corresponds to
498			   D1, which is the first field of struct pt_regs.  */
499			struct pt_regs *fp = (struct pt_regs *)&newval;
500
501			/* '3' is an RMW flag.  */
502			if (do_page_fault(fp, (unsigned long)mem, 3))
503				/* If the do_page_fault() failed, we don't
504				   have anything meaningful to return.
505				   There should be a SIGSEGV pending for
506				   the process.  */
507				return 0xdeadbeef;
508		}
509	}
510}
511
512#else
513
514/* sys_cacheflush -- flush (part of) the processor cache.  */
515asmlinkage int
516sys_cacheflush (unsigned long addr, int scope, int cache, unsigned long len)
517{
518	flush_cache_all();
519	return 0;
520}
521
522/* This syscall gets its arguments in A0 (mem), D2 (oldval) and
523   D1 (newval).  */
524asmlinkage int
525sys_atomic_cmpxchg_32(unsigned long newval, int oldval, int d3, int d4, int d5,
526		      unsigned long __user * mem)
527{
528	struct mm_struct *mm = current->mm;
529	unsigned long mem_value;
530
531	down_read(&mm->mmap_sem);
532
533	mem_value = *mem;
534	if (mem_value == oldval)
535		*mem = newval;
536
537	up_read(&mm->mmap_sem);
538	return mem_value;
539}
540
541#endif /* CONFIG_MMU */
542
543asmlinkage int sys_getpagesize(void)
544{
545	return PAGE_SIZE;
546}
547
548/*
549 * Do a system call from kernel instead of calling sys_execve so we
550 * end up with proper pt_regs.
551 */
552int kernel_execve(const char *filename,
553		  const char *const argv[],
554		  const char *const envp[])
555{
556	register long __res asm ("%d0") = __NR_execve;
557	register long __a asm ("%d1") = (long)(filename);
558	register long __b asm ("%d2") = (long)(argv);
559	register long __c asm ("%d3") = (long)(envp);
560	asm volatile ("trap  #0" : "+d" (__res)
561			: "d" (__a), "d" (__b), "d" (__c));
562	return __res;
563}
564
565asmlinkage unsigned long sys_get_thread_area(void)
566{
567	return current_thread_info()->tp_value;
568}
569
570asmlinkage int sys_set_thread_area(unsigned long tp)
571{
572	current_thread_info()->tp_value = tp;
573	return 0;
574}
575
576asmlinkage int sys_atomic_barrier(void)
577{
578	/* no code needed for uniprocs */
579	return 0;
580}