reset.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /*
  2. * Copyright (c) 2006, 2007 Cisco Systems, Inc. All rights reserved.
  3. * Copyright (c) 2007, 2008 Mellanox Technologies. 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. #include <linux/errno.h>
  34. #include <linux/pci.h>
  35. #include <linux/delay.h>
  36. #include <linux/slab.h>
  37. #include <linux/jiffies.h>
  38. #include "mlx4.h"
  39. int mlx4_reset(struct mlx4_dev *dev)
  40. {
  41. void __iomem *reset;
  42. u32 *hca_header = NULL;
  43. int pcie_cap;
  44. u16 devctl;
  45. u16 linkctl;
  46. u16 vendor;
  47. unsigned long end;
  48. u32 sem;
  49. int i;
  50. int err = 0;
  51. #define MLX4_RESET_BASE 0xf0000
  52. #define MLX4_RESET_SIZE 0x400
  53. #define MLX4_SEM_OFFSET 0x3fc
  54. #define MLX4_RESET_OFFSET 0x10
  55. #define MLX4_RESET_VALUE swab32(1)
  56. #define MLX4_SEM_TIMEOUT_JIFFIES (10 * HZ)
  57. #define MLX4_RESET_TIMEOUT_JIFFIES (2 * HZ)
  58. /*
  59. * Reset the chip. This is somewhat ugly because we have to
  60. * save off the PCI header before reset and then restore it
  61. * after the chip reboots. We skip config space offsets 22
  62. * and 23 since those have a special meaning.
  63. */
  64. /* Do we need to save off the full 4K PCI Express header?? */
  65. hca_header = kmalloc(256, GFP_KERNEL);
  66. if (!hca_header) {
  67. err = -ENOMEM;
  68. mlx4_err(dev, "Couldn't allocate memory to save HCA PCI header, aborting\n");
  69. goto out;
  70. }
  71. pcie_cap = pci_pcie_cap(dev->pdev);
  72. for (i = 0; i < 64; ++i) {
  73. if (i == 22 || i == 23)
  74. continue;
  75. if (pci_read_config_dword(dev->pdev, i * 4, hca_header + i)) {
  76. err = -ENODEV;
  77. mlx4_err(dev, "Couldn't save HCA PCI header, aborting\n");
  78. goto out;
  79. }
  80. }
  81. reset = ioremap(pci_resource_start(dev->pdev, 0) + MLX4_RESET_BASE,
  82. MLX4_RESET_SIZE);
  83. if (!reset) {
  84. err = -ENOMEM;
  85. mlx4_err(dev, "Couldn't map HCA reset register, aborting\n");
  86. goto out;
  87. }
  88. /* grab HW semaphore to lock out flash updates */
  89. end = jiffies + MLX4_SEM_TIMEOUT_JIFFIES;
  90. do {
  91. sem = readl(reset + MLX4_SEM_OFFSET);
  92. if (!sem)
  93. break;
  94. msleep(1);
  95. } while (time_before(jiffies, end));
  96. if (sem) {
  97. mlx4_err(dev, "Failed to obtain HW semaphore, aborting\n");
  98. err = -EAGAIN;
  99. iounmap(reset);
  100. goto out;
  101. }
  102. /* actually hit reset */
  103. writel(MLX4_RESET_VALUE, reset + MLX4_RESET_OFFSET);
  104. iounmap(reset);
  105. /* Docs say to wait one second before accessing device */
  106. msleep(1000);
  107. end = jiffies + MLX4_RESET_TIMEOUT_JIFFIES;
  108. do {
  109. if (!pci_read_config_word(dev->pdev, PCI_VENDOR_ID, &vendor) &&
  110. vendor != 0xffff)
  111. break;
  112. msleep(1);
  113. } while (time_before(jiffies, end));
  114. if (vendor == 0xffff) {
  115. err = -ENODEV;
  116. mlx4_err(dev, "PCI device did not come back after reset, aborting\n");
  117. goto out;
  118. }
  119. /* Now restore the PCI headers */
  120. if (pcie_cap) {
  121. devctl = hca_header[(pcie_cap + PCI_EXP_DEVCTL) / 4];
  122. if (pcie_capability_write_word(dev->pdev, PCI_EXP_DEVCTL,
  123. devctl)) {
  124. err = -ENODEV;
  125. mlx4_err(dev, "Couldn't restore HCA PCI Express Device Control register, aborting\n");
  126. goto out;
  127. }
  128. linkctl = hca_header[(pcie_cap + PCI_EXP_LNKCTL) / 4];
  129. if (pcie_capability_write_word(dev->pdev, PCI_EXP_LNKCTL,
  130. linkctl)) {
  131. err = -ENODEV;
  132. mlx4_err(dev, "Couldn't restore HCA PCI Express Link control register, aborting\n");
  133. goto out;
  134. }
  135. }
  136. for (i = 0; i < 16; ++i) {
  137. if (i * 4 == PCI_COMMAND)
  138. continue;
  139. if (pci_write_config_dword(dev->pdev, i * 4, hca_header[i])) {
  140. err = -ENODEV;
  141. mlx4_err(dev, "Couldn't restore HCA reg %x, aborting\n",
  142. i);
  143. goto out;
  144. }
  145. }
  146. if (pci_write_config_dword(dev->pdev, PCI_COMMAND,
  147. hca_header[PCI_COMMAND / 4])) {
  148. err = -ENODEV;
  149. mlx4_err(dev, "Couldn't restore HCA COMMAND, aborting\n");
  150. goto out;
  151. }
  152. out:
  153. kfree(hca_header);
  154. return err;
  155. }