]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
hisi_sas: add v2 hw support for >4 SATA phys
authorJohn Garry <john.garry@huawei.com>
Fri, 8 Apr 2016 09:23:13 +0000 (17:23 +0800)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 15 Apr 2016 20:53:16 +0000 (16:53 -0400)
This patch adds support for directly attaching SATA disks to phy
4-8. The problem was that only registers concerned with phy 0-3 were
being considered in sata_int_v2_hw().  The issue was not detected
previously as the development board only exposed phy 0-3; the new board
provides access to 8 phys.

Signed-off-by: John Garry <john.garry@huawei.com>
Reviewed-by: Zhangfei Gao <zhangfei.gao@linaro.org>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/hisi_sas/hisi_sas_v2_hw.c

index 5a7f7092018aab3e1d6c5bb14ed6134dde666397..cc083b9b1041a1522560011678568e4b0348306b 100644 (file)
@@ -1993,17 +1993,20 @@ static irqreturn_t sata_int_v2_hw(int irq_no, void *p)
        u32 ent_tmp, ent_msk, ent_int, port_id, link_rate, hard_phy_linkrate;
        irqreturn_t res = IRQ_HANDLED;
        u8 attached_sas_addr[SAS_ADDR_SIZE] = {0};
-       int phy_no;
+       int phy_no, offset;
 
        phy_no = sas_phy->id;
        initial_fis = &hisi_hba->initial_fis[phy_no];
        fis = &initial_fis->fis;
 
-       ent_msk = hisi_sas_read32(hisi_hba, ENT_INT_SRC_MSK1);
-       hisi_sas_write32(hisi_hba, ENT_INT_SRC_MSK1, ent_msk | 1 << phy_no);
+       offset = 4 * (phy_no / 4);
+       ent_msk = hisi_sas_read32(hisi_hba, ENT_INT_SRC_MSK1 + offset);
+       hisi_sas_write32(hisi_hba, ENT_INT_SRC_MSK1 + offset,
+                        ent_msk | 1 << ((phy_no % 4) * 8));
 
-       ent_int = hisi_sas_read32(hisi_hba, ENT_INT_SRC1);
-       ent_tmp = ent_int & (1 << (ENT_INT_SRC1_D2H_FIS_CH1_OFF * phy_no));
+       ent_int = hisi_sas_read32(hisi_hba, ENT_INT_SRC1 + offset);
+       ent_tmp = ent_int & (1 << (ENT_INT_SRC1_D2H_FIS_CH1_OFF *
+                            (phy_no % 4)));
        ent_int >>= ENT_INT_SRC1_D2H_FIS_CH1_OFF * (phy_no % 4);
        if ((ent_int & ENT_INT_SRC1_D2H_FIS_CH0_MSK) == 0) {
                dev_warn(dev, "sata int: phy%d did not receive FIS\n", phy_no);
@@ -2054,8 +2057,8 @@ static irqreturn_t sata_int_v2_hw(int irq_no, void *p)
        queue_work(hisi_hba->wq, &phy->phyup_ws);
 
 end:
-       hisi_sas_write32(hisi_hba, ENT_INT_SRC1, ent_tmp);
-       hisi_sas_write32(hisi_hba, ENT_INT_SRC_MSK1, ent_msk);
+       hisi_sas_write32(hisi_hba, ENT_INT_SRC1 + offset, ent_tmp);
+       hisi_sas_write32(hisi_hba, ENT_INT_SRC_MSK1 + offset, ent_msk);
 
        return res;
 }