On 2021/6/4 22:43, Jason Gunthorpe wrote: > On Fri, May 28, 2021 at 05:32:58PM +0800, Weihang Li wrote: >> From: Lang Cheng <chenglang@xxxxxxxxxx> >> >> The doorbell data is a __le32[] value instead of uint32_t[], and the DB >> register should be written with a little-endian data instead of uint64_t. >> >> Signed-off-by: Lang Cheng <chenglang@xxxxxxxxxx> >> Signed-off-by: Weihang Li <liweihang@xxxxxxxxxx> >> providers/hns/hns_roce_u_db.h | 13 +++---------- >> providers/hns/hns_roce_u_hw_v1.c | 17 +++++++++-------- >> providers/hns/hns_roce_u_hw_v2.c | 28 +++++++++++++++++----------- >> 3 files changed, 29 insertions(+), 29 deletions(-) >> >> diff --git a/providers/hns/hns_roce_u_db.h b/providers/hns/hns_roce_u_db.h >> index b44e64d..453fa5a 100644 >> +++ b/providers/hns/hns_roce_u_db.h >> @@ -37,18 +37,11 @@ >> #ifndef _HNS_ROCE_U_DB_H >> #define _HNS_ROCE_U_DB_H >> >> -#if __BYTE_ORDER == __LITTLE_ENDIAN >> -#define HNS_ROCE_PAIR_TO_64(val) ((uint64_t) val[1] << 32 | val[0]) >> -#elif __BYTE_ORDER == __BIG_ENDIAN >> -#define HNS_ROCE_PAIR_TO_64(val) ((uint64_t) val[0] << 32 | val[1]) >> -#else >> -#error __BYTE_ORDER not defined >> -#endif >> +#define HNS_ROCE_WORD_NUM 2 >> >> -static inline void hns_roce_write64(uint32_t val[2], >> - struct hns_roce_context *ctx, int offset) >> +static inline void hns_roce_write64(__le64 *dest, __le32 val[HNS_ROCE_WORD_NUM]) >> { >> - *(volatile uint64_t *) (ctx->uar + offset) = HNS_ROCE_PAIR_TO_64(val); >> + *(volatile __le64 *)dest = *(__le64 *)val; >> } > > Please use the macros in util/mmio.h > > Jason > OK, thank you. Weihang