/linux-4.4.14/sound/soc/sirf/ |
D | sirf-usp.c | 29 static void sirf_usp_tx_enable(struct sirf_usp *usp) in sirf_usp_tx_enable() argument 31 regmap_update_bits(usp->regmap, USP_TX_FIFO_OP, in sirf_usp_tx_enable() 33 regmap_write(usp->regmap, USP_TX_FIFO_OP, 0); in sirf_usp_tx_enable() 35 regmap_update_bits(usp->regmap, USP_TX_FIFO_OP, in sirf_usp_tx_enable() 38 regmap_update_bits(usp->regmap, USP_TX_RX_ENABLE, in sirf_usp_tx_enable() 42 static void sirf_usp_tx_disable(struct sirf_usp *usp) in sirf_usp_tx_disable() argument 44 regmap_update_bits(usp->regmap, USP_TX_RX_ENABLE, in sirf_usp_tx_disable() 47 regmap_write(usp->regmap, USP_TX_FIFO_OP, 0); in sirf_usp_tx_disable() 50 static void sirf_usp_rx_enable(struct sirf_usp *usp) in sirf_usp_rx_enable() argument 52 regmap_update_bits(usp->regmap, USP_RX_FIFO_OP, in sirf_usp_rx_enable() [all …]
|
D | Makefile | 3 snd-soc-sirf-usp-objs := sirf-usp.o 7 obj-$(CONFIG_SND_SOC_SIRF_USP) += snd-soc-sirf-usp.o
|
/linux-4.4.14/arch/c6x/kernel/ |
D | process.c | 92 void start_thread(struct pt_regs *regs, unsigned int pc, unsigned long usp) in start_thread() argument 102 usp -= 8; in start_thread() 105 regs->sp = usp; in start_thread() 107 current->thread.usp = usp; in start_thread() 113 int copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 126 childregs->a0 = usp; /* function */ in copy_thread() 131 if (usp) in copy_thread() 132 childregs->sp = usp; in copy_thread() 137 p->thread.usp = childregs->sp; in copy_thread() 147 if (usp == -1) in copy_thread()
|
/linux-4.4.14/arch/m68k/include/asm/ |
D | processor.h | 27 register unsigned long usp __asm__("a0"); in rdusp() 29 __asm__ __volatile__(".word 0x4e68" : "=a" (usp)); in rdusp() 30 return usp; in rdusp() 34 static inline void wrusp(unsigned long usp) in wrusp() argument 38 sw_usp = usp; in wrusp() 40 register unsigned long a0 __asm__("a0") = usp; in wrusp() 85 unsigned long usp; /* user stack pointer */ member 118 unsigned long usp) in start_thread() argument 123 wrusp(usp); in start_thread() 174 #define KSTK_ESP(tsk) ((tsk) == current ? rdusp() : (tsk)->thread.usp)
|
D | user.h | 43 long usp; member
|
/linux-4.4.14/arch/parisc/kernel/ |
D | process.c | 188 copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 203 if (!usp) /* idle thread */ in copy_thread() 215 cregs->gr[27] = ((unsigned long *)usp)[3]; in copy_thread() 216 cregs->gr[26] = ((unsigned long *)usp)[2]; in copy_thread() 218 cregs->gr[26] = usp; in copy_thread() 226 if (usp) { in copy_thread() 227 usp = ALIGN(usp, 4); in copy_thread() 228 if (likely(usp)) in copy_thread() 229 cregs->gr[30] = usp; in copy_thread()
|
D | signal.c | 91 unsigned long usp = (regs->gr[30] & ~(0x01UL)); in sys_rt_sigreturn() local 105 (usp - sigframe_size); in sys_rt_sigreturn() 137 usp, &compat_frame->uc.uc_stack); in sys_rt_sigreturn() 148 usp, &frame->uc.uc_stack); in sys_rt_sigreturn() 233 unsigned long rp, usp; in setup_rt_frame() local 241 usp = (regs->gr[30] & ~(0x01UL)); in setup_rt_frame() 243 frame = get_sigframe(&ksig->ka, usp, sizeof(*frame)); in setup_rt_frame() 523 unsigned int *usp = (unsigned int *)regs->gr[30]; in insert_restart_trampoline() local 524 unsigned long start = (unsigned long) &usp[2]; in insert_restart_trampoline() 525 unsigned long end = (unsigned long) &usp[5]; in insert_restart_trampoline() [all …]
|
/linux-4.4.14/arch/cris/include/arch-v32/arch/ |
D | system.h | 19 unsigned long usp; in rdusp() local 21 __asm__ __volatile__ ("move $usp, %0" : "=rm" (usp)); in rdusp() 22 return usp; in rdusp() 35 #define wrusp(usp) __asm__ __volatile__ ("move %0, $usp" : : "rm" (usp)) argument
|
D | processor.h | 18 unsigned long usp; /* User stack pointer. */ member 43 #define start_thread(regs, ip, usp) \ argument 47 wrusp(usp); \
|
/linux-4.4.14/arch/cris/include/arch-v10/arch/ |
D | system.h | 18 unsigned long usp; in rdusp() local 19 __asm__ __volatile__("move $usp,%0" : "=rm" (usp)); in rdusp() 20 return usp; in rdusp() 23 #define wrusp(usp) \ argument 24 __asm__ __volatile__("move %0,$usp" : /* no outputs */ : "rm" (usp))
|
D | processor.h | 22 unsigned long usp; /* user stack pointer */ member 55 #define start_thread(regs, ip, usp) do { \ argument 58 wrusp(usp); \
|
/linux-4.4.14/arch/blackfin/include/asm/ |
D | processor.h | 21 unsigned long usp; in rdusp() local 23 __asm__ __volatile__("%0 = usp;\n\t":"=da"(usp)); in rdusp() 24 return usp; in rdusp() 27 static inline void wrusp(unsigned long usp) in wrusp() argument 29 __asm__ __volatile__("usp = %0;\n\t"::"da"(usp)); in wrusp() 55 unsigned long usp; /* user stack pointer */ member 99 #define KSTK_ESP(tsk) ((tsk) == current ? rdusp() : (tsk)->thread.usp)
|
D | context.S | 25 [--sp] = usp; 97 [--sp] = usp; 156 [--sp] = usp;
|
D | dpmc.h | 74 [--sp] = usp; 168 usp = [sp++];
|
/linux-4.4.14/arch/mips/lib/ |
D | uncached.c | 43 long usp; in run_uncached() local 46 usp = CKSEG1ADDR(sp); in run_uncached() 50 usp = PHYS_TO_XKPHYS(K_CALG_UNCACHED, in run_uncached() 55 usp = sp; in run_uncached() 76 : "r" (usp), "r" (ufunc) in run_uncached()
|
/linux-4.4.14/arch/cris/arch-v32/kernel/ |
D | process.c | 105 copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 119 swstack->r1 = usp; in copy_thread() 124 p->thread.usp = 0; in copy_thread() 149 p->thread.usp = usp ?: rdusp(); in copy_thread() 166 unsigned long usp = rdusp(); in show_regs() local 171 regs->erp, regs->srp, regs->ccs, usp, regs->mof); in show_regs()
|
D | traps.c | 20 unsigned long usp = rdusp(); in show_registers() local 27 regs->erp, regs->srp, regs->ccs, usp, regs->mof); in show_registers() 62 show_stack(NULL, (unsigned long *)usp); in show_registers() 68 if (usp != 0) in show_registers()
|
D | signal.c | 78 err |= __get_user(old_usp, &sc->usp); in restore_sigcontext() 175 unsigned long usp; in setup_sigcontext() local 178 usp = rdusp(); in setup_sigcontext() 187 err |= __put_user(usp, &sc->usp); in setup_sigcontext()
|
D | ptrace.c | 49 ret = task->thread.usp; in get_reg() 68 task->thread.usp = data; in put_reg()
|
D | entry.S | 356 move $usp, [$acr] ; Save user-mode stackpointer. 374 move [$acr], $usp ; Restore user-mode stackpointer.
|
D | kgdb.c | 226 unsigned int usp; /* 0x6D; P14, User mode stack pointer */ member
|
/linux-4.4.14/arch/cris/arch-v10/kernel/ |
D | process.c | 97 int copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 110 swstack->r1 = usp; in copy_thread() 115 p->thread.usp = 0; in copy_thread() 132 p->thread.usp = usp ?: rdusp(); in copy_thread() 178 unsigned long usp = rdusp(); in show_regs() local 183 regs->irp, regs->srp, regs->dccr, usp, regs->mof ); in show_regs()
|
D | traps.c | 25 unsigned long usp = rdusp(); in show_registers() local 28 regs->irp, regs->srp, regs->dccr, usp, regs->mof); in show_registers() 54 show_stack(NULL, (unsigned long *)usp); in show_registers() 60 if (usp != 0) in show_registers()
|
D | signal.c | 89 err |= __get_user(old_usp, &sc->usp); in restore_sigcontext() 182 unsigned long usp = rdusp(); in setup_sigcontext() local 197 err |= __put_user(usp, &sc->usp); in setup_sigcontext()
|
D | ptrace.c | 36 return task->thread.usp; in get_reg() 50 task->thread.usp = data; in put_reg()
|
D | kgdb.c | 230 unsigned int usp; /* 0x66 User mode stack pointer */ member
|
D | entry.S | 312 move $usp, [$r10+ THREAD_usp] ; save user-mode stackpointer 327 move [$r11+THREAD_usp], $usp ; restore user-mode stackpointer
|
/linux-4.4.14/arch/arc/kernel/ |
D | process.c | 90 unsigned long usp, unsigned long kthread_arg, in copy_thread() argument 122 c_callee->r14 = usp; /* function */ in copy_thread() 136 if (usp) in copy_thread() 137 c_regs->sp = usp; in copy_thread() 162 void start_thread(struct pt_regs * regs, unsigned long pc, unsigned long usp) in start_thread() argument 164 regs->sp = usp; in start_thread()
|
/linux-4.4.14/arch/h8300/include/asm/ |
D | processor.h | 32 static inline void wrusp(unsigned long usp) in wrusp() argument 36 _sw_usp = usp; in wrusp() 58 unsigned long usp; /* user stack pointer */ member 69 .usp = 0, \ 134 #define KSTK_ESP(tsk) ((tsk) == current ? rdusp() : (tsk)->thread.usp)
|
D | user.h | 39 long usp; member
|
/linux-4.4.14/arch/sparc/include/asm/ |
D | compat.h | 233 unsigned long usp = regs->u_regs[UREG_I6]; in arch_compat_alloc_user_space() local 235 if (test_thread_64bit_stack(usp)) in arch_compat_alloc_user_space() 236 usp += STACK_BIAS; in arch_compat_alloc_user_space() 239 usp &= 0xffffffffUL; in arch_compat_alloc_user_space() 241 usp -= len; in arch_compat_alloc_user_space() 242 usp &= ~0x7UL; in arch_compat_alloc_user_space() 244 return (void __user *) usp; in arch_compat_alloc_user_space()
|
/linux-4.4.14/arch/microblaze/kernel/ |
D | process.c | 54 int copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 66 ti->cpu_context.r20 = (unsigned long)usp; /* fn */ in copy_thread() 77 if (usp) in copy_thread() 78 childregs->r1 = usp; in copy_thread() 143 void start_thread(struct pt_regs *regs, unsigned long pc, unsigned long usp) in start_thread() argument 146 regs->r1 = usp; in start_thread()
|
/linux-4.4.14/arch/score/kernel/ |
D | process.c | 71 int copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 81 p->thread.reg12 = usp; in copy_thread() 88 if (usp) in copy_thread() 89 childregs->regs[0] = usp; /* user fork */ in copy_thread()
|
/linux-4.4.14/Documentation/devicetree/bindings/serial/ |
D | sirf-uart.txt | 4 - compatible : Should be "sirf,prima2-uart", "sirf, prima2-usp-uart", 5 "sirf,atlas7-uart" or "sirf,atlas7-usp-uart". 29 usp@b0090000 { 30 compatible = "sirf,prima2-usp-uart";
|
/linux-4.4.14/arch/hexagon/kernel/ |
D | process.c | 71 int copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 97 ss->r24 = usp; in copy_thread() 105 if (usp) in copy_thread() 106 pt_set_rte_sp(childregs, usp); in copy_thread()
|
/linux-4.4.14/arch/h8300/kernel/ |
D | process.c | 106 unsigned long usp, unsigned long topstk, in copy_thread() argument 117 childregs->er5 = usp; /* fn */ in copy_thread() 122 p->thread.usp = usp ?: rdusp(); in copy_thread()
|
D | signal.c | 78 unsigned int usp; in restore_sigcontext() local 97 err |= __get_user(usp, &usc->sc_usp); in restore_sigcontext() 98 wrusp(usp); in restore_sigcontext() 107 unsigned long usp = rdusp(); in sys_rt_sigreturn() local 108 struct rt_sigframe *frame = (struct rt_sigframe *)(usp - 4); in sys_rt_sigreturn()
|
D | ptrace.c | 43 return task->thread.usp + sizeof(long)*2; in h8300_get_reg() 61 task->thread.usp = data - sizeof(long)*2; in h8300_put_reg()
|
D | asm-offsets.c | 38 OFFSET(THREAD_USP, thread_struct, usp); in main()
|
/linux-4.4.14/arch/openrisc/kernel/ |
D | process.c | 145 copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 169 kregs->gpr[20] = usp; /* fn, kernel thread */ in copy_thread() 174 if (usp) in copy_thread() 175 userregs->sp = usp; in copy_thread()
|
/linux-4.4.14/arch/m68k/kernel/ |
D | process.c | 132 int copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 155 frame->sw.a3 = usp; /* function */ in copy_thread() 158 p->thread.usp = 0; in copy_thread() 165 p->thread.usp = usp ?: rdusp(); in copy_thread()
|
D | signal.c | 692 unsigned long usp; in rt_restore_ucontext() local 717 err |= __get_user(usp, &gregs[15]); in rt_restore_ucontext() 718 wrusp(usp); in rt_restore_ucontext() 744 unsigned long usp = rdusp(); in do_sigreturn() local 745 struct sigframe __user *frame = (struct sigframe __user *)(usp - 4); in do_sigreturn() 771 unsigned long usp = rdusp(); in do_rt_sigreturn() local 772 struct rt_sigframe __user *frame = (struct rt_sigframe __user *)(usp - 4); in do_rt_sigreturn() 840 unsigned long usp = sigsp(rdusp(), ksig); in get_sigframe() local 842 return (void __user *)((usp - frame_size) & -8UL); in get_sigframe()
|
D | ptrace.c | 79 addr = &task->thread.usp; in get_reg() 104 addr = &task->thread.usp; in put_reg()
|
D | asm-offsets.c | 31 DEFINE(THREAD_USP, offsetof(struct thread_struct, usp)); in main()
|
D | entry.S | 332 movec %usp,%d0 411 movel %a0,%usp
|
/linux-4.4.14/arch/blackfin/kernel/ |
D | signal.c | 43 unsigned long usp = 0; in rt_restore_sigcontext() local 56 err |= __get_user(usp, &sc->sc_usp); in rt_restore_sigcontext() 57 wrusp(usp); in rt_restore_sigcontext() 83 unsigned long usp = rdusp(); in sys_rt_sigreturn() local 84 struct rt_sigframe *frame = (struct rt_sigframe *)(usp); in sys_rt_sigreturn() 141 unsigned long usp = sigsp(rdusp(), ksig); in get_sigframe() local 143 return (void *)((usp - frame_size) & -8UL); in get_sigframe()
|
D | ptrace.c | 60 tmp = task->thread.usp; in get_reg() 96 regs->usp = data; in put_reg() 97 task->thread.usp = data; in put_reg() 165 regs->usp = target->thread.usp; in genregs_get() 194 target->thread.usp = regs->usp; in genregs_set()
|
D | process.c | 114 unsigned long usp, unsigned long topstk, in copy_thread() argument 124 v[0] = usp; in copy_thread() 129 p->thread.usp = 0; in copy_thread() 133 p->thread.usp = usp ? : rdusp(); in copy_thread() 152 fp = p->thread.usp; in get_wchan()
|
D | asm-offsets.c | 38 DEFINE(THREAD_USP, offsetof(struct thread_struct, usp)); in main() 72 DEFINE(PT_USP, offsetof(struct pt_regs, usp)); in main()
|
D | pseudodbg.c | 54 val = &fp->usp; in fix_up_reg()
|
D | kgdb.c | 62 gdb_regs[BFIN_USP] = regs->usp; in pt_regs_to_gdb_regs() 135 regs->usp = gdb_regs[BFIN_USP]; in gdb_regs_to_pt_regs()
|
/linux-4.4.14/arch/c6x/include/asm/ |
D | processor.h | 62 unsigned long usp; /* user stack pointer */ member 69 .usp = 0, \ 88 unsigned long usp);
|
/linux-4.4.14/arch/alpha/kernel/ |
D | process.c | 242 copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 263 childstack->r9 = usp; /* function */ in copy_thread() 266 childti->pcb.usp = 0; in copy_thread() 276 childti->pcb.usp = usp ?: rdusp(); in copy_thread() 327 dest[30] = ti == current_thread_info() ? rdusp() : ti->pcb.usp; in dump_elf_thread()
|
D | signal.c | 149 unsigned long usp; in restore_sigcontext() local 187 err |= __get_user(usp, sc->sc_regs+30); in restore_sigcontext() 188 wrusp(usp); in restore_sigcontext()
|
D | ptrace.c | 112 addr = &task_thread_info(task)->pcb.usp; in get_reg_addr()
|
D | osf_sys.c | 691 unsigned long usp = rdusp(); in SYSCALL_DEFINE2() local 693 unsigned long oss_os = on_sig_stack(usp); in SYSCALL_DEFINE2() 706 if (current->sas_ss_sp && on_sig_stack(usp)) in SYSCALL_DEFINE2()
|
D | smp.c | 309 hwpcb->usp = 0; in secondary_cpu_start()
|
/linux-4.4.14/arch/mips/include/asm/ |
D | syscall.h | 38 unsigned long usp __maybe_unused = regs->regs[29]; in mips_get_syscall_arg() 48 return get_user(*arg, (int *)usp + n); in mips_get_syscall_arg() 55 return get_user(*arg, (int *)usp + n); in mips_get_syscall_arg()
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | sirf-usp.txt | 4 - compatible: "sirf,prima2-usp-pcm" 18 usp0: usp@b0080000 { 19 compatible = "sirf,prima2-usp-pcm";
|
/linux-4.4.14/arch/frv/kernel/ |
D | process.c | 129 unsigned long usp, unsigned long arg, in copy_thread() argument 148 childregs->gr9 = usp; /* function */ in copy_thread() 154 if (usp) in copy_thread() 155 childregs->sp = usp; in copy_thread()
|
/linux-4.4.14/arch/sh/kernel/ |
D | process_32.c | 126 int copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 152 childregs->regs[5] = usp; in copy_thread() 164 if (usp) in copy_thread() 165 childregs->regs[15] = usp; in copy_thread()
|
D | process_64.c | 374 int copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 396 childregs->regs[3] = (unsigned long)usp; in copy_thread() 410 if (usp) in copy_thread() 411 childregs->regs[15] = neff_sign_extend(usp); in copy_thread()
|
/linux-4.4.14/arch/xtensa/kernel/ |
D | process.c | 208 unsigned long usp = usp_thread_fn ? in copy_thread() local 219 childregs->areg[1] = usp; in copy_thread() 238 if (regs->areg[1] == usp && len != 0) { in copy_thread() 242 (unsigned __user*)(usp - 12)); in copy_thread()
|
/linux-4.4.14/arch/nios2/kernel/ |
D | process.c | 100 unsigned long usp, unsigned long arg, struct task_struct *p) in copy_thread() argument 112 childstack->r16 = usp; /* fn */ in copy_thread() 134 if (usp) in copy_thread() 135 childregs->sp = usp; in copy_thread()
|
D | signal.c | 168 unsigned long usp; in get_sigframe() local 171 usp = regs->sp; in get_sigframe() 174 usp = sigsp(usp, ksig); in get_sigframe() 177 return (void *)((usp - frame_size) & -8UL); in get_sigframe()
|
/linux-4.4.14/arch/blackfin/mach-bf561/ |
D | secondary.S | 103 usp = sp; define 138 usp = sp; define 174 usp = sp; define
|
/linux-4.4.14/arch/avr32/kernel/ |
D | process.c | 282 int copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 291 p->thread.cpu_context.r1 = usp; /* fn */ in copy_thread() 297 if (usp) in copy_thread() 298 childregs->sp = usp; in copy_thread()
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | compat.h | 210 unsigned long usp = regs->gpr[1]; in arch_compat_alloc_user_space() local 218 usp -= USER_REDZONE_SIZE; in arch_compat_alloc_user_space() 220 return (void __user *) (usp - len); in arch_compat_alloc_user_space()
|
/linux-4.4.14/arch/mn10300/include/asm/ |
D | frame.inc | 36 mov usp,a1 85 # must restore usp even if returning to kernel space, 88 mov a1,usp
|
D | processor.h | 102 unsigned long usp; member
|
D | gdb-stub.h | 83 u32 ssp, msp, usp, mcrh, mcrl, mcvf; member
|
/linux-4.4.14/arch/tile/include/asm/ |
D | elf.h | 154 #define compat_start_thread(regs, ip, usp) do { \ argument 156 regs->sp = ptr_to_compat_reg((void *)(usp)); \
|
D | processor.h | 202 unsigned long pc, unsigned long usp) in start_thread() argument 205 regs->sp = usp; in start_thread()
|
/linux-4.4.14/Documentation/devicetree/bindings/spi/ |
D | spi-sirf.txt | 4 - compatible : Should be "sirf,prima2-spi", "sirf,prima2-usp" 5 or "sirf,atlas7-usp"
|
/linux-4.4.14/arch/metag/kernel/ |
D | process.c | 180 int copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 209 childregs->ctx.DX[4].U1 = usp; in copy_thread() 223 if (usp) in copy_thread() 224 childregs->ctx.AX[0].U0 = ALIGN(usp, 8); in copy_thread()
|
/linux-4.4.14/arch/metag/include/asm/ |
D | processor.h | 112 #define start_thread(regs, pc, usp) do { \ argument 118 regs->ctx.AX[0].U0 = usp; \
|
/linux-4.4.14/arch/cris/include/uapi/asm/ |
D | sigcontext.h | 20 unsigned long usp; /* usp before stacking this gunk on it */ member
|
/linux-4.4.14/arch/m68k/68360/ |
D | entry.S | 155 movel %usp,%a3 /* save usp */ 159 movel %a3,%usp
|
/linux-4.4.14/arch/cris/include/uapi/arch-v32/arch/ |
D | user.h | 37 unsigned long usp; /* P14, User mode stack pointer. */ member
|
/linux-4.4.14/arch/cris/include/uapi/arch-v10/arch/ |
D | user.h | 39 unsigned long usp; /* User-mode stack pointer. Same as sp when member
|
/linux-4.4.14/arch/cris/include/asm/ |
D | processor.h | 53 #define KSTK_ESP(tsk) ((tsk) == current ? rdusp() : (tsk)->thread.usp)
|
/linux-4.4.14/arch/mips/kernel/ |
D | process.c | 113 int copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 133 p->thread.reg16 = usp; /* fn */ in copy_thread() 151 if (usp) in copy_thread() 152 childregs->regs[29] = usp; in copy_thread()
|
D | scall64-o32.S | 72 load_a4: lw a4, 16(t0) # argument #5 from usp 73 load_a5: lw a5, 20(t0) # argument #6 from usp 74 load_a6: lw a6, 24(t0) # argument #7 from usp 75 load_a7: lw a7, 28(t0) # argument #8 from usp
|
D | scall32-o32.S | 68 load_a4: user_lw(t5, 16(t0)) # argument #5 from usp 69 load_a5: user_lw(t6, 20(t0)) # argument #6 from usp 70 load_a6: user_lw(t7, 24(t0)) # argument #7 from usp 71 load_a7: user_lw(t8, 28(t0)) # argument #8 from usp
|
/linux-4.4.14/arch/blackfin/mach-common/ |
D | head.S | 112 usp = sp; define 165 sp = usp; /* usp hasn't been touched, so restore from there */
|
D | interrupt.S | 39 [--sp] = usp;
|
D | entry.S | 724 p2 = usp; 740 usp = p0; define
|
/linux-4.4.14/arch/alpha/include/asm/ |
D | processor.h | 58 ((tsk) == current ? rdusp() : task_thread_info(tsk)->pcb.usp)
|
D | hwrpb.h | 79 unsigned long usp; member
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | prima2.dtsi | 261 usp0: usp@b0080000 { 263 compatible = "sirf,prima2-usp"; 272 usp1: usp@b0090000 { 274 compatible = "sirf,prima2-usp"; 283 usp2: usp@b00a0000 { 285 compatible = "sirf,prima2-usp";
|
D | atlas6.dtsi | 256 usp0: usp@b0080000 { 258 compatible = "sirf,prima2-usp"; 267 usp1: usp@b0090000 { 269 compatible = "sirf,prima2-usp";
|
D | atlas7.dtsi | 1749 usp1: usp@10d30000 { 1758 usp2: usp@10d40000 { 1822 usp3: usp@11001000 { 1823 compatible = "sirf,atlas7-bt-usp", 1824 "sirf,prima2-usp-pcm";
|
/linux-4.4.14/include/asm-generic/ |
D | ptrace.h | 38 #define GET_USP(regs) ((regs)->usp)
|
/linux-4.4.14/arch/m68k/68000/ |
D | entry.S | 235 movel %usp,%a3 /* save usp */ 239 movel %a3,%usp
|
/linux-4.4.14/arch/arc/include/asm/ |
D | processor.h | 85 unsigned long usp);
|
/linux-4.4.14/arch/cris/kernel/ |
D | asm-offsets.c | 45 ENTRY(usp); in main()
|
/linux-4.4.14/arch/blackfin/include/uapi/asm/ |
D | ptrace.h | 69 long usp; member
|
/linux-4.4.14/arch/microblaze/include/asm/ |
D | processor.h | 31 void start_thread(struct pt_regs *regs, unsigned long pc, unsigned long usp);
|
/linux-4.4.14/arch/mn10300/kernel/ |
D | process.c | 164 p->thread.usp = c_usp; in copy_thread()
|
D | head.S | 189 mov a3,usp 226 mov a0,usp
|
D | asm-offsets.c | 67 OFFSET(THREAD_USP, thread_struct, usp); in foo()
|
D | kgdb.c | 79 gdb_regs[GDB_FR_USP] = p->thread.usp; in sleeping_thread_to_gdb_regs()
|
/linux-4.4.14/arch/alpha/boot/ |
D | bootp.c | 76 pcb_va->usp = 0; in pal_init()
|
D | main.c | 70 pcb_va->usp = 0; in pal_init()
|
D | bootpz.c | 124 pcb_va->usp = 0; in pal_init()
|
/linux-4.4.14/arch/m68k/math-emu/ |
D | fp_entry.S | 263 move.l %usp,%a0 314 move.l %a0,%usp
|
/linux-4.4.14/arch/unicore32/kernel/ |
D | signal.c | 380 u32 __user *usp; in do_signal() local 383 usp = (u32 __user *)regs->UCreg_sp; in do_signal() 385 if (put_user(regs->UCreg_pc, usp) == 0) { in do_signal()
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | process.c | 1134 int copy_thread(unsigned long clone_flags, unsigned long usp, in copy_thread() argument 1152 if (usp) in copy_thread() 1153 childregs->gpr[14] = ppc_function_entry((void *)usp); in copy_thread() 1167 if (usp) in copy_thread() 1168 childregs->gpr[1] = usp; in copy_thread()
|
/linux-4.4.14/arch/sparc/kernel/ |
D | entry.S | 888 mov %fp, %o1 ! arg1: usp 910 mov %fp, %o1 ! yes, use callers usp
|
/linux-4.4.14/crypto/ |
D | Kconfig | 780 <http://www.larc.usp.br/~pbarreto/WhirlpoolPage.html> 944 <http://www.larc.usp.br/~pbarreto/AnubisPage.html> 1191 <http://www.larc.usp.br/~pbarreto/KhazadPage.html>
|
/linux-4.4.14/arch/m68k/ifpsp060/src/ |
D | pfpsp.S | 1566 mov.l %a0,%usp 1886 mov.l %a0,%usp 1983 mov.l %a0,%usp 2117 mov.l %a0,%usp
|
D | fpsp.S | 1567 mov.l %a0,%usp 1887 mov.l %a0,%usp 1984 mov.l %a0,%usp 2118 mov.l %a0,%usp
|