system.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:15k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ALPHA_SYSTEM_H
  2. #define __ALPHA_SYSTEM_H
  3. #include <linux/config.h>
  4. #include <asm/pal.h>
  5. #include <asm/page.h>
  6. /*
  7.  * System defines.. Note that this is included both from .c and .S
  8.  * files, so it does only defines, not any C code.
  9.  */
  10. /*
  11.  * We leave one page for the initial stack page, and one page for
  12.  * the initial process structure. Also, the console eats 3 MB for
  13.  * the initial bootloader (one of which we can reclaim later).
  14.  */
  15. #define BOOT_PCB 0x20000000
  16. #define BOOT_ADDR 0x20000000
  17. /* Remove when official MILO sources have ELF support: */
  18. #define BOOT_SIZE (16*1024)
  19. #ifdef CONFIG_ALPHA_LEGACY_START_ADDRESS
  20. #define KERNEL_START_PHYS 0x300000 /* Old bootloaders hardcoded this.  */
  21. #else
  22. #define KERNEL_START_PHYS 0x800000 /* Wildfire has a huge console */
  23. #endif
  24. #define KERNEL_START (PAGE_OFFSET+KERNEL_START_PHYS)
  25. #define SWAPPER_PGD KERNEL_START
  26. #define INIT_STACK (PAGE_OFFSET+KERNEL_START_PHYS+0x02000)
  27. #define EMPTY_PGT (PAGE_OFFSET+KERNEL_START_PHYS+0x04000)
  28. #define EMPTY_PGE (PAGE_OFFSET+KERNEL_START_PHYS+0x08000)
  29. #define ZERO_PGE (PAGE_OFFSET+KERNEL_START_PHYS+0x0A000)
  30. #define START_ADDR (PAGE_OFFSET+KERNEL_START_PHYS+0x10000)
  31. /*
  32.  * This is setup by the secondary bootstrap loader.  Because
  33.  * the zero page is zeroed out as soon as the vm system is
  34.  * initialized, we need to copy things out into a more permanent
  35.  * place.
  36.  */
  37. #define PARAM ZERO_PGE
  38. #define COMMAND_LINE ((char*)(PARAM + 0x0000))
  39. #define COMMAND_LINE_SIZE 256
  40. #define INITRD_START (*(unsigned long *) (PARAM+0x100))
  41. #define INITRD_SIZE (*(unsigned long *) (PARAM+0x108))
  42. #ifndef __ASSEMBLY__
  43. #include <linux/kernel.h>
  44. /*
  45.  * This is the logout header that should be common to all platforms
  46.  * (assuming they are running OSF/1 PALcode, I guess).
  47.  */
  48. struct el_common {
  49. unsigned int size; /* size in bytes of logout area */
  50. int sbz1 : 30; /* should be zero */
  51. int err2 :  1; /* second error */
  52. int retry :  1; /* retry flag */
  53. unsigned int proc_offset; /* processor-specific offset */
  54. unsigned int sys_offset; /* system-specific offset */
  55. unsigned long code; /* machine check code */
  56. };
  57. /* Machine Check Frame for uncorrectable errors (Large format)
  58.  *      --- This is used to log uncorrectable errors such as
  59.  *          double bit ECC errors.
  60.  *      --- These errors are detected by both processor and systems.
  61.  */
  62. struct el_common_EV5_uncorrectable_mcheck {
  63.         unsigned long   shadow[8];        /* Shadow reg. 8-14, 25           */
  64.         unsigned long   paltemp[24];      /* PAL TEMP REGS.                 */
  65.         unsigned long   exc_addr;         /* Address of excepting instruction*/
  66.         unsigned long   exc_sum;          /* Summary of arithmetic traps.   */
  67.         unsigned long   exc_mask;         /* Exception mask (from exc_sum). */
  68.         unsigned long   pal_base;         /* Base address for PALcode.      */
  69.         unsigned long   isr;              /* Interrupt Status Reg.          */
  70.         unsigned long   icsr;             /* CURRENT SETUP OF EV5 IBOX      */
  71.         unsigned long   ic_perr_stat;     /* I-CACHE Reg. <11> set Data parity
  72.                                                          <12> set TAG parity*/
  73.         unsigned long   dc_perr_stat;     /* D-CACHE error Reg. Bits set to 1:
  74.                                                      <2> Data error in bank 0
  75.                                                      <3> Data error in bank 1
  76.                                                      <4> Tag error in bank 0
  77.                                                      <5> Tag error in bank 1 */
  78.         unsigned long   va;               /* Effective VA of fault or miss. */
  79.         unsigned long   mm_stat;          /* Holds the reason for D-stream 
  80.                                              fault or D-cache parity errors */
  81.         unsigned long   sc_addr;          /* Address that was being accessed
  82.                                              when EV5 detected Secondary cache
  83.                                              failure.                 */
  84.         unsigned long   sc_stat;          /* Helps determine if the error was
  85.                                              TAG/Data parity(Secondary Cache)*/
  86.         unsigned long   bc_tag_addr;      /* Contents of EV5 BC_TAG_ADDR    */
  87.         unsigned long   ei_addr;          /* Physical address of any transfer
  88.                                              that is logged in EV5 EI_STAT */
  89.         unsigned long   fill_syndrome;    /* For correcting ECC errors.     */
  90.         unsigned long   ei_stat;          /* Helps identify reason of any 
  91.                                              processor uncorrectable error
  92.                                              at its external interface.     */
  93.         unsigned long   ld_lock;          /* Contents of EV5 LD_LOCK register*/
  94. };
  95. struct el_common_EV6_mcheck {
  96. unsigned int FrameSize; /* Bytes, including this field */
  97. unsigned int FrameFlags; /* <31> = Retry, <30> = Second Error */
  98. unsigned int CpuOffset; /* Offset to CPU-specific info */
  99. unsigned int SystemOffset; /* Offset to system-specific info */
  100. unsigned int MCHK_Code;
  101. unsigned int MCHK_Frame_Rev;
  102. unsigned long I_STAT; /* EV6 Internal Processor Registers */
  103. unsigned long DC_STAT; /* (See the 21264 Spec) */
  104. unsigned long C_ADDR;
  105. unsigned long DC1_SYNDROME;
  106. unsigned long DC0_SYNDROME;
  107. unsigned long C_STAT;
  108. unsigned long C_STS;
  109. unsigned long RESERVED0;
  110. unsigned long EXC_ADDR;
  111. unsigned long IER_CM;
  112. unsigned long ISUM;
  113. unsigned long MM_STAT;
  114. unsigned long PAL_BASE;
  115. unsigned long I_CTL;
  116. unsigned long PCTX;
  117. };
  118. extern void halt(void) __attribute__((noreturn));
  119. #define __halt() __asm__ __volatile__ ("call_pal %0 #halt" : : "i" (PAL_halt))
  120. #define prepare_to_switch() do { } while(0)
  121. #define switch_to(prev,next,last)
  122. do {
  123. unsigned long pcbb;
  124. current = (next);
  125. pcbb = virt_to_phys(&current->thread);
  126. (last) = alpha_switch_to(pcbb, (prev));
  127. check_mmu_context();
  128. } while (0)
  129. extern struct task_struct* alpha_switch_to(unsigned long, struct task_struct*);
  130. #define mb() 
  131. __asm__ __volatile__("mb": : :"memory")
  132. #define rmb() 
  133. __asm__ __volatile__("mb": : :"memory")
  134. #define wmb() 
  135. __asm__ __volatile__("wmb": : :"memory")
  136. #ifdef CONFIG_SMP
  137. #define smp_mb() mb()
  138. #define smp_rmb() rmb()
  139. #define smp_wmb() wmb()
  140. #else
  141. #define smp_mb() barrier()
  142. #define smp_rmb() barrier()
  143. #define smp_wmb() barrier()
  144. #endif
  145. #define set_mb(var, value) 
  146. do { var = value; mb(); } while (0)
  147. #define set_wmb(var, value) 
  148. do { var = value; wmb(); } while (0)
  149. #define imb() 
  150. __asm__ __volatile__ ("call_pal %0 #imb" : : "i" (PAL_imb) : "memory")
  151. #define draina() 
  152. __asm__ __volatile__ ("call_pal %0 #draina" : : "i" (PAL_draina) : "memory")
  153. enum implver_enum {
  154. IMPLVER_EV4,
  155. IMPLVER_EV5,
  156. IMPLVER_EV6
  157. };
  158. #ifdef CONFIG_ALPHA_GENERIC
  159. #define implver()
  160. ({ unsigned long __implver;
  161.    __asm__ ("implver %0" : "=r"(__implver));
  162.    (enum implver_enum) __implver; })
  163. #else
  164. /* Try to eliminate some dead code.  */
  165. #ifdef CONFIG_ALPHA_EV4
  166. #define implver() IMPLVER_EV4
  167. #endif
  168. #ifdef CONFIG_ALPHA_EV5
  169. #define implver() IMPLVER_EV5
  170. #endif
  171. #if defined(CONFIG_ALPHA_EV6)
  172. #define implver() IMPLVER_EV6
  173. #endif
  174. #endif
  175. enum amask_enum {
  176. AMASK_BWX = (1UL << 0),
  177. AMASK_FIX = (1UL << 1),
  178. AMASK_MAX = (1UL << 8),
  179. AMASK_PRECISE_TRAP = (1UL << 9),
  180. };
  181. #define amask(mask)
  182. ({ unsigned long __amask, __input = (mask);
  183.    __asm__ ("amask %1,%0" : "=r"(__amask) : "rI"(__input));
  184.    __amask; })
  185. #define __CALL_PAL_R0(NAME, TYPE)
  186. static inline TYPE NAME(void)
  187. {
  188. register TYPE __r0 __asm__("$0");
  189. __asm__ __volatile__(
  190. "call_pal %1 # " #NAME
  191. :"=r" (__r0)
  192. :"i" (PAL_ ## NAME)
  193. :"$1", "$16", "$22", "$23", "$24", "$25");
  194. return __r0;
  195. }
  196. #define __CALL_PAL_W1(NAME, TYPE0)
  197. static inline void NAME(TYPE0 arg0)
  198. {
  199. register TYPE0 __r16 __asm__("$16") = arg0;
  200. __asm__ __volatile__(
  201. "call_pal %1 # "#NAME
  202. : "=r"(__r16)
  203. : "i"(PAL_ ## NAME), "0"(__r16)
  204. : "$1", "$22", "$23", "$24", "$25");
  205. }
  206. #define __CALL_PAL_W2(NAME, TYPE0, TYPE1)
  207. static inline void NAME(TYPE0 arg0, TYPE1 arg1)
  208. {
  209. register TYPE0 __r16 __asm__("$16") = arg0;
  210. register TYPE1 __r17 __asm__("$17") = arg1;
  211. __asm__ __volatile__(
  212. "call_pal %2 # "#NAME
  213. : "=r"(__r16), "=r"(__r17)
  214. : "i"(PAL_ ## NAME), "0"(__r16), "1"(__r17)
  215. : "$1", "$22", "$23", "$24", "$25");
  216. }
  217. #define __CALL_PAL_RW1(NAME, RTYPE, TYPE0)
  218. static inline RTYPE NAME(TYPE0 arg0)
  219. {
  220. register RTYPE __r0 __asm__("$0");
  221. register TYPE0 __r16 __asm__("$16") = arg0;
  222. __asm__ __volatile__(
  223. "call_pal %2 # "#NAME
  224. : "=r"(__r16), "=r"(__r0)
  225. : "i"(PAL_ ## NAME), "0"(__r16)
  226. : "$1", "$22", "$23", "$24", "$25");
  227. return __r0;
  228. }
  229. #define __CALL_PAL_RW2(NAME, RTYPE, TYPE0, TYPE1)
  230. static inline RTYPE NAME(TYPE0 arg0, TYPE1 arg1)
  231. {
  232. register RTYPE __r0 __asm__("$0");
  233. register TYPE0 __r16 __asm__("$16") = arg0;
  234. register TYPE1 __r17 __asm__("$17") = arg1;
  235. __asm__ __volatile__(
  236. "call_pal %3 # "#NAME
  237. : "=r"(__r16), "=r"(__r17), "=r"(__r0)
  238. : "i"(PAL_ ## NAME), "0"(__r16), "1"(__r17)
  239. : "$1", "$22", "$23", "$24", "$25");
  240. return __r0;
  241. }
  242. __CALL_PAL_W1(cflush, unsigned long);
  243. __CALL_PAL_R0(rdmces, unsigned long);
  244. __CALL_PAL_R0(rdps, unsigned long);
  245. __CALL_PAL_R0(rdusp, unsigned long);
  246. __CALL_PAL_RW1(swpipl, unsigned long, unsigned long);
  247. __CALL_PAL_R0(whami, unsigned long);
  248. __CALL_PAL_W2(wrent, void*, unsigned long);
  249. __CALL_PAL_W1(wripir, unsigned long);
  250. __CALL_PAL_W1(wrkgp, unsigned long);
  251. __CALL_PAL_W1(wrmces, unsigned long);
  252. __CALL_PAL_RW2(wrperfmon, unsigned long, unsigned long, unsigned long);
  253. __CALL_PAL_W1(wrusp, unsigned long);
  254. __CALL_PAL_W1(wrvptptr, unsigned long);
  255. #define IPL_MIN 0
  256. #define IPL_SW0 1
  257. #define IPL_SW1 2
  258. #define IPL_DEV0 3
  259. #define IPL_DEV1 4
  260. #define IPL_TIMER 5
  261. #define IPL_PERF 6
  262. #define IPL_POWERFAIL 6
  263. #define IPL_MCHECK 7
  264. #define IPL_MAX 7
  265. #ifdef CONFIG_ALPHA_BROKEN_IRQ_MASK
  266. #undef IPL_MIN
  267. #define IPL_MIN __min_ipl
  268. extern int __min_ipl;
  269. #endif
  270. #define getipl() (rdps() & 7)
  271. #define setipl(ipl) ((void) swpipl(ipl))
  272. #define __cli() do { setipl(IPL_MAX); barrier(); } while(0)
  273. #define __sti() do { barrier(); setipl(IPL_MIN); } while(0)
  274. #define __save_flags(flags) ((flags) = rdps())
  275. #define __save_and_cli(flags) do { (flags) = swpipl(IPL_MAX); barrier(); } while(0)
  276. #define __restore_flags(flags) do { barrier(); setipl(flags); barrier(); } while(0)
  277. #define local_irq_save(flags) __save_and_cli(flags)
  278. #define local_irq_restore(flags) __restore_flags(flags)
  279. #define local_irq_disable() __cli()
  280. #define local_irq_enable() __sti()
  281. #ifdef CONFIG_SMP
  282. extern int global_irq_holder;
  283. #define save_and_cli(flags)     (save_flags(flags), cli())
  284. extern void __global_cli(void);
  285. extern void __global_sti(void);
  286. extern unsigned long __global_save_flags(void);
  287. extern void __global_restore_flags(unsigned long flags);
  288. #define cli()                   __global_cli()
  289. #define sti()                   __global_sti()
  290. #define save_flags(flags) ((flags) = __global_save_flags())
  291. #define restore_flags(flags)    __global_restore_flags(flags)
  292. #else /* CONFIG_SMP */
  293. #define cli() __cli()
  294. #define sti() __sti()
  295. #define save_flags(flags) __save_flags(flags)
  296. #define save_and_cli(flags) __save_and_cli(flags)
  297. #define restore_flags(flags) __restore_flags(flags)
  298. #endif /* CONFIG_SMP */
  299. /*
  300.  * TB routines..
  301.  */
  302. #define __tbi(nr,arg,arg1...)
  303. ({
  304. register unsigned long __r16 __asm__("$16") = (nr);
  305. register unsigned long __r17 __asm__("$17"); arg;
  306. __asm__ __volatile__(
  307. "call_pal %3 #__tbi"
  308. :"=r" (__r16),"=r" (__r17)
  309. :"0" (__r16),"i" (PAL_tbi) ,##arg1
  310. :"$0", "$1", "$22", "$23", "$24", "$25");
  311. })
  312. #define tbi(x,y) __tbi(x,__r17=(y),"1" (__r17))
  313. #define tbisi(x) __tbi(1,__r17=(x),"1" (__r17))
  314. #define tbisd(x) __tbi(2,__r17=(x),"1" (__r17))
  315. #define tbis(x) __tbi(3,__r17=(x),"1" (__r17))
  316. #define tbiap() __tbi(-1, /* no second argument */)
  317. #define tbia() __tbi(-2, /* no second argument */)
  318. /*
  319.  * Atomic exchange.
  320.  * Since it can be used to implement critical sections
  321.  * it must clobber "memory" (also for interrupts in UP).
  322.  */
  323. extern __inline__ unsigned long
  324. __xchg_u32(volatile int *m, unsigned long val)
  325. {
  326. unsigned long dummy;
  327. __asm__ __volatile__(
  328. "1: ldl_l %0,%4n"
  329. " bis $31,%3,%1n"
  330. " stl_c %1,%2n"
  331. " beq %1,2fn"
  332. #ifdef CONFIG_SMP
  333. " mbn"
  334. #endif
  335. ".subsection 2n"
  336. "2: br 1bn"
  337. ".previous"
  338. : "=&r" (val), "=&r" (dummy), "=m" (*m)
  339. : "rI" (val), "m" (*m) : "memory");
  340. return val;
  341. }
  342. extern __inline__ unsigned long
  343. __xchg_u64(volatile long *m, unsigned long val)
  344. {
  345. unsigned long dummy;
  346. __asm__ __volatile__(
  347. "1: ldq_l %0,%4n"
  348. " bis $31,%3,%1n"
  349. " stq_c %1,%2n"
  350. " beq %1,2fn"
  351. #ifdef CONFIG_SMP
  352. " mbn"
  353. #endif
  354. ".subsection 2n"
  355. "2: br 1bn"
  356. ".previous"
  357. : "=&r" (val), "=&r" (dummy), "=m" (*m)
  358. : "rI" (val), "m" (*m) : "memory");
  359. return val;
  360. }
  361. /* This function doesn't exist, so you'll get a linker error
  362.    if something tries to do an invalid xchg().  */
  363. extern void __xchg_called_with_bad_pointer(void);
  364. static __inline__ unsigned long
  365. __xchg(volatile void *ptr, unsigned long x, int size)
  366. {
  367. switch (size) {
  368. case 4:
  369. return __xchg_u32(ptr, x);
  370. case 8:
  371. return __xchg_u64(ptr, x);
  372. }
  373. __xchg_called_with_bad_pointer();
  374. return x;
  375. }
  376. #define xchg(ptr,x)      
  377.   ({      
  378.      __typeof__(*(ptr)) _x_ = (x);      
  379.      (__typeof__(*(ptr))) __xchg((ptr), (unsigned long)_x_, sizeof(*(ptr))); 
  380.   })
  381. #define tas(ptr) (xchg((ptr),1))
  382. /* 
  383.  * Atomic compare and exchange.  Compare OLD with MEM, if identical,
  384.  * store NEW in MEM.  Return the initial value in MEM.  Success is
  385.  * indicated by comparing RETURN with OLD.
  386.  *
  387.  * The memory barrier should be placed in SMP only when we actually
  388.  * make the change. If we don't change anything (so if the returned
  389.  * prev is equal to old) then we aren't acquiring anything new and
  390.  * we don't need any memory barrier as far I can tell.
  391.  */
  392. #define __HAVE_ARCH_CMPXCHG 1
  393. extern __inline__ unsigned long
  394. __cmpxchg_u32(volatile int *m, int old, int new)
  395. {
  396. unsigned long prev, cmp;
  397. __asm__ __volatile__(
  398. "1: ldl_l %0,%5n"
  399. " cmpeq %0,%3,%1n"
  400. " beq %1,2fn"
  401. " mov %4,%1n"
  402. " stl_c %1,%2n"
  403. " beq %1,3fn"
  404. #ifdef CONFIG_SMP
  405. " mbn"
  406. #endif
  407. "2:n"
  408. ".subsection 2n"
  409. "3: br 1bn"
  410. ".previous"
  411. : "=&r"(prev), "=&r"(cmp), "=m"(*m)
  412. : "r"((long) old), "r"(new), "m"(*m) : "memory");
  413. return prev;
  414. }
  415. extern __inline__ unsigned long
  416. __cmpxchg_u64(volatile long *m, unsigned long old, unsigned long new)
  417. {
  418. unsigned long prev, cmp;
  419. __asm__ __volatile__(
  420. "1: ldq_l %0,%5n"
  421. " cmpeq %0,%3,%1n"
  422. " beq %1,2fn"
  423. " mov %4,%1n"
  424. " stq_c %1,%2n"
  425. " beq %1,3fn"
  426. #ifdef CONFIG_SMP
  427. " mbn"
  428. #endif
  429. "2:n"
  430. ".subsection 2n"
  431. "3: br 1bn"
  432. ".previous"
  433. : "=&r"(prev), "=&r"(cmp), "=m"(*m)
  434. : "r"((long) old), "r"(new), "m"(*m) : "memory");
  435. return prev;
  436. }
  437. /* This function doesn't exist, so you'll get a linker error
  438.    if something tries to do an invalid cmpxchg().  */
  439. extern void __cmpxchg_called_with_bad_pointer(void);
  440. static __inline__ unsigned long
  441. __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size)
  442. {
  443. switch (size) {
  444. case 4:
  445. return __cmpxchg_u32(ptr, old, new);
  446. case 8:
  447. return __cmpxchg_u64(ptr, old, new);
  448. }
  449. __cmpxchg_called_with_bad_pointer();
  450. return old;
  451. }
  452. #define cmpxchg(ptr,o,n)  
  453.   ({  
  454.      __typeof__(*(ptr)) _o_ = (o);  
  455.      __typeof__(*(ptr)) _n_ = (n);  
  456.      (__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_,  
  457.     (unsigned long)_n_, sizeof(*(ptr))); 
  458.   })
  459. #endif /* __ASSEMBLY__ */
  460. #endif