mthca_doorbell.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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_doorbell.h 1349 2004-12-16 21:09:43Z roland $
  34. */
  35. #include <linux/types.h>
  36. #define MTHCA_RD_DOORBELL 0x00
  37. #define MTHCA_SEND_DOORBELL 0x10
  38. #define MTHCA_RECEIVE_DOORBELL 0x18
  39. #define MTHCA_CQ_DOORBELL 0x20
  40. #define MTHCA_EQ_DOORBELL 0x28
  41. #if BITS_PER_LONG == 64
  42. /*
  43. * Assume that we can just write a 64-bit doorbell atomically. s390
  44. * actually doesn't have writeq() but S/390 systems don't even have
  45. * PCI so we won't worry about it.
  46. */
  47. #define MTHCA_DECLARE_DOORBELL_LOCK(name)
  48. #define MTHCA_INIT_DOORBELL_LOCK(ptr) do { } while (0)
  49. #define MTHCA_GET_DOORBELL_LOCK(ptr) (NULL)
  50. static inline void mthca_write64_raw(__be64 val, void __iomem *dest)
  51. {
  52. __raw_writeq((__force u64) val, dest);
  53. }
  54. static inline void mthca_write64(u32 val[2], void __iomem *dest,
  55. spinlock_t *doorbell_lock)
  56. {
  57. __raw_writeq(*(u64 *) val, dest);
  58. }
  59. static inline void mthca_write_db_rec(u32 val[2], u32 *db)
  60. {
  61. *(u64 *) db = *(u64 *) val;
  62. }
  63. #else
  64. /*
  65. * Just fall back to a spinlock to protect the doorbell if
  66. * BITS_PER_LONG is 32 -- there's no portable way to do atomic 64-bit
  67. * MMIO writes.
  68. */
  69. #define MTHCA_DECLARE_DOORBELL_LOCK(name) spinlock_t name;
  70. #define MTHCA_INIT_DOORBELL_LOCK(ptr) spin_lock_init(ptr)
  71. #define MTHCA_GET_DOORBELL_LOCK(ptr) (ptr)
  72. static inline void mthca_write64_raw(__be64 val, void __iomem *dest)
  73. {
  74. __raw_writel(((__force u32 *) &val)[0], dest);
  75. __raw_writel(((__force u32 *) &val)[1], dest + 4);
  76. }
  77. static inline void mthca_write64(u32 val[2], void __iomem *dest,
  78. spinlock_t *doorbell_lock)
  79. {
  80. unsigned long flags;
  81. spin_lock_irqsave(doorbell_lock, flags);
  82. __raw_writel(val[0], dest);
  83. __raw_writel(val[1], dest + 4);
  84. spin_unlock_irqrestore(doorbell_lock, flags);
  85. }
  86. static inline void mthca_write_db_rec(u32 val[2], u32 *db)
  87. {
  88. db[0] = val[0];
  89. wmb();
  90. db[1] = val[1];
  91. }
  92. #endif