Commit 00da714b authored by Ke Wei's avatar Ke Wei Committed by James Bottomley

[SCSI] mvsas: fix phy sas address

The phy sas address is showing wrongly (wrong endianness).  Fix up the
endian transforms to make this correct.
Signed-off-by: default avatarKe Wei <kewei@marvell.com>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@HansenPartnership.com>
parent ee54cc6a
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
#include <asm/io.h> #include <asm/io.h>
#define DRV_NAME "mvsas" #define DRV_NAME "mvsas"
#define DRV_VERSION "0.5" #define DRV_VERSION "0.5.1"
#define _MV_DUMP 0 #define _MV_DUMP 0
#define MVS_DISABLE_NVRAM #define MVS_DISABLE_NVRAM
#define MVS_DISABLE_MSI #define MVS_DISABLE_MSI
...@@ -1005,7 +1005,7 @@ static int mvs_nvram_read(struct mvs_info *mvi, u32 addr, ...@@ -1005,7 +1005,7 @@ static int mvs_nvram_read(struct mvs_info *mvi, u32 addr,
return rc; return rc;
#else #else
/* FIXME , For SAS target mode */ /* FIXME , For SAS target mode */
memcpy(buf, "\x00\x00\xab\x11\x30\x04\x05\x50", 8); memcpy(buf, "\x50\x05\x04\x30\x11\xab\x00\x00", 8);
return 0; return 0;
#endif #endif
} }
...@@ -1330,7 +1330,7 @@ static int mvs_int_rx(struct mvs_info *mvi, bool self_clear) ...@@ -1330,7 +1330,7 @@ static int mvs_int_rx(struct mvs_info *mvi, bool self_clear)
mvs_hba_cq_dump(mvi); mvs_hba_cq_dump(mvi);
if (unlikely(rx_desc & RXQ_DONE)) if (likely(rx_desc & RXQ_DONE))
mvs_slot_complete(mvi, rx_desc); mvs_slot_complete(mvi, rx_desc);
if (rx_desc & RXQ_ATTN) { if (rx_desc & RXQ_ATTN) {
attn = true; attn = true;
...@@ -2720,9 +2720,8 @@ static int __devinit mvs_hw_init(struct mvs_info *mvi) ...@@ -2720,9 +2720,8 @@ static int __devinit mvs_hw_init(struct mvs_info *mvi)
msleep(100); msleep(100);
/* init and reset phys */ /* init and reset phys */
for (i = 0; i < mvi->chip->n_phy; i++) { for (i = 0; i < mvi->chip->n_phy; i++) {
/* FIXME: is this the correct dword order? */ u32 lo = be32_to_cpu(*(u32 *)&mvi->sas_addr[4]);
u32 lo = *((u32 *)&mvi->sas_addr[0]); u32 hi = be32_to_cpu(*(u32 *)&mvi->sas_addr[0]);
u32 hi = *((u32 *)&mvi->sas_addr[4]);
mvs_detect_porttype(mvi, i); mvs_detect_porttype(mvi, i);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment