~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/cris/include/asm/processor.h

Version: ~ [ linux-6.6-rc1 ] ~ [ linux-6.5.2 ] ~ [ linux-6.4.15 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.52 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.131 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.194 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.256 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.294 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.325 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*
  3  * include/asm-cris/processor.h
  4  *
  5  * Copyright (C) 2000, 2001 Axis Communications AB
  6  *
  7  * Authors:         Bjorn Wesen        Initial version
  8  *
  9  */
 10 
 11 #ifndef __ASM_CRIS_PROCESSOR_H
 12 #define __ASM_CRIS_PROCESSOR_H
 13 
 14 #include <asm/page.h>
 15 #include <asm/ptrace.h>
 16 #include <arch/processor.h>
 17 #include <arch/system.h>
 18 
 19 struct task_struct;
 20 
 21 #define STACK_TOP       TASK_SIZE
 22 #define STACK_TOP_MAX   STACK_TOP
 23 
 24 /* This decides where the kernel will search for a free chunk of vm
 25  * space during mmap's.
 26  */
 27 #define TASK_UNMAPPED_BASE      (PAGE_ALIGN(TASK_SIZE / 3))
 28 
 29 /* THREAD_SIZE is the size of the thread_info/kernel_stack combo.
 30  * normally, the stack is found by doing something like p + THREAD_SIZE
 31  * in CRIS, a page is 8192 bytes, which seems like a sane size
 32  */
 33 #define THREAD_SIZE       PAGE_SIZE
 34 #define THREAD_SIZE_ORDER (0)
 35 
 36 /*
 37  * At user->kernel entry, the pt_regs struct is stacked on the top of the kernel-stack.
 38  * This macro allows us to find those regs for a task.
 39  * Notice that subsequent pt_regs stackings, like recursive interrupts occurring while
 40  * we're in the kernel, won't affect this - only the first user->kernel transition
 41  * registers are reached by this.
 42  */
 43 
 44 #define user_regs(thread_info) (((struct pt_regs *)((unsigned long)(thread_info) + THREAD_SIZE)) - 1)
 45 
 46 /*
 47  * Dito but for the currently running task
 48  */
 49 
 50 #define task_pt_regs(task) user_regs(task_thread_info(task))
 51 
 52 unsigned long get_wchan(struct task_struct *p);
 53 
 54 #define KSTK_ESP(tsk)   ((tsk) == current ? rdusp() : (tsk)->thread.usp)
 55 
 56 /* Free all resources held by a thread. */
 57 static inline void release_thread(struct task_struct *dead_task)
 58 {
 59         /* Nothing needs to be done.  */
 60 }
 61 
 62 #define init_stack      (init_thread_union.stack)
 63 
 64 #define cpu_relax()     barrier()
 65 
 66 void default_idle(void);
 67 
 68 #endif /* __ASM_CRIS_PROCESSOR_H */
 69 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

osdn.jp