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

嵌入式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.         unsigned long loops_per_jiffy;
  37.         unsigned long *pgd_quick;
  38.         unsigned long *pmd_quick;
  39.         unsigned long *pte_quick;
  40.         unsigned long pgtable_cache_sz;
  41.         __u16    cpu_addr;
  42.         __u16    cpu_nr;
  43.         __u16    pad[2];
  44. };
  45. extern void print_cpu_info(struct cpuinfo_S390 *);
  46. /* Lazy FPU handling on uni-processor */
  47. extern struct task_struct *last_task_used_math;
  48. #define S390_FLAG_31BIT 0x01UL
  49. /*
  50.  * User space process size: 4TB (default).
  51.  */
  52. #define TASK_SIZE       (0x40000000000UL)
  53. #define TASK31_SIZE     (0x80000000UL)
  54. /* This decides where the kernel will search for a free chunk of vm
  55.  * space during mmap's.
  56.  */
  57. #define TASK_UNMAPPED_BASE      ((current->thread.flags & S390_FLAG_31BIT) ? 
  58. (TASK31_SIZE / 2) : (TASK_SIZE / 2))
  59. #define THREAD_SIZE (4*PAGE_SIZE)
  60. typedef struct {
  61.        __u32 ar4;
  62. } mm_segment_t;
  63. /* if you change the thread_struct structure, you must
  64.  * update the _TSS_* defines in entry.S
  65.  */
  66. struct thread_struct
  67.  {
  68. s390_fp_regs fp_regs;
  69.         __u32   ar2;                   /* kernel access register 2         */
  70.         __u32   ar4;                   /* kernel access register 4         */
  71.         addr_t  ksp;                   /* kernel stack pointer             */
  72.         addr_t  user_seg;              /* HSTD                             */
  73.         addr_t  prot_addr;             /* address of protection-excep.     */
  74.         __u32   error_code;            /* error-code of last prog-excep.   */
  75.         __u32   trap_no;
  76.         per_struct per_info;/* Must be aligned on an 4 byte boundary*/
  77. /* Used to give failing instruction back to user for ieee exceptions */
  78. addr_t  ieee_instruction_pointer; 
  79. unsigned long flags;            /* various flags */
  80.         /* pfault_wait is used to block the process on a pfault event */
  81. addr_t  pfault_wait;
  82. };
  83. typedef struct thread_struct thread_struct;
  84. #define INIT_THREAD {{0,{{0},{0},{0},{0},{0},{0},{0},{0},{0},{0}, 
  85.     {0},{0},{0},{0},{0},{0}}},            
  86.                      0, 0,                                        
  87.                     sizeof(init_stack) + (addr_t) &init_stack,    
  88.               (__pa((addr_t) &swapper_pg_dir[0]) + _REGION_TABLE),
  89.                      0,0,0,                                       
  90.                      (per_struct) {{{{0,}}},0,0,0,0,{{0,}}},      
  91.      0, 0, 0           
  92. /* need to define ... */
  93. #define start_thread(regs, new_psw, new_stackp) do {            
  94.         regs->psw.mask  = _USER_PSW_MASK;                       
  95.         regs->psw.addr  = new_psw;                              
  96.         regs->gprs[15]  = new_stackp;                           
  97. } while (0)
  98. #define start_thread31(regs, new_psw, new_stackp) do {          
  99. regs->psw.mask  = _USER_PSW_MASK & ~(1L << 32);
  100.         regs->psw.addr  = new_psw;                              
  101.         regs->gprs[15]  = new_stackp;                           
  102. } while (0)
  103. /* Forward declaration, a strange C thing */
  104. struct mm_struct;
  105. /* Free all resources held by a thread. */
  106. extern void release_thread(struct task_struct *);
  107. extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
  108. /* Copy and release all segment info associated with a VM */
  109. #define copy_segments(nr, mm)           do { } while (0)
  110. #define release_segments(mm)            do { } while (0)
  111. /*
  112.  * Return saved PC of a blocked thread. used in kernel/sched
  113.  * resume in entry.S does not create a new stack frame, it
  114.  * just stores the registers %r6-%r15 to the frame given by
  115.  * schedule. We want to return the address of the caller of
  116.  * schedule, so we have to walk the backchain one time to
  117.  * find the frame schedule() store its return address.
  118.  */
  119. extern inline unsigned long thread_saved_pc(struct thread_struct *t)
  120. {
  121. unsigned long bc;
  122. bc = *((unsigned long *) t->ksp);
  123. return *((unsigned long *) (bc+112));
  124. }
  125. unsigned long get_wchan(struct task_struct *p);
  126. #define __KSTK_PTREGS(tsk) 
  127. ((struct pt_regs *)((unsigned long) tsk+THREAD_SIZE) - 1)
  128. #define KSTK_EIP(tsk) (__KSTK_PTREGS(tsk)->psw.addr)
  129. #define KSTK_ESP(tsk) (__KSTK_PTREGS(tsk)->gprs[15])
  130. /* Allocation and freeing of basic task resources. */
  131. /*
  132.  * NOTE! The task struct and the stack go together
  133.  */
  134. #define alloc_task_struct() 
  135.         ((struct task_struct *) __get_free_pages(GFP_KERNEL,2))
  136. #define free_task_struct(p)     free_pages((unsigned long)(p),2)
  137. #define get_task_struct(tsk)      atomic_inc(&virt_to_page(tsk)->count)
  138. #define init_task       (init_task_union.task)
  139. #define init_stack      (init_task_union.stack)
  140. #define cpu_relax() do { } while (0)
  141. /*
  142.  * Set of msr bits that gdb can change on behalf of a process.
  143.  */
  144. /* Only let our hackers near the condition codes */
  145. #define PSW_MASK_DEBUGCHANGE    0x0000300000000000UL
  146. /* Don't let em near the addressing mode either */    
  147. #define PSW_ADDR_DEBUGCHANGE    0xFFFFFFFFFFFFFFFFUL
  148. #define PSW_ADDR_MASK           0xFFFFFFFFFFFFFFFFUL
  149. /* Program event recording mask */    
  150. #define PSW_PER_MASK            0x4000000000000000UL
  151. #define USER_STD_MASK           0x0000000000000080UL
  152. #define PSW_PROBLEM_STATE       0x0001000000000000UL
  153. /*
  154.  * Function to drop a processor into disabled wait state
  155.  */
  156. static inline void disabled_wait(addr_t code)
  157. {
  158.         char psw_buffer[2*sizeof(psw_t)];
  159.         char ctl_buf[8];
  160.         psw_t *dw_psw = (psw_t *)(((unsigned long) &psw_buffer+sizeof(psw_t)-1)
  161.                                   & -sizeof(psw_t));
  162.         dw_psw->mask = 0x0002000180000000;
  163.         dw_psw->addr = code;
  164.         /* 
  165.          * Store status and then load disabled wait psw,
  166.          * the processor is dead afterwards
  167.          */
  168.         asm volatile ("    stctg 0,0,0(%1)n"
  169.                       "    ni    4(%1),0xefn" /* switch off protection */
  170.                       "    lctlg 0,0,0(%1)n"
  171.                       "    lghi  1,0x1000n"
  172.                       "    stpt  0x328(1)n"      /* store timer */
  173.                       "    stckc 0x330(1)n"      /* store clock comparator */
  174.                       "    stpx  0x318(1)n"      /* store prefix register */
  175.                       "    stam  0,15,0x340(1)n" /* store access registers */
  176.                       "    stfpc 0x31c(1)n"      /* store fpu control */
  177.                       "    std   0,0x200(1)n"    /* store f0 */
  178.                       "    std   1,0x208(1)n"    /* store f1 */
  179.                       "    std   2,0x210(1)n"    /* store f2 */
  180.                       "    std   3,0x218(1)n"    /* store f3 */
  181.                       "    std   4,0x220(1)n"    /* store f4 */
  182.                       "    std   5,0x228(1)n"    /* store f5 */
  183.                       "    std   6,0x230(1)n"    /* store f6 */
  184.                       "    std   7,0x238(1)n"    /* store f7 */
  185.                       "    std   8,0x240(1)n"    /* store f8 */
  186.                       "    std   9,0x248(1)n"    /* store f9 */
  187.                       "    std   10,0x250(1)n"   /* store f10 */
  188.                       "    std   11,0x258(1)n"   /* store f11 */
  189.                       "    std   12,0x260(1)n"   /* store f12 */
  190.                       "    std   13,0x268(1)n"   /* store f13 */
  191.                       "    std   14,0x270(1)n"   /* store f14 */
  192.                       "    std   15,0x278(1)n"   /* store f15 */
  193.                       "    stmg  0,15,0x280(1)n" /* store general registers */
  194.                       "    stctg 0,15,0x380(1)n" /* store control registers */
  195.                       "    oi    0x384(1),0x10n" /* fake protection bit */
  196.                       "    lpswe 0(%0)"
  197.                       : : "a" (dw_psw), "a" (&ctl_buf) : "cc", "0", "1");
  198. }
  199. #endif                                 /* __ASM_S390_PROCESSOR_H           */