ip27-hubio.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (C) 1992-1997, 2000-2003 Silicon Graphics, Inc.
  4. * Copyright (C) 2004 Christoph Hellwig.
  5. *
  6. * Support functions for the HUB ASIC - mostly PIO mapping related.
  7. */
  8. #include <linux/bitops.h>
  9. #include <linux/string.h>
  10. #include <linux/mmzone.h>
  11. #include <asm/sn/addrs.h>
  12. #include <asm/sn/arch.h>
  13. #include <asm/sn/agent.h>
  14. #include <asm/sn/io.h>
  15. #include <asm/xtalk/xtalk.h>
  16. static int force_fire_and_forget = 1;
  17. /**
  18. * hub_pio_map - establish a HUB PIO mapping
  19. *
  20. * @hub: hub to perform PIO mapping on
  21. * @widget: widget ID to perform PIO mapping for
  22. * @xtalk_addr: xtalk_address that needs to be mapped
  23. * @size: size of the PIO mapping
  24. *
  25. **/
  26. unsigned long hub_pio_map(nasid_t nasid, xwidgetnum_t widget,
  27. unsigned long xtalk_addr, size_t size)
  28. {
  29. unsigned i;
  30. /* use small-window mapping if possible */
  31. if ((xtalk_addr % SWIN_SIZE) + size <= SWIN_SIZE)
  32. return NODE_SWIN_BASE(nasid, widget) + (xtalk_addr % SWIN_SIZE);
  33. if ((xtalk_addr % BWIN_SIZE) + size > BWIN_SIZE) {
  34. printk(KERN_WARNING "PIO mapping at hub %d widget %d addr 0x%lx"
  35. " too big (%ld)\n",
  36. nasid, widget, xtalk_addr, size);
  37. return 0;
  38. }
  39. xtalk_addr &= ~(BWIN_SIZE-1);
  40. for (i = 0; i < HUB_NUM_BIG_WINDOW; i++) {
  41. if (test_and_set_bit(i, hub_data(nasid)->h_bigwin_used))
  42. continue;
  43. /*
  44. * The code below does a PIO write to setup an ITTE entry.
  45. *
  46. * We need to prevent other CPUs from seeing our updated
  47. * memory shadow of the ITTE (in the piomap) until the ITTE
  48. * entry is actually set up; otherwise, another CPU might
  49. * attempt a PIO prematurely.
  50. *
  51. * Also, the only way we can know that an entry has been
  52. * received by the hub and can be used by future PIO reads/
  53. * writes is by reading back the ITTE entry after writing it.
  54. *
  55. * For these two reasons, we PIO read back the ITTE entry
  56. * after we write it.
  57. */
  58. IIO_ITTE_PUT(nasid, i, HUB_PIO_MAP_TO_MEM, widget, xtalk_addr);
  59. __raw_readq(IIO_ITTE_GET(nasid, i));
  60. return NODE_BWIN_BASE(nasid, widget) + (xtalk_addr % BWIN_SIZE);
  61. }
  62. printk(KERN_WARNING "unable to establish PIO mapping for at"
  63. " hub %d widget %d addr 0x%lx\n",
  64. nasid, widget, xtalk_addr);
  65. return 0;
  66. }
  67. /*
  68. * hub_setup_prb(nasid, prbnum, credits, conveyor)
  69. *
  70. * Put a PRB into fire-and-forget mode if conveyor isn't set. Otherwise,
  71. * put it into conveyor belt mode with the specified number of credits.
  72. */
  73. static void hub_setup_prb(nasid_t nasid, int prbnum, int credits)
  74. {
  75. union iprb_u prb;
  76. int prb_offset;
  77. /*
  78. * Get the current register value.
  79. */
  80. prb_offset = IIO_IOPRB(prbnum);
  81. prb.iprb_regval = REMOTE_HUB_L(nasid, prb_offset);
  82. /*
  83. * Clear out some fields.
  84. */
  85. prb.iprb_ovflow = 1;
  86. prb.iprb_bnakctr = 0;
  87. prb.iprb_anakctr = 0;
  88. /*
  89. * Enable or disable fire-and-forget mode.
  90. */
  91. prb.iprb_ff = force_fire_and_forget ? 1 : 0;
  92. /*
  93. * Set the appropriate number of PIO credits for the widget.
  94. */
  95. prb.iprb_xtalkctr = credits;
  96. /*
  97. * Store the new value to the register.
  98. */
  99. REMOTE_HUB_S(nasid, prb_offset, prb.iprb_regval);
  100. }
  101. /**
  102. * hub_set_piomode - set pio mode for a given hub
  103. *
  104. * @nasid: physical node ID for the hub in question
  105. *
  106. * Put the hub into either "PIO conveyor belt" mode or "fire-and-forget" mode.
  107. * To do this, we have to make absolutely sure that no PIOs are in progress
  108. * so we turn off access to all widgets for the duration of the function.
  109. *
  110. * XXX - This code should really check what kind of widget we're talking
  111. * to. Bridges can only handle three requests, but XG will do more.
  112. * How many can crossbow handle to widget 0? We're assuming 1.
  113. *
  114. * XXX - There is a bug in the crossbow that link reset PIOs do not
  115. * return write responses. The easiest solution to this problem is to
  116. * leave widget 0 (xbow) in fire-and-forget mode at all times. This
  117. * only affects pio's to xbow registers, which should be rare.
  118. **/
  119. static void hub_set_piomode(nasid_t nasid)
  120. {
  121. u64 ii_iowa;
  122. union hubii_wcr_u ii_wcr;
  123. unsigned i;
  124. ii_iowa = REMOTE_HUB_L(nasid, IIO_OUTWIDGET_ACCESS);
  125. REMOTE_HUB_S(nasid, IIO_OUTWIDGET_ACCESS, 0);
  126. ii_wcr.wcr_reg_value = REMOTE_HUB_L(nasid, IIO_WCR);
  127. if (ii_wcr.iwcr_dir_con) {
  128. /*
  129. * Assume a bridge here.
  130. */
  131. hub_setup_prb(nasid, 0, 3);
  132. } else {
  133. /*
  134. * Assume a crossbow here.
  135. */
  136. hub_setup_prb(nasid, 0, 1);
  137. }
  138. /*
  139. * XXX - Here's where we should take the widget type into
  140. * when account assigning credits.
  141. */
  142. for (i = HUB_WIDGET_ID_MIN; i <= HUB_WIDGET_ID_MAX; i++)
  143. hub_setup_prb(nasid, i, 3);
  144. REMOTE_HUB_S(nasid, IIO_OUTWIDGET_ACCESS, ii_iowa);
  145. }
  146. /*
  147. * hub_pio_init - PIO-related hub initialization
  148. *
  149. * @hub: hubinfo structure for our hub
  150. */
  151. void hub_pio_init(nasid_t nasid)
  152. {
  153. unsigned i;
  154. /* initialize big window piomaps for this hub */
  155. bitmap_zero(hub_data(nasid)->h_bigwin_used, HUB_NUM_BIG_WINDOW);
  156. for (i = 0; i < HUB_NUM_BIG_WINDOW; i++)
  157. IIO_ITTE_DISABLE(nasid, i);
  158. hub_set_piomode(nasid);
  159. }