xpc_sn2.c 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400
  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. * Copyright (c) 2008 Silicon Graphics, Inc. All Rights Reserved.
  7. */
  8. /*
  9. * Cross Partition Communication (XPC) sn2-based functions.
  10. *
  11. * Architecture specific implementation of common functions.
  12. *
  13. */
  14. #include <linux/delay.h>
  15. #include <asm/uncached.h>
  16. #include <asm/sn/mspec.h>
  17. #include <asm/sn/sn_sal.h>
  18. #include "xpc.h"
  19. /*
  20. * Define the number of u64s required to represent all the C-brick nasids
  21. * as a bitmap. The cross-partition kernel modules deal only with
  22. * C-brick nasids, thus the need for bitmaps which don't account for
  23. * odd-numbered (non C-brick) nasids.
  24. */
  25. #define XPC_MAX_PHYSNODES_SN2 (MAX_NUMALINK_NODES / 2)
  26. #define XP_NASID_MASK_BYTES_SN2 ((XPC_MAX_PHYSNODES_SN2 + 7) / 8)
  27. #define XP_NASID_MASK_WORDS_SN2 ((XPC_MAX_PHYSNODES_SN2 + 63) / 64)
  28. /*
  29. * Memory for XPC's amo variables is allocated by the MSPEC driver. These
  30. * pages are located in the lowest granule. The lowest granule uses 4k pages
  31. * for cached references and an alternate TLB handler to never provide a
  32. * cacheable mapping for the entire region. This will prevent speculative
  33. * reading of cached copies of our lines from being issued which will cause
  34. * a PI FSB Protocol error to be generated by the SHUB. For XPC, we need 64
  35. * amo variables (based on XP_MAX_NPARTITIONS_SN2) to identify the senders of
  36. * NOTIFY IRQs, 128 amo variables (based on XP_NASID_MASK_WORDS_SN2) to identify
  37. * the senders of ACTIVATE IRQs, 1 amo variable to identify which remote
  38. * partitions (i.e., XPCs) consider themselves currently engaged with the
  39. * local XPC and 1 amo variable to request partition deactivation.
  40. */
  41. #define XPC_NOTIFY_IRQ_AMOS_SN2 0
  42. #define XPC_ACTIVATE_IRQ_AMOS_SN2 (XPC_NOTIFY_IRQ_AMOS_SN2 + \
  43. XP_MAX_NPARTITIONS_SN2)
  44. #define XPC_ENGAGED_PARTITIONS_AMO_SN2 (XPC_ACTIVATE_IRQ_AMOS_SN2 + \
  45. XP_NASID_MASK_WORDS_SN2)
  46. #define XPC_DEACTIVATE_REQUEST_AMO_SN2 (XPC_ENGAGED_PARTITIONS_AMO_SN2 + 1)
  47. /*
  48. * Buffer used to store a local copy of portions of a remote partition's
  49. * reserved page (either its header and part_nasids mask, or its vars).
  50. */
  51. static void *xpc_remote_copy_buffer_base_sn2;
  52. static char *xpc_remote_copy_buffer_sn2;
  53. static struct xpc_vars_sn2 *xpc_vars_sn2;
  54. static struct xpc_vars_part_sn2 *xpc_vars_part_sn2;
  55. static int
  56. xpc_setup_partitions_sn_sn2(void)
  57. {
  58. /* nothing needs to be done */
  59. return 0;
  60. }
  61. /* SH_IPI_ACCESS shub register value on startup */
  62. static u64 xpc_sh1_IPI_access_sn2;
  63. static u64 xpc_sh2_IPI_access0_sn2;
  64. static u64 xpc_sh2_IPI_access1_sn2;
  65. static u64 xpc_sh2_IPI_access2_sn2;
  66. static u64 xpc_sh2_IPI_access3_sn2;
  67. /*
  68. * Change protections to allow IPI operations.
  69. */
  70. static void
  71. xpc_allow_IPI_ops_sn2(void)
  72. {
  73. int node;
  74. int nasid;
  75. /* !!! The following should get moved into SAL. */
  76. if (is_shub2()) {
  77. xpc_sh2_IPI_access0_sn2 =
  78. (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS0));
  79. xpc_sh2_IPI_access1_sn2 =
  80. (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS1));
  81. xpc_sh2_IPI_access2_sn2 =
  82. (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS2));
  83. xpc_sh2_IPI_access3_sn2 =
  84. (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS3));
  85. for_each_online_node(node) {
  86. nasid = cnodeid_to_nasid(node);
  87. HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS0),
  88. -1UL);
  89. HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS1),
  90. -1UL);
  91. HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS2),
  92. -1UL);
  93. HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS3),
  94. -1UL);
  95. }
  96. } else {
  97. xpc_sh1_IPI_access_sn2 =
  98. (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH1_IPI_ACCESS));
  99. for_each_online_node(node) {
  100. nasid = cnodeid_to_nasid(node);
  101. HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH1_IPI_ACCESS),
  102. -1UL);
  103. }
  104. }
  105. }
  106. /*
  107. * Restrict protections to disallow IPI operations.
  108. */
  109. static void
  110. xpc_disallow_IPI_ops_sn2(void)
  111. {
  112. int node;
  113. int nasid;
  114. /* !!! The following should get moved into SAL. */
  115. if (is_shub2()) {
  116. for_each_online_node(node) {
  117. nasid = cnodeid_to_nasid(node);
  118. HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS0),
  119. xpc_sh2_IPI_access0_sn2);
  120. HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS1),
  121. xpc_sh2_IPI_access1_sn2);
  122. HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS2),
  123. xpc_sh2_IPI_access2_sn2);
  124. HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH2_IPI_ACCESS3),
  125. xpc_sh2_IPI_access3_sn2);
  126. }
  127. } else {
  128. for_each_online_node(node) {
  129. nasid = cnodeid_to_nasid(node);
  130. HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid, SH1_IPI_ACCESS),
  131. xpc_sh1_IPI_access_sn2);
  132. }
  133. }
  134. }
  135. /*
  136. * The following set of functions are used for the sending and receiving of
  137. * IRQs (also known as IPIs). There are two flavors of IRQs, one that is
  138. * associated with partition activity (SGI_XPC_ACTIVATE) and the other that
  139. * is associated with channel activity (SGI_XPC_NOTIFY).
  140. */
  141. static u64
  142. xpc_receive_IRQ_amo_sn2(struct amo *amo)
  143. {
  144. return FETCHOP_LOAD_OP(TO_AMO((u64)&amo->variable), FETCHOP_CLEAR);
  145. }
  146. static enum xp_retval
  147. xpc_send_IRQ_sn2(struct amo *amo, u64 flag, int nasid, int phys_cpuid,
  148. int vector)
  149. {
  150. int ret = 0;
  151. unsigned long irq_flags;
  152. local_irq_save(irq_flags);
  153. FETCHOP_STORE_OP(TO_AMO((u64)&amo->variable), FETCHOP_OR, flag);
  154. sn_send_IPI_phys(nasid, phys_cpuid, vector, 0);
  155. /*
  156. * We must always use the nofault function regardless of whether we
  157. * are on a Shub 1.1 system or a Shub 1.2 slice 0xc processor. If we
  158. * didn't, we'd never know that the other partition is down and would
  159. * keep sending IRQs and amos to it until the heartbeat times out.
  160. */
  161. ret = xp_nofault_PIOR((u64 *)GLOBAL_MMR_ADDR(NASID_GET(&amo->variable),
  162. xp_nofault_PIOR_target));
  163. local_irq_restore(irq_flags);
  164. return (ret == 0) ? xpSuccess : xpPioReadError;
  165. }
  166. static struct amo *
  167. xpc_init_IRQ_amo_sn2(int index)
  168. {
  169. struct amo *amo = xpc_vars_sn2->amos_page + index;
  170. (void)xpc_receive_IRQ_amo_sn2(amo); /* clear amo variable */
  171. return amo;
  172. }
  173. /*
  174. * Functions associated with SGI_XPC_ACTIVATE IRQ.
  175. */
  176. /*
  177. * Notify the heartbeat check thread that an activate IRQ has been received.
  178. */
  179. static irqreturn_t
  180. xpc_handle_activate_IRQ_sn2(int irq, void *dev_id)
  181. {
  182. unsigned long irq_flags;
  183. spin_lock_irqsave(&xpc_activate_IRQ_rcvd_lock, irq_flags);
  184. xpc_activate_IRQ_rcvd++;
  185. spin_unlock_irqrestore(&xpc_activate_IRQ_rcvd_lock, irq_flags);
  186. wake_up_interruptible(&xpc_activate_IRQ_wq);
  187. return IRQ_HANDLED;
  188. }
  189. /*
  190. * Flag the appropriate amo variable and send an IRQ to the specified node.
  191. */
  192. static void
  193. xpc_send_activate_IRQ_sn2(unsigned long amos_page_pa, int from_nasid,
  194. int to_nasid, int to_phys_cpuid)
  195. {
  196. struct amo *amos = (struct amo *)__va(amos_page_pa +
  197. (XPC_ACTIVATE_IRQ_AMOS_SN2 *
  198. sizeof(struct amo)));
  199. (void)xpc_send_IRQ_sn2(&amos[BIT_WORD(from_nasid / 2)],
  200. BIT_MASK(from_nasid / 2), to_nasid,
  201. to_phys_cpuid, SGI_XPC_ACTIVATE);
  202. }
  203. static void
  204. xpc_send_local_activate_IRQ_sn2(int from_nasid)
  205. {
  206. unsigned long irq_flags;
  207. struct amo *amos = (struct amo *)__va(xpc_vars_sn2->amos_page_pa +
  208. (XPC_ACTIVATE_IRQ_AMOS_SN2 *
  209. sizeof(struct amo)));
  210. /* fake the sending and receipt of an activate IRQ from remote nasid */
  211. FETCHOP_STORE_OP(TO_AMO((u64)&amos[BIT_WORD(from_nasid / 2)].variable),
  212. FETCHOP_OR, BIT_MASK(from_nasid / 2));
  213. spin_lock_irqsave(&xpc_activate_IRQ_rcvd_lock, irq_flags);
  214. xpc_activate_IRQ_rcvd++;
  215. spin_unlock_irqrestore(&xpc_activate_IRQ_rcvd_lock, irq_flags);
  216. wake_up_interruptible(&xpc_activate_IRQ_wq);
  217. }
  218. /*
  219. * Functions associated with SGI_XPC_NOTIFY IRQ.
  220. */
  221. /*
  222. * Check to see if any chctl flags were sent from the specified partition.
  223. */
  224. static void
  225. xpc_check_for_sent_chctl_flags_sn2(struct xpc_partition *part)
  226. {
  227. union xpc_channel_ctl_flags chctl;
  228. unsigned long irq_flags;
  229. chctl.all_flags = xpc_receive_IRQ_amo_sn2(part->sn.sn2.
  230. local_chctl_amo_va);
  231. if (chctl.all_flags == 0)
  232. return;
  233. spin_lock_irqsave(&part->chctl_lock, irq_flags);
  234. part->chctl.all_flags |= chctl.all_flags;
  235. spin_unlock_irqrestore(&part->chctl_lock, irq_flags);
  236. dev_dbg(xpc_chan, "received notify IRQ from partid=%d, chctl.all_flags="
  237. "0x%lx\n", XPC_PARTID(part), chctl.all_flags);
  238. xpc_wakeup_channel_mgr(part);
  239. }
  240. /*
  241. * Handle the receipt of a SGI_XPC_NOTIFY IRQ by seeing whether the specified
  242. * partition actually sent it. Since SGI_XPC_NOTIFY IRQs may be shared by more
  243. * than one partition, we use an amo structure per partition to indicate
  244. * whether a partition has sent an IRQ or not. If it has, then wake up the
  245. * associated kthread to handle it.
  246. *
  247. * All SGI_XPC_NOTIFY IRQs received by XPC are the result of IRQs sent by XPC
  248. * running on other partitions.
  249. *
  250. * Noteworthy Arguments:
  251. *
  252. * irq - Interrupt ReQuest number. NOT USED.
  253. *
  254. * dev_id - partid of IRQ's potential sender.
  255. */
  256. static irqreturn_t
  257. xpc_handle_notify_IRQ_sn2(int irq, void *dev_id)
  258. {
  259. short partid = (short)(u64)dev_id;
  260. struct xpc_partition *part = &xpc_partitions[partid];
  261. DBUG_ON(partid < 0 || partid >= XP_MAX_NPARTITIONS_SN2);
  262. if (xpc_part_ref(part)) {
  263. xpc_check_for_sent_chctl_flags_sn2(part);
  264. xpc_part_deref(part);
  265. }
  266. return IRQ_HANDLED;
  267. }
  268. /*
  269. * Check to see if xpc_handle_notify_IRQ_sn2() dropped any IRQs on the floor
  270. * because the write to their associated amo variable completed after the IRQ
  271. * was received.
  272. */
  273. static void
  274. xpc_check_for_dropped_notify_IRQ_sn2(struct xpc_partition *part)
  275. {
  276. struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2;
  277. if (xpc_part_ref(part)) {
  278. xpc_check_for_sent_chctl_flags_sn2(part);
  279. part_sn2->dropped_notify_IRQ_timer.expires = jiffies +
  280. XPC_DROPPED_NOTIFY_IRQ_WAIT_INTERVAL;
  281. add_timer(&part_sn2->dropped_notify_IRQ_timer);
  282. xpc_part_deref(part);
  283. }
  284. }
  285. /*
  286. * Send a notify IRQ to the remote partition that is associated with the
  287. * specified channel.
  288. */
  289. static void
  290. xpc_send_notify_IRQ_sn2(struct xpc_channel *ch, u8 chctl_flag,
  291. char *chctl_flag_string, unsigned long *irq_flags)
  292. {
  293. struct xpc_partition *part = &xpc_partitions[ch->partid];
  294. struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2;
  295. union xpc_channel_ctl_flags chctl = { 0 };
  296. enum xp_retval ret;
  297. if (likely(part->act_state != XPC_P_AS_DEACTIVATING)) {
  298. chctl.flags[ch->number] = chctl_flag;
  299. ret = xpc_send_IRQ_sn2(part_sn2->remote_chctl_amo_va,
  300. chctl.all_flags,
  301. part_sn2->notify_IRQ_nasid,
  302. part_sn2->notify_IRQ_phys_cpuid,
  303. SGI_XPC_NOTIFY);
  304. dev_dbg(xpc_chan, "%s sent to partid=%d, channel=%d, ret=%d\n",
  305. chctl_flag_string, ch->partid, ch->number, ret);
  306. if (unlikely(ret != xpSuccess)) {
  307. if (irq_flags != NULL)
  308. spin_unlock_irqrestore(&ch->lock, *irq_flags);
  309. XPC_DEACTIVATE_PARTITION(part, ret);
  310. if (irq_flags != NULL)
  311. spin_lock_irqsave(&ch->lock, *irq_flags);
  312. }
  313. }
  314. }
  315. #define XPC_SEND_NOTIFY_IRQ_SN2(_ch, _ipi_f, _irq_f) \
  316. xpc_send_notify_IRQ_sn2(_ch, _ipi_f, #_ipi_f, _irq_f)
  317. /*
  318. * Make it look like the remote partition, which is associated with the
  319. * specified channel, sent us a notify IRQ. This faked IRQ will be handled
  320. * by xpc_check_for_dropped_notify_IRQ_sn2().
  321. */
  322. static void
  323. xpc_send_local_notify_IRQ_sn2(struct xpc_channel *ch, u8 chctl_flag,
  324. char *chctl_flag_string)
  325. {
  326. struct xpc_partition *part = &xpc_partitions[ch->partid];
  327. union xpc_channel_ctl_flags chctl = { 0 };
  328. chctl.flags[ch->number] = chctl_flag;
  329. FETCHOP_STORE_OP(TO_AMO((u64)&part->sn.sn2.local_chctl_amo_va->
  330. variable), FETCHOP_OR, chctl.all_flags);
  331. dev_dbg(xpc_chan, "%s sent local from partid=%d, channel=%d\n",
  332. chctl_flag_string, ch->partid, ch->number);
  333. }
  334. #define XPC_SEND_LOCAL_NOTIFY_IRQ_SN2(_ch, _ipi_f) \
  335. xpc_send_local_notify_IRQ_sn2(_ch, _ipi_f, #_ipi_f)
  336. static void
  337. xpc_send_chctl_closerequest_sn2(struct xpc_channel *ch,
  338. unsigned long *irq_flags)
  339. {
  340. struct xpc_openclose_args *args = ch->sn.sn2.local_openclose_args;
  341. args->reason = ch->reason;
  342. XPC_SEND_NOTIFY_IRQ_SN2(ch, XPC_CHCTL_CLOSEREQUEST, irq_flags);
  343. }
  344. static void
  345. xpc_send_chctl_closereply_sn2(struct xpc_channel *ch, unsigned long *irq_flags)
  346. {
  347. XPC_SEND_NOTIFY_IRQ_SN2(ch, XPC_CHCTL_CLOSEREPLY, irq_flags);
  348. }
  349. static void
  350. xpc_send_chctl_openrequest_sn2(struct xpc_channel *ch, unsigned long *irq_flags)
  351. {
  352. struct xpc_openclose_args *args = ch->sn.sn2.local_openclose_args;
  353. args->entry_size = ch->entry_size;
  354. args->local_nentries = ch->local_nentries;
  355. XPC_SEND_NOTIFY_IRQ_SN2(ch, XPC_CHCTL_OPENREQUEST, irq_flags);
  356. }
  357. static void
  358. xpc_send_chctl_openreply_sn2(struct xpc_channel *ch, unsigned long *irq_flags)
  359. {
  360. struct xpc_openclose_args *args = ch->sn.sn2.local_openclose_args;
  361. args->remote_nentries = ch->remote_nentries;
  362. args->local_nentries = ch->local_nentries;
  363. args->local_msgqueue_pa = xp_pa(ch->sn.sn2.local_msgqueue);
  364. XPC_SEND_NOTIFY_IRQ_SN2(ch, XPC_CHCTL_OPENREPLY, irq_flags);
  365. }
  366. static void
  367. xpc_send_chctl_msgrequest_sn2(struct xpc_channel *ch)
  368. {
  369. XPC_SEND_NOTIFY_IRQ_SN2(ch, XPC_CHCTL_MSGREQUEST, NULL);
  370. }
  371. static void
  372. xpc_send_chctl_local_msgrequest_sn2(struct xpc_channel *ch)
  373. {
  374. XPC_SEND_LOCAL_NOTIFY_IRQ_SN2(ch, XPC_CHCTL_MSGREQUEST);
  375. }
  376. static void
  377. xpc_save_remote_msgqueue_pa_sn2(struct xpc_channel *ch,
  378. unsigned long msgqueue_pa)
  379. {
  380. ch->sn.sn2.remote_msgqueue_pa = msgqueue_pa;
  381. }
  382. /*
  383. * This next set of functions are used to keep track of when a partition is
  384. * potentially engaged in accessing memory belonging to another partition.
  385. */
  386. static void
  387. xpc_indicate_partition_engaged_sn2(struct xpc_partition *part)
  388. {
  389. unsigned long irq_flags;
  390. struct amo *amo = (struct amo *)__va(part->sn.sn2.remote_amos_page_pa +
  391. (XPC_ENGAGED_PARTITIONS_AMO_SN2 *
  392. sizeof(struct amo)));
  393. local_irq_save(irq_flags);
  394. /* set bit corresponding to our partid in remote partition's amo */
  395. FETCHOP_STORE_OP(TO_AMO((u64)&amo->variable), FETCHOP_OR,
  396. BIT(sn_partition_id));
  397. /*
  398. * We must always use the nofault function regardless of whether we
  399. * are on a Shub 1.1 system or a Shub 1.2 slice 0xc processor. If we
  400. * didn't, we'd never know that the other partition is down and would
  401. * keep sending IRQs and amos to it until the heartbeat times out.
  402. */
  403. (void)xp_nofault_PIOR((u64 *)GLOBAL_MMR_ADDR(NASID_GET(&amo->
  404. variable),
  405. xp_nofault_PIOR_target));
  406. local_irq_restore(irq_flags);
  407. }
  408. static void
  409. xpc_indicate_partition_disengaged_sn2(struct xpc_partition *part)
  410. {
  411. struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2;
  412. unsigned long irq_flags;
  413. struct amo *amo = (struct amo *)__va(part_sn2->remote_amos_page_pa +
  414. (XPC_ENGAGED_PARTITIONS_AMO_SN2 *
  415. sizeof(struct amo)));
  416. local_irq_save(irq_flags);
  417. /* clear bit corresponding to our partid in remote partition's amo */
  418. FETCHOP_STORE_OP(TO_AMO((u64)&amo->variable), FETCHOP_AND,
  419. ~BIT(sn_partition_id));
  420. /*
  421. * We must always use the nofault function regardless of whether we
  422. * are on a Shub 1.1 system or a Shub 1.2 slice 0xc processor. If we
  423. * didn't, we'd never know that the other partition is down and would
  424. * keep sending IRQs and amos to it until the heartbeat times out.
  425. */
  426. (void)xp_nofault_PIOR((u64 *)GLOBAL_MMR_ADDR(NASID_GET(&amo->
  427. variable),
  428. xp_nofault_PIOR_target));
  429. local_irq_restore(irq_flags);
  430. /*
  431. * Send activate IRQ to get other side to see that we've cleared our
  432. * bit in their engaged partitions amo.
  433. */
  434. xpc_send_activate_IRQ_sn2(part_sn2->remote_amos_page_pa,
  435. cnodeid_to_nasid(0),
  436. part_sn2->activate_IRQ_nasid,
  437. part_sn2->activate_IRQ_phys_cpuid);
  438. }
  439. static void
  440. xpc_assume_partition_disengaged_sn2(short partid)
  441. {
  442. struct amo *amo = xpc_vars_sn2->amos_page +
  443. XPC_ENGAGED_PARTITIONS_AMO_SN2;
  444. /* clear bit(s) based on partid mask in our partition's amo */
  445. FETCHOP_STORE_OP(TO_AMO((u64)&amo->variable), FETCHOP_AND,
  446. ~BIT(partid));
  447. }
  448. static int
  449. xpc_partition_engaged_sn2(short partid)
  450. {
  451. struct amo *amo = xpc_vars_sn2->amos_page +
  452. XPC_ENGAGED_PARTITIONS_AMO_SN2;
  453. /* our partition's amo variable ANDed with partid mask */
  454. return (FETCHOP_LOAD_OP(TO_AMO((u64)&amo->variable), FETCHOP_LOAD) &
  455. BIT(partid)) != 0;
  456. }
  457. static int
  458. xpc_any_partition_engaged_sn2(void)
  459. {
  460. struct amo *amo = xpc_vars_sn2->amos_page +
  461. XPC_ENGAGED_PARTITIONS_AMO_SN2;
  462. /* our partition's amo variable */
  463. return FETCHOP_LOAD_OP(TO_AMO((u64)&amo->variable), FETCHOP_LOAD) != 0;
  464. }
  465. /* original protection values for each node */
  466. static u64 xpc_prot_vec_sn2[MAX_NUMNODES];
  467. /*
  468. * Change protections to allow amo operations on non-Shub 1.1 systems.
  469. */
  470. static enum xp_retval
  471. xpc_allow_amo_ops_sn2(struct amo *amos_page)
  472. {
  473. enum xp_retval ret = xpSuccess;
  474. /*
  475. * On SHUB 1.1, we cannot call sn_change_memprotect() since the BIST
  476. * collides with memory operations. On those systems we call
  477. * xpc_allow_amo_ops_shub_wars_1_1_sn2() instead.
  478. */
  479. if (!enable_shub_wars_1_1())
  480. ret = xp_expand_memprotect(ia64_tpa((u64)amos_page), PAGE_SIZE);
  481. return ret;
  482. }
  483. /*
  484. * Change protections to allow amo operations on Shub 1.1 systems.
  485. */
  486. static void
  487. xpc_allow_amo_ops_shub_wars_1_1_sn2(void)
  488. {
  489. int node;
  490. int nasid;
  491. if (!enable_shub_wars_1_1())
  492. return;
  493. for_each_online_node(node) {
  494. nasid = cnodeid_to_nasid(node);
  495. /* save current protection values */
  496. xpc_prot_vec_sn2[node] =
  497. (u64)HUB_L((u64 *)GLOBAL_MMR_ADDR(nasid,
  498. SH1_MD_DQLP_MMR_DIR_PRIVEC0));
  499. /* open up everything */
  500. HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid,
  501. SH1_MD_DQLP_MMR_DIR_PRIVEC0),
  502. -1UL);
  503. HUB_S((u64 *)GLOBAL_MMR_ADDR(nasid,
  504. SH1_MD_DQRP_MMR_DIR_PRIVEC0),
  505. -1UL);
  506. }
  507. }
  508. static enum xp_retval
  509. xpc_get_partition_rsvd_page_pa_sn2(void *buf, u64 *cookie, unsigned long *rp_pa,
  510. size_t *len)
  511. {
  512. s64 status;
  513. enum xp_retval ret;
  514. status = sn_partition_reserved_page_pa((u64)buf, cookie, rp_pa, len);
  515. if (status == SALRET_OK)
  516. ret = xpSuccess;
  517. else if (status == SALRET_MORE_PASSES)
  518. ret = xpNeedMoreInfo;
  519. else
  520. ret = xpSalError;
  521. return ret;
  522. }
  523. static int
  524. xpc_setup_rsvd_page_sn_sn2(struct xpc_rsvd_page *rp)
  525. {
  526. struct amo *amos_page;
  527. int i;
  528. int ret;
  529. xpc_vars_sn2 = XPC_RP_VARS(rp);
  530. rp->sn.vars_pa = xp_pa(xpc_vars_sn2);
  531. /* vars_part array follows immediately after vars */
  532. xpc_vars_part_sn2 = (struct xpc_vars_part_sn2 *)((u8 *)XPC_RP_VARS(rp) +
  533. XPC_RP_VARS_SIZE);
  534. /*
  535. * Before clearing xpc_vars_sn2, see if a page of amos had been
  536. * previously allocated. If not we'll need to allocate one and set
  537. * permissions so that cross-partition amos are allowed.
  538. *
  539. * The allocated amo page needs MCA reporting to remain disabled after
  540. * XPC has unloaded. To make this work, we keep a copy of the pointer
  541. * to this page (i.e., amos_page) in the struct xpc_vars_sn2 structure,
  542. * which is pointed to by the reserved page, and re-use that saved copy
  543. * on subsequent loads of XPC. This amo page is never freed, and its
  544. * memory protections are never restricted.
  545. */
  546. amos_page = xpc_vars_sn2->amos_page;
  547. if (amos_page == NULL) {
  548. amos_page = (struct amo *)TO_AMO(uncached_alloc_page(0, 1));
  549. if (amos_page == NULL) {
  550. dev_err(xpc_part, "can't allocate page of amos\n");
  551. return -ENOMEM;
  552. }
  553. /*
  554. * Open up amo-R/W to cpu. This is done on Shub 1.1 systems
  555. * when xpc_allow_amo_ops_shub_wars_1_1_sn2() is called.
  556. */
  557. ret = xpc_allow_amo_ops_sn2(amos_page);
  558. if (ret != xpSuccess) {
  559. dev_err(xpc_part, "can't allow amo operations\n");
  560. uncached_free_page(__IA64_UNCACHED_OFFSET |
  561. TO_PHYS((u64)amos_page), 1);
  562. return -EPERM;
  563. }
  564. }
  565. /* clear xpc_vars_sn2 */
  566. memset(xpc_vars_sn2, 0, sizeof(struct xpc_vars_sn2));
  567. xpc_vars_sn2->version = XPC_V_VERSION;
  568. xpc_vars_sn2->activate_IRQ_nasid = cpuid_to_nasid(0);
  569. xpc_vars_sn2->activate_IRQ_phys_cpuid = cpu_physical_id(0);
  570. xpc_vars_sn2->vars_part_pa = xp_pa(xpc_vars_part_sn2);
  571. xpc_vars_sn2->amos_page_pa = ia64_tpa((u64)amos_page);
  572. xpc_vars_sn2->amos_page = amos_page; /* save for next load of XPC */
  573. /* clear xpc_vars_part_sn2 */
  574. memset((u64 *)xpc_vars_part_sn2, 0, sizeof(struct xpc_vars_part_sn2) *
  575. XP_MAX_NPARTITIONS_SN2);
  576. /* initialize the activate IRQ related amo variables */
  577. for (i = 0; i < xpc_nasid_mask_nlongs; i++)
  578. (void)xpc_init_IRQ_amo_sn2(XPC_ACTIVATE_IRQ_AMOS_SN2 + i);
  579. /* initialize the engaged remote partitions related amo variables */
  580. (void)xpc_init_IRQ_amo_sn2(XPC_ENGAGED_PARTITIONS_AMO_SN2);
  581. (void)xpc_init_IRQ_amo_sn2(XPC_DEACTIVATE_REQUEST_AMO_SN2);
  582. return 0;
  583. }
  584. static void
  585. xpc_increment_heartbeat_sn2(void)
  586. {
  587. xpc_vars_sn2->heartbeat++;
  588. }
  589. static void
  590. xpc_offline_heartbeat_sn2(void)
  591. {
  592. xpc_increment_heartbeat_sn2();
  593. xpc_vars_sn2->heartbeat_offline = 1;
  594. }
  595. static void
  596. xpc_online_heartbeat_sn2(void)
  597. {
  598. xpc_increment_heartbeat_sn2();
  599. xpc_vars_sn2->heartbeat_offline = 0;
  600. }
  601. static void
  602. xpc_heartbeat_init_sn2(void)
  603. {
  604. DBUG_ON(xpc_vars_sn2 == NULL);
  605. bitmap_zero(xpc_vars_sn2->heartbeating_to_mask, XP_MAX_NPARTITIONS_SN2);
  606. xpc_heartbeating_to_mask = &xpc_vars_sn2->heartbeating_to_mask[0];
  607. xpc_online_heartbeat_sn2();
  608. }
  609. static void
  610. xpc_heartbeat_exit_sn2(void)
  611. {
  612. xpc_offline_heartbeat_sn2();
  613. }
  614. static enum xp_retval
  615. xpc_get_remote_heartbeat_sn2(struct xpc_partition *part)
  616. {
  617. struct xpc_vars_sn2 *remote_vars;
  618. enum xp_retval ret;
  619. remote_vars = (struct xpc_vars_sn2 *)xpc_remote_copy_buffer_sn2;
  620. /* pull the remote vars structure that contains the heartbeat */
  621. ret = xp_remote_memcpy(xp_pa(remote_vars),
  622. part->sn.sn2.remote_vars_pa,
  623. XPC_RP_VARS_SIZE);
  624. if (ret != xpSuccess)
  625. return ret;
  626. dev_dbg(xpc_part, "partid=%d, heartbeat=%ld, last_heartbeat=%ld, "
  627. "heartbeat_offline=%ld, HB_mask[0]=0x%lx\n", XPC_PARTID(part),
  628. remote_vars->heartbeat, part->last_heartbeat,
  629. remote_vars->heartbeat_offline,
  630. remote_vars->heartbeating_to_mask[0]);
  631. if ((remote_vars->heartbeat == part->last_heartbeat &&
  632. remote_vars->heartbeat_offline == 0) ||
  633. !xpc_hb_allowed(sn_partition_id,
  634. &remote_vars->heartbeating_to_mask)) {
  635. ret = xpNoHeartbeat;
  636. } else {
  637. part->last_heartbeat = remote_vars->heartbeat;
  638. }
  639. return ret;
  640. }
  641. /*
  642. * Get a copy of the remote partition's XPC variables from the reserved page.
  643. *
  644. * remote_vars points to a buffer that is cacheline aligned for BTE copies and
  645. * assumed to be of size XPC_RP_VARS_SIZE.
  646. */
  647. static enum xp_retval
  648. xpc_get_remote_vars_sn2(unsigned long remote_vars_pa,
  649. struct xpc_vars_sn2 *remote_vars)
  650. {
  651. enum xp_retval ret;
  652. if (remote_vars_pa == 0)
  653. return xpVarsNotSet;
  654. /* pull over the cross partition variables */
  655. ret = xp_remote_memcpy(xp_pa(remote_vars), remote_vars_pa,
  656. XPC_RP_VARS_SIZE);
  657. if (ret != xpSuccess)
  658. return ret;
  659. if (XPC_VERSION_MAJOR(remote_vars->version) !=
  660. XPC_VERSION_MAJOR(XPC_V_VERSION)) {
  661. return xpBadVersion;
  662. }
  663. return xpSuccess;
  664. }
  665. static void
  666. xpc_request_partition_activation_sn2(struct xpc_rsvd_page *remote_rp,
  667. unsigned long remote_rp_pa, int nasid)
  668. {
  669. xpc_send_local_activate_IRQ_sn2(nasid);
  670. }
  671. static void
  672. xpc_request_partition_reactivation_sn2(struct xpc_partition *part)
  673. {
  674. xpc_send_local_activate_IRQ_sn2(part->sn.sn2.activate_IRQ_nasid);
  675. }
  676. static void
  677. xpc_request_partition_deactivation_sn2(struct xpc_partition *part)
  678. {
  679. struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2;
  680. unsigned long irq_flags;
  681. struct amo *amo = (struct amo *)__va(part_sn2->remote_amos_page_pa +
  682. (XPC_DEACTIVATE_REQUEST_AMO_SN2 *
  683. sizeof(struct amo)));
  684. local_irq_save(irq_flags);
  685. /* set bit corresponding to our partid in remote partition's amo */
  686. FETCHOP_STORE_OP(TO_AMO((u64)&amo->variable), FETCHOP_OR,
  687. BIT(sn_partition_id));
  688. /*
  689. * We must always use the nofault function regardless of whether we
  690. * are on a Shub 1.1 system or a Shub 1.2 slice 0xc processor. If we
  691. * didn't, we'd never know that the other partition is down and would
  692. * keep sending IRQs and amos to it until the heartbeat times out.
  693. */
  694. (void)xp_nofault_PIOR((u64 *)GLOBAL_MMR_ADDR(NASID_GET(&amo->
  695. variable),
  696. xp_nofault_PIOR_target));
  697. local_irq_restore(irq_flags);
  698. /*
  699. * Send activate IRQ to get other side to see that we've set our
  700. * bit in their deactivate request amo.
  701. */
  702. xpc_send_activate_IRQ_sn2(part_sn2->remote_amos_page_pa,
  703. cnodeid_to_nasid(0),
  704. part_sn2->activate_IRQ_nasid,
  705. part_sn2->activate_IRQ_phys_cpuid);
  706. }
  707. static void
  708. xpc_cancel_partition_deactivation_request_sn2(struct xpc_partition *part)
  709. {
  710. unsigned long irq_flags;
  711. struct amo *amo = (struct amo *)__va(part->sn.sn2.remote_amos_page_pa +
  712. (XPC_DEACTIVATE_REQUEST_AMO_SN2 *
  713. sizeof(struct amo)));
  714. local_irq_save(irq_flags);
  715. /* clear bit corresponding to our partid in remote partition's amo */
  716. FETCHOP_STORE_OP(TO_AMO((u64)&amo->variable), FETCHOP_AND,
  717. ~BIT(sn_partition_id));
  718. /*
  719. * We must always use the nofault function regardless of whether we
  720. * are on a Shub 1.1 system or a Shub 1.2 slice 0xc processor. If we
  721. * didn't, we'd never know that the other partition is down and would
  722. * keep sending IRQs and amos to it until the heartbeat times out.
  723. */
  724. (void)xp_nofault_PIOR((u64 *)GLOBAL_MMR_ADDR(NASID_GET(&amo->
  725. variable),
  726. xp_nofault_PIOR_target));
  727. local_irq_restore(irq_flags);
  728. }
  729. static int
  730. xpc_partition_deactivation_requested_sn2(short partid)
  731. {
  732. struct amo *amo = xpc_vars_sn2->amos_page +
  733. XPC_DEACTIVATE_REQUEST_AMO_SN2;
  734. /* our partition's amo variable ANDed with partid mask */
  735. return (FETCHOP_LOAD_OP(TO_AMO((u64)&amo->variable), FETCHOP_LOAD) &
  736. BIT(partid)) != 0;
  737. }
  738. /*
  739. * Update the remote partition's info.
  740. */
  741. static void
  742. xpc_update_partition_info_sn2(struct xpc_partition *part, u8 remote_rp_version,
  743. unsigned long *remote_rp_ts_jiffies,
  744. unsigned long remote_rp_pa,
  745. unsigned long remote_vars_pa,
  746. struct xpc_vars_sn2 *remote_vars)
  747. {
  748. struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2;
  749. part->remote_rp_version = remote_rp_version;
  750. dev_dbg(xpc_part, " remote_rp_version = 0x%016x\n",
  751. part->remote_rp_version);
  752. part->remote_rp_ts_jiffies = *remote_rp_ts_jiffies;
  753. dev_dbg(xpc_part, " remote_rp_ts_jiffies = 0x%016lx\n",
  754. part->remote_rp_ts_jiffies);
  755. part->remote_rp_pa = remote_rp_pa;
  756. dev_dbg(xpc_part, " remote_rp_pa = 0x%016lx\n", part->remote_rp_pa);
  757. part_sn2->remote_vars_pa = remote_vars_pa;
  758. dev_dbg(xpc_part, " remote_vars_pa = 0x%016lx\n",
  759. part_sn2->remote_vars_pa);
  760. part->last_heartbeat = remote_vars->heartbeat - 1;
  761. dev_dbg(xpc_part, " last_heartbeat = 0x%016lx\n",
  762. part->last_heartbeat);
  763. part_sn2->remote_vars_part_pa = remote_vars->vars_part_pa;
  764. dev_dbg(xpc_part, " remote_vars_part_pa = 0x%016lx\n",
  765. part_sn2->remote_vars_part_pa);
  766. part_sn2->activate_IRQ_nasid = remote_vars->activate_IRQ_nasid;
  767. dev_dbg(xpc_part, " activate_IRQ_nasid = 0x%x\n",
  768. part_sn2->activate_IRQ_nasid);
  769. part_sn2->activate_IRQ_phys_cpuid =
  770. remote_vars->activate_IRQ_phys_cpuid;
  771. dev_dbg(xpc_part, " activate_IRQ_phys_cpuid = 0x%x\n",
  772. part_sn2->activate_IRQ_phys_cpuid);
  773. part_sn2->remote_amos_page_pa = remote_vars->amos_page_pa;
  774. dev_dbg(xpc_part, " remote_amos_page_pa = 0x%lx\n",
  775. part_sn2->remote_amos_page_pa);
  776. part_sn2->remote_vars_version = remote_vars->version;
  777. dev_dbg(xpc_part, " remote_vars_version = 0x%x\n",
  778. part_sn2->remote_vars_version);
  779. }
  780. /*
  781. * Prior code has determined the nasid which generated a activate IRQ.
  782. * Inspect that nasid to determine if its partition needs to be activated
  783. * or deactivated.
  784. *
  785. * A partition is considered "awaiting activation" if our partition
  786. * flags indicate it is not active and it has a heartbeat. A
  787. * partition is considered "awaiting deactivation" if our partition
  788. * flags indicate it is active but it has no heartbeat or it is not
  789. * sending its heartbeat to us.
  790. *
  791. * To determine the heartbeat, the remote nasid must have a properly
  792. * initialized reserved page.
  793. */
  794. static void
  795. xpc_identify_activate_IRQ_req_sn2(int nasid)
  796. {
  797. struct xpc_rsvd_page *remote_rp;
  798. struct xpc_vars_sn2 *remote_vars;
  799. unsigned long remote_rp_pa;
  800. unsigned long remote_vars_pa;
  801. int remote_rp_version;
  802. int reactivate = 0;
  803. unsigned long remote_rp_ts_jiffies = 0;
  804. short partid;
  805. struct xpc_partition *part;
  806. struct xpc_partition_sn2 *part_sn2;
  807. enum xp_retval ret;
  808. /* pull over the reserved page structure */
  809. remote_rp = (struct xpc_rsvd_page *)xpc_remote_copy_buffer_sn2;
  810. ret = xpc_get_remote_rp(nasid, NULL, remote_rp, &remote_rp_pa);
  811. if (ret != xpSuccess) {
  812. dev_warn(xpc_part, "unable to get reserved page from nasid %d, "
  813. "which sent interrupt, reason=%d\n", nasid, ret);
  814. return;
  815. }
  816. remote_vars_pa = remote_rp->sn.vars_pa;
  817. remote_rp_version = remote_rp->version;
  818. remote_rp_ts_jiffies = remote_rp->ts_jiffies;
  819. partid = remote_rp->SAL_partid;
  820. part = &xpc_partitions[partid];
  821. part_sn2 = &part->sn.sn2;
  822. /* pull over the cross partition variables */
  823. remote_vars = (struct xpc_vars_sn2 *)xpc_remote_copy_buffer_sn2;
  824. ret = xpc_get_remote_vars_sn2(remote_vars_pa, remote_vars);
  825. if (ret != xpSuccess) {
  826. dev_warn(xpc_part, "unable to get XPC variables from nasid %d, "
  827. "which sent interrupt, reason=%d\n", nasid, ret);
  828. XPC_DEACTIVATE_PARTITION(part, ret);
  829. return;
  830. }
  831. part->activate_IRQ_rcvd++;
  832. dev_dbg(xpc_part, "partid for nasid %d is %d; IRQs = %d; HB = "
  833. "%ld:0x%lx\n", (int)nasid, (int)partid, part->activate_IRQ_rcvd,
  834. remote_vars->heartbeat, remote_vars->heartbeating_to_mask[0]);
  835. if (xpc_partition_disengaged(part) &&
  836. part->act_state == XPC_P_AS_INACTIVE) {
  837. xpc_update_partition_info_sn2(part, remote_rp_version,
  838. &remote_rp_ts_jiffies,
  839. remote_rp_pa, remote_vars_pa,
  840. remote_vars);
  841. if (xpc_partition_deactivation_requested_sn2(partid)) {
  842. /*
  843. * Other side is waiting on us to deactivate even though
  844. * we already have.
  845. */
  846. return;
  847. }
  848. xpc_activate_partition(part);
  849. return;
  850. }
  851. DBUG_ON(part->remote_rp_version == 0);
  852. DBUG_ON(part_sn2->remote_vars_version == 0);
  853. if (remote_rp_ts_jiffies != part->remote_rp_ts_jiffies) {
  854. /* the other side rebooted */
  855. DBUG_ON(xpc_partition_engaged_sn2(partid));
  856. DBUG_ON(xpc_partition_deactivation_requested_sn2(partid));
  857. xpc_update_partition_info_sn2(part, remote_rp_version,
  858. &remote_rp_ts_jiffies,
  859. remote_rp_pa, remote_vars_pa,
  860. remote_vars);
  861. reactivate = 1;
  862. }
  863. if (part->disengage_timeout > 0 && !xpc_partition_disengaged(part)) {
  864. /* still waiting on other side to disengage from us */
  865. return;
  866. }
  867. if (reactivate)
  868. XPC_DEACTIVATE_PARTITION(part, xpReactivating);
  869. else if (xpc_partition_deactivation_requested_sn2(partid))
  870. XPC_DEACTIVATE_PARTITION(part, xpOtherGoingDown);
  871. }
  872. /*
  873. * Loop through the activation amo variables and process any bits
  874. * which are set. Each bit indicates a nasid sending a partition
  875. * activation or deactivation request.
  876. *
  877. * Return #of IRQs detected.
  878. */
  879. int
  880. xpc_identify_activate_IRQ_sender_sn2(void)
  881. {
  882. int l;
  883. int b;
  884. unsigned long nasid_mask_long;
  885. u64 nasid; /* remote nasid */
  886. int n_IRQs_detected = 0;
  887. struct amo *act_amos;
  888. act_amos = xpc_vars_sn2->amos_page + XPC_ACTIVATE_IRQ_AMOS_SN2;
  889. /* scan through activate amo variables looking for non-zero entries */
  890. for (l = 0; l < xpc_nasid_mask_nlongs; l++) {
  891. if (xpc_exiting)
  892. break;
  893. nasid_mask_long = xpc_receive_IRQ_amo_sn2(&act_amos[l]);
  894. b = find_first_bit(&nasid_mask_long, BITS_PER_LONG);
  895. if (b >= BITS_PER_LONG) {
  896. /* no IRQs from nasids in this amo variable */
  897. continue;
  898. }
  899. dev_dbg(xpc_part, "amo[%d] gave back 0x%lx\n", l,
  900. nasid_mask_long);
  901. /*
  902. * If this nasid has been added to the machine since
  903. * our partition was reset, this will retain the
  904. * remote nasid in our reserved pages machine mask.
  905. * This is used in the event of module reload.
  906. */
  907. xpc_mach_nasids[l] |= nasid_mask_long;
  908. /* locate the nasid(s) which sent interrupts */
  909. do {
  910. n_IRQs_detected++;
  911. nasid = (l * BITS_PER_LONG + b) * 2;
  912. dev_dbg(xpc_part, "interrupt from nasid %ld\n", nasid);
  913. xpc_identify_activate_IRQ_req_sn2(nasid);
  914. b = find_next_bit(&nasid_mask_long, BITS_PER_LONG,
  915. b + 1);
  916. } while (b < BITS_PER_LONG);
  917. }
  918. return n_IRQs_detected;
  919. }
  920. static void
  921. xpc_process_activate_IRQ_rcvd_sn2(void)
  922. {
  923. unsigned long irq_flags;
  924. int n_IRQs_expected;
  925. int n_IRQs_detected;
  926. DBUG_ON(xpc_activate_IRQ_rcvd == 0);
  927. spin_lock_irqsave(&xpc_activate_IRQ_rcvd_lock, irq_flags);
  928. n_IRQs_expected = xpc_activate_IRQ_rcvd;
  929. xpc_activate_IRQ_rcvd = 0;
  930. spin_unlock_irqrestore(&xpc_activate_IRQ_rcvd_lock, irq_flags);
  931. n_IRQs_detected = xpc_identify_activate_IRQ_sender_sn2();
  932. if (n_IRQs_detected < n_IRQs_expected) {
  933. /* retry once to help avoid missing amo */
  934. (void)xpc_identify_activate_IRQ_sender_sn2();
  935. }
  936. }
  937. /*
  938. * Setup the channel structures that are sn2 specific.
  939. */
  940. static enum xp_retval
  941. xpc_setup_ch_structures_sn_sn2(struct xpc_partition *part)
  942. {
  943. struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2;
  944. struct xpc_channel_sn2 *ch_sn2;
  945. enum xp_retval retval;
  946. int ret;
  947. int cpuid;
  948. int ch_number;
  949. struct timer_list *timer;
  950. short partid = XPC_PARTID(part);
  951. /* allocate all the required GET/PUT values */
  952. part_sn2->local_GPs =
  953. xpc_kzalloc_cacheline_aligned(XPC_GP_SIZE, GFP_KERNEL,
  954. &part_sn2->local_GPs_base);
  955. if (part_sn2->local_GPs == NULL) {
  956. dev_err(xpc_chan, "can't get memory for local get/put "
  957. "values\n");
  958. return xpNoMemory;
  959. }
  960. part_sn2->remote_GPs =
  961. xpc_kzalloc_cacheline_aligned(XPC_GP_SIZE, GFP_KERNEL,
  962. &part_sn2->remote_GPs_base);
  963. if (part_sn2->remote_GPs == NULL) {
  964. dev_err(xpc_chan, "can't get memory for remote get/put "
  965. "values\n");
  966. retval = xpNoMemory;
  967. goto out_1;
  968. }
  969. part_sn2->remote_GPs_pa = 0;
  970. /* allocate all the required open and close args */
  971. part_sn2->local_openclose_args =
  972. xpc_kzalloc_cacheline_aligned(XPC_OPENCLOSE_ARGS_SIZE,
  973. GFP_KERNEL, &part_sn2->
  974. local_openclose_args_base);
  975. if (part_sn2->local_openclose_args == NULL) {
  976. dev_err(xpc_chan, "can't get memory for local connect args\n");
  977. retval = xpNoMemory;
  978. goto out_2;
  979. }
  980. part_sn2->remote_openclose_args_pa = 0;
  981. part_sn2->local_chctl_amo_va = xpc_init_IRQ_amo_sn2(partid);
  982. part_sn2->notify_IRQ_nasid = 0;
  983. part_sn2->notify_IRQ_phys_cpuid = 0;
  984. part_sn2->remote_chctl_amo_va = NULL;
  985. sprintf(part_sn2->notify_IRQ_owner, "xpc%02d", partid);
  986. ret = request_irq(SGI_XPC_NOTIFY, xpc_handle_notify_IRQ_sn2,
  987. IRQF_SHARED, part_sn2->notify_IRQ_owner,
  988. (void *)(u64)partid);
  989. if (ret != 0) {
  990. dev_err(xpc_chan, "can't register NOTIFY IRQ handler, "
  991. "errno=%d\n", -ret);
  992. retval = xpLackOfResources;
  993. goto out_3;
  994. }
  995. /* Setup a timer to check for dropped notify IRQs */
  996. timer = &part_sn2->dropped_notify_IRQ_timer;
  997. init_timer(timer);
  998. timer->function =
  999. (void (*)(unsigned long))xpc_check_for_dropped_notify_IRQ_sn2;
  1000. timer->data = (unsigned long)part;
  1001. timer->expires = jiffies + XPC_DROPPED_NOTIFY_IRQ_WAIT_INTERVAL;
  1002. add_timer(timer);
  1003. for (ch_number = 0; ch_number < part->nchannels; ch_number++) {
  1004. ch_sn2 = &part->channels[ch_number].sn.sn2;
  1005. ch_sn2->local_GP = &part_sn2->local_GPs[ch_number];
  1006. ch_sn2->local_openclose_args =
  1007. &part_sn2->local_openclose_args[ch_number];
  1008. mutex_init(&ch_sn2->msg_to_pull_mutex);
  1009. }
  1010. /*
  1011. * Setup the per partition specific variables required by the
  1012. * remote partition to establish channel connections with us.
  1013. *
  1014. * The setting of the magic # indicates that these per partition
  1015. * specific variables are ready to be used.
  1016. */
  1017. xpc_vars_part_sn2[partid].GPs_pa = xp_pa(part_sn2->local_GPs);
  1018. xpc_vars_part_sn2[partid].openclose_args_pa =
  1019. xp_pa(part_sn2->local_openclose_args);
  1020. xpc_vars_part_sn2[partid].chctl_amo_pa =
  1021. xp_pa(part_sn2->local_chctl_amo_va);
  1022. cpuid = raw_smp_processor_id(); /* any CPU in this partition will do */
  1023. xpc_vars_part_sn2[partid].notify_IRQ_nasid = cpuid_to_nasid(cpuid);
  1024. xpc_vars_part_sn2[partid].notify_IRQ_phys_cpuid =
  1025. cpu_physical_id(cpuid);
  1026. xpc_vars_part_sn2[partid].nchannels = part->nchannels;
  1027. xpc_vars_part_sn2[partid].magic = XPC_VP_MAGIC1_SN2;
  1028. return xpSuccess;
  1029. /* setup of ch structures failed */
  1030. out_3:
  1031. kfree(part_sn2->local_openclose_args_base);
  1032. part_sn2->local_openclose_args = NULL;
  1033. out_2:
  1034. kfree(part_sn2->remote_GPs_base);
  1035. part_sn2->remote_GPs = NULL;
  1036. out_1:
  1037. kfree(part_sn2->local_GPs_base);
  1038. part_sn2->local_GPs = NULL;
  1039. return retval;
  1040. }
  1041. /*
  1042. * Teardown the channel structures that are sn2 specific.
  1043. */
  1044. static void
  1045. xpc_teardown_ch_structures_sn_sn2(struct xpc_partition *part)
  1046. {
  1047. struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2;
  1048. short partid = XPC_PARTID(part);
  1049. /*
  1050. * Indicate that the variables specific to the remote partition are no
  1051. * longer available for its use.
  1052. */
  1053. xpc_vars_part_sn2[partid].magic = 0;
  1054. /* in case we've still got outstanding timers registered... */
  1055. del_timer_sync(&part_sn2->dropped_notify_IRQ_timer);
  1056. free_irq(SGI_XPC_NOTIFY, (void *)(u64)partid);
  1057. kfree(part_sn2->local_openclose_args_base);
  1058. part_sn2->local_openclose_args = NULL;
  1059. kfree(part_sn2->remote_GPs_base);
  1060. part_sn2->remote_GPs = NULL;
  1061. kfree(part_sn2->local_GPs_base);
  1062. part_sn2->local_GPs = NULL;
  1063. part_sn2->local_chctl_amo_va = NULL;
  1064. }
  1065. /*
  1066. * Create a wrapper that hides the underlying mechanism for pulling a cacheline
  1067. * (or multiple cachelines) from a remote partition.
  1068. *
  1069. * src_pa must be a cacheline aligned physical address on the remote partition.
  1070. * dst must be a cacheline aligned virtual address on this partition.
  1071. * cnt must be cacheline sized
  1072. */
  1073. /* ??? Replace this function by call to xp_remote_memcpy() or bte_copy()? */
  1074. static enum xp_retval
  1075. xpc_pull_remote_cachelines_sn2(struct xpc_partition *part, void *dst,
  1076. const unsigned long src_pa, size_t cnt)
  1077. {
  1078. enum xp_retval ret;
  1079. DBUG_ON(src_pa != L1_CACHE_ALIGN(src_pa));
  1080. DBUG_ON((unsigned long)dst != L1_CACHE_ALIGN((unsigned long)dst));
  1081. DBUG_ON(cnt != L1_CACHE_ALIGN(cnt));
  1082. if (part->act_state == XPC_P_AS_DEACTIVATING)
  1083. return part->reason;
  1084. ret = xp_remote_memcpy(xp_pa(dst), src_pa, cnt);
  1085. if (ret != xpSuccess) {
  1086. dev_dbg(xpc_chan, "xp_remote_memcpy() from partition %d failed,"
  1087. " ret=%d\n", XPC_PARTID(part), ret);
  1088. }
  1089. return ret;
  1090. }
  1091. /*
  1092. * Pull the remote per partition specific variables from the specified
  1093. * partition.
  1094. */
  1095. static enum xp_retval
  1096. xpc_pull_remote_vars_part_sn2(struct xpc_partition *part)
  1097. {
  1098. struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2;
  1099. u8 buffer[L1_CACHE_BYTES * 2];
  1100. struct xpc_vars_part_sn2 *pulled_entry_cacheline =
  1101. (struct xpc_vars_part_sn2 *)L1_CACHE_ALIGN((u64)buffer);
  1102. struct xpc_vars_part_sn2 *pulled_entry;
  1103. unsigned long remote_entry_cacheline_pa;
  1104. unsigned long remote_entry_pa;
  1105. short partid = XPC_PARTID(part);
  1106. enum xp_retval ret;
  1107. /* pull the cacheline that contains the variables we're interested in */
  1108. DBUG_ON(part_sn2->remote_vars_part_pa !=
  1109. L1_CACHE_ALIGN(part_sn2->remote_vars_part_pa));
  1110. DBUG_ON(sizeof(struct xpc_vars_part_sn2) != L1_CACHE_BYTES / 2);
  1111. remote_entry_pa = part_sn2->remote_vars_part_pa +
  1112. sn_partition_id * sizeof(struct xpc_vars_part_sn2);
  1113. remote_entry_cacheline_pa = (remote_entry_pa & ~(L1_CACHE_BYTES - 1));
  1114. pulled_entry = (struct xpc_vars_part_sn2 *)((u64)pulled_entry_cacheline
  1115. + (remote_entry_pa &
  1116. (L1_CACHE_BYTES - 1)));
  1117. ret = xpc_pull_remote_cachelines_sn2(part, pulled_entry_cacheline,
  1118. remote_entry_cacheline_pa,
  1119. L1_CACHE_BYTES);
  1120. if (ret != xpSuccess) {
  1121. dev_dbg(xpc_chan, "failed to pull XPC vars_part from "
  1122. "partition %d, ret=%d\n", partid, ret);
  1123. return ret;
  1124. }
  1125. /* see if they've been set up yet */
  1126. if (pulled_entry->magic != XPC_VP_MAGIC1_SN2 &&
  1127. pulled_entry->magic != XPC_VP_MAGIC2_SN2) {
  1128. if (pulled_entry->magic != 0) {
  1129. dev_dbg(xpc_chan, "partition %d's XPC vars_part for "
  1130. "partition %d has bad magic value (=0x%lx)\n",
  1131. partid, sn_partition_id, pulled_entry->magic);
  1132. return xpBadMagic;
  1133. }
  1134. /* they've not been initialized yet */
  1135. return xpRetry;
  1136. }
  1137. if (xpc_vars_part_sn2[partid].magic == XPC_VP_MAGIC1_SN2) {
  1138. /* validate the variables */
  1139. if (pulled_entry->GPs_pa == 0 ||
  1140. pulled_entry->openclose_args_pa == 0 ||
  1141. pulled_entry->chctl_amo_pa == 0) {
  1142. dev_err(xpc_chan, "partition %d's XPC vars_part for "
  1143. "partition %d are not valid\n", partid,
  1144. sn_partition_id);
  1145. return xpInvalidAddress;
  1146. }
  1147. /* the variables we imported look to be valid */
  1148. part_sn2->remote_GPs_pa = pulled_entry->GPs_pa;
  1149. part_sn2->remote_openclose_args_pa =
  1150. pulled_entry->openclose_args_pa;
  1151. part_sn2->remote_chctl_amo_va =
  1152. (struct amo *)__va(pulled_entry->chctl_amo_pa);
  1153. part_sn2->notify_IRQ_nasid = pulled_entry->notify_IRQ_nasid;
  1154. part_sn2->notify_IRQ_phys_cpuid =
  1155. pulled_entry->notify_IRQ_phys_cpuid;
  1156. if (part->nchannels > pulled_entry->nchannels)
  1157. part->nchannels = pulled_entry->nchannels;
  1158. /* let the other side know that we've pulled their variables */
  1159. xpc_vars_part_sn2[partid].magic = XPC_VP_MAGIC2_SN2;
  1160. }
  1161. if (pulled_entry->magic == XPC_VP_MAGIC1_SN2)
  1162. return xpRetry;
  1163. return xpSuccess;
  1164. }
  1165. /*
  1166. * Establish first contact with the remote partititon. This involves pulling
  1167. * the XPC per partition variables from the remote partition and waiting for
  1168. * the remote partition to pull ours.
  1169. */
  1170. static enum xp_retval
  1171. xpc_make_first_contact_sn2(struct xpc_partition *part)
  1172. {
  1173. struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2;
  1174. enum xp_retval ret;
  1175. /*
  1176. * Register the remote partition's amos with SAL so it can handle
  1177. * and cleanup errors within that address range should the remote
  1178. * partition go down. We don't unregister this range because it is
  1179. * difficult to tell when outstanding writes to the remote partition
  1180. * are finished and thus when it is safe to unregister. This should
  1181. * not result in wasted space in the SAL xp_addr_region table because
  1182. * we should get the same page for remote_amos_page_pa after module
  1183. * reloads and system reboots.
  1184. */
  1185. if (sn_register_xp_addr_region(part_sn2->remote_amos_page_pa,
  1186. PAGE_SIZE, 1) < 0) {
  1187. dev_warn(xpc_part, "xpc_activating(%d) failed to register "
  1188. "xp_addr region\n", XPC_PARTID(part));
  1189. ret = xpPhysAddrRegFailed;
  1190. XPC_DEACTIVATE_PARTITION(part, ret);
  1191. return ret;
  1192. }
  1193. /*
  1194. * Send activate IRQ to get other side to activate if they've not
  1195. * already begun to do so.
  1196. */
  1197. xpc_send_activate_IRQ_sn2(part_sn2->remote_amos_page_pa,
  1198. cnodeid_to_nasid(0),
  1199. part_sn2->activate_IRQ_nasid,
  1200. part_sn2->activate_IRQ_phys_cpuid);
  1201. while ((ret = xpc_pull_remote_vars_part_sn2(part)) != xpSuccess) {
  1202. if (ret != xpRetry) {
  1203. XPC_DEACTIVATE_PARTITION(part, ret);
  1204. return ret;
  1205. }
  1206. dev_dbg(xpc_part, "waiting to make first contact with "
  1207. "partition %d\n", XPC_PARTID(part));
  1208. /* wait a 1/4 of a second or so */
  1209. (void)msleep_interruptible(250);
  1210. if (part->act_state == XPC_P_AS_DEACTIVATING)
  1211. return part->reason;
  1212. }
  1213. return xpSuccess;
  1214. }
  1215. /*
  1216. * Get the chctl flags and pull the openclose args and/or remote GPs as needed.
  1217. */
  1218. static u64
  1219. xpc_get_chctl_all_flags_sn2(struct xpc_partition *part)
  1220. {
  1221. struct xpc_partition_sn2 *part_sn2 = &part->sn.sn2;
  1222. unsigned long irq_flags;
  1223. union xpc_channel_ctl_flags chctl;
  1224. enum xp_retval ret;
  1225. /*
  1226. * See if there are any chctl flags to be handled.
  1227. */
  1228. spin_lock_irqsave(&part->chctl_lock, irq_flags);
  1229. chctl = part->chctl;
  1230. if (chctl.all_flags != 0)
  1231. part->chctl.all_flags = 0;
  1232. spin_unlock_irqrestore(&part->chctl_lock, irq_flags);
  1233. if (xpc_any_openclose_chctl_flags_set(&chctl)) {
  1234. ret = xpc_pull_remote_cachelines_sn2(part, part->
  1235. remote_openclose_args,
  1236. part_sn2->
  1237. remote_openclose_args_pa,
  1238. XPC_OPENCLOSE_ARGS_SIZE);
  1239. if (ret != xpSuccess) {
  1240. XPC_DEACTIVATE_PARTITION(part, ret);
  1241. dev_dbg(xpc_chan, "failed to pull openclose args from "
  1242. "partition %d, ret=%d\n", XPC_PARTID(part),
  1243. ret);
  1244. /* don't bother processing chctl flags anymore */
  1245. chctl.all_flags = 0;
  1246. }
  1247. }
  1248. if (xpc_any_msg_chctl_flags_set(&chctl)) {
  1249. ret = xpc_pull_remote_cachelines_sn2(part, part_sn2->remote_GPs,
  1250. part_sn2->remote_GPs_pa,
  1251. XPC_GP_SIZE);
  1252. if (ret != xpSuccess) {
  1253. XPC_DEACTIVATE_PARTITION(part, ret);
  1254. dev_dbg(xpc_chan, "failed to pull GPs from partition "
  1255. "%d, ret=%d\n", XPC_PARTID(part), ret);
  1256. /* don't bother processing chctl flags anymore */
  1257. chctl.all_flags = 0;
  1258. }
  1259. }
  1260. return chctl.all_flags;
  1261. }
  1262. /*
  1263. * Allocate the local message queue and the notify queue.
  1264. */
  1265. static enum xp_retval
  1266. xpc_allocate_local_msgqueue_sn2(struct xpc_channel *ch)
  1267. {
  1268. struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2;
  1269. unsigned long irq_flags;
  1270. int nentries;
  1271. size_t nbytes;
  1272. for (nentries = ch->local_nentries; nentries > 0; nentries--) {
  1273. nbytes = nentries * ch->entry_size;
  1274. ch_sn2->local_msgqueue =
  1275. xpc_kzalloc_cacheline_aligned(nbytes, GFP_KERNEL,
  1276. &ch_sn2->local_msgqueue_base);
  1277. if (ch_sn2->local_msgqueue == NULL)
  1278. continue;
  1279. nbytes = nentries * sizeof(struct xpc_notify_sn2);
  1280. ch_sn2->notify_queue = kzalloc(nbytes, GFP_KERNEL);
  1281. if (ch_sn2->notify_queue == NULL) {
  1282. kfree(ch_sn2->local_msgqueue_base);
  1283. ch_sn2->local_msgqueue = NULL;
  1284. continue;
  1285. }
  1286. spin_lock_irqsave(&ch->lock, irq_flags);
  1287. if (nentries < ch->local_nentries) {
  1288. dev_dbg(xpc_chan, "nentries=%d local_nentries=%d, "
  1289. "partid=%d, channel=%d\n", nentries,
  1290. ch->local_nentries, ch->partid, ch->number);
  1291. ch->local_nentries = nentries;
  1292. }
  1293. spin_unlock_irqrestore(&ch->lock, irq_flags);
  1294. return xpSuccess;
  1295. }
  1296. dev_dbg(xpc_chan, "can't get memory for local message queue and notify "
  1297. "queue, partid=%d, channel=%d\n", ch->partid, ch->number);
  1298. return xpNoMemory;
  1299. }
  1300. /*
  1301. * Allocate the cached remote message queue.
  1302. */
  1303. static enum xp_retval
  1304. xpc_allocate_remote_msgqueue_sn2(struct xpc_channel *ch)
  1305. {
  1306. struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2;
  1307. unsigned long irq_flags;
  1308. int nentries;
  1309. size_t nbytes;
  1310. DBUG_ON(ch->remote_nentries <= 0);
  1311. for (nentries = ch->remote_nentries; nentries > 0; nentries--) {
  1312. nbytes = nentries * ch->entry_size;
  1313. ch_sn2->remote_msgqueue =
  1314. xpc_kzalloc_cacheline_aligned(nbytes, GFP_KERNEL, &ch_sn2->
  1315. remote_msgqueue_base);
  1316. if (ch_sn2->remote_msgqueue == NULL)
  1317. continue;
  1318. spin_lock_irqsave(&ch->lock, irq_flags);
  1319. if (nentries < ch->remote_nentries) {
  1320. dev_dbg(xpc_chan, "nentries=%d remote_nentries=%d, "
  1321. "partid=%d, channel=%d\n", nentries,
  1322. ch->remote_nentries, ch->partid, ch->number);
  1323. ch->remote_nentries = nentries;
  1324. }
  1325. spin_unlock_irqrestore(&ch->lock, irq_flags);
  1326. return xpSuccess;
  1327. }
  1328. dev_dbg(xpc_chan, "can't get memory for cached remote message queue, "
  1329. "partid=%d, channel=%d\n", ch->partid, ch->number);
  1330. return xpNoMemory;
  1331. }
  1332. /*
  1333. * Allocate message queues and other stuff associated with a channel.
  1334. *
  1335. * Note: Assumes all of the channel sizes are filled in.
  1336. */
  1337. static enum xp_retval
  1338. xpc_setup_msg_structures_sn2(struct xpc_channel *ch)
  1339. {
  1340. struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2;
  1341. enum xp_retval ret;
  1342. DBUG_ON(ch->flags & XPC_C_SETUP);
  1343. ret = xpc_allocate_local_msgqueue_sn2(ch);
  1344. if (ret == xpSuccess) {
  1345. ret = xpc_allocate_remote_msgqueue_sn2(ch);
  1346. if (ret != xpSuccess) {
  1347. kfree(ch_sn2->local_msgqueue_base);
  1348. ch_sn2->local_msgqueue = NULL;
  1349. kfree(ch_sn2->notify_queue);
  1350. ch_sn2->notify_queue = NULL;
  1351. }
  1352. }
  1353. return ret;
  1354. }
  1355. /*
  1356. * Free up message queues and other stuff that were allocated for the specified
  1357. * channel.
  1358. */
  1359. static void
  1360. xpc_teardown_msg_structures_sn2(struct xpc_channel *ch)
  1361. {
  1362. struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2;
  1363. DBUG_ON(!spin_is_locked(&ch->lock));
  1364. ch_sn2->remote_msgqueue_pa = 0;
  1365. ch_sn2->local_GP->get = 0;
  1366. ch_sn2->local_GP->put = 0;
  1367. ch_sn2->remote_GP.get = 0;
  1368. ch_sn2->remote_GP.put = 0;
  1369. ch_sn2->w_local_GP.get = 0;
  1370. ch_sn2->w_local_GP.put = 0;
  1371. ch_sn2->w_remote_GP.get = 0;
  1372. ch_sn2->w_remote_GP.put = 0;
  1373. ch_sn2->next_msg_to_pull = 0;
  1374. if (ch->flags & XPC_C_SETUP) {
  1375. dev_dbg(xpc_chan, "ch->flags=0x%x, partid=%d, channel=%d\n",
  1376. ch->flags, ch->partid, ch->number);
  1377. kfree(ch_sn2->local_msgqueue_base);
  1378. ch_sn2->local_msgqueue = NULL;
  1379. kfree(ch_sn2->remote_msgqueue_base);
  1380. ch_sn2->remote_msgqueue = NULL;
  1381. kfree(ch_sn2->notify_queue);
  1382. ch_sn2->notify_queue = NULL;
  1383. }
  1384. }
  1385. /*
  1386. * Notify those who wanted to be notified upon delivery of their message.
  1387. */
  1388. static void
  1389. xpc_notify_senders_sn2(struct xpc_channel *ch, enum xp_retval reason, s64 put)
  1390. {
  1391. struct xpc_notify_sn2 *notify;
  1392. u8 notify_type;
  1393. s64 get = ch->sn.sn2.w_remote_GP.get - 1;
  1394. while (++get < put && atomic_read(&ch->n_to_notify) > 0) {
  1395. notify = &ch->sn.sn2.notify_queue[get % ch->local_nentries];
  1396. /*
  1397. * See if the notify entry indicates it was associated with
  1398. * a message who's sender wants to be notified. It is possible
  1399. * that it is, but someone else is doing or has done the
  1400. * notification.
  1401. */
  1402. notify_type = notify->type;
  1403. if (notify_type == 0 ||
  1404. cmpxchg(&notify->type, notify_type, 0) != notify_type) {
  1405. continue;
  1406. }
  1407. DBUG_ON(notify_type != XPC_N_CALL);
  1408. atomic_dec(&ch->n_to_notify);
  1409. if (notify->func != NULL) {
  1410. dev_dbg(xpc_chan, "notify->func() called, notify=0x%p "
  1411. "msg_number=%ld partid=%d channel=%d\n",
  1412. (void *)notify, get, ch->partid, ch->number);
  1413. notify->func(reason, ch->partid, ch->number,
  1414. notify->key);
  1415. dev_dbg(xpc_chan, "notify->func() returned, notify=0x%p"
  1416. " msg_number=%ld partid=%d channel=%d\n",
  1417. (void *)notify, get, ch->partid, ch->number);
  1418. }
  1419. }
  1420. }
  1421. static void
  1422. xpc_notify_senders_of_disconnect_sn2(struct xpc_channel *ch)
  1423. {
  1424. xpc_notify_senders_sn2(ch, ch->reason, ch->sn.sn2.w_local_GP.put);
  1425. }
  1426. /*
  1427. * Clear some of the msg flags in the local message queue.
  1428. */
  1429. static inline void
  1430. xpc_clear_local_msgqueue_flags_sn2(struct xpc_channel *ch)
  1431. {
  1432. struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2;
  1433. struct xpc_msg_sn2 *msg;
  1434. s64 get;
  1435. get = ch_sn2->w_remote_GP.get;
  1436. do {
  1437. msg = (struct xpc_msg_sn2 *)((u64)ch_sn2->local_msgqueue +
  1438. (get % ch->local_nentries) *
  1439. ch->entry_size);
  1440. msg->flags = 0;
  1441. } while (++get < ch_sn2->remote_GP.get);
  1442. }
  1443. /*
  1444. * Clear some of the msg flags in the remote message queue.
  1445. */
  1446. static inline void
  1447. xpc_clear_remote_msgqueue_flags_sn2(struct xpc_channel *ch)
  1448. {
  1449. struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2;
  1450. struct xpc_msg_sn2 *msg;
  1451. s64 put;
  1452. put = ch_sn2->w_remote_GP.put;
  1453. do {
  1454. msg = (struct xpc_msg_sn2 *)((u64)ch_sn2->remote_msgqueue +
  1455. (put % ch->remote_nentries) *
  1456. ch->entry_size);
  1457. msg->flags = 0;
  1458. } while (++put < ch_sn2->remote_GP.put);
  1459. }
  1460. static int
  1461. xpc_n_of_deliverable_payloads_sn2(struct xpc_channel *ch)
  1462. {
  1463. return ch->sn.sn2.w_remote_GP.put - ch->sn.sn2.w_local_GP.get;
  1464. }
  1465. static void
  1466. xpc_process_msg_chctl_flags_sn2(struct xpc_partition *part, int ch_number)
  1467. {
  1468. struct xpc_channel *ch = &part->channels[ch_number];
  1469. struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2;
  1470. int npayloads_sent;
  1471. ch_sn2->remote_GP = part->sn.sn2.remote_GPs[ch_number];
  1472. /* See what, if anything, has changed for each connected channel */
  1473. xpc_msgqueue_ref(ch);
  1474. if (ch_sn2->w_remote_GP.get == ch_sn2->remote_GP.get &&
  1475. ch_sn2->w_remote_GP.put == ch_sn2->remote_GP.put) {
  1476. /* nothing changed since GPs were last pulled */
  1477. xpc_msgqueue_deref(ch);
  1478. return;
  1479. }
  1480. if (!(ch->flags & XPC_C_CONNECTED)) {
  1481. xpc_msgqueue_deref(ch);
  1482. return;
  1483. }
  1484. /*
  1485. * First check to see if messages recently sent by us have been
  1486. * received by the other side. (The remote GET value will have
  1487. * changed since we last looked at it.)
  1488. */
  1489. if (ch_sn2->w_remote_GP.get != ch_sn2->remote_GP.get) {
  1490. /*
  1491. * We need to notify any senders that want to be notified
  1492. * that their sent messages have been received by their
  1493. * intended recipients. We need to do this before updating
  1494. * w_remote_GP.get so that we don't allocate the same message
  1495. * queue entries prematurely (see xpc_allocate_msg()).
  1496. */
  1497. if (atomic_read(&ch->n_to_notify) > 0) {
  1498. /*
  1499. * Notify senders that messages sent have been
  1500. * received and delivered by the other side.
  1501. */
  1502. xpc_notify_senders_sn2(ch, xpMsgDelivered,
  1503. ch_sn2->remote_GP.get);
  1504. }
  1505. /*
  1506. * Clear msg->flags in previously sent messages, so that
  1507. * they're ready for xpc_allocate_msg().
  1508. */
  1509. xpc_clear_local_msgqueue_flags_sn2(ch);
  1510. ch_sn2->w_remote_GP.get = ch_sn2->remote_GP.get;
  1511. dev_dbg(xpc_chan, "w_remote_GP.get changed to %ld, partid=%d, "
  1512. "channel=%d\n", ch_sn2->w_remote_GP.get, ch->partid,
  1513. ch->number);
  1514. /*
  1515. * If anyone was waiting for message queue entries to become
  1516. * available, wake them up.
  1517. */
  1518. if (atomic_read(&ch->n_on_msg_allocate_wq) > 0)
  1519. wake_up(&ch->msg_allocate_wq);
  1520. }
  1521. /*
  1522. * Now check for newly sent messages by the other side. (The remote
  1523. * PUT value will have changed since we last looked at it.)
  1524. */
  1525. if (ch_sn2->w_remote_GP.put != ch_sn2->remote_GP.put) {
  1526. /*
  1527. * Clear msg->flags in previously received messages, so that
  1528. * they're ready for xpc_get_deliverable_payload_sn2().
  1529. */
  1530. xpc_clear_remote_msgqueue_flags_sn2(ch);
  1531. smp_wmb(); /* ensure flags have been cleared before bte_copy */
  1532. ch_sn2->w_remote_GP.put = ch_sn2->remote_GP.put;
  1533. dev_dbg(xpc_chan, "w_remote_GP.put changed to %ld, partid=%d, "
  1534. "channel=%d\n", ch_sn2->w_remote_GP.put, ch->partid,
  1535. ch->number);
  1536. npayloads_sent = xpc_n_of_deliverable_payloads_sn2(ch);
  1537. if (npayloads_sent > 0) {
  1538. dev_dbg(xpc_chan, "msgs waiting to be copied and "
  1539. "delivered=%d, partid=%d, channel=%d\n",
  1540. npayloads_sent, ch->partid, ch->number);
  1541. if (ch->flags & XPC_C_CONNECTEDCALLOUT_MADE)
  1542. xpc_activate_kthreads(ch, npayloads_sent);
  1543. }
  1544. }
  1545. xpc_msgqueue_deref(ch);
  1546. }
  1547. static struct xpc_msg_sn2 *
  1548. xpc_pull_remote_msg_sn2(struct xpc_channel *ch, s64 get)
  1549. {
  1550. struct xpc_partition *part = &xpc_partitions[ch->partid];
  1551. struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2;
  1552. unsigned long remote_msg_pa;
  1553. struct xpc_msg_sn2 *msg;
  1554. u32 msg_index;
  1555. u32 nmsgs;
  1556. u64 msg_offset;
  1557. enum xp_retval ret;
  1558. if (mutex_lock_interruptible(&ch_sn2->msg_to_pull_mutex) != 0) {
  1559. /* we were interrupted by a signal */
  1560. return NULL;
  1561. }
  1562. while (get >= ch_sn2->next_msg_to_pull) {
  1563. /* pull as many messages as are ready and able to be pulled */
  1564. msg_index = ch_sn2->next_msg_to_pull % ch->remote_nentries;
  1565. DBUG_ON(ch_sn2->next_msg_to_pull >= ch_sn2->w_remote_GP.put);
  1566. nmsgs = ch_sn2->w_remote_GP.put - ch_sn2->next_msg_to_pull;
  1567. if (msg_index + nmsgs > ch->remote_nentries) {
  1568. /* ignore the ones that wrap the msg queue for now */
  1569. nmsgs = ch->remote_nentries - msg_index;
  1570. }
  1571. msg_offset = msg_index * ch->entry_size;
  1572. msg = (struct xpc_msg_sn2 *)((u64)ch_sn2->remote_msgqueue +
  1573. msg_offset);
  1574. remote_msg_pa = ch_sn2->remote_msgqueue_pa + msg_offset;
  1575. ret = xpc_pull_remote_cachelines_sn2(part, msg, remote_msg_pa,
  1576. nmsgs * ch->entry_size);
  1577. if (ret != xpSuccess) {
  1578. dev_dbg(xpc_chan, "failed to pull %d msgs starting with"
  1579. " msg %ld from partition %d, channel=%d, "
  1580. "ret=%d\n", nmsgs, ch_sn2->next_msg_to_pull,
  1581. ch->partid, ch->number, ret);
  1582. XPC_DEACTIVATE_PARTITION(part, ret);
  1583. mutex_unlock(&ch_sn2->msg_to_pull_mutex);
  1584. return NULL;
  1585. }
  1586. ch_sn2->next_msg_to_pull += nmsgs;
  1587. }
  1588. mutex_unlock(&ch_sn2->msg_to_pull_mutex);
  1589. /* return the message we were looking for */
  1590. msg_offset = (get % ch->remote_nentries) * ch->entry_size;
  1591. msg = (struct xpc_msg_sn2 *)((u64)ch_sn2->remote_msgqueue + msg_offset);
  1592. return msg;
  1593. }
  1594. /*
  1595. * Get the next deliverable message's payload.
  1596. */
  1597. static void *
  1598. xpc_get_deliverable_payload_sn2(struct xpc_channel *ch)
  1599. {
  1600. struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2;
  1601. struct xpc_msg_sn2 *msg;
  1602. void *payload = NULL;
  1603. s64 get;
  1604. do {
  1605. if (ch->flags & XPC_C_DISCONNECTING)
  1606. break;
  1607. get = ch_sn2->w_local_GP.get;
  1608. smp_rmb(); /* guarantee that .get loads before .put */
  1609. if (get == ch_sn2->w_remote_GP.put)
  1610. break;
  1611. /* There are messages waiting to be pulled and delivered.
  1612. * We need to try to secure one for ourselves. We'll do this
  1613. * by trying to increment w_local_GP.get and hope that no one
  1614. * else beats us to it. If they do, we'll we'll simply have
  1615. * to try again for the next one.
  1616. */
  1617. if (cmpxchg(&ch_sn2->w_local_GP.get, get, get + 1) == get) {
  1618. /* we got the entry referenced by get */
  1619. dev_dbg(xpc_chan, "w_local_GP.get changed to %ld, "
  1620. "partid=%d, channel=%d\n", get + 1,
  1621. ch->partid, ch->number);
  1622. /* pull the message from the remote partition */
  1623. msg = xpc_pull_remote_msg_sn2(ch, get);
  1624. DBUG_ON(msg != NULL && msg->number != get);
  1625. DBUG_ON(msg != NULL && (msg->flags & XPC_M_SN2_DONE));
  1626. DBUG_ON(msg != NULL && !(msg->flags & XPC_M_SN2_READY));
  1627. payload = &msg->payload;
  1628. break;
  1629. }
  1630. } while (1);
  1631. return payload;
  1632. }
  1633. /*
  1634. * Now we actually send the messages that are ready to be sent by advancing
  1635. * the local message queue's Put value and then send a chctl msgrequest to the
  1636. * recipient partition.
  1637. */
  1638. static void
  1639. xpc_send_msgs_sn2(struct xpc_channel *ch, s64 initial_put)
  1640. {
  1641. struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2;
  1642. struct xpc_msg_sn2 *msg;
  1643. s64 put = initial_put + 1;
  1644. int send_msgrequest = 0;
  1645. while (1) {
  1646. while (1) {
  1647. if (put == ch_sn2->w_local_GP.put)
  1648. break;
  1649. msg = (struct xpc_msg_sn2 *)((u64)ch_sn2->
  1650. local_msgqueue + (put %
  1651. ch->local_nentries) *
  1652. ch->entry_size);
  1653. if (!(msg->flags & XPC_M_SN2_READY))
  1654. break;
  1655. put++;
  1656. }
  1657. if (put == initial_put) {
  1658. /* nothing's changed */
  1659. break;
  1660. }
  1661. if (cmpxchg_rel(&ch_sn2->local_GP->put, initial_put, put) !=
  1662. initial_put) {
  1663. /* someone else beat us to it */
  1664. DBUG_ON(ch_sn2->local_GP->put < initial_put);
  1665. break;
  1666. }
  1667. /* we just set the new value of local_GP->put */
  1668. dev_dbg(xpc_chan, "local_GP->put changed to %ld, partid=%d, "
  1669. "channel=%d\n", put, ch->partid, ch->number);
  1670. send_msgrequest = 1;
  1671. /*
  1672. * We need to ensure that the message referenced by
  1673. * local_GP->put is not XPC_M_SN2_READY or that local_GP->put
  1674. * equals w_local_GP.put, so we'll go have a look.
  1675. */
  1676. initial_put = put;
  1677. }
  1678. if (send_msgrequest)
  1679. xpc_send_chctl_msgrequest_sn2(ch);
  1680. }
  1681. /*
  1682. * Allocate an entry for a message from the message queue associated with the
  1683. * specified channel.
  1684. */
  1685. static enum xp_retval
  1686. xpc_allocate_msg_sn2(struct xpc_channel *ch, u32 flags,
  1687. struct xpc_msg_sn2 **address_of_msg)
  1688. {
  1689. struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2;
  1690. struct xpc_msg_sn2 *msg;
  1691. enum xp_retval ret;
  1692. s64 put;
  1693. /*
  1694. * Get the next available message entry from the local message queue.
  1695. * If none are available, we'll make sure that we grab the latest
  1696. * GP values.
  1697. */
  1698. ret = xpTimeout;
  1699. while (1) {
  1700. put = ch_sn2->w_local_GP.put;
  1701. smp_rmb(); /* guarantee that .put loads before .get */
  1702. if (put - ch_sn2->w_remote_GP.get < ch->local_nentries) {
  1703. /* There are available message entries. We need to try
  1704. * to secure one for ourselves. We'll do this by trying
  1705. * to increment w_local_GP.put as long as someone else
  1706. * doesn't beat us to it. If they do, we'll have to
  1707. * try again.
  1708. */
  1709. if (cmpxchg(&ch_sn2->w_local_GP.put, put, put + 1) ==
  1710. put) {
  1711. /* we got the entry referenced by put */
  1712. break;
  1713. }
  1714. continue; /* try again */
  1715. }
  1716. /*
  1717. * There aren't any available msg entries at this time.
  1718. *
  1719. * In waiting for a message entry to become available,
  1720. * we set a timeout in case the other side is not sending
  1721. * completion interrupts. This lets us fake a notify IRQ
  1722. * that will cause the notify IRQ handler to fetch the latest
  1723. * GP values as if an interrupt was sent by the other side.
  1724. */
  1725. if (ret == xpTimeout)
  1726. xpc_send_chctl_local_msgrequest_sn2(ch);
  1727. if (flags & XPC_NOWAIT)
  1728. return xpNoWait;
  1729. ret = xpc_allocate_msg_wait(ch);
  1730. if (ret != xpInterrupted && ret != xpTimeout)
  1731. return ret;
  1732. }
  1733. /* get the message's address and initialize it */
  1734. msg = (struct xpc_msg_sn2 *)((u64)ch_sn2->local_msgqueue +
  1735. (put % ch->local_nentries) *
  1736. ch->entry_size);
  1737. DBUG_ON(msg->flags != 0);
  1738. msg->number = put;
  1739. dev_dbg(xpc_chan, "w_local_GP.put changed to %ld; msg=0x%p, "
  1740. "msg_number=%ld, partid=%d, channel=%d\n", put + 1,
  1741. (void *)msg, msg->number, ch->partid, ch->number);
  1742. *address_of_msg = msg;
  1743. return xpSuccess;
  1744. }
  1745. /*
  1746. * Common code that does the actual sending of the message by advancing the
  1747. * local message queue's Put value and sends a chctl msgrequest to the
  1748. * partition the message is being sent to.
  1749. */
  1750. static enum xp_retval
  1751. xpc_send_payload_sn2(struct xpc_channel *ch, u32 flags, void *payload,
  1752. u16 payload_size, u8 notify_type, xpc_notify_func func,
  1753. void *key)
  1754. {
  1755. enum xp_retval ret = xpSuccess;
  1756. struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2;
  1757. struct xpc_msg_sn2 *msg = msg;
  1758. struct xpc_notify_sn2 *notify = notify;
  1759. s64 msg_number;
  1760. s64 put;
  1761. DBUG_ON(notify_type == XPC_N_CALL && func == NULL);
  1762. if (XPC_MSG_SIZE(payload_size) > ch->entry_size)
  1763. return xpPayloadTooBig;
  1764. xpc_msgqueue_ref(ch);
  1765. if (ch->flags & XPC_C_DISCONNECTING) {
  1766. ret = ch->reason;
  1767. goto out_1;
  1768. }
  1769. if (!(ch->flags & XPC_C_CONNECTED)) {
  1770. ret = xpNotConnected;
  1771. goto out_1;
  1772. }
  1773. ret = xpc_allocate_msg_sn2(ch, flags, &msg);
  1774. if (ret != xpSuccess)
  1775. goto out_1;
  1776. msg_number = msg->number;
  1777. if (notify_type != 0) {
  1778. /*
  1779. * Tell the remote side to send an ACK interrupt when the
  1780. * message has been delivered.
  1781. */
  1782. msg->flags |= XPC_M_SN2_INTERRUPT;
  1783. atomic_inc(&ch->n_to_notify);
  1784. notify = &ch_sn2->notify_queue[msg_number % ch->local_nentries];
  1785. notify->func = func;
  1786. notify->key = key;
  1787. notify->type = notify_type;
  1788. /* ??? Is a mb() needed here? */
  1789. if (ch->flags & XPC_C_DISCONNECTING) {
  1790. /*
  1791. * An error occurred between our last error check and
  1792. * this one. We will try to clear the type field from
  1793. * the notify entry. If we succeed then
  1794. * xpc_disconnect_channel() didn't already process
  1795. * the notify entry.
  1796. */
  1797. if (cmpxchg(&notify->type, notify_type, 0) ==
  1798. notify_type) {
  1799. atomic_dec(&ch->n_to_notify);
  1800. ret = ch->reason;
  1801. }
  1802. goto out_1;
  1803. }
  1804. }
  1805. memcpy(&msg->payload, payload, payload_size);
  1806. msg->flags |= XPC_M_SN2_READY;
  1807. /*
  1808. * The preceding store of msg->flags must occur before the following
  1809. * load of local_GP->put.
  1810. */
  1811. smp_mb();
  1812. /* see if the message is next in line to be sent, if so send it */
  1813. put = ch_sn2->local_GP->put;
  1814. if (put == msg_number)
  1815. xpc_send_msgs_sn2(ch, put);
  1816. out_1:
  1817. xpc_msgqueue_deref(ch);
  1818. return ret;
  1819. }
  1820. /*
  1821. * Now we actually acknowledge the messages that have been delivered and ack'd
  1822. * by advancing the cached remote message queue's Get value and if requested
  1823. * send a chctl msgrequest to the message sender's partition.
  1824. *
  1825. * If a message has XPC_M_SN2_INTERRUPT set, send an interrupt to the partition
  1826. * that sent the message.
  1827. */
  1828. static void
  1829. xpc_acknowledge_msgs_sn2(struct xpc_channel *ch, s64 initial_get, u8 msg_flags)
  1830. {
  1831. struct xpc_channel_sn2 *ch_sn2 = &ch->sn.sn2;
  1832. struct xpc_msg_sn2 *msg;
  1833. s64 get = initial_get + 1;
  1834. int send_msgrequest = 0;
  1835. while (1) {
  1836. while (1) {
  1837. if (get == ch_sn2->w_local_GP.get)
  1838. break;
  1839. msg = (struct xpc_msg_sn2 *)((u64)ch_sn2->
  1840. remote_msgqueue + (get %
  1841. ch->remote_nentries) *
  1842. ch->entry_size);
  1843. if (!(msg->flags & XPC_M_SN2_DONE))
  1844. break;
  1845. msg_flags |= msg->flags;
  1846. get++;
  1847. }
  1848. if (get == initial_get) {
  1849. /* nothing's changed */
  1850. break;
  1851. }
  1852. if (cmpxchg_rel(&ch_sn2->local_GP->get, initial_get, get) !=
  1853. initial_get) {
  1854. /* someone else beat us to it */
  1855. DBUG_ON(ch_sn2->local_GP->get <= initial_get);
  1856. break;
  1857. }
  1858. /* we just set the new value of local_GP->get */
  1859. dev_dbg(xpc_chan, "local_GP->get changed to %ld, partid=%d, "
  1860. "channel=%d\n", get, ch->partid, ch->number);
  1861. send_msgrequest = (msg_flags & XPC_M_SN2_INTERRUPT);
  1862. /*
  1863. * We need to ensure that the message referenced by
  1864. * local_GP->get is not XPC_M_SN2_DONE or that local_GP->get
  1865. * equals w_local_GP.get, so we'll go have a look.
  1866. */
  1867. initial_get = get;
  1868. }
  1869. if (send_msgrequest)
  1870. xpc_send_chctl_msgrequest_sn2(ch);
  1871. }
  1872. static void
  1873. xpc_received_payload_sn2(struct xpc_channel *ch, void *payload)
  1874. {
  1875. struct xpc_msg_sn2 *msg;
  1876. s64 msg_number;
  1877. s64 get;
  1878. msg = container_of(payload, struct xpc_msg_sn2, payload);
  1879. msg_number = msg->number;
  1880. dev_dbg(xpc_chan, "msg=0x%p, msg_number=%ld, partid=%d, channel=%d\n",
  1881. (void *)msg, msg_number, ch->partid, ch->number);
  1882. DBUG_ON((((u64)msg - (u64)ch->remote_msgqueue) / ch->entry_size) !=
  1883. msg_number % ch->remote_nentries);
  1884. DBUG_ON(msg->flags & XPC_M_SN2_DONE);
  1885. msg->flags |= XPC_M_SN2_DONE;
  1886. /*
  1887. * The preceding store of msg->flags must occur before the following
  1888. * load of local_GP->get.
  1889. */
  1890. smp_mb();
  1891. /*
  1892. * See if this message is next in line to be acknowledged as having
  1893. * been delivered.
  1894. */
  1895. get = ch->sn.sn2.local_GP->get;
  1896. if (get == msg_number)
  1897. xpc_acknowledge_msgs_sn2(ch, get, msg->flags);
  1898. }
  1899. int
  1900. xpc_init_sn2(void)
  1901. {
  1902. int ret;
  1903. size_t buf_size;
  1904. xpc_setup_partitions_sn = xpc_setup_partitions_sn_sn2;
  1905. xpc_get_partition_rsvd_page_pa = xpc_get_partition_rsvd_page_pa_sn2;
  1906. xpc_setup_rsvd_page_sn = xpc_setup_rsvd_page_sn_sn2;
  1907. xpc_increment_heartbeat = xpc_increment_heartbeat_sn2;
  1908. xpc_offline_heartbeat = xpc_offline_heartbeat_sn2;
  1909. xpc_online_heartbeat = xpc_online_heartbeat_sn2;
  1910. xpc_heartbeat_init = xpc_heartbeat_init_sn2;
  1911. xpc_heartbeat_exit = xpc_heartbeat_exit_sn2;
  1912. xpc_get_remote_heartbeat = xpc_get_remote_heartbeat_sn2;
  1913. xpc_request_partition_activation = xpc_request_partition_activation_sn2;
  1914. xpc_request_partition_reactivation =
  1915. xpc_request_partition_reactivation_sn2;
  1916. xpc_request_partition_deactivation =
  1917. xpc_request_partition_deactivation_sn2;
  1918. xpc_cancel_partition_deactivation_request =
  1919. xpc_cancel_partition_deactivation_request_sn2;
  1920. xpc_process_activate_IRQ_rcvd = xpc_process_activate_IRQ_rcvd_sn2;
  1921. xpc_setup_ch_structures_sn = xpc_setup_ch_structures_sn_sn2;
  1922. xpc_teardown_ch_structures_sn = xpc_teardown_ch_structures_sn_sn2;
  1923. xpc_make_first_contact = xpc_make_first_contact_sn2;
  1924. xpc_get_chctl_all_flags = xpc_get_chctl_all_flags_sn2;
  1925. xpc_send_chctl_closerequest = xpc_send_chctl_closerequest_sn2;
  1926. xpc_send_chctl_closereply = xpc_send_chctl_closereply_sn2;
  1927. xpc_send_chctl_openrequest = xpc_send_chctl_openrequest_sn2;
  1928. xpc_send_chctl_openreply = xpc_send_chctl_openreply_sn2;
  1929. xpc_save_remote_msgqueue_pa = xpc_save_remote_msgqueue_pa_sn2;
  1930. xpc_setup_msg_structures = xpc_setup_msg_structures_sn2;
  1931. xpc_teardown_msg_structures = xpc_teardown_msg_structures_sn2;
  1932. xpc_notify_senders_of_disconnect = xpc_notify_senders_of_disconnect_sn2;
  1933. xpc_process_msg_chctl_flags = xpc_process_msg_chctl_flags_sn2;
  1934. xpc_n_of_deliverable_payloads = xpc_n_of_deliverable_payloads_sn2;
  1935. xpc_get_deliverable_payload = xpc_get_deliverable_payload_sn2;
  1936. xpc_indicate_partition_engaged = xpc_indicate_partition_engaged_sn2;
  1937. xpc_indicate_partition_disengaged =
  1938. xpc_indicate_partition_disengaged_sn2;
  1939. xpc_partition_engaged = xpc_partition_engaged_sn2;
  1940. xpc_any_partition_engaged = xpc_any_partition_engaged_sn2;
  1941. xpc_assume_partition_disengaged = xpc_assume_partition_disengaged_sn2;
  1942. xpc_send_payload = xpc_send_payload_sn2;
  1943. xpc_received_payload = xpc_received_payload_sn2;
  1944. if (offsetof(struct xpc_msg_sn2, payload) > XPC_MSG_HDR_MAX_SIZE) {
  1945. dev_err(xpc_part, "header portion of struct xpc_msg_sn2 is "
  1946. "larger than %d\n", XPC_MSG_HDR_MAX_SIZE);
  1947. return -E2BIG;
  1948. }
  1949. buf_size = max(XPC_RP_VARS_SIZE,
  1950. XPC_RP_HEADER_SIZE + XP_NASID_MASK_BYTES_SN2);
  1951. xpc_remote_copy_buffer_sn2 = xpc_kmalloc_cacheline_aligned(buf_size,
  1952. GFP_KERNEL,
  1953. &xpc_remote_copy_buffer_base_sn2);
  1954. if (xpc_remote_copy_buffer_sn2 == NULL) {
  1955. dev_err(xpc_part, "can't get memory for remote copy buffer\n");
  1956. return -ENOMEM;
  1957. }
  1958. /* open up protections for IPI and [potentially] amo operations */
  1959. xpc_allow_IPI_ops_sn2();
  1960. xpc_allow_amo_ops_shub_wars_1_1_sn2();
  1961. /*
  1962. * This is safe to do before the xpc_hb_checker thread has started
  1963. * because the handler releases a wait queue. If an interrupt is
  1964. * received before the thread is waiting, it will not go to sleep,
  1965. * but rather immediately process the interrupt.
  1966. */
  1967. ret = request_irq(SGI_XPC_ACTIVATE, xpc_handle_activate_IRQ_sn2, 0,
  1968. "xpc hb", NULL);
  1969. if (ret != 0) {
  1970. dev_err(xpc_part, "can't register ACTIVATE IRQ handler, "
  1971. "errno=%d\n", -ret);
  1972. xpc_disallow_IPI_ops_sn2();
  1973. kfree(xpc_remote_copy_buffer_base_sn2);
  1974. }
  1975. return ret;
  1976. }
  1977. void
  1978. xpc_exit_sn2(void)
  1979. {
  1980. free_irq(SGI_XPC_ACTIVATE, NULL);
  1981. xpc_disallow_IPI_ops_sn2();
  1982. kfree(xpc_remote_copy_buffer_base_sn2);
  1983. }