entry.S 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781
  1. ###############################################################################
  2. #
  3. # MN10300 Exception and interrupt entry points
  4. #
  5. # Copyright (C) 2007 Matsushita Electric Industrial Co., Ltd.
  6. # Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  7. # Modified by David Howells (dhowells@redhat.com)
  8. #
  9. # This program is free software; you can redistribute it and/or
  10. # modify it under the terms of the GNU General Public Licence
  11. # as published by the Free Software Foundation; either version
  12. # 2 of the Licence, or (at your option) any later version.
  13. #
  14. ###############################################################################
  15. #include <linux/sys.h>
  16. #include <linux/linkage.h>
  17. #include <asm/smp.h>
  18. #include <asm/system.h>
  19. #include <asm/irqflags.h>
  20. #include <asm/thread_info.h>
  21. #include <asm/intctl-regs.h>
  22. #include <asm/busctl-regs.h>
  23. #include <asm/timer-regs.h>
  24. #include <unit/leds.h>
  25. #include <asm/page.h>
  26. #include <asm/pgtable.h>
  27. #include <asm/errno.h>
  28. #include <asm/asm-offsets.h>
  29. #include <asm/frame.inc>
  30. #if defined(CONFIG_SMP) && defined(CONFIG_GDBSTUB)
  31. #include <asm/gdb-stub.h>
  32. #endif /* CONFIG_SMP && CONFIG_GDBSTUB */
  33. #ifdef CONFIG_PREEMPT
  34. #define preempt_stop LOCAL_IRQ_DISABLE
  35. #else
  36. #define preempt_stop
  37. #define resume_kernel restore_all
  38. #endif
  39. .am33_2
  40. ###############################################################################
  41. #
  42. # the return path for a forked child
  43. # - on entry, D0 holds the address of the previous task to run
  44. #
  45. ###############################################################################
  46. ENTRY(ret_from_fork)
  47. call schedule_tail[],0
  48. GET_THREAD_INFO a2
  49. # return 0 to indicate child process
  50. clr d0
  51. mov d0,(REG_D0,fp)
  52. jmp syscall_exit
  53. ###############################################################################
  54. #
  55. # system call handler
  56. #
  57. ###############################################################################
  58. ENTRY(system_call)
  59. add -4,sp
  60. SAVE_ALL
  61. mov d0,(REG_ORIG_D0,fp)
  62. GET_THREAD_INFO a2
  63. cmp nr_syscalls,d0
  64. bcc syscall_badsys
  65. btst _TIF_SYSCALL_TRACE,(TI_flags,a2)
  66. bne syscall_entry_trace
  67. syscall_call:
  68. add d0,d0,a1
  69. add a1,a1
  70. mov (REG_A0,fp),d0
  71. mov (sys_call_table,a1),a0
  72. calls (a0)
  73. mov d0,(REG_D0,fp)
  74. syscall_exit:
  75. # make sure we don't miss an interrupt setting need_resched or
  76. # sigpending between sampling and the rti
  77. LOCAL_IRQ_DISABLE
  78. mov (TI_flags,a2),d2
  79. btst _TIF_ALLWORK_MASK,d2
  80. bne syscall_exit_work
  81. restore_all:
  82. RESTORE_ALL
  83. ###############################################################################
  84. #
  85. # perform work that needs to be done immediately before resumption and syscall
  86. # tracing
  87. #
  88. ###############################################################################
  89. ALIGN
  90. syscall_exit_work:
  91. btst _TIF_SYSCALL_TRACE,d2
  92. beq work_pending
  93. LOCAL_IRQ_ENABLE # could let syscall_trace_exit() call
  94. # schedule() instead
  95. mov fp,d0
  96. call syscall_trace_exit[],0 # do_syscall_trace(regs)
  97. jmp resume_userspace
  98. ALIGN
  99. work_pending:
  100. btst _TIF_NEED_RESCHED,d2
  101. beq work_notifysig
  102. work_resched:
  103. call schedule[],0
  104. # make sure we don't miss an interrupt setting need_resched or
  105. # sigpending between sampling and the rti
  106. LOCAL_IRQ_DISABLE
  107. # is there any work to be done other than syscall tracing?
  108. mov (TI_flags,a2),d2
  109. btst _TIF_WORK_MASK,d2
  110. beq restore_all
  111. btst _TIF_NEED_RESCHED,d2
  112. bne work_resched
  113. # deal with pending signals and notify-resume requests
  114. work_notifysig:
  115. mov fp,d0
  116. mov d2,d1
  117. call do_notify_resume[],0
  118. jmp resume_userspace
  119. # perform syscall entry tracing
  120. syscall_entry_trace:
  121. mov -ENOSYS,d0
  122. mov d0,(REG_D0,fp)
  123. mov fp,d0
  124. call syscall_trace_entry[],0 # returns the syscall number to actually use
  125. mov (REG_D1,fp),d1
  126. cmp nr_syscalls,d0
  127. bcs syscall_call
  128. jmp syscall_exit
  129. syscall_badsys:
  130. mov -ENOSYS,d0
  131. mov d0,(REG_D0,fp)
  132. jmp resume_userspace
  133. # userspace resumption stub bypassing syscall exit tracing
  134. .globl ret_from_exception, ret_from_intr
  135. ALIGN
  136. ret_from_exception:
  137. preempt_stop
  138. ret_from_intr:
  139. GET_THREAD_INFO a2
  140. mov (REG_EPSW,fp),d0 # need to deliver signals before
  141. # returning to userspace
  142. and EPSW_nSL,d0
  143. beq resume_kernel # returning to supervisor mode
  144. ENTRY(resume_userspace)
  145. # make sure we don't miss an interrupt setting need_resched or
  146. # sigpending between sampling and the rti
  147. LOCAL_IRQ_DISABLE
  148. # is there any work to be done on int/exception return?
  149. mov (TI_flags,a2),d2
  150. btst _TIF_WORK_MASK,d2
  151. bne work_pending
  152. jmp restore_all
  153. #ifdef CONFIG_PREEMPT
  154. ENTRY(resume_kernel)
  155. LOCAL_IRQ_DISABLE
  156. mov (TI_preempt_count,a2),d0 # non-zero preempt_count ?
  157. cmp 0,d0
  158. bne restore_all
  159. need_resched:
  160. btst _TIF_NEED_RESCHED,(TI_flags,a2)
  161. beq restore_all
  162. mov (REG_EPSW,fp),d0
  163. and EPSW_IM,d0
  164. cmp EPSW_IM_7,d0 # interrupts off (exception path) ?
  165. bne restore_all
  166. call preempt_schedule_irq[],0
  167. jmp need_resched
  168. #endif
  169. ###############################################################################
  170. #
  171. # IRQ handler entry point
  172. # - intended to be entered at multiple priorities
  173. #
  174. ###############################################################################
  175. ENTRY(irq_handler)
  176. add -4,sp
  177. SAVE_ALL
  178. # it's not a syscall
  179. mov 0xffffffff,d0
  180. mov d0,(REG_ORIG_D0,fp)
  181. mov fp,d0
  182. call do_IRQ[],0 # do_IRQ(regs)
  183. jmp ret_from_intr
  184. ###############################################################################
  185. #
  186. # Double Fault handler entry point
  187. # - note that there will not be a stack, D0/A0 will hold EPSW/PC as were
  188. #
  189. ###############################################################################
  190. .section .bss
  191. .balign THREAD_SIZE
  192. .space THREAD_SIZE
  193. __df_stack:
  194. .previous
  195. ENTRY(double_fault)
  196. mov a0,(__df_stack-4) # PC as was
  197. mov d0,(__df_stack-8) # EPSW as was
  198. mn10300_set_dbfleds # display 'db-f' on the LEDs
  199. mov 0xaa55aa55,d0
  200. mov d0,(__df_stack-12) # no ORIG_D0
  201. mov sp,a0 # save corrupted SP
  202. mov __df_stack-12,sp # emergency supervisor stack
  203. SAVE_ALL
  204. mov a0,(REG_A0,fp) # save corrupted SP as A0 (which got
  205. # clobbered by the CPU)
  206. mov fp,d0
  207. calls do_double_fault
  208. double_fault_loop:
  209. bra double_fault_loop
  210. ###############################################################################
  211. #
  212. # Bus Error handler entry point
  213. # - handle external (async) bus errors separately
  214. #
  215. ###############################################################################
  216. ENTRY(raw_bus_error)
  217. add -4,sp
  218. mov d0,(sp)
  219. #if defined(CONFIG_ERRATUM_NEED_TO_RELOAD_MMUCTR)
  220. mov (MMUCTR),d0
  221. mov d0,(MMUCTR)
  222. #endif
  223. mov (BCBERR),d0 # what
  224. btst BCBERR_BEMR_DMA,d0 # see if it was an external bus error
  225. beq __common_exception_aux # it wasn't
  226. SAVE_ALL
  227. mov (BCBEAR),d1 # destination of erroneous access
  228. mov (REG_ORIG_D0,fp),d2
  229. mov d2,(REG_D0,fp)
  230. mov -1,d2
  231. mov d2,(REG_ORIG_D0,fp)
  232. add -4,sp
  233. mov fp,(12,sp) # frame pointer
  234. call io_bus_error[],0
  235. jmp restore_all
  236. ###############################################################################
  237. #
  238. # Miscellaneous exception entry points
  239. #
  240. ###############################################################################
  241. ENTRY(nmi_handler)
  242. add -4,sp
  243. mov d0,(sp)
  244. mov (TBR),d0
  245. #ifdef CONFIG_SMP
  246. add -4,sp
  247. mov d0,(sp) # save d0(TBR)
  248. movhu (NMIAGR),d0
  249. and NMIAGR_GN,d0
  250. lsr 0x2,d0
  251. cmp CALL_FUNCTION_NMI_IPI,d0
  252. bne 5f # if not call function, jump
  253. # function call nmi ipi
  254. add 4,sp # no need to store TBR
  255. mov GxICR_DETECT,d0 # clear NMI request
  256. movbu d0,(GxICR(CALL_FUNCTION_NMI_IPI))
  257. movhu (GxICR(CALL_FUNCTION_NMI_IPI)),d0
  258. and ~EPSW_NMID,epsw # enable NMI
  259. mov (sp),d0 # restore d0
  260. SAVE_ALL
  261. call smp_nmi_call_function_interrupt[],0
  262. RESTORE_ALL
  263. 5:
  264. #ifdef CONFIG_GDBSTUB
  265. cmp GDB_NMI_IPI,d0
  266. bne 3f # if not gdb nmi ipi, jump
  267. # gdb nmi ipi
  268. add 4,sp # no need to store TBR
  269. mov GxICR_DETECT,d0 # clear NMI
  270. movbu d0,(GxICR(GDB_NMI_IPI))
  271. movhu (GxICR(GDB_NMI_IPI)),d0
  272. and ~EPSW_NMID,epsw # enable NMI
  273. #ifdef CONFIG_MN10300_CACHE_ENABLED
  274. mov (gdbstub_nmi_opr_type),d0
  275. cmp GDBSTUB_NMI_CACHE_PURGE,d0
  276. bne 4f # if not gdb cache purge, jump
  277. # gdb cache purge nmi ipi
  278. add -20,sp
  279. mov d1,(4,sp)
  280. mov a0,(8,sp)
  281. mov a1,(12,sp)
  282. mov mdr,d0
  283. mov d0,(16,sp)
  284. call gdbstub_local_purge_cache[],0
  285. mov 0x1,d0
  286. mov (CPUID),d1
  287. asl d1,d0
  288. mov gdbstub_nmi_cpumask,a0
  289. bclr d0,(a0)
  290. mov (4,sp),d1
  291. mov (8,sp),a0
  292. mov (12,sp),a1
  293. mov (16,sp),d0
  294. mov d0,mdr
  295. add 20,sp
  296. mov (sp),d0
  297. add 4,sp
  298. rti
  299. 4:
  300. #endif /* CONFIG_MN10300_CACHE_ENABLED */
  301. # gdb wait nmi ipi
  302. mov (sp),d0
  303. SAVE_ALL
  304. call gdbstub_nmi_wait[],0
  305. RESTORE_ALL
  306. 3:
  307. #endif /* CONFIG_GDBSTUB */
  308. mov (sp),d0 # restore TBR to d0
  309. add 4,sp
  310. #endif /* CONFIG_SMP */
  311. bra __common_exception_nonmi
  312. ENTRY(__common_exception)
  313. add -4,sp
  314. mov d0,(sp)
  315. #if defined(CONFIG_ERRATUM_NEED_TO_RELOAD_MMUCTR)
  316. mov (MMUCTR),d0
  317. mov d0,(MMUCTR)
  318. #endif
  319. __common_exception_aux:
  320. mov (TBR),d0
  321. and ~EPSW_NMID,epsw # turn NMIs back on if not NMI
  322. or EPSW_IE,epsw
  323. __common_exception_nonmi:
  324. and 0x0000FFFF,d0 # turn the exception code into a vector
  325. # table index
  326. btst 0x00000007,d0
  327. bne 1f
  328. cmp 0x00000400,d0
  329. bge 1f
  330. SAVE_ALL # build the stack frame
  331. mov (REG_D0,fp),a2 # get the exception number
  332. mov (REG_ORIG_D0,fp),d0
  333. mov d0,(REG_D0,fp)
  334. mov -1,d0
  335. mov d0,(REG_ORIG_D0,fp)
  336. #ifdef CONFIG_GDBSTUB
  337. #ifdef CONFIG_SMP
  338. call gdbstub_busy_check[],0
  339. and d0,d0 # check return value
  340. beq 2f
  341. #else /* CONFIG_SMP */
  342. btst 0x01,(gdbstub_busy)
  343. beq 2f
  344. #endif /* CONFIG_SMP */
  345. and ~EPSW_IE,epsw
  346. mov fp,d0
  347. mov a2,d1
  348. call gdbstub_exception[],0 # gdbstub itself caused an exception
  349. bra restore_all
  350. 2:
  351. #endif /* CONFIG_GDBSTUB */
  352. mov fp,d0 # arg 0: stacked register file
  353. mov a2,d1 # arg 1: exception number
  354. lsr 1,a2
  355. mov (exception_table,a2),a2
  356. calls (a2)
  357. jmp ret_from_exception
  358. 1: pi # BUG() equivalent
  359. ###############################################################################
  360. #
  361. # Exception handler functions table
  362. #
  363. ###############################################################################
  364. .data
  365. ENTRY(exception_table)
  366. .rept 0x400>>1
  367. .long uninitialised_exception
  368. .endr
  369. .previous
  370. ###############################################################################
  371. #
  372. # Change an entry in the exception table
  373. # - D0 exception code, D1 handler
  374. #
  375. ###############################################################################
  376. ENTRY(set_excp_vector)
  377. lsr 1,d0
  378. add exception_table,d0
  379. mov d1,(d0)
  380. mov 4,d1
  381. ret [],0
  382. ###############################################################################
  383. #
  384. # System call table
  385. #
  386. ###############################################################################
  387. .data
  388. ENTRY(sys_call_table)
  389. .long sys_restart_syscall /* 0 */
  390. .long sys_exit
  391. .long sys_fork
  392. .long sys_read
  393. .long sys_write
  394. .long sys_open /* 5 */
  395. .long sys_close
  396. .long sys_waitpid
  397. .long sys_creat
  398. .long sys_link
  399. .long sys_unlink /* 10 */
  400. .long sys_execve
  401. .long sys_chdir
  402. .long sys_time
  403. .long sys_mknod
  404. .long sys_chmod /* 15 */
  405. .long sys_lchown16
  406. .long sys_ni_syscall /* old break syscall holder */
  407. .long sys_stat
  408. .long sys_lseek
  409. .long sys_getpid /* 20 */
  410. .long sys_mount
  411. .long sys_oldumount
  412. .long sys_setuid16
  413. .long sys_getuid16
  414. .long sys_stime /* 25 */
  415. .long sys_ptrace
  416. .long sys_alarm
  417. .long sys_fstat
  418. .long sys_pause
  419. .long sys_utime /* 30 */
  420. .long sys_ni_syscall /* old stty syscall holder */
  421. .long sys_ni_syscall /* old gtty syscall holder */
  422. .long sys_access
  423. .long sys_nice
  424. .long sys_ni_syscall /* 35 - old ftime syscall holder */
  425. .long sys_sync
  426. .long sys_kill
  427. .long sys_rename
  428. .long sys_mkdir
  429. .long sys_rmdir /* 40 */
  430. .long sys_dup
  431. .long sys_pipe
  432. .long sys_times
  433. .long sys_ni_syscall /* old prof syscall holder */
  434. .long sys_brk /* 45 */
  435. .long sys_setgid16
  436. .long sys_getgid16
  437. .long sys_signal
  438. .long sys_geteuid16
  439. .long sys_getegid16 /* 50 */
  440. .long sys_acct
  441. .long sys_umount /* recycled never used phys() */
  442. .long sys_ni_syscall /* old lock syscall holder */
  443. .long sys_ioctl
  444. .long sys_fcntl /* 55 */
  445. .long sys_ni_syscall /* old mpx syscall holder */
  446. .long sys_setpgid
  447. .long sys_ni_syscall /* old ulimit syscall holder */
  448. .long sys_ni_syscall /* old sys_olduname */
  449. .long sys_umask /* 60 */
  450. .long sys_chroot
  451. .long sys_ustat
  452. .long sys_dup2
  453. .long sys_getppid
  454. .long sys_getpgrp /* 65 */
  455. .long sys_setsid
  456. .long sys_sigaction
  457. .long sys_sgetmask
  458. .long sys_ssetmask
  459. .long sys_setreuid16 /* 70 */
  460. .long sys_setregid16
  461. .long sys_sigsuspend
  462. .long sys_sigpending
  463. .long sys_sethostname
  464. .long sys_setrlimit /* 75 */
  465. .long sys_old_getrlimit
  466. .long sys_getrusage
  467. .long sys_gettimeofday
  468. .long sys_settimeofday
  469. .long sys_getgroups16 /* 80 */
  470. .long sys_setgroups16
  471. .long sys_old_select
  472. .long sys_symlink
  473. .long sys_lstat
  474. .long sys_readlink /* 85 */
  475. .long sys_uselib
  476. .long sys_swapon
  477. .long sys_reboot
  478. .long sys_old_readdir
  479. .long old_mmap /* 90 */
  480. .long sys_munmap
  481. .long sys_truncate
  482. .long sys_ftruncate
  483. .long sys_fchmod
  484. .long sys_fchown16 /* 95 */
  485. .long sys_getpriority
  486. .long sys_setpriority
  487. .long sys_ni_syscall /* old profil syscall holder */
  488. .long sys_statfs
  489. .long sys_fstatfs /* 100 */
  490. .long sys_ni_syscall /* ioperm */
  491. .long sys_socketcall
  492. .long sys_syslog
  493. .long sys_setitimer
  494. .long sys_getitimer /* 105 */
  495. .long sys_newstat
  496. .long sys_newlstat
  497. .long sys_newfstat
  498. .long sys_ni_syscall /* old sys_uname */
  499. .long sys_ni_syscall /* 110 - iopl */
  500. .long sys_vhangup
  501. .long sys_ni_syscall /* old "idle" system call */
  502. .long sys_ni_syscall /* vm86old */
  503. .long sys_wait4
  504. .long sys_swapoff /* 115 */
  505. .long sys_sysinfo
  506. .long sys_ipc
  507. .long sys_fsync
  508. .long sys_sigreturn
  509. .long sys_clone /* 120 */
  510. .long sys_setdomainname
  511. .long sys_newuname
  512. .long sys_ni_syscall /* modify_ldt */
  513. .long sys_adjtimex
  514. .long sys_mprotect /* 125 */
  515. .long sys_sigprocmask
  516. .long sys_ni_syscall /* old "create_module" */
  517. .long sys_init_module
  518. .long sys_delete_module
  519. .long sys_ni_syscall /* 130: old "get_kernel_syms" */
  520. .long sys_quotactl
  521. .long sys_getpgid
  522. .long sys_fchdir
  523. .long sys_bdflush
  524. .long sys_sysfs /* 135 */
  525. .long sys_personality
  526. .long sys_ni_syscall /* reserved for afs_syscall */
  527. .long sys_setfsuid16
  528. .long sys_setfsgid16
  529. .long sys_llseek /* 140 */
  530. .long sys_getdents
  531. .long sys_select
  532. .long sys_flock
  533. .long sys_msync
  534. .long sys_readv /* 145 */
  535. .long sys_writev
  536. .long sys_getsid
  537. .long sys_fdatasync
  538. .long sys_sysctl
  539. .long sys_mlock /* 150 */
  540. .long sys_munlock
  541. .long sys_mlockall
  542. .long sys_munlockall
  543. .long sys_sched_setparam
  544. .long sys_sched_getparam /* 155 */
  545. .long sys_sched_setscheduler
  546. .long sys_sched_getscheduler
  547. .long sys_sched_yield
  548. .long sys_sched_get_priority_max
  549. .long sys_sched_get_priority_min /* 160 */
  550. .long sys_sched_rr_get_interval
  551. .long sys_nanosleep
  552. .long sys_mremap
  553. .long sys_setresuid16
  554. .long sys_getresuid16 /* 165 */
  555. .long sys_ni_syscall /* vm86 */
  556. .long sys_ni_syscall /* Old sys_query_module */
  557. .long sys_poll
  558. .long sys_nfsservctl
  559. .long sys_setresgid16 /* 170 */
  560. .long sys_getresgid16
  561. .long sys_prctl
  562. .long sys_rt_sigreturn
  563. .long sys_rt_sigaction
  564. .long sys_rt_sigprocmask /* 175 */
  565. .long sys_rt_sigpending
  566. .long sys_rt_sigtimedwait
  567. .long sys_rt_sigqueueinfo
  568. .long sys_rt_sigsuspend
  569. .long sys_pread64 /* 180 */
  570. .long sys_pwrite64
  571. .long sys_chown16
  572. .long sys_getcwd
  573. .long sys_capget
  574. .long sys_capset /* 185 */
  575. .long sys_sigaltstack
  576. .long sys_sendfile
  577. .long sys_ni_syscall /* reserved for streams1 */
  578. .long sys_ni_syscall /* reserved for streams2 */
  579. .long sys_vfork /* 190 */
  580. .long sys_getrlimit
  581. .long sys_mmap_pgoff
  582. .long sys_truncate64
  583. .long sys_ftruncate64
  584. .long sys_stat64 /* 195 */
  585. .long sys_lstat64
  586. .long sys_fstat64
  587. .long sys_lchown
  588. .long sys_getuid
  589. .long sys_getgid /* 200 */
  590. .long sys_geteuid
  591. .long sys_getegid
  592. .long sys_setreuid
  593. .long sys_setregid
  594. .long sys_getgroups /* 205 */
  595. .long sys_setgroups
  596. .long sys_fchown
  597. .long sys_setresuid
  598. .long sys_getresuid
  599. .long sys_setresgid /* 210 */
  600. .long sys_getresgid
  601. .long sys_chown
  602. .long sys_setuid
  603. .long sys_setgid
  604. .long sys_setfsuid /* 215 */
  605. .long sys_setfsgid
  606. .long sys_pivot_root
  607. .long sys_mincore
  608. .long sys_madvise
  609. .long sys_getdents64 /* 220 */
  610. .long sys_fcntl64
  611. .long sys_ni_syscall /* reserved for TUX */
  612. .long sys_ni_syscall
  613. .long sys_gettid
  614. .long sys_readahead /* 225 */
  615. .long sys_setxattr
  616. .long sys_lsetxattr
  617. .long sys_fsetxattr
  618. .long sys_getxattr
  619. .long sys_lgetxattr /* 230 */
  620. .long sys_fgetxattr
  621. .long sys_listxattr
  622. .long sys_llistxattr
  623. .long sys_flistxattr
  624. .long sys_removexattr /* 235 */
  625. .long sys_lremovexattr
  626. .long sys_fremovexattr
  627. .long sys_tkill
  628. .long sys_sendfile64
  629. .long sys_futex /* 240 */
  630. .long sys_sched_setaffinity
  631. .long sys_sched_getaffinity
  632. .long sys_ni_syscall /* sys_set_thread_area */
  633. .long sys_ni_syscall /* sys_get_thread_area */
  634. .long sys_io_setup /* 245 */
  635. .long sys_io_destroy
  636. .long sys_io_getevents
  637. .long sys_io_submit
  638. .long sys_io_cancel
  639. .long sys_fadvise64 /* 250 */
  640. .long sys_ni_syscall
  641. .long sys_exit_group
  642. .long sys_lookup_dcookie
  643. .long sys_epoll_create
  644. .long sys_epoll_ctl /* 255 */
  645. .long sys_epoll_wait
  646. .long sys_remap_file_pages
  647. .long sys_set_tid_address
  648. .long sys_timer_create
  649. .long sys_timer_settime /* 260 */
  650. .long sys_timer_gettime
  651. .long sys_timer_getoverrun
  652. .long sys_timer_delete
  653. .long sys_clock_settime
  654. .long sys_clock_gettime /* 265 */
  655. .long sys_clock_getres
  656. .long sys_clock_nanosleep
  657. .long sys_statfs64
  658. .long sys_fstatfs64
  659. .long sys_tgkill /* 270 */
  660. .long sys_utimes
  661. .long sys_fadvise64_64
  662. .long sys_ni_syscall /* sys_vserver */
  663. .long sys_mbind
  664. .long sys_get_mempolicy /* 275 */
  665. .long sys_set_mempolicy
  666. .long sys_mq_open
  667. .long sys_mq_unlink
  668. .long sys_mq_timedsend
  669. .long sys_mq_timedreceive /* 280 */
  670. .long sys_mq_notify
  671. .long sys_mq_getsetattr
  672. .long sys_kexec_load
  673. .long sys_waitid
  674. .long sys_ni_syscall /* 285 */ /* available */
  675. .long sys_add_key
  676. .long sys_request_key
  677. .long sys_keyctl
  678. .long sys_cacheflush
  679. .long sys_ioprio_set /* 290 */
  680. .long sys_ioprio_get
  681. .long sys_inotify_init
  682. .long sys_inotify_add_watch
  683. .long sys_inotify_rm_watch
  684. .long sys_migrate_pages /* 295 */
  685. .long sys_openat
  686. .long sys_mkdirat
  687. .long sys_mknodat
  688. .long sys_fchownat
  689. .long sys_futimesat /* 300 */
  690. .long sys_fstatat64
  691. .long sys_unlinkat
  692. .long sys_renameat
  693. .long sys_linkat
  694. .long sys_symlinkat /* 305 */
  695. .long sys_readlinkat
  696. .long sys_fchmodat
  697. .long sys_faccessat
  698. .long sys_pselect6
  699. .long sys_ppoll /* 310 */
  700. .long sys_unshare
  701. .long sys_set_robust_list
  702. .long sys_get_robust_list
  703. .long sys_splice
  704. .long sys_sync_file_range /* 315 */
  705. .long sys_tee
  706. .long sys_vmsplice
  707. .long sys_move_pages
  708. .long sys_getcpu
  709. .long sys_epoll_pwait /* 320 */
  710. .long sys_utimensat
  711. .long sys_signalfd
  712. .long sys_timerfd_create
  713. .long sys_eventfd
  714. .long sys_fallocate /* 325 */
  715. .long sys_timerfd_settime
  716. .long sys_timerfd_gettime
  717. .long sys_signalfd4
  718. .long sys_eventfd2
  719. .long sys_epoll_create1 /* 330 */
  720. .long sys_dup3
  721. .long sys_pipe2
  722. .long sys_inotify_init1
  723. .long sys_preadv
  724. .long sys_pwritev /* 335 */
  725. .long sys_rt_tgsigqueueinfo
  726. .long sys_perf_event_open
  727. .long sys_recvmmsg
  728. nr_syscalls=(.-sys_call_table)/4