spu_csa.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. /*
  2. * spu_csa.h: Definitions for SPU context save area (CSA).
  3. *
  4. * (C) Copyright IBM 2005
  5. *
  6. * Author: Mark Nutter <mnutter@us.ibm.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2, or (at your option)
  11. * any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. */
  22. #ifndef _SPU_CSA_H_
  23. #define _SPU_CSA_H_
  24. #ifdef __KERNEL__
  25. /*
  26. * Total number of 128-bit registers.
  27. */
  28. #define NR_SPU_GPRS 128
  29. #define NR_SPU_SPRS 9
  30. #define NR_SPU_REGS_PAD 7
  31. #define NR_SPU_SPILL_REGS 144 /* GPRS + SPRS + PAD */
  32. #define SIZEOF_SPU_SPILL_REGS NR_SPU_SPILL_REGS * 16
  33. #define SPU_SAVE_COMPLETE 0x3FFB
  34. #define SPU_RESTORE_COMPLETE 0x3FFC
  35. /*
  36. * Definitions for various 'stopped' status conditions,
  37. * to be recreated during context restore.
  38. */
  39. #define SPU_STOPPED_STATUS_P 1
  40. #define SPU_STOPPED_STATUS_I 2
  41. #define SPU_STOPPED_STATUS_H 3
  42. #define SPU_STOPPED_STATUS_S 4
  43. #define SPU_STOPPED_STATUS_S_I 5
  44. #define SPU_STOPPED_STATUS_S_P 6
  45. #define SPU_STOPPED_STATUS_P_H 7
  46. #define SPU_STOPPED_STATUS_P_I 8
  47. #define SPU_STOPPED_STATUS_R 9
  48. /*
  49. * Definitions for software decrementer status flag.
  50. */
  51. #define SPU_DECR_STATUS_RUNNING 0x1
  52. #define SPU_DECR_STATUS_WRAPPED 0x2
  53. #ifndef __ASSEMBLY__
  54. /**
  55. * spu_reg128 - generic 128-bit register definition.
  56. */
  57. struct spu_reg128 {
  58. u32 slot[4];
  59. };
  60. /**
  61. * struct spu_lscsa - Local Store Context Save Area.
  62. * @gprs: Array of saved registers.
  63. * @fpcr: Saved floating point status control register.
  64. * @decr: Saved decrementer value.
  65. * @decr_status: Indicates software decrementer status flags.
  66. * @ppu_mb: Saved PPU mailbox data.
  67. * @ppuint_mb: Saved PPU interrupting mailbox data.
  68. * @tag_mask: Saved tag group mask.
  69. * @event_mask: Saved event mask.
  70. * @srr0: Saved SRR0.
  71. * @stopped_status: Conditions to be recreated by restore.
  72. * @ls: Saved contents of Local Storage Area.
  73. *
  74. * The LSCSA represents state that is primarily saved and
  75. * restored by SPU-side code.
  76. */
  77. struct spu_lscsa {
  78. struct spu_reg128 gprs[128];
  79. struct spu_reg128 fpcr;
  80. struct spu_reg128 decr;
  81. struct spu_reg128 decr_status;
  82. struct spu_reg128 ppu_mb;
  83. struct spu_reg128 ppuint_mb;
  84. struct spu_reg128 tag_mask;
  85. struct spu_reg128 event_mask;
  86. struct spu_reg128 srr0;
  87. struct spu_reg128 stopped_status;
  88. /*
  89. * 'ls' must be page-aligned on all configurations.
  90. * Since we don't want to rely on having the spu-gcc
  91. * installed to build the kernel and this structure
  92. * is used in the SPU-side code, make it 64k-page
  93. * aligned for now.
  94. */
  95. unsigned char ls[LS_SIZE] __attribute__((aligned(65536)));
  96. };
  97. #ifndef __SPU__
  98. /*
  99. * struct spu_problem_collapsed - condensed problem state area, w/o pads.
  100. */
  101. struct spu_problem_collapsed {
  102. u64 spc_mssync_RW;
  103. u32 mfc_lsa_W;
  104. u32 unused_pad0;
  105. u64 mfc_ea_W;
  106. union mfc_tag_size_class_cmd mfc_union_W;
  107. u32 dma_qstatus_R;
  108. u32 dma_querytype_RW;
  109. u32 dma_querymask_RW;
  110. u32 dma_tagstatus_R;
  111. u32 pu_mb_R;
  112. u32 spu_mb_W;
  113. u32 mb_stat_R;
  114. u32 spu_runcntl_RW;
  115. u32 spu_status_R;
  116. u32 spu_spc_R;
  117. u32 spu_npc_RW;
  118. u32 signal_notify1;
  119. u32 signal_notify2;
  120. u32 unused_pad1;
  121. };
  122. /*
  123. * struct spu_priv1_collapsed - condensed privileged 1 area, w/o pads.
  124. */
  125. struct spu_priv1_collapsed {
  126. u64 mfc_sr1_RW;
  127. u64 mfc_lpid_RW;
  128. u64 spu_idr_RW;
  129. u64 mfc_vr_RO;
  130. u64 spu_vr_RO;
  131. u64 int_mask_class0_RW;
  132. u64 int_mask_class1_RW;
  133. u64 int_mask_class2_RW;
  134. u64 int_stat_class0_RW;
  135. u64 int_stat_class1_RW;
  136. u64 int_stat_class2_RW;
  137. u64 int_route_RW;
  138. u64 mfc_atomic_flush_RW;
  139. u64 resource_allocation_groupID_RW;
  140. u64 resource_allocation_enable_RW;
  141. u64 mfc_fir_R;
  142. u64 mfc_fir_status_or_W;
  143. u64 mfc_fir_status_and_W;
  144. u64 mfc_fir_mask_R;
  145. u64 mfc_fir_mask_or_W;
  146. u64 mfc_fir_mask_and_W;
  147. u64 mfc_fir_chkstp_enable_RW;
  148. u64 smf_sbi_signal_sel;
  149. u64 smf_ato_signal_sel;
  150. u64 tlb_index_hint_RO;
  151. u64 tlb_index_W;
  152. u64 tlb_vpn_RW;
  153. u64 tlb_rpn_RW;
  154. u64 tlb_invalidate_entry_W;
  155. u64 tlb_invalidate_all_W;
  156. u64 smm_hid;
  157. u64 mfc_accr_RW;
  158. u64 mfc_dsisr_RW;
  159. u64 mfc_dar_RW;
  160. u64 rmt_index_RW;
  161. u64 rmt_data1_RW;
  162. u64 mfc_dsir_R;
  163. u64 mfc_lsacr_RW;
  164. u64 mfc_lscrr_R;
  165. u64 mfc_tclass_id_RW;
  166. u64 mfc_rm_boundary;
  167. u64 smf_dma_signal_sel;
  168. u64 smm_signal_sel;
  169. u64 mfc_cer_R;
  170. u64 pu_ecc_cntl_RW;
  171. u64 pu_ecc_stat_RW;
  172. u64 spu_ecc_addr_RW;
  173. u64 spu_err_mask_RW;
  174. u64 spu_trig0_sel;
  175. u64 spu_trig1_sel;
  176. u64 spu_trig2_sel;
  177. u64 spu_trig3_sel;
  178. u64 spu_trace_sel;
  179. u64 spu_event0_sel;
  180. u64 spu_event1_sel;
  181. u64 spu_event2_sel;
  182. u64 spu_event3_sel;
  183. u64 spu_trace_cntl;
  184. };
  185. /*
  186. * struct spu_priv2_collapsed - condensed privileged 2 area, w/o pads.
  187. */
  188. struct spu_priv2_collapsed {
  189. u64 slb_index_W;
  190. u64 slb_esid_RW;
  191. u64 slb_vsid_RW;
  192. u64 slb_invalidate_entry_W;
  193. u64 slb_invalidate_all_W;
  194. struct mfc_cq_sr spuq[16];
  195. struct mfc_cq_sr puq[8];
  196. u64 mfc_control_RW;
  197. u64 puint_mb_R;
  198. u64 spu_privcntl_RW;
  199. u64 spu_lslr_RW;
  200. u64 spu_chnlcntptr_RW;
  201. u64 spu_chnlcnt_RW;
  202. u64 spu_chnldata_RW;
  203. u64 spu_cfg_RW;
  204. u64 spu_tag_status_query_RW;
  205. u64 spu_cmd_buf1_RW;
  206. u64 spu_cmd_buf2_RW;
  207. u64 spu_atomic_status_RW;
  208. };
  209. /**
  210. * struct spu_state
  211. * @lscsa: Local Store Context Save Area.
  212. * @prob: Collapsed Problem State Area, w/o pads.
  213. * @priv1: Collapsed Privileged 1 Area, w/o pads.
  214. * @priv2: Collapsed Privileged 2 Area, w/o pads.
  215. * @spu_chnlcnt_RW: Array of saved channel counts.
  216. * @spu_chnldata_RW: Array of saved channel data.
  217. * @suspend_time: Time stamp when decrementer disabled.
  218. *
  219. * Structure representing the whole of the SPU
  220. * context save area (CSA). This struct contains
  221. * all of the state necessary to suspend and then
  222. * later optionally resume execution of an SPU
  223. * context.
  224. *
  225. * The @lscsa region is by far the largest, and is
  226. * allocated separately so that it may either be
  227. * pinned or mapped to/from application memory, as
  228. * appropriate for the OS environment.
  229. */
  230. struct spu_state {
  231. struct spu_lscsa *lscsa;
  232. struct spu_problem_collapsed prob;
  233. struct spu_priv1_collapsed priv1;
  234. struct spu_priv2_collapsed priv2;
  235. u64 spu_chnlcnt_RW[32];
  236. u64 spu_chnldata_RW[32];
  237. u32 spu_mailbox_data[4];
  238. u32 pu_mailbox_data[1];
  239. u64 class_0_dar, class_0_pending;
  240. u64 class_1_dar, class_1_dsisr;
  241. unsigned long suspend_time;
  242. spinlock_t register_lock;
  243. };
  244. #endif /* !__SPU__ */
  245. #endif /* __KERNEL__ */
  246. #endif /* !__ASSEMBLY__ */
  247. #endif /* _SPU_CSA_H_ */