uv_bau.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * SGI UV Broadcast Assist Unit definitions
  7. *
  8. * Copyright (C) 2008 Silicon Graphics, Inc. All rights reserved.
  9. */
  10. #ifndef _ASM_X86_UV_UV_BAU_H
  11. #define _ASM_X86_UV_UV_BAU_H
  12. #include <linux/bitmap.h>
  13. #define BITSPERBYTE 8
  14. /*
  15. * Broadcast Assist Unit messaging structures
  16. *
  17. * Selective Broadcast activations are induced by software action
  18. * specifying a particular 8-descriptor "set" via a 6-bit index written
  19. * to an MMR.
  20. * Thus there are 64 unique 512-byte sets of SB descriptors - one set for
  21. * each 6-bit index value. These descriptor sets are mapped in sequence
  22. * starting with set 0 located at the address specified in the
  23. * BAU_SB_DESCRIPTOR_BASE register, set 1 is located at BASE + 512,
  24. * set 2 is at BASE + 2*512, set 3 at BASE + 3*512, and so on.
  25. *
  26. * We will use 31 sets, one for sending BAU messages from each of the 32
  27. * cpu's on the node.
  28. *
  29. * TLB shootdown will use the first of the 8 descriptors of each set.
  30. * Each of the descriptors is 64 bytes in size (8*64 = 512 bytes in a set).
  31. */
  32. #define UV_ITEMS_PER_DESCRIPTOR 8
  33. #define UV_CPUS_PER_ACT_STATUS 32
  34. #define UV_ACT_STATUS_MASK 0x3
  35. #define UV_ACT_STATUS_SIZE 2
  36. #define UV_ACTIVATION_DESCRIPTOR_SIZE 32
  37. #define UV_DISTRIBUTION_SIZE 256
  38. #define UV_SW_ACK_NPENDING 8
  39. #define UV_NET_ENDPOINT_INTD 0x38
  40. #define UV_DESC_BASE_PNODE_SHIFT 49
  41. #define UV_PAYLOADQ_PNODE_SHIFT 49
  42. #define UV_PTC_BASENAME "sgi_uv/ptc_statistics"
  43. #define uv_physnodeaddr(x) ((__pa((unsigned long)(x)) & uv_mmask))
  44. /*
  45. * bits in UVH_LB_BAU_SB_ACTIVATION_STATUS_0/1
  46. */
  47. #define DESC_STATUS_IDLE 0
  48. #define DESC_STATUS_ACTIVE 1
  49. #define DESC_STATUS_DESTINATION_TIMEOUT 2
  50. #define DESC_STATUS_SOURCE_TIMEOUT 3
  51. /*
  52. * source side threshholds at which message retries print a warning
  53. */
  54. #define SOURCE_TIMEOUT_LIMIT 20
  55. #define DESTINATION_TIMEOUT_LIMIT 20
  56. /*
  57. * number of entries in the destination side payload queue
  58. */
  59. #define DEST_Q_SIZE 17
  60. /*
  61. * number of destination side software ack resources
  62. */
  63. #define DEST_NUM_RESOURCES 8
  64. #define MAX_CPUS_PER_NODE 32
  65. /*
  66. * completion statuses for sending a TLB flush message
  67. */
  68. #define FLUSH_RETRY 1
  69. #define FLUSH_GIVEUP 2
  70. #define FLUSH_COMPLETE 3
  71. /*
  72. * Distribution: 32 bytes (256 bits) (bytes 0-0x1f of descriptor)
  73. * If the 'multilevel' flag in the header portion of the descriptor
  74. * has been set to 0, then endpoint multi-unicast mode is selected.
  75. * The distribution specification (32 bytes) is interpreted as a 256-bit
  76. * distribution vector. Adjacent bits correspond to consecutive even numbered
  77. * nodeIDs. The result of adding the index of a given bit to the 15-bit
  78. * 'base_dest_nodeid' field of the header corresponds to the
  79. * destination nodeID associated with that specified bit.
  80. */
  81. struct bau_target_nodemask {
  82. unsigned long bits[BITS_TO_LONGS(256)];
  83. };
  84. /*
  85. * mask of cpu's on a node
  86. * (during initialization we need to check that unsigned long has
  87. * enough bits for max. cpu's per node)
  88. */
  89. struct bau_local_cpumask {
  90. unsigned long bits;
  91. };
  92. /*
  93. * Payload: 16 bytes (128 bits) (bytes 0x20-0x2f of descriptor)
  94. * only 12 bytes (96 bits) of the payload area are usable.
  95. * An additional 3 bytes (bits 27:4) of the header address are carried
  96. * to the next bytes of the destination payload queue.
  97. * And an additional 2 bytes of the header Suppl_A field are also
  98. * carried to the destination payload queue.
  99. * But the first byte of the Suppl_A becomes bits 127:120 (the 16th byte)
  100. * of the destination payload queue, which is written by the hardware
  101. * with the s/w ack resource bit vector.
  102. * [ effective message contents (16 bytes (128 bits) maximum), not counting
  103. * the s/w ack bit vector ]
  104. */
  105. /*
  106. * The payload is software-defined for INTD transactions
  107. */
  108. struct bau_msg_payload {
  109. unsigned long address; /* signifies a page or all TLB's
  110. of the cpu */
  111. /* 64 bits */
  112. unsigned short sending_cpu; /* filled in by sender */
  113. /* 16 bits */
  114. unsigned short acknowledge_count;/* filled in by destination */
  115. /* 16 bits */
  116. unsigned int reserved1:32; /* not usable */
  117. };
  118. /*
  119. * Message header: 16 bytes (128 bits) (bytes 0x30-0x3f of descriptor)
  120. * see table 4.2.3.0.1 in broacast_assist spec.
  121. */
  122. struct bau_msg_header {
  123. unsigned int dest_subnodeid:6; /* must be zero */
  124. /* bits 5:0 */
  125. unsigned int base_dest_nodeid:15; /* nasid>>1 (pnode) of */
  126. /* bits 20:6 */ /* first bit in node_map */
  127. unsigned int command:8; /* message type */
  128. /* bits 28:21 */
  129. /* 0x38: SN3net EndPoint Message */
  130. unsigned int rsvd_1:3; /* must be zero */
  131. /* bits 31:29 */
  132. /* int will align on 32 bits */
  133. unsigned int rsvd_2:9; /* must be zero */
  134. /* bits 40:32 */
  135. /* Suppl_A is 56-41 */
  136. unsigned int payload_2a:8;/* becomes byte 16 of msg */
  137. /* bits 48:41 */ /* not currently using */
  138. unsigned int payload_2b:8;/* becomes byte 17 of msg */
  139. /* bits 56:49 */ /* not currently using */
  140. /* Address field (96:57) is never used as an
  141. address (these are address bits 42:3) */
  142. unsigned int rsvd_3:1; /* must be zero */
  143. /* bit 57 */
  144. /* address bits 27:4 are payload */
  145. /* these 24 bits become bytes 12-14 of msg */
  146. unsigned int replied_to:1;/* sent as 0 by the source to byte 12 */
  147. /* bit 58 */
  148. unsigned int payload_1a:5;/* not currently used */
  149. /* bits 63:59 */
  150. unsigned int payload_1b:8;/* not currently used */
  151. /* bits 71:64 */
  152. unsigned int payload_1c:8;/* not currently used */
  153. /* bits 79:72 */
  154. unsigned int payload_1d:2;/* not currently used */
  155. /* bits 81:80 */
  156. unsigned int rsvd_4:7; /* must be zero */
  157. /* bits 88:82 */
  158. unsigned int sw_ack_flag:1;/* software acknowledge flag */
  159. /* bit 89 */
  160. /* INTD trasactions at destination are to
  161. wait for software acknowledge */
  162. unsigned int rsvd_5:6; /* must be zero */
  163. /* bits 95:90 */
  164. unsigned int rsvd_6:5; /* must be zero */
  165. /* bits 100:96 */
  166. unsigned int int_both:1;/* if 1, interrupt both sockets on the blade */
  167. /* bit 101*/
  168. unsigned int fairness:3;/* usually zero */
  169. /* bits 104:102 */
  170. unsigned int multilevel:1; /* multi-level multicast format */
  171. /* bit 105 */
  172. /* 0 for TLB: endpoint multi-unicast messages */
  173. unsigned int chaining:1;/* next descriptor is part of this activation*/
  174. /* bit 106 */
  175. unsigned int rsvd_7:21; /* must be zero */
  176. /* bits 127:107 */
  177. };
  178. /*
  179. * The activation descriptor:
  180. * The format of the message to send, plus all accompanying control
  181. * Should be 64 bytes
  182. */
  183. struct bau_desc {
  184. struct bau_target_nodemask distribution;
  185. /*
  186. * message template, consisting of header and payload:
  187. */
  188. struct bau_msg_header header;
  189. struct bau_msg_payload payload;
  190. };
  191. /*
  192. * -payload-- ---------header------
  193. * bytes 0-11 bits 41-56 bits 58-81
  194. * A B (2) C (3)
  195. *
  196. * A/B/C are moved to:
  197. * A C B
  198. * bytes 0-11 bytes 12-14 bytes 16-17 (byte 15 filled in by hw as vector)
  199. * ------------payload queue-----------
  200. */
  201. /*
  202. * The payload queue on the destination side is an array of these.
  203. * With BAU_MISC_CONTROL set for software acknowledge mode, the messages
  204. * are 32 bytes (2 micropackets) (256 bits) in length, but contain only 17
  205. * bytes of usable data, including the sw ack vector in byte 15 (bits 127:120)
  206. * (12 bytes come from bau_msg_payload, 3 from payload_1, 2 from
  207. * sw_ack_vector and payload_2)
  208. * "Enabling Software Acknowledgment mode (see Section 4.3.3 Software
  209. * Acknowledge Processing) also selects 32 byte (17 bytes usable) payload
  210. * operation."
  211. */
  212. struct bau_payload_queue_entry {
  213. unsigned long address; /* signifies a page or all TLB's
  214. of the cpu */
  215. /* 64 bits, bytes 0-7 */
  216. unsigned short sending_cpu; /* cpu that sent the message */
  217. /* 16 bits, bytes 8-9 */
  218. unsigned short acknowledge_count; /* filled in by destination */
  219. /* 16 bits, bytes 10-11 */
  220. unsigned short replied_to:1; /* sent as 0 by the source */
  221. /* 1 bit */
  222. unsigned short unused1:7; /* not currently using */
  223. /* 7 bits: byte 12) */
  224. unsigned char unused2[2]; /* not currently using */
  225. /* bytes 13-14 */
  226. unsigned char sw_ack_vector; /* filled in by the hardware */
  227. /* byte 15 (bits 127:120) */
  228. unsigned char unused4[3]; /* not currently using bytes 17-19 */
  229. /* bytes 17-19 */
  230. int number_of_cpus; /* filled in at destination */
  231. /* 32 bits, bytes 20-23 (aligned) */
  232. unsigned char unused5[8]; /* not using */
  233. /* bytes 24-31 */
  234. };
  235. /*
  236. * one for every slot in the destination payload queue
  237. */
  238. struct bau_msg_status {
  239. struct bau_local_cpumask seen_by; /* map of cpu's */
  240. };
  241. /*
  242. * one for every slot in the destination software ack resources
  243. */
  244. struct bau_sw_ack_status {
  245. struct bau_payload_queue_entry *msg; /* associated message */
  246. int watcher; /* cpu monitoring, or -1 */
  247. };
  248. /*
  249. * one on every node and per-cpu; to locate the software tables
  250. */
  251. struct bau_control {
  252. struct bau_desc *descriptor_base;
  253. struct bau_payload_queue_entry *bau_msg_head;
  254. struct bau_payload_queue_entry *va_queue_first;
  255. struct bau_payload_queue_entry *va_queue_last;
  256. struct bau_msg_status *msg_statuses;
  257. int *watching; /* pointer to array */
  258. };
  259. /*
  260. * This structure is allocated per_cpu for UV TLB shootdown statistics.
  261. */
  262. struct ptc_stats {
  263. unsigned long ptc_i; /* number of IPI-style flushes */
  264. unsigned long requestor; /* number of nodes this cpu sent to */
  265. unsigned long requestee; /* times cpu was remotely requested */
  266. unsigned long alltlb; /* times all tlb's on this cpu were flushed */
  267. unsigned long onetlb; /* times just one tlb on this cpu was flushed */
  268. unsigned long s_retry; /* retries on source side timeouts */
  269. unsigned long d_retry; /* retries on destination side timeouts */
  270. unsigned long sflush; /* cycles spent in uv_flush_tlb_others */
  271. unsigned long dflush; /* cycles spent on destination side */
  272. unsigned long retriesok; /* successes on retries */
  273. unsigned long nomsg; /* interrupts with no message */
  274. unsigned long multmsg; /* interrupts with multiple messages */
  275. unsigned long ntargeted;/* nodes targeted */
  276. };
  277. static inline int bau_node_isset(int node, struct bau_target_nodemask *dstp)
  278. {
  279. return constant_test_bit(node, &dstp->bits[0]);
  280. }
  281. static inline void bau_node_set(int node, struct bau_target_nodemask *dstp)
  282. {
  283. __set_bit(node, &dstp->bits[0]);
  284. }
  285. static inline void bau_nodes_clear(struct bau_target_nodemask *dstp, int nbits)
  286. {
  287. bitmap_zero(&dstp->bits[0], nbits);
  288. }
  289. static inline void bau_cpubits_clear(struct bau_local_cpumask *dstp, int nbits)
  290. {
  291. bitmap_zero(&dstp->bits, nbits);
  292. }
  293. #define cpubit_isset(cpu, bau_local_cpumask) \
  294. test_bit((cpu), (bau_local_cpumask).bits)
  295. extern void uv_bau_message_intr1(void);
  296. extern void uv_bau_timeout_intr1(void);
  297. #endif /* _ASM_X86_UV_UV_BAU_H */