sys_c6x.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * Port on Texas Instruments TMS320C6x architecture
  3. *
  4. * Copyright (C) 2004, 2009, 2010, 2011 Texas Instruments Incorporated
  5. * Author: Aurelien Jacquiot (aurelien.jacquiot@jaluna.com)
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/module.h>
  12. #include <linux/syscalls.h>
  13. #include <linux/uaccess.h>
  14. #include <asm/syscalls.h>
  15. #ifdef CONFIG_ACCESS_CHECK
  16. int _access_ok(unsigned long addr, unsigned long size)
  17. {
  18. if (!size)
  19. return 1;
  20. if (!addr || addr > (0xffffffffUL - (size - 1)))
  21. goto _bad_access;
  22. if (segment_eq(get_fs(), KERNEL_DS))
  23. return 1;
  24. if (memory_start <= addr && (addr + size - 1) < memory_end)
  25. return 1;
  26. _bad_access:
  27. pr_debug("Bad access attempt: pid[%d] addr[%08lx] size[0x%lx]\n",
  28. current->pid, addr, size);
  29. return 0;
  30. }
  31. EXPORT_SYMBOL(_access_ok);
  32. #endif
  33. /* sys_cache_sync -- sync caches over given range */
  34. asmlinkage int sys_cache_sync(unsigned long s, unsigned long e)
  35. {
  36. L1D_cache_block_writeback_invalidate(s, e);
  37. L1P_cache_block_invalidate(s, e);
  38. return 0;
  39. }
  40. /* Provide the actual syscall number to call mapping. */
  41. #undef __SYSCALL
  42. #define __SYSCALL(nr, call) [nr] = (call),
  43. /*
  44. * Use trampolines
  45. */
  46. #define sys_pread64 sys_pread_c6x
  47. #define sys_pwrite64 sys_pwrite_c6x
  48. #define sys_truncate64 sys_truncate64_c6x
  49. #define sys_ftruncate64 sys_ftruncate64_c6x
  50. #define sys_fadvise64 sys_fadvise64_c6x
  51. #define sys_fadvise64_64 sys_fadvise64_64_c6x
  52. #define sys_fallocate sys_fallocate_c6x
  53. /* Use sys_mmap_pgoff directly */
  54. #define sys_mmap2 sys_mmap_pgoff
  55. /*
  56. * Note that we can't include <linux/unistd.h> here since the header
  57. * guard will defeat us; <asm/unistd.h> checks for __SYSCALL as well.
  58. */
  59. void *sys_call_table[__NR_syscalls] = {
  60. [0 ... __NR_syscalls-1] = sys_ni_syscall,
  61. #include <asm/unistd.h>
  62. };