Home
last modified time | relevance | path

Searched refs:usp (Results 1 – 112 of 112) sorted by relevance

/linux-4.4.14/sound/soc/sirf/
Dsirf-usp.c29 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 …]
DMakefile3 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/
Dprocess.c92 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/
Dprocessor.h27 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)
Duser.h43 long usp; member
/linux-4.4.14/arch/parisc/kernel/
Dprocess.c188 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()
Dsignal.c91 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/
Dsystem.h19 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
Dprocessor.h18 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/
Dsystem.h18 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))
Dprocessor.h22 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/
Dprocessor.h21 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)
Dcontext.S25 [--sp] = usp;
97 [--sp] = usp;
156 [--sp] = usp;
Ddpmc.h74 [--sp] = usp;
168 usp = [sp++];
/linux-4.4.14/arch/mips/lib/
Duncached.c43 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/
Dprocess.c105 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()
Dtraps.c20 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()
Dsignal.c78 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()
Dptrace.c49 ret = task->thread.usp; in get_reg()
68 task->thread.usp = data; in put_reg()
Dentry.S356 move $usp, [$acr] ; Save user-mode stackpointer.
374 move [$acr], $usp ; Restore user-mode stackpointer.
Dkgdb.c226 unsigned int usp; /* 0x6D; P14, User mode stack pointer */ member
/linux-4.4.14/arch/cris/arch-v10/kernel/
Dprocess.c97 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()
Dtraps.c25 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()
Dsignal.c89 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()
Dptrace.c36 return task->thread.usp; in get_reg()
50 task->thread.usp = data; in put_reg()
Dkgdb.c230 unsigned int usp; /* 0x66 User mode stack pointer */ member
Dentry.S312 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/
Dprocess.c90 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/
Dprocessor.h32 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)
Duser.h39 long usp; member
/linux-4.4.14/arch/sparc/include/asm/
Dcompat.h233 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/
Dprocess.c54 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/
Dprocess.c71 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/
Dsirf-uart.txt4 - 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/
Dprocess.c71 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/
Dprocess.c106 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()
Dsignal.c78 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()
Dptrace.c43 return task->thread.usp + sizeof(long)*2; in h8300_get_reg()
61 task->thread.usp = data - sizeof(long)*2; in h8300_put_reg()
Dasm-offsets.c38 OFFSET(THREAD_USP, thread_struct, usp); in main()
/linux-4.4.14/arch/openrisc/kernel/
Dprocess.c145 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/
Dprocess.c132 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()
Dsignal.c692 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()
Dptrace.c79 addr = &task->thread.usp; in get_reg()
104 addr = &task->thread.usp; in put_reg()
Dasm-offsets.c31 DEFINE(THREAD_USP, offsetof(struct thread_struct, usp)); in main()
Dentry.S332 movec %usp,%d0
411 movel %a0,%usp
/linux-4.4.14/arch/blackfin/kernel/
Dsignal.c43 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()
Dptrace.c60 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()
Dprocess.c114 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()
Dasm-offsets.c38 DEFINE(THREAD_USP, offsetof(struct thread_struct, usp)); in main()
72 DEFINE(PT_USP, offsetof(struct pt_regs, usp)); in main()
Dpseudodbg.c54 val = &fp->usp; in fix_up_reg()
Dkgdb.c62 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/
Dprocessor.h62 unsigned long usp; /* user stack pointer */ member
69 .usp = 0, \
88 unsigned long usp);
/linux-4.4.14/arch/alpha/kernel/
Dprocess.c242 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()
Dsignal.c149 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()
Dptrace.c112 addr = &task_thread_info(task)->pcb.usp; in get_reg_addr()
Dosf_sys.c691 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()
Dsmp.c309 hwpcb->usp = 0; in secondary_cpu_start()
/linux-4.4.14/arch/mips/include/asm/
Dsyscall.h38 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/
Dsirf-usp.txt4 - compatible: "sirf,prima2-usp-pcm"
18 usp0: usp@b0080000 {
19 compatible = "sirf,prima2-usp-pcm";
/linux-4.4.14/arch/frv/kernel/
Dprocess.c129 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/
Dprocess_32.c126 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()
Dprocess_64.c374 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/
Dprocess.c208 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/
Dprocess.c100 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()
Dsignal.c168 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/
Dsecondary.S103 usp = sp; define
138 usp = sp; define
174 usp = sp; define
/linux-4.4.14/arch/avr32/kernel/
Dprocess.c282 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/
Dcompat.h210 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/
Dframe.inc36 mov usp,a1
85 # must restore usp even if returning to kernel space,
88 mov a1,usp
Dprocessor.h102 unsigned long usp; member
Dgdb-stub.h83 u32 ssp, msp, usp, mcrh, mcrl, mcvf; member
/linux-4.4.14/arch/tile/include/asm/
Delf.h154 #define compat_start_thread(regs, ip, usp) do { \ argument
156 regs->sp = ptr_to_compat_reg((void *)(usp)); \
Dprocessor.h202 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/
Dspi-sirf.txt4 - compatible : Should be "sirf,prima2-spi", "sirf,prima2-usp"
5 or "sirf,atlas7-usp"
/linux-4.4.14/arch/metag/kernel/
Dprocess.c180 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/
Dprocessor.h112 #define start_thread(regs, pc, usp) do { \ argument
118 regs->ctx.AX[0].U0 = usp; \
/linux-4.4.14/arch/cris/include/uapi/asm/
Dsigcontext.h20 unsigned long usp; /* usp before stacking this gunk on it */ member
/linux-4.4.14/arch/m68k/68360/
Dentry.S155 movel %usp,%a3 /* save usp */
159 movel %a3,%usp
/linux-4.4.14/arch/cris/include/uapi/arch-v32/arch/
Duser.h37 unsigned long usp; /* P14, User mode stack pointer. */ member
/linux-4.4.14/arch/cris/include/uapi/arch-v10/arch/
Duser.h39 unsigned long usp; /* User-mode stack pointer. Same as sp when member
/linux-4.4.14/arch/cris/include/asm/
Dprocessor.h53 #define KSTK_ESP(tsk) ((tsk) == current ? rdusp() : (tsk)->thread.usp)
/linux-4.4.14/arch/mips/kernel/
Dprocess.c113 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()
Dscall64-o32.S72 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
Dscall32-o32.S68 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/
Dhead.S112 usp = sp; define
165 sp = usp; /* usp hasn't been touched, so restore from there */
Dinterrupt.S39 [--sp] = usp;
Dentry.S724 p2 = usp;
740 usp = p0; define
/linux-4.4.14/arch/alpha/include/asm/
Dprocessor.h58 ((tsk) == current ? rdusp() : task_thread_info(tsk)->pcb.usp)
Dhwrpb.h79 unsigned long usp; member
/linux-4.4.14/arch/arm/boot/dts/
Dprima2.dtsi261 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";
Datlas6.dtsi256 usp0: usp@b0080000 {
258 compatible = "sirf,prima2-usp";
267 usp1: usp@b0090000 {
269 compatible = "sirf,prima2-usp";
Datlas7.dtsi1749 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/
Dptrace.h38 #define GET_USP(regs) ((regs)->usp)
/linux-4.4.14/arch/m68k/68000/
Dentry.S235 movel %usp,%a3 /* save usp */
239 movel %a3,%usp
/linux-4.4.14/arch/arc/include/asm/
Dprocessor.h85 unsigned long usp);
/linux-4.4.14/arch/cris/kernel/
Dasm-offsets.c45 ENTRY(usp); in main()
/linux-4.4.14/arch/blackfin/include/uapi/asm/
Dptrace.h69 long usp; member
/linux-4.4.14/arch/microblaze/include/asm/
Dprocessor.h31 void start_thread(struct pt_regs *regs, unsigned long pc, unsigned long usp);
/linux-4.4.14/arch/mn10300/kernel/
Dprocess.c164 p->thread.usp = c_usp; in copy_thread()
Dhead.S189 mov a3,usp
226 mov a0,usp
Dasm-offsets.c67 OFFSET(THREAD_USP, thread_struct, usp); in foo()
Dkgdb.c79 gdb_regs[GDB_FR_USP] = p->thread.usp; in sleeping_thread_to_gdb_regs()
/linux-4.4.14/arch/alpha/boot/
Dbootp.c76 pcb_va->usp = 0; in pal_init()
Dmain.c70 pcb_va->usp = 0; in pal_init()
Dbootpz.c124 pcb_va->usp = 0; in pal_init()
/linux-4.4.14/arch/m68k/math-emu/
Dfp_entry.S263 move.l %usp,%a0
314 move.l %a0,%usp
/linux-4.4.14/arch/unicore32/kernel/
Dsignal.c380 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/
Dprocess.c1134 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/
Dentry.S888 mov %fp, %o1 ! arg1: usp
910 mov %fp, %o1 ! yes, use callers usp
/linux-4.4.14/crypto/
DKconfig780 <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/
Dpfpsp.S1566 mov.l %a0,%usp
1886 mov.l %a0,%usp
1983 mov.l %a0,%usp
2117 mov.l %a0,%usp
Dfpsp.S1567 mov.l %a0,%usp
1887 mov.l %a0,%usp
1984 mov.l %a0,%usp
2118 mov.l %a0,%usp