^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 1) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 2) * Copyright (C) 2011 Texas Instruments Incorporated
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 3) * Author: Mark Salter <msalter@redhat.com>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 4) *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 5) * This program is free software; you can redistribute it and/or
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 6) * modify it under the terms of the GNU General Public License
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 7) * as published by the Free Software Foundation, version 2.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 8) *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 9) * This program is distributed in the hope that it will be useful, but
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) * WITHOUT ANY WARRANTY; without even the implied warranty of
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) * NON INFRINGEMENT. See the GNU General Public License for
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) * more details.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) #ifndef __ASM_C6X_SYSCALLS_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) #define __ASM_C6X_SYSCALLS_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) #include <linux/compiler.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) #include <linux/linkage.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) #include <linux/types.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) /* The array of function pointers for syscalls. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) extern void *sys_call_table[];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) /* The following are trampolines in entry.S to handle 64-bit arguments */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) extern long sys_pread_c6x(unsigned int fd, char __user *buf,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) size_t count, off_t pos_low, off_t pos_high);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) extern long sys_pwrite_c6x(unsigned int fd, const char __user *buf,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) size_t count, off_t pos_low, off_t pos_high);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31) extern long sys_truncate64_c6x(const char __user *path,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) off_t length_low, off_t length_high);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 33) extern long sys_ftruncate64_c6x(unsigned int fd,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 34) off_t length_low, off_t length_high);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 35) extern long sys_fadvise64_c6x(int fd, u32 offset_lo, u32 offset_hi,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 36) u32 len, int advice);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 37) extern long sys_fadvise64_64_c6x(int fd, u32 offset_lo, u32 offset_hi,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 38) u32 len_lo, u32 len_hi, int advice);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 39) extern long sys_fallocate_c6x(int fd, int mode,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 40) u32 offset_lo, u32 offset_hi,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 41) u32 len_lo, u32 len_hi);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 42) extern int sys_cache_sync(unsigned long s, unsigned long e);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 43)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 44) #include <asm-generic/syscalls.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 45)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 46) #endif /* __ASM_C6X_SYSCALLS_H */