This is what i know and have observed.
In an ARM based Linux environment.
Register R8 is used to pass the system call number that is whenever you use a system call through an API, the function being called does not do any specific work. It acts as an interface between the user and the system call system routine.
the registers R9,R10,R11,R12 are used to pass the parameters to the system call.
if the system call needs more than 4 parameters then the first 4 are placed on the registers and the others are placed on the stack (This approach can vary with the Compiler being used to compile the kernel).
this was the process, for the files i would suggest looking into the /arch directory in the kernel source tree an once you do you will find syscalls.h there and there would be other files too, system call wrappers and the syscall table (trough which wee know which system call is being called) are present in other files. you can look at them.
right now i am on a windows system, will update it as soon as i get a look into the kernel source tree.