aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/infiniband')
-rw-r--r--drivers/infiniband/hw/mthca/mthca_doorbell.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_doorbell.h b/drivers/infiniband/hw/mthca/mthca_doorbell.h
index 78b183cab54c..821039a49049 100644
--- a/drivers/infiniband/hw/mthca/mthca_doorbell.h
+++ b/drivers/infiniband/hw/mthca/mthca_doorbell.h
@@ -51,6 +51,11 @@
51#define MTHCA_INIT_DOORBELL_LOCK(ptr) do { } while (0) 51#define MTHCA_INIT_DOORBELL_LOCK(ptr) do { } while (0)
52#define MTHCA_GET_DOORBELL_LOCK(ptr) (NULL) 52#define MTHCA_GET_DOORBELL_LOCK(ptr) (NULL)
53 53
54static inline void mthca_write64_raw(__be64 val, void __iomem *dest)
55{
56 __raw_writeq((__force u64) val, dest);
57}
58
54static inline void mthca_write64(u32 val[2], void __iomem *dest, 59static inline void mthca_write64(u32 val[2], void __iomem *dest,
55 spinlock_t *doorbell_lock) 60 spinlock_t *doorbell_lock)
56{ 61{
@@ -74,6 +79,12 @@ static inline void mthca_write_db_rec(u32 val[2], u32 *db)
74#define MTHCA_INIT_DOORBELL_LOCK(ptr) spin_lock_init(ptr) 79#define MTHCA_INIT_DOORBELL_LOCK(ptr) spin_lock_init(ptr)
75#define MTHCA_GET_DOORBELL_LOCK(ptr) (ptr) 80#define MTHCA_GET_DOORBELL_LOCK(ptr) (ptr)
76 81
82static inline void mthca_write64_raw(__be64 val, void __iomem *dest)
83{
84 __raw_writel(((__force u32 *) &val)[0], dest);
85 __raw_writel(((__force u32 *) &val)[1], dest + 4);
86}
87
77static inline void mthca_write64(u32 val[2], void __iomem *dest, 88static inline void mthca_write64(u32 val[2], void __iomem *dest,
78 spinlock_t *doorbell_lock) 89 spinlock_t *doorbell_lock)
79{ 90{