lkml.org 
[lkml]   [2020]   [Dec]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH AUTOSEL 5.4 012/130] scsi: pm80xx: Avoid busywait in FW ready check
    Date
    From: akshatzen <akshatzen@google.com>

    [ Upstream commit 48cd6b38eb4f2874f091c4776ea1c26e7e4f967e ]

    In function check_fw_ready() we busy wait using udelay. The CPU is not
    released and we see need_resched failures.

    Busy waiting is not necessary since we are in process context and we can
    sleep instead. Replace udelay with msleep of 20 ms intervals while waiting
    for firmware to become ready.

    It has been verified that check_fw_ready is not being used in interrupt
    context anywhere, hence it is safe to make this change.

    Link: https://lore.kernel.org/r/20201102165528.26510-4-Viswas.G@microchip.com.com
    Acked-by: Jack Wang <jinpu.wang@cloud.ionos.com>
    Signed-off-by: akshatzen <akshatzen@google.com>
    Signed-off-by: Viswas G <Viswas.G@microchip.com>
    Signed-off-by: Ruksar Devadi <Ruksar.devadi@microchip.com>
    Signed-off-by: Radha Ramachandran <radha@google.com>
    Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
    Signed-off-by: Sasha Levin <sashal@kernel.org>
    ---
    drivers/scsi/pm8001/pm80xx_hwi.c | 21 +++++++++++----------
    drivers/scsi/pm8001/pm80xx_hwi.h | 6 ++++++
    2 files changed, 17 insertions(+), 10 deletions(-)

    diff --git a/drivers/scsi/pm8001/pm80xx_hwi.c b/drivers/scsi/pm8001/pm80xx_hwi.c
    index 8756bbf2c3896..a3c58cf2d68c9 100644
    --- a/drivers/scsi/pm8001/pm80xx_hwi.c
    +++ b/drivers/scsi/pm8001/pm80xx_hwi.c
    @@ -703,6 +703,7 @@ static int mpi_init_check(struct pm8001_hba_info *pm8001_ha)

    /**
    * check_fw_ready - The LLDD check if the FW is ready, if not, return error.
    + * This function sleeps hence it must not be used in atomic context.
    * @pm8001_ha: our hba card information
    */
    static int check_fw_ready(struct pm8001_hba_info *pm8001_ha)
    @@ -713,16 +714,16 @@ static int check_fw_ready(struct pm8001_hba_info *pm8001_ha)
    int ret = 0;

    /* reset / PCIe ready */
    - max_wait_time = max_wait_count = 100 * 1000; /* 100 milli sec */
    + max_wait_time = max_wait_count = 5; /* 100 milli sec */
    do {
    - udelay(1);
    + msleep(FW_READY_INTERVAL);
    value = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_1);
    } while ((value == 0xFFFFFFFF) && (--max_wait_count));

    /* check ila status */
    - max_wait_time = max_wait_count = 1000 * 1000; /* 1000 milli sec */
    + max_wait_time = max_wait_count = 50; /* 1000 milli sec */
    do {
    - udelay(1);
    + msleep(FW_READY_INTERVAL);
    value = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_1);
    } while (((value & SCRATCH_PAD_ILA_READY) !=
    SCRATCH_PAD_ILA_READY) && (--max_wait_count));
    @@ -735,9 +736,9 @@ static int check_fw_ready(struct pm8001_hba_info *pm8001_ha)
    }

    /* check RAAE status */
    - max_wait_time = max_wait_count = 1800 * 1000; /* 1800 milli sec */
    + max_wait_time = max_wait_count = 90; /* 1800 milli sec */
    do {
    - udelay(1);
    + msleep(FW_READY_INTERVAL);
    value = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_1);
    } while (((value & SCRATCH_PAD_RAAE_READY) !=
    SCRATCH_PAD_RAAE_READY) && (--max_wait_count));
    @@ -750,9 +751,9 @@ static int check_fw_ready(struct pm8001_hba_info *pm8001_ha)
    }

    /* check iop0 status */
    - max_wait_time = max_wait_count = 600 * 1000; /* 600 milli sec */
    + max_wait_time = max_wait_count = 30; /* 600 milli sec */
    do {
    - udelay(1);
    + msleep(FW_READY_INTERVAL);
    value = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_1);
    } while (((value & SCRATCH_PAD_IOP0_READY) != SCRATCH_PAD_IOP0_READY) &&
    (--max_wait_count));
    @@ -768,9 +769,9 @@ static int check_fw_ready(struct pm8001_hba_info *pm8001_ha)
    if ((pm8001_ha->chip_id != chip_8008) &&
    (pm8001_ha->chip_id != chip_8009)) {
    /* 200 milli sec */
    - max_wait_time = max_wait_count = 200 * 1000;
    + max_wait_time = max_wait_count = 10;
    do {
    - udelay(1);
    + msleep(FW_READY_INTERVAL);
    value = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_1);
    } while (((value & SCRATCH_PAD_IOP1_READY) !=
    SCRATCH_PAD_IOP1_READY) && (--max_wait_count));
    diff --git a/drivers/scsi/pm8001/pm80xx_hwi.h b/drivers/scsi/pm8001/pm80xx_hwi.h
    index dc9ab7689060b..806cf07eefff4 100644
    --- a/drivers/scsi/pm8001/pm80xx_hwi.h
    +++ b/drivers/scsi/pm8001/pm80xx_hwi.h
    @@ -1636,3 +1636,9 @@ typedef struct SASProtocolTimerConfig SASProtocolTimerConfig_t;

    #define MEMBASE_II_SHIFT_REGISTER 0x1010
    #endif
    +
    +/**
    + * As we know sleep (1~20) ms may result in sleep longer than ~20 ms, hence we
    + * choose 20 ms interval.
    + */
    +#define FW_READY_INTERVAL 20
    --
    2.27.0
    \
     
     \ /
      Last update: 2020-12-23 04:06    [W:2.288 / U:0.020 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site