mthca_av.c 9.8 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/init.h>
  36. #include <linux/string.h>
  37. #include <linux/slab.h>
  38. #include <rdma/ib_verbs.h>
  39. #include <rdma/ib_cache.h>
  40. #include "mthca_dev.h"
  41. enum {
  42. MTHCA_RATE_TAVOR_FULL = 0,
  43. MTHCA_RATE_TAVOR_1X = 1,
  44. MTHCA_RATE_TAVOR_4X = 2,
  45. MTHCA_RATE_TAVOR_1X_DDR = 3
  46. };
  47. enum {
  48. MTHCA_RATE_MEMFREE_FULL = 0,
  49. MTHCA_RATE_MEMFREE_QUARTER = 1,
  50. MTHCA_RATE_MEMFREE_EIGHTH = 2,
  51. MTHCA_RATE_MEMFREE_HALF = 3
  52. };
  53. struct mthca_av {
  54. __be32 port_pd;
  55. u8 reserved1;
  56. u8 g_slid;
  57. __be16 dlid;
  58. u8 reserved2;
  59. u8 gid_index;
  60. u8 msg_sr;
  61. u8 hop_limit;
  62. __be32 sl_tclass_flowlabel;
  63. __be32 dgid[4];
  64. };
  65. static enum ib_rate memfree_rate_to_ib(u8 mthca_rate, u8 port_rate)
  66. {
  67. switch (mthca_rate) {
  68. case MTHCA_RATE_MEMFREE_EIGHTH:
  69. return mult_to_ib_rate(port_rate >> 3);
  70. case MTHCA_RATE_MEMFREE_QUARTER:
  71. return mult_to_ib_rate(port_rate >> 2);
  72. case MTHCA_RATE_MEMFREE_HALF:
  73. return mult_to_ib_rate(port_rate >> 1);
  74. case MTHCA_RATE_MEMFREE_FULL:
  75. default:
  76. return mult_to_ib_rate(port_rate);
  77. }
  78. }
  79. static enum ib_rate tavor_rate_to_ib(u8 mthca_rate, u8 port_rate)
  80. {
  81. switch (mthca_rate) {
  82. case MTHCA_RATE_TAVOR_1X: return IB_RATE_2_5_GBPS;
  83. case MTHCA_RATE_TAVOR_1X_DDR: return IB_RATE_5_GBPS;
  84. case MTHCA_RATE_TAVOR_4X: return IB_RATE_10_GBPS;
  85. default: return port_rate;
  86. }
  87. }
  88. enum ib_rate mthca_rate_to_ib(struct mthca_dev *dev, u8 mthca_rate, u8 port)
  89. {
  90. if (mthca_is_memfree(dev)) {
  91. /* Handle old Arbel FW */
  92. if (dev->limits.stat_rate_support == 0x3 && mthca_rate)
  93. return IB_RATE_2_5_GBPS;
  94. return memfree_rate_to_ib(mthca_rate, dev->rate[port - 1]);
  95. } else
  96. return tavor_rate_to_ib(mthca_rate, dev->rate[port - 1]);
  97. }
  98. static u8 ib_rate_to_memfree(u8 req_rate, u8 cur_rate)
  99. {
  100. if (cur_rate <= req_rate)
  101. return 0;
  102. /*
  103. * Inter-packet delay (IPD) to get from rate X down to a rate
  104. * no more than Y is (X - 1) / Y.
  105. */
  106. switch ((cur_rate - 1) / req_rate) {
  107. case 0: return MTHCA_RATE_MEMFREE_FULL;
  108. case 1: return MTHCA_RATE_MEMFREE_HALF;
  109. case 2: /* fall through */
  110. case 3: return MTHCA_RATE_MEMFREE_QUARTER;
  111. default: return MTHCA_RATE_MEMFREE_EIGHTH;
  112. }
  113. }
  114. static u8 ib_rate_to_tavor(u8 static_rate)
  115. {
  116. switch (static_rate) {
  117. case IB_RATE_2_5_GBPS: return MTHCA_RATE_TAVOR_1X;
  118. case IB_RATE_5_GBPS: return MTHCA_RATE_TAVOR_1X_DDR;
  119. case IB_RATE_10_GBPS: return MTHCA_RATE_TAVOR_4X;
  120. default: return MTHCA_RATE_TAVOR_FULL;
  121. }
  122. }
  123. u8 mthca_get_rate(struct mthca_dev *dev, int static_rate, u8 port)
  124. {
  125. u8 rate;
  126. if (!static_rate || ib_rate_to_mult(static_rate) >= dev->rate[port - 1])
  127. return 0;
  128. if (mthca_is_memfree(dev))
  129. rate = ib_rate_to_memfree(ib_rate_to_mult(static_rate),
  130. dev->rate[port - 1]);
  131. else
  132. rate = ib_rate_to_tavor(static_rate);
  133. if (!(dev->limits.stat_rate_support & (1 << rate)))
  134. rate = 1;
  135. return rate;
  136. }
  137. int mthca_create_ah(struct mthca_dev *dev,
  138. struct mthca_pd *pd,
  139. struct ib_ah_attr *ah_attr,
  140. struct mthca_ah *ah)
  141. {
  142. u32 index = -1;
  143. struct mthca_av *av = NULL;
  144. ah->type = MTHCA_AH_PCI_POOL;
  145. if (mthca_is_memfree(dev)) {
  146. ah->av = kmalloc(sizeof *ah->av, GFP_ATOMIC);
  147. if (!ah->av)
  148. return -ENOMEM;
  149. ah->type = MTHCA_AH_KMALLOC;
  150. av = ah->av;
  151. } else if (!atomic_read(&pd->sqp_count) &&
  152. !(dev->mthca_flags & MTHCA_FLAG_DDR_HIDDEN)) {
  153. index = mthca_alloc(&dev->av_table.alloc);
  154. /* fall back to allocate in host memory */
  155. if (index == -1)
  156. goto on_hca_fail;
  157. av = kmalloc(sizeof *av, GFP_ATOMIC);
  158. if (!av)
  159. goto on_hca_fail;
  160. ah->type = MTHCA_AH_ON_HCA;
  161. ah->avdma = dev->av_table.ddr_av_base +
  162. index * MTHCA_AV_SIZE;
  163. }
  164. on_hca_fail:
  165. if (ah->type == MTHCA_AH_PCI_POOL) {
  166. ah->av = pci_pool_alloc(dev->av_table.pool,
  167. SLAB_ATOMIC, &ah->avdma);
  168. if (!ah->av)
  169. return -ENOMEM;
  170. av = ah->av;
  171. }
  172. ah->key = pd->ntmr.ibmr.lkey;
  173. memset(av, 0, MTHCA_AV_SIZE);
  174. av->port_pd = cpu_to_be32(pd->pd_num | (ah_attr->port_num << 24));
  175. av->g_slid = ah_attr->src_path_bits;
  176. av->dlid = cpu_to_be16(ah_attr->dlid);
  177. av->msg_sr = (3 << 4) | /* 2K message */
  178. mthca_get_rate(dev, ah_attr->static_rate, ah_attr->port_num);
  179. av->sl_tclass_flowlabel = cpu_to_be32(ah_attr->sl << 28);
  180. if (ah_attr->ah_flags & IB_AH_GRH) {
  181. av->g_slid |= 0x80;
  182. av->gid_index = (ah_attr->port_num - 1) * dev->limits.gid_table_len +
  183. ah_attr->grh.sgid_index;
  184. av->hop_limit = ah_attr->grh.hop_limit;
  185. av->sl_tclass_flowlabel |=
  186. cpu_to_be32((ah_attr->grh.traffic_class << 20) |
  187. ah_attr->grh.flow_label);
  188. memcpy(av->dgid, ah_attr->grh.dgid.raw, 16);
  189. } else {
  190. /* Arbel workaround -- low byte of GID must be 2 */
  191. av->dgid[3] = cpu_to_be32(2);
  192. }
  193. if (0) {
  194. int j;
  195. mthca_dbg(dev, "Created UDAV at %p/%08lx:\n",
  196. av, (unsigned long) ah->avdma);
  197. for (j = 0; j < 8; ++j)
  198. printk(KERN_DEBUG " [%2x] %08x\n",
  199. j * 4, be32_to_cpu(((__be32 *) av)[j]));
  200. }
  201. if (ah->type == MTHCA_AH_ON_HCA) {
  202. memcpy_toio(dev->av_table.av_map + index * MTHCA_AV_SIZE,
  203. av, MTHCA_AV_SIZE);
  204. kfree(av);
  205. }
  206. return 0;
  207. }
  208. int mthca_destroy_ah(struct mthca_dev *dev, struct mthca_ah *ah)
  209. {
  210. switch (ah->type) {
  211. case MTHCA_AH_ON_HCA:
  212. mthca_free(&dev->av_table.alloc,
  213. (ah->avdma - dev->av_table.ddr_av_base) /
  214. MTHCA_AV_SIZE);
  215. break;
  216. case MTHCA_AH_PCI_POOL:
  217. pci_pool_free(dev->av_table.pool, ah->av, ah->avdma);
  218. break;
  219. case MTHCA_AH_KMALLOC:
  220. kfree(ah->av);
  221. break;
  222. }
  223. return 0;
  224. }
  225. int mthca_ah_grh_present(struct mthca_ah *ah)
  226. {
  227. return !!(ah->av->g_slid & 0x80);
  228. }
  229. int mthca_read_ah(struct mthca_dev *dev, struct mthca_ah *ah,
  230. struct ib_ud_header *header)
  231. {
  232. if (ah->type == MTHCA_AH_ON_HCA)
  233. return -EINVAL;
  234. header->lrh.service_level = be32_to_cpu(ah->av->sl_tclass_flowlabel) >> 28;
  235. header->lrh.destination_lid = ah->av->dlid;
  236. header->lrh.source_lid = cpu_to_be16(ah->av->g_slid & 0x7f);
  237. if (mthca_ah_grh_present(ah)) {
  238. header->grh.traffic_class =
  239. (be32_to_cpu(ah->av->sl_tclass_flowlabel) >> 20) & 0xff;
  240. header->grh.flow_label =
  241. ah->av->sl_tclass_flowlabel & cpu_to_be32(0xfffff);
  242. ib_get_cached_gid(&dev->ib_dev,
  243. be32_to_cpu(ah->av->port_pd) >> 24,
  244. ah->av->gid_index % dev->limits.gid_table_len,
  245. &header->grh.source_gid);
  246. memcpy(header->grh.destination_gid.raw,
  247. ah->av->dgid, 16);
  248. }
  249. return 0;
  250. }
  251. int mthca_ah_query(struct ib_ah *ibah, struct ib_ah_attr *attr)
  252. {
  253. struct mthca_ah *ah = to_mah(ibah);
  254. struct mthca_dev *dev = to_mdev(ibah->device);
  255. /* Only implement for MAD and memfree ah for now. */
  256. if (ah->type == MTHCA_AH_ON_HCA)
  257. return -ENOSYS;
  258. memset(attr, 0, sizeof *attr);
  259. attr->dlid = be16_to_cpu(ah->av->dlid);
  260. attr->sl = be32_to_cpu(ah->av->sl_tclass_flowlabel) >> 28;
  261. attr->static_rate = ah->av->msg_sr & 0x7;
  262. attr->src_path_bits = ah->av->g_slid & 0x7F;
  263. attr->port_num = be32_to_cpu(ah->av->port_pd) >> 24;
  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 __devinit 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. }