en_main.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. /*
  2. * Copyright (c) 2007 Mellanox Technologies. All rights reserved.
  3. *
  4. * This software is available to you under a choice of one of two
  5. * licenses. You may choose to be licensed under the terms of the GNU
  6. * General Public License (GPL) Version 2, available from the file
  7. * COPYING in the main directory of this source tree, or the
  8. * OpenIB.org BSD license below:
  9. *
  10. * Redistribution and use in source and binary forms, with or
  11. * without modification, are permitted provided that the following
  12. * conditions are met:
  13. *
  14. * - Redistributions of source code must retain the above
  15. * copyright notice, this list of conditions and the following
  16. * disclaimer.
  17. *
  18. * - Redistributions in binary form must reproduce the above
  19. * copyright notice, this list of conditions and the following
  20. * disclaimer in the documentation and/or other materials
  21. * provided with the distribution.
  22. *
  23. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  24. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  25. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  26. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  27. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  28. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  29. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  30. * SOFTWARE.
  31. *
  32. */
  33. #include <linux/cpumask.h>
  34. #include <linux/module.h>
  35. #include <linux/delay.h>
  36. #include <linux/netdevice.h>
  37. #include <linux/slab.h>
  38. #include <linux/mlx4/driver.h>
  39. #include <linux/mlx4/device.h>
  40. #include <linux/mlx4/cmd.h>
  41. #include "mlx4_en.h"
  42. MODULE_AUTHOR("Liran Liss, Yevgeny Petrilin");
  43. MODULE_DESCRIPTION("Mellanox ConnectX HCA Ethernet driver");
  44. MODULE_LICENSE("Dual BSD/GPL");
  45. MODULE_VERSION(DRV_VERSION " ("DRV_RELDATE")");
  46. static const char mlx4_en_version[] =
  47. DRV_NAME ": Mellanox ConnectX HCA Ethernet driver v"
  48. DRV_VERSION " (" DRV_RELDATE ")\n";
  49. #define MLX4_EN_PARM_INT(X, def_val, desc) \
  50. static unsigned int X = def_val;\
  51. module_param(X , uint, 0444); \
  52. MODULE_PARM_DESC(X, desc);
  53. /*
  54. * Device scope module parameters
  55. */
  56. /* Enable RSS TCP traffic */
  57. MLX4_EN_PARM_INT(tcp_rss, 1,
  58. "Enable RSS for incomming TCP traffic or disabled (0)");
  59. /* Enable RSS UDP traffic */
  60. MLX4_EN_PARM_INT(udp_rss, 1,
  61. "Enable RSS for incomming UDP traffic or disabled (0)");
  62. /* Priority pausing */
  63. MLX4_EN_PARM_INT(pfctx, 0, "Priority based Flow Control policy on TX[7:0]."
  64. " Per priority bit mask");
  65. MLX4_EN_PARM_INT(pfcrx, 0, "Priority based Flow Control policy on RX[7:0]."
  66. " Per priority bit mask");
  67. int en_print(const char *level, const struct mlx4_en_priv *priv,
  68. const char *format, ...)
  69. {
  70. va_list args;
  71. struct va_format vaf;
  72. int i;
  73. va_start(args, format);
  74. vaf.fmt = format;
  75. vaf.va = &args;
  76. if (priv->registered)
  77. i = printk("%s%s: %s: %pV",
  78. level, DRV_NAME, priv->dev->name, &vaf);
  79. else
  80. i = printk("%s%s: %s: Port %d: %pV",
  81. level, DRV_NAME, dev_name(&priv->mdev->pdev->dev),
  82. priv->port, &vaf);
  83. va_end(args);
  84. return i;
  85. }
  86. static int mlx4_en_get_profile(struct mlx4_en_dev *mdev)
  87. {
  88. struct mlx4_en_profile *params = &mdev->profile;
  89. int i;
  90. params->tcp_rss = tcp_rss;
  91. params->udp_rss = udp_rss;
  92. if (params->udp_rss && !mdev->dev->caps.udp_rss) {
  93. mlx4_warn(mdev, "UDP RSS is not supported on this device.\n");
  94. params->udp_rss = 0;
  95. }
  96. for (i = 1; i <= MLX4_MAX_PORTS; i++) {
  97. params->prof[i].rx_pause = 1;
  98. params->prof[i].rx_ppp = pfcrx;
  99. params->prof[i].tx_pause = 1;
  100. params->prof[i].tx_ppp = pfctx;
  101. params->prof[i].tx_ring_size = MLX4_EN_DEF_TX_RING_SIZE;
  102. params->prof[i].rx_ring_size = MLX4_EN_DEF_RX_RING_SIZE;
  103. params->prof[i].tx_ring_num = MLX4_EN_NUM_TX_RINGS +
  104. (!!pfcrx) * MLX4_EN_NUM_PPP_RINGS;
  105. }
  106. return 0;
  107. }
  108. static void *mlx4_en_get_netdev(struct mlx4_dev *dev, void *ctx, u8 port)
  109. {
  110. struct mlx4_en_dev *endev = ctx;
  111. return endev->pndev[port];
  112. }
  113. static void mlx4_en_event(struct mlx4_dev *dev, void *endev_ptr,
  114. enum mlx4_dev_event event, int port)
  115. {
  116. struct mlx4_en_dev *mdev = (struct mlx4_en_dev *) endev_ptr;
  117. struct mlx4_en_priv *priv;
  118. if (!mdev->pndev[port])
  119. return;
  120. priv = netdev_priv(mdev->pndev[port]);
  121. switch (event) {
  122. case MLX4_DEV_EVENT_PORT_UP:
  123. case MLX4_DEV_EVENT_PORT_DOWN:
  124. /* To prevent races, we poll the link state in a separate
  125. task rather than changing it here */
  126. priv->link_state = event;
  127. queue_work(mdev->workqueue, &priv->linkstate_task);
  128. break;
  129. case MLX4_DEV_EVENT_CATASTROPHIC_ERROR:
  130. mlx4_err(mdev, "Internal error detected, restarting device\n");
  131. break;
  132. default:
  133. mlx4_warn(mdev, "Unhandled event: %d\n", event);
  134. }
  135. }
  136. static void mlx4_en_remove(struct mlx4_dev *dev, void *endev_ptr)
  137. {
  138. struct mlx4_en_dev *mdev = endev_ptr;
  139. int i;
  140. mutex_lock(&mdev->state_lock);
  141. mdev->device_up = false;
  142. mutex_unlock(&mdev->state_lock);
  143. mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH)
  144. if (mdev->pndev[i])
  145. mlx4_en_destroy_netdev(mdev->pndev[i]);
  146. flush_workqueue(mdev->workqueue);
  147. destroy_workqueue(mdev->workqueue);
  148. mlx4_mr_free(dev, &mdev->mr);
  149. mlx4_uar_free(dev, &mdev->priv_uar);
  150. mlx4_pd_free(dev, mdev->priv_pdn);
  151. kfree(mdev);
  152. }
  153. static void *mlx4_en_add(struct mlx4_dev *dev)
  154. {
  155. struct mlx4_en_dev *mdev;
  156. int i;
  157. int err;
  158. printk_once(KERN_INFO "%s", mlx4_en_version);
  159. mdev = kzalloc(sizeof *mdev, GFP_KERNEL);
  160. if (!mdev) {
  161. dev_err(&dev->pdev->dev, "Device struct alloc failed, "
  162. "aborting.\n");
  163. err = -ENOMEM;
  164. goto err_free_res;
  165. }
  166. if (mlx4_pd_alloc(dev, &mdev->priv_pdn))
  167. goto err_free_dev;
  168. if (mlx4_uar_alloc(dev, &mdev->priv_uar))
  169. goto err_pd;
  170. mdev->uar_map = ioremap((phys_addr_t) mdev->priv_uar.pfn << PAGE_SHIFT,
  171. PAGE_SIZE);
  172. if (!mdev->uar_map)
  173. goto err_uar;
  174. spin_lock_init(&mdev->uar_lock);
  175. mdev->dev = dev;
  176. mdev->dma_device = &(dev->pdev->dev);
  177. mdev->pdev = dev->pdev;
  178. mdev->device_up = false;
  179. mdev->LSO_support = !!(dev->caps.flags & (1 << 15));
  180. if (!mdev->LSO_support)
  181. mlx4_warn(mdev, "LSO not supported, please upgrade to later "
  182. "FW version to enable LSO\n");
  183. if (mlx4_mr_alloc(mdev->dev, mdev->priv_pdn, 0, ~0ull,
  184. MLX4_PERM_LOCAL_WRITE | MLX4_PERM_LOCAL_READ,
  185. 0, 0, &mdev->mr)) {
  186. mlx4_err(mdev, "Failed allocating memory region\n");
  187. goto err_uar;
  188. }
  189. if (mlx4_mr_enable(mdev->dev, &mdev->mr)) {
  190. mlx4_err(mdev, "Failed enabling memory region\n");
  191. goto err_mr;
  192. }
  193. /* Build device profile according to supplied module parameters */
  194. err = mlx4_en_get_profile(mdev);
  195. if (err) {
  196. mlx4_err(mdev, "Bad module parameters, aborting.\n");
  197. goto err_mr;
  198. }
  199. /* Configure wich ports to start according to module parameters */
  200. mdev->port_cnt = 0;
  201. mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH)
  202. mdev->port_cnt++;
  203. /* If we did not receive an explicit number of Rx rings, default to
  204. * the number of completion vectors populated by the mlx4_core */
  205. mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH) {
  206. mlx4_info(mdev, "Using %d tx rings for port:%d\n",
  207. mdev->profile.prof[i].tx_ring_num, i);
  208. mdev->profile.prof[i].rx_ring_num = min_t(int,
  209. roundup_pow_of_two(dev->caps.num_comp_vectors),
  210. MAX_RX_RINGS);
  211. mlx4_info(mdev, "Defaulting to %d rx rings for port:%d\n",
  212. mdev->profile.prof[i].rx_ring_num, i);
  213. }
  214. /* Create our own workqueue for reset/multicast tasks
  215. * Note: we cannot use the shared workqueue because of deadlocks caused
  216. * by the rtnl lock */
  217. mdev->workqueue = create_singlethread_workqueue("mlx4_en");
  218. if (!mdev->workqueue) {
  219. err = -ENOMEM;
  220. goto err_mr;
  221. }
  222. /* At this stage all non-port specific tasks are complete:
  223. * mark the card state as up */
  224. mutex_init(&mdev->state_lock);
  225. mdev->device_up = true;
  226. /* Setup ports */
  227. /* Create a netdev for each port */
  228. mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH) {
  229. mlx4_info(mdev, "Activating port:%d\n", i);
  230. if (mlx4_en_init_netdev(mdev, i, &mdev->profile.prof[i]))
  231. mdev->pndev[i] = NULL;
  232. }
  233. return mdev;
  234. err_mr:
  235. mlx4_mr_free(dev, &mdev->mr);
  236. err_uar:
  237. mlx4_uar_free(dev, &mdev->priv_uar);
  238. err_pd:
  239. mlx4_pd_free(dev, mdev->priv_pdn);
  240. err_free_dev:
  241. kfree(mdev);
  242. err_free_res:
  243. return NULL;
  244. }
  245. static struct mlx4_interface mlx4_en_interface = {
  246. .add = mlx4_en_add,
  247. .remove = mlx4_en_remove,
  248. .event = mlx4_en_event,
  249. .get_dev = mlx4_en_get_netdev,
  250. .protocol = MLX4_PROTOCOL_EN,
  251. };
  252. static int __init mlx4_en_init(void)
  253. {
  254. return mlx4_register_interface(&mlx4_en_interface);
  255. }
  256. static void __exit mlx4_en_cleanup(void)
  257. {
  258. mlx4_unregister_interface(&mlx4_en_interface);
  259. }
  260. module_init(mlx4_en_init);
  261. module_exit(mlx4_en_cleanup);