system.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. #ifndef __PARISC_SYSTEM_H
  2. #define __PARISC_SYSTEM_H
  3. #include <asm/psw.h>
  4. /* The program status word as bitfields. */
  5. struct pa_psw {
  6. unsigned int y:1;
  7. unsigned int z:1;
  8. unsigned int rv:2;
  9. unsigned int w:1;
  10. unsigned int e:1;
  11. unsigned int s:1;
  12. unsigned int t:1;
  13. unsigned int h:1;
  14. unsigned int l:1;
  15. unsigned int n:1;
  16. unsigned int x:1;
  17. unsigned int b:1;
  18. unsigned int c:1;
  19. unsigned int v:1;
  20. unsigned int m:1;
  21. unsigned int cb:8;
  22. unsigned int o:1;
  23. unsigned int g:1;
  24. unsigned int f:1;
  25. unsigned int r:1;
  26. unsigned int q:1;
  27. unsigned int p:1;
  28. unsigned int d:1;
  29. unsigned int i:1;
  30. };
  31. #ifdef __LP64__
  32. #define pa_psw(task) ((struct pa_psw *) ((char *) (task) + TASK_PT_PSW + 4))
  33. #else
  34. #define pa_psw(task) ((struct pa_psw *) ((char *) (task) + TASK_PT_PSW))
  35. #endif
  36. struct task_struct;
  37. extern struct task_struct *_switch_to(struct task_struct *, struct task_struct *);
  38. #define switch_to(prev, next, last) do { \
  39. (last) = _switch_to(prev, next); \
  40. } while(0)
  41. /*
  42. * On SMP systems, when the scheduler does migration-cost autodetection,
  43. * it needs a way to flush as much of the CPU's caches as possible.
  44. *
  45. * TODO: fill this in!
  46. */
  47. static inline void sched_cacheflush(void)
  48. {
  49. }
  50. /* interrupt control */
  51. #define local_save_flags(x) __asm__ __volatile__("ssm 0, %0" : "=r" (x) : : "memory")
  52. #define local_irq_disable() __asm__ __volatile__("rsm %0,%%r0\n" : : "i" (PSW_I) : "memory" )
  53. #define local_irq_enable() __asm__ __volatile__("ssm %0,%%r0\n" : : "i" (PSW_I) : "memory" )
  54. #define local_irq_save(x) \
  55. __asm__ __volatile__("rsm %1,%0" : "=r" (x) :"i" (PSW_I) : "memory" )
  56. #define local_irq_restore(x) \
  57. __asm__ __volatile__("mtsm %0" : : "r" (x) : "memory" )
  58. #define irqs_disabled() \
  59. ({ \
  60. unsigned long flags; \
  61. local_save_flags(flags); \
  62. (flags & PSW_I) == 0; \
  63. })
  64. #define mfctl(reg) ({ \
  65. unsigned long cr; \
  66. __asm__ __volatile__( \
  67. "mfctl " #reg ",%0" : \
  68. "=r" (cr) \
  69. ); \
  70. cr; \
  71. })
  72. #define mtctl(gr, cr) \
  73. __asm__ __volatile__("mtctl %0,%1" \
  74. : /* no outputs */ \
  75. : "r" (gr), "i" (cr) : "memory")
  76. /* these are here to de-mystefy the calling code, and to provide hooks */
  77. /* which I needed for debugging EIEM problems -PB */
  78. #define get_eiem() mfctl(15)
  79. static inline void set_eiem(unsigned long val)
  80. {
  81. mtctl(val, 15);
  82. }
  83. #define mfsp(reg) ({ \
  84. unsigned long cr; \
  85. __asm__ __volatile__( \
  86. "mfsp " #reg ",%0" : \
  87. "=r" (cr) \
  88. ); \
  89. cr; \
  90. })
  91. #define mtsp(gr, cr) \
  92. __asm__ __volatile__("mtsp %0,%1" \
  93. : /* no outputs */ \
  94. : "r" (gr), "i" (cr) : "memory")
  95. /*
  96. ** This is simply the barrier() macro from linux/kernel.h but when serial.c
  97. ** uses tqueue.h uses smp_mb() defined using barrier(), linux/kernel.h
  98. ** hasn't yet been included yet so it fails, thus repeating the macro here.
  99. **
  100. ** PA-RISC architecture allows for weakly ordered memory accesses although
  101. ** none of the processors use it. There is a strong ordered bit that is
  102. ** set in the O-bit of the page directory entry. Operating systems that
  103. ** can not tolerate out of order accesses should set this bit when mapping
  104. ** pages. The O-bit of the PSW should also be set to 1 (I don't believe any
  105. ** of the processor implemented the PSW O-bit). The PCX-W ERS states that
  106. ** the TLB O-bit is not implemented so the page directory does not need to
  107. ** have the O-bit set when mapping pages (section 3.1). This section also
  108. ** states that the PSW Y, Z, G, and O bits are not implemented.
  109. ** So it looks like nothing needs to be done for parisc-linux (yet).
  110. ** (thanks to chada for the above comment -ggg)
  111. **
  112. ** The __asm__ op below simple prevents gcc/ld from reordering
  113. ** instructions across the mb() "call".
  114. */
  115. #define mb() __asm__ __volatile__("":::"memory") /* barrier() */
  116. #define rmb() mb()
  117. #define wmb() mb()
  118. #define smp_mb() mb()
  119. #define smp_rmb() mb()
  120. #define smp_wmb() mb()
  121. #define smp_read_barrier_depends() do { } while(0)
  122. #define read_barrier_depends() do { } while(0)
  123. #define set_mb(var, value) do { var = value; mb(); } while (0)
  124. #ifndef CONFIG_PA20
  125. /* Because kmalloc only guarantees 8-byte alignment for kmalloc'd data,
  126. and GCC only guarantees 8-byte alignment for stack locals, we can't
  127. be assured of 16-byte alignment for atomic lock data even if we
  128. specify "__attribute ((aligned(16)))" in the type declaration. So,
  129. we use a struct containing an array of four ints for the atomic lock
  130. type and dynamically select the 16-byte aligned int from the array
  131. for the semaphore. */
  132. #define __PA_LDCW_ALIGNMENT 16
  133. #define __ldcw_align(a) ({ \
  134. unsigned long __ret = (unsigned long) &(a)->lock[0]; \
  135. __ret = (__ret + __PA_LDCW_ALIGNMENT - 1) \
  136. & ~(__PA_LDCW_ALIGNMENT - 1); \
  137. (volatile unsigned int *) __ret; \
  138. })
  139. #define __LDCW "ldcw"
  140. #else /*CONFIG_PA20*/
  141. /* From: "Jim Hull" <jim.hull of hp.com>
  142. I've attached a summary of the change, but basically, for PA 2.0, as
  143. long as the ",CO" (coherent operation) completer is specified, then the
  144. 16-byte alignment requirement for ldcw and ldcd is relaxed, and instead
  145. they only require "natural" alignment (4-byte for ldcw, 8-byte for
  146. ldcd). */
  147. #define __PA_LDCW_ALIGNMENT 4
  148. #define __ldcw_align(a) ((volatile unsigned int *)a)
  149. #define __LDCW "ldcw,co"
  150. #endif /*!CONFIG_PA20*/
  151. /* LDCW, the only atomic read-write operation PA-RISC has. *sigh*. */
  152. #define __ldcw(a) ({ \
  153. unsigned __ret; \
  154. __asm__ __volatile__(__LDCW " 0(%1),%0" \
  155. : "=r" (__ret) : "r" (a)); \
  156. __ret; \
  157. })
  158. #ifdef CONFIG_SMP
  159. # define __lock_aligned __attribute__((__section__(".data.lock_aligned")))
  160. #endif
  161. #define KERNEL_START (0x10100000 - 0x1000)
  162. #define arch_align_stack(x) (x)
  163. #endif