sys_riscv.c 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. * Copyright (C) 2012 Regents of the University of California
  3. * Copyright (C) 2014 Darius Rad <darius@bluespec.com>
  4. * Copyright (C) 2017 SiFive
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation, version 2.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. */
  15. #include <linux/syscalls.h>
  16. #include <asm/unistd.h>
  17. #include <asm/cacheflush.h>
  18. static long riscv_sys_mmap(unsigned long addr, unsigned long len,
  19. unsigned long prot, unsigned long flags,
  20. unsigned long fd, off_t offset,
  21. unsigned long page_shift_offset)
  22. {
  23. if (unlikely(offset & (~PAGE_MASK >> page_shift_offset)))
  24. return -EINVAL;
  25. return sys_mmap_pgoff(addr, len, prot, flags, fd,
  26. offset >> (PAGE_SHIFT - page_shift_offset));
  27. }
  28. #ifdef CONFIG_64BIT
  29. SYSCALL_DEFINE6(mmap, unsigned long, addr, unsigned long, len,
  30. unsigned long, prot, unsigned long, flags,
  31. unsigned long, fd, off_t, offset)
  32. {
  33. return riscv_sys_mmap(addr, len, prot, flags, fd, offset, 0);
  34. }
  35. #else
  36. SYSCALL_DEFINE6(mmap2, unsigned long, addr, unsigned long, len,
  37. unsigned long, prot, unsigned long, flags,
  38. unsigned long, fd, off_t, offset)
  39. {
  40. /*
  41. * Note that the shift for mmap2 is constant (12),
  42. * regardless of PAGE_SIZE
  43. */
  44. return riscv_sys_mmap(addr, len, prot, flags, fd, offset, 12);
  45. }
  46. #endif /* !CONFIG_64BIT */
  47. #ifdef CONFIG_SMP
  48. /*
  49. * Allows the instruction cache to be flushed from userspace. Despite RISC-V
  50. * having a direct 'fence.i' instruction available to userspace (which we
  51. * can't trap!), that's not actually viable when running on Linux because the
  52. * kernel might schedule a process on another hart. There is no way for
  53. * userspace to handle this without invoking the kernel (as it doesn't know the
  54. * thread->hart mappings), so we've defined a RISC-V specific system call to
  55. * flush the instruction cache.
  56. *
  57. * sys_riscv_flush_icache() is defined to flush the instruction cache over an
  58. * address range, with the flush applying to either all threads or just the
  59. * caller. We don't currently do anything with the address range, that's just
  60. * in there for forwards compatibility.
  61. */
  62. SYSCALL_DEFINE3(riscv_flush_icache, uintptr_t, start, uintptr_t, end,
  63. uintptr_t, flags)
  64. {
  65. struct mm_struct *mm = current->mm;
  66. bool local = (flags & SYS_RISCV_FLUSH_ICACHE_LOCAL) != 0;
  67. /* Check the reserved flags. */
  68. if (unlikely(flags & ~SYS_RISCV_FLUSH_ICACHE_ALL))
  69. return -EINVAL;
  70. flush_icache_mm(mm, local);
  71. return 0;
  72. }
  73. #endif