processor.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  include/asm-s390/processor.h
  3.  *
  4.  *  S390 version
  5.  *    Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
  6.  *    Author(s): Hartmut Penner (hp@de.ibm.com),
  7.  *               Martin Schwidefsky (schwidefsky@de.ibm.com)
  8.  *
  9.  *  Derived from "include/asm-i386/processor.h"
  10.  *    Copyright (C) 1994, Linus Torvalds
  11.  */
  12. #ifndef __ASM_S390_PROCESSOR_H
  13. #define __ASM_S390_PROCESSOR_H
  14. #include <asm/page.h>
  15. #include <asm/ptrace.h>
  16. /*
  17.  * Default implementation of macro that returns current
  18.  * instruction pointer ("program counter").
  19.  */
  20. #define current_text_addr() ({ void *pc; __asm__("basr %0,0":"=a"(pc)); pc; })
  21. /*
  22.  *  CPU type and hardware bug flags. Kept separately for each CPU.
  23.  *  Members of this structure are referenced in head.S, so think twice
  24.  *  before touching them. [mj]
  25.  */
  26. typedef struct
  27. {
  28.         unsigned int version :  8;
  29.         unsigned int ident   : 24;
  30.         unsigned int machine : 16;
  31.         unsigned int unused  : 16;
  32. } __attribute__ ((packed)) cpuid_t;
  33. struct cpuinfo_S390
  34. {
  35.         cpuid_t  cpu_id;
  36.         __u16    cpu_addr;
  37.         __u16    cpu_nr;
  38.         unsigned long loops_per_jiffy;
  39.         unsigned long *pgd_quick;
  40.         unsigned long *pte_quick;
  41.         unsigned long pgtable_cache_sz;
  42. };
  43. extern void print_cpu_info(struct cpuinfo_S390 *);
  44. /* Lazy FPU handling on uni-processor */
  45. extern struct task_struct *last_task_used_math;
  46. /*
  47.  * User space process size: 2GB (default).
  48.  */
  49. #define TASK_SIZE       (0x80000000)
  50. /* This decides where the kernel will search for a free chunk of vm
  51.  * space during mmap's.
  52.  */
  53. #define TASK_UNMAPPED_BASE      (TASK_SIZE / 2)
  54. #define THREAD_SIZE (2*PAGE_SIZE)
  55. typedef struct {
  56.         unsigned long seg;
  57.         unsigned long acc4;
  58. } mm_segment_t;
  59. /* if you change the thread_struct structure, you must
  60.  * update the _TSS_* defines in entry.S
  61.  */
  62. struct thread_struct
  63.  {
  64. s390_fp_regs fp_regs;
  65.         __u32   ar2;                   /* kernel access register 2         */
  66.         __u32   ar4;                   /* kernel access register 4         */
  67.         __u32   ksp;                   /* kernel stack pointer             */
  68.         __u32   user_seg;              /* HSTD                             */
  69.         __u32   error_code;            /* error-code of last prog-excep.   */
  70.         __u32   prot_addr;             /* address of protection-excep.     */
  71.         __u32   trap_no;
  72.         /* perform syscall argument validation (get/set_fs) */
  73.         mm_segment_t fs;
  74.         per_struct per_info;/* Must be aligned on an 4 byte boundary*/
  75. /* Used to give failing instruction back to user for ieee exceptions */
  76. addr_t  ieee_instruction_pointer; 
  77.         /* pfault_wait is used to block the process on a pfault event */
  78. addr_t  pfault_wait;
  79. };
  80. typedef struct thread_struct thread_struct;
  81. #define INIT_THREAD {{0,{{0},{0},{0},{0},{0},{0},{0},{0},{0},{0}, 
  82.     {0},{0},{0},{0},{0},{0}}},            
  83.                      0, 0,                                        
  84.                     sizeof(init_stack) + (__u32) &init_stack,     
  85.               (__pa((__u32) &swapper_pg_dir[0]) + _SEGMENT_TABLE),
  86.                      0,0,0,                                       
  87.                      (mm_segment_t) { 0,1},                       
  88.                      (per_struct) {{{{0,}}},0,0,0,0,{{0,}}},      
  89.                      0, 0                                         
  90. }
  91. /* need to define ... */
  92. #define start_thread(regs, new_psw, new_stackp) do {            
  93.         regs->psw.mask  = _USER_PSW_MASK;                       
  94.         regs->psw.addr  = new_psw | 0x80000000;                 
  95.         regs->gprs[15]  = new_stackp ;                          
  96. } while (0)
  97. /* Forward declaration, a strange C thing */
  98. struct mm_struct;
  99. /* Free all resources held by a thread. */
  100. extern void release_thread(struct task_struct *);
  101. extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
  102. /* Copy and release all segment info associated with a VM */
  103. #define copy_segments(nr, mm)           do { } while (0)
  104. #define release_segments(mm)            do { } while (0)
  105. /*
  106.  * Return saved PC of a blocked thread. used in kernel/sched.
  107.  * resume in entry.S does not create a new stack frame, it
  108.  * just stores the registers %r6-%r15 to the frame given by
  109.  * schedule. We want to return the address of the caller of
  110.  * schedule, so we have to walk the backchain one time to
  111.  * find the frame schedule() store its return address.
  112.  */
  113. extern inline unsigned long thread_saved_pc(struct thread_struct *t)
  114. {
  115. unsigned long bc;
  116. bc = *((unsigned long *) t->ksp);
  117. return *((unsigned long *) (bc+56));
  118. }
  119. unsigned long get_wchan(struct task_struct *p);
  120. #define __KSTK_PTREGS(tsk) 
  121. ((struct pt_regs *)((unsigned long) tsk+THREAD_SIZE) - 1)
  122. #define KSTK_EIP(tsk) (__KSTK_PTREGS(tsk)->psw.addr)
  123. #define KSTK_ESP(tsk) (__KSTK_PTREGS(tsk)->gprs[15])
  124. /* Allocation and freeing of basic task resources. */
  125. /*
  126.  * NOTE! The task struct and the stack go together
  127.  */
  128. #define alloc_task_struct() 
  129.         ((struct task_struct *) __get_free_pages(GFP_KERNEL,1))
  130. #define free_task_struct(p)     free_pages((unsigned long)(p),1)
  131. #define get_task_struct(tsk)      atomic_inc(&virt_to_page(tsk)->count)
  132. #define init_task       (init_task_union.task)
  133. #define init_stack      (init_task_union.stack)
  134. #define cpu_relax() do { } while (0)
  135. /*
  136.  * Set of msr bits that gdb can change on behalf of a process.
  137.  */
  138. /* Only let our hackers near the condition codes */
  139. #define PSW_MASK_DEBUGCHANGE    0x00003000UL
  140. /* Don't let em near the addressing mode either */    
  141. #define PSW_ADDR_DEBUGCHANGE    0x7FFFFFFFUL
  142. #define PSW_ADDR_MASK           0x7FFFFFFFUL
  143. /* Program event recording mask */    
  144. #define PSW_PER_MASK            0x40000000UL
  145. #define USER_STD_MASK           0x00000080UL
  146. #define PSW_PROBLEM_STATE       0x00010000UL
  147. /*
  148.  * Function to drop a processor into disabled wait state
  149.  */
  150. static inline void disabled_wait(unsigned long code)
  151. {
  152.         char psw_buffer[2*sizeof(psw_t)];
  153.         char ctl_buf[4];
  154.         psw_t *dw_psw = (psw_t *)(((unsigned long) &psw_buffer+sizeof(psw_t)-1)
  155.                                   & -sizeof(psw_t));
  156.         dw_psw->mask = 0x000a0000;
  157.         dw_psw->addr = code;
  158.         /* 
  159.          * Store status and then load disabled wait psw,
  160.          * the processor is dead afterwards
  161.          */
  162.         asm volatile ("    stctl 0,0,0(%1)n"
  163.                       "    ni    0(%1),0xefn" /* switch off protection */
  164.                       "    lctl  0,0,0(%1)n"
  165.                       "    stpt  0xd8n"       /* store timer */
  166.                       "    stckc 0xe0n"       /* store clock comparator */
  167.                       "    stpx  0x108n"      /* store prefix register */
  168.                       "    stam  0,15,0x120n" /* store access registers */
  169.                       "    std   0,0x160n"    /* store f0 */
  170.                       "    std   2,0x168n"    /* store f2 */
  171.                       "    std   4,0x170n"    /* store f4 */
  172.                       "    std   6,0x178n"    /* store f6 */
  173.                       "    stm   0,15,0x180n" /* store general registers */
  174.                       "    stctl 0,15,0x1c0n" /* store control registers */
  175.                       "    oi    0(%1),0x10n" /* fake protection bit */
  176.                       "    lpsw 0(%0)"
  177.                       : : "a" (dw_psw), "a" (&ctl_buf) : "cc" );
  178. }
  179. #endif                                 /* __ASM_S390_PROCESSOR_H           */