mthca_av.c 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. /*
  2. * Copyright (c) 2004 Topspin Communications. All rights reserved.
  3. * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
  4. *
  5. * This software is available to you under a choice of one of two
  6. * licenses. You may choose to be licensed under the terms of the GNU
  7. * General Public License (GPL) Version 2, available from the file
  8. * COPYING in the main directory of this source tree, or the
  9. * OpenIB.org BSD license below:
  10. *
  11. * Redistribution and use in source and binary forms, with or
  12. * without modification, are permitted provided that the following
  13. * conditions are met:
  14. *
  15. * - Redistributions of source code must retain the above
  16. * copyright notice, this list of conditions and the following
  17. * disclaimer.
  18. *
  19. * - Redistributions in binary form must reproduce the above
  20. * copyright notice, this list of conditions and the following
  21. * disclaimer in the documentation and/or other materials
  22. * provided with the distribution.
  23. *
  24. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  25. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  26. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  27. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  28. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  29. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  30. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  31. * SOFTWARE.
  32. *
  33. * $Id: mthca_av.c 1349 2004-12-16 21:09:43Z roland $
  34. */
  35. #include <linux/string.h>
  36. #include <linux/slab.h>
  37. #include <rdma/ib_verbs.h>
  38. #include <rdma/ib_cache.h>
  39. #include "mthca_dev.h"
  40. enum {
  41. MTHCA_RATE_TAVOR_FULL = 0,
  42. MTHCA_RATE_TAVOR_1X = 1,
  43. MTHCA_RATE_TAVOR_4X = 2,
  44. MTHCA_RATE_TAVOR_1X_DDR = 3
  45. };
  46. enum {
  47. MTHCA_RATE_MEMFREE_FULL = 0,
  48. MTHCA_RATE_MEMFREE_QUARTER = 1,
  49. MTHCA_RATE_MEMFREE_EIGHTH = 2,
  50. MTHCA_RATE_MEMFREE_HALF = 3
  51. };
  52. struct mthca_av {
  53. __be32 port_pd;
  54. u8 reserved1;
  55. u8 g_slid;
  56. __be16 dlid;
  57. u8 reserved2;
  58. u8 gid_index;
  59. u8 msg_sr;
  60. u8 hop_limit;
  61. __be32 sl_tclass_flowlabel;
  62. __be32 dgid[4];
  63. };
  64. static enum ib_rate memfree_rate_to_ib(u8 mthca_rate, u8 port_rate)
  65. {
  66. switch (mthca_rate) {
  67. case MTHCA_RATE_MEMFREE_EIGHTH:
  68. return mult_to_ib_rate(port_rate >> 3);
  69. case MTHCA_RATE_MEMFREE_QUARTER:
  70. return mult_to_ib_rate(port_rate >> 2);
  71. case MTHCA_RATE_MEMFREE_HALF:
  72. return mult_to_ib_rate(port_rate >> 1);
  73. case MTHCA_RATE_MEMFREE_FULL:
  74. default:
  75. return mult_to_ib_rate(port_rate);
  76. }
  77. }
  78. static enum ib_rate tavor_rate_to_ib(u8 mthca_rate, u8 port_rate)
  79. {
  80. switch (mthca_rate) {
  81. case MTHCA_RATE_TAVOR_1X: return IB_RATE_2_5_GBPS;
  82. case MTHCA_RATE_TAVOR_1X_DDR: return IB_RATE_5_GBPS;
  83. case MTHCA_RATE_TAVOR_4X: return IB_RATE_10_GBPS;
  84. default: return mult_to_ib_rate(port_rate);
  85. }
  86. }
  87. enum ib_rate mthca_rate_to_ib(struct mthca_dev *dev, u8 mthca_rate, u8 port)
  88. {
  89. if (mthca_is_memfree(dev)) {
  90. /* Handle old Arbel FW */
  91. if (dev->limits.stat_rate_support == 0x3 && mthca_rate)
  92. return IB_RATE_2_5_GBPS;
  93. return memfree_rate_to_ib(mthca_rate, dev->rate[port - 1]);
  94. } else
  95. return tavor_rate_to_ib(mthca_rate, dev->rate[port - 1]);
  96. }
  97. static u8 ib_rate_to_memfree(u8 req_rate, u8 cur_rate)
  98. {
  99. if (cur_rate <= req_rate)
  100. return 0;
  101. /*
  102. * Inter-packet delay (IPD) to get from rate X down to a rate
  103. * no more than Y is (X - 1) / Y.
  104. */
  105. switch ((cur_rate - 1) / req_rate) {
  106. case 0: return MTHCA_RATE_MEMFREE_FULL;
  107. case 1: return MTHCA_RATE_MEMFREE_HALF;
  108. case 2: /* fall through */
  109. case 3: return MTHCA_RATE_MEMFREE_QUARTER;
  110. default: return MTHCA_RATE_MEMFREE_EIGHTH;
  111. }
  112. }
  113. static u8 ib_rate_to_tavor(u8 static_rate)
  114. {
  115. switch (static_rate) {
  116. case IB_RATE_2_5_GBPS: return MTHCA_RATE_TAVOR_1X;
  117. case IB_RATE_5_GBPS: return MTHCA_RATE_TAVOR_1X_DDR;
  118. case IB_RATE_10_GBPS: return MTHCA_RATE_TAVOR_4X;
  119. default: return MTHCA_RATE_TAVOR_FULL;
  120. }
  121. }
  122. u8 mthca_get_rate(struct mthca_dev *dev, int static_rate, u8 port)
  123. {
  124. u8 rate;
  125. if (!static_rate || ib_rate_to_mult(static_rate) >= dev->rate[port - 1])
  126. return 0;
  127. if (mthca_is_memfree(dev))
  128. rate = ib_rate_to_memfree(ib_rate_to_mult(static_rate),
  129. dev->rate[port - 1]);
  130. else
  131. rate = ib_rate_to_tavor(static_rate);
  132. if (!(dev->limits.stat_rate_support & (1 << rate)))
  133. rate = 1;
  134. return rate;
  135. }
  136. int mthca_create_ah(struct mthca_dev *dev,
  137. struct mthca_pd *pd,
  138. struct ib_ah_attr *ah_attr,
  139. struct mthca_ah *ah)
  140. {
  141. u32 index = -1;
  142. struct mthca_av *av = NULL;
  143. ah->type = MTHCA_AH_PCI_POOL;
  144. if (mthca_is_memfree(dev)) {
  145. ah->av = kmalloc(sizeof *ah->av, GFP_ATOMIC);
  146. if (!ah->av)
  147. return -ENOMEM;
  148. ah->type = MTHCA_AH_KMALLOC;
  149. av = ah->av;
  150. } else if (!atomic_read(&pd->sqp_count) &&
  151. !(dev->mthca_flags & MTHCA_FLAG_DDR_HIDDEN)) {
  152. index = mthca_alloc(&dev->av_table.alloc);
  153. /* fall back to allocate in host memory */
  154. if (index == -1)
  155. goto on_hca_fail;
  156. av = kmalloc(sizeof *av, GFP_ATOMIC);
  157. if (!av)
  158. goto on_hca_fail;
  159. ah->type = MTHCA_AH_ON_HCA;
  160. ah->avdma = dev->av_table.ddr_av_base +
  161. index * MTHCA_AV_SIZE;
  162. }
  163. on_hca_fail:
  164. if (ah->type == MTHCA_AH_PCI_POOL) {
  165. ah->av = pci_pool_alloc(dev->av_table.pool,
  166. GFP_ATOMIC, &ah->avdma);
  167. if (!ah->av)
  168. return -ENOMEM;
  169. av = ah->av;
  170. }
  171. ah->key = pd->ntmr.ibmr.lkey;
  172. memset(av, 0, MTHCA_AV_SIZE);
  173. av->port_pd = cpu_to_be32(pd->pd_num | (ah_attr->port_num << 24));
  174. av->g_slid = ah_attr->src_path_bits;
  175. av->dlid = cpu_to_be16(ah_attr->dlid);
  176. av->msg_sr = (3 << 4) | /* 2K message */
  177. mthca_get_rate(dev, ah_attr->static_rate, ah_attr->port_num);
  178. av->sl_tclass_flowlabel = cpu_to_be32(ah_attr->sl << 28);
  179. if (ah_attr->ah_flags & IB_AH_GRH) {
  180. av->g_slid |= 0x80;
  181. av->gid_index = (ah_attr->port_num - 1) * dev->limits.gid_table_len +
  182. ah_attr->grh.sgid_index;
  183. av->hop_limit = ah_attr->grh.hop_limit;
  184. av->sl_tclass_flowlabel |=
  185. cpu_to_be32((ah_attr->grh.traffic_class << 20) |
  186. ah_attr->grh.flow_label);
  187. memcpy(av->dgid, ah_attr->grh.dgid.raw, 16);
  188. } else {
  189. /* Arbel workaround -- low byte of GID must be 2 */
  190. av->dgid[3] = cpu_to_be32(2);
  191. }
  192. if (0) {
  193. int j;
  194. mthca_dbg(dev, "Created UDAV at %p/%08lx:\n",
  195. av, (unsigned long) ah->avdma);
  196. for (j = 0; j < 8; ++j)
  197. printk(KERN_DEBUG " [%2x] %08x\n",
  198. j * 4, be32_to_cpu(((__be32 *) av)[j]));
  199. }
  200. if (ah->type == MTHCA_AH_ON_HCA) {
  201. memcpy_toio(dev->av_table.av_map + index * MTHCA_AV_SIZE,
  202. av, MTHCA_AV_SIZE);
  203. kfree(av);
  204. }
  205. return 0;
  206. }
  207. int mthca_destroy_ah(struct mthca_dev *dev, struct mthca_ah *ah)
  208. {
  209. switch (ah->type) {
  210. case MTHCA_AH_ON_HCA:
  211. mthca_free(&dev->av_table.alloc,
  212. (ah->avdma - dev->av_table.ddr_av_base) /
  213. MTHCA_AV_SIZE);
  214. break;
  215. case MTHCA_AH_PCI_POOL:
  216. pci_pool_free(dev->av_table.pool, ah->av, ah->avdma);
  217. break;
  218. case MTHCA_AH_KMALLOC:
  219. kfree(ah->av);
  220. break;
  221. }
  222. return 0;
  223. }
  224. int mthca_ah_grh_present(struct mthca_ah *ah)
  225. {
  226. return !!(ah->av->g_slid & 0x80);
  227. }
  228. int mthca_read_ah(struct mthca_dev *dev, struct mthca_ah *ah,
  229. struct ib_ud_header *header)
  230. {
  231. if (ah->type == MTHCA_AH_ON_HCA)
  232. return -EINVAL;
  233. header->lrh.service_level = be32_to_cpu(ah->av->sl_tclass_flowlabel) >> 28;
  234. header->lrh.destination_lid = ah->av->dlid;
  235. header->lrh.source_lid = cpu_to_be16(ah->av->g_slid & 0x7f);
  236. if (mthca_ah_grh_present(ah)) {
  237. header->grh.traffic_class =
  238. (be32_to_cpu(ah->av->sl_tclass_flowlabel) >> 20) & 0xff;
  239. header->grh.flow_label =
  240. ah->av->sl_tclass_flowlabel & cpu_to_be32(0xfffff);
  241. ib_get_cached_gid(&dev->ib_dev,
  242. be32_to_cpu(ah->av->port_pd) >> 24,
  243. ah->av->gid_index % dev->limits.gid_table_len,
  244. &header->grh.source_gid);
  245. memcpy(header->grh.destination_gid.raw,
  246. ah->av->dgid, 16);
  247. }
  248. return 0;
  249. }
  250. int mthca_ah_query(struct ib_ah *ibah, struct ib_ah_attr *attr)
  251. {
  252. struct mthca_ah *ah = to_mah(ibah);
  253. struct mthca_dev *dev = to_mdev(ibah->device);
  254. /* Only implement for MAD and memfree ah for now. */
  255. if (ah->type == MTHCA_AH_ON_HCA)
  256. return -ENOSYS;
  257. memset(attr, 0, sizeof *attr);
  258. attr->dlid = be16_to_cpu(ah->av->dlid);
  259. attr->sl = be32_to_cpu(ah->av->sl_tclass_flowlabel) >> 28;
  260. attr->port_num = be32_to_cpu(ah->av->port_pd) >> 24;
  261. attr->static_rate = mthca_rate_to_ib(dev, ah->av->msg_sr & 0x7,
  262. attr->port_num);
  263. attr->src_path_bits = ah->av->g_slid & 0x7F;
  264. attr->ah_flags = mthca_ah_grh_present(ah) ? IB_AH_GRH : 0;
  265. if (attr->ah_flags) {
  266. attr->grh.traffic_class =
  267. be32_to_cpu(ah->av->sl_tclass_flowlabel) >> 20;
  268. attr->grh.flow_label =
  269. be32_to_cpu(ah->av->sl_tclass_flowlabel) & 0xfffff;
  270. attr->grh.hop_limit = ah->av->hop_limit;
  271. attr->grh.sgid_index = ah->av->gid_index &
  272. (dev->limits.gid_table_len - 1);
  273. memcpy(attr->grh.dgid.raw, ah->av->dgid, 16);
  274. }
  275. return 0;
  276. }
  277. int mthca_init_av_table(struct mthca_dev *dev)
  278. {
  279. int err;
  280. if (mthca_is_memfree(dev))
  281. return 0;
  282. err = mthca_alloc_init(&dev->av_table.alloc,
  283. dev->av_table.num_ddr_avs,
  284. dev->av_table.num_ddr_avs - 1,
  285. 0);
  286. if (err)
  287. return err;
  288. dev->av_table.pool = pci_pool_create("mthca_av", dev->pdev,
  289. MTHCA_AV_SIZE,
  290. MTHCA_AV_SIZE, 0);
  291. if (!dev->av_table.pool)
  292. goto out_free_alloc;
  293. if (!(dev->mthca_flags & MTHCA_FLAG_DDR_HIDDEN)) {
  294. dev->av_table.av_map = ioremap(pci_resource_start(dev->pdev, 4) +
  295. dev->av_table.ddr_av_base -
  296. dev->ddr_start,
  297. dev->av_table.num_ddr_avs *
  298. MTHCA_AV_SIZE);
  299. if (!dev->av_table.av_map)
  300. goto out_free_pool;
  301. } else
  302. dev->av_table.av_map = NULL;
  303. return 0;
  304. out_free_pool:
  305. pci_pool_destroy(dev->av_table.pool);
  306. out_free_alloc:
  307. mthca_alloc_cleanup(&dev->av_table.alloc);
  308. return -ENOMEM;
  309. }
  310. void mthca_cleanup_av_table(struct mthca_dev *dev)
  311. {
  312. if (mthca_is_memfree(dev))
  313. return;
  314. if (dev->av_table.av_map)
  315. iounmap(dev->av_table.av_map);
  316. pci_pool_destroy(dev->av_table.pool);
  317. mthca_alloc_cleanup(&dev->av_table.alloc);
  318. }