RE: [PATCH 3/4] scsi: ufs: Make the polling code report which command has been completed

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> Prepare for introducing a new __ufshcd_poll() caller that will need to
> know whether or not a specific command has been completed.
> 
> Signed-off-by: Bart Van Assche <bvanassche@xxxxxxx>
> ---
>  drivers/ufs/core/ufs-mcq.c     | 23 +++++++++++++-------
>  drivers/ufs/core/ufshcd-priv.h |  4 ++--
>  drivers/ufs/core/ufshcd.c      | 39 +++++++++++++++++++++++-----------
>  drivers/ufs/host/ufs-qcom.c    |  2 +-
>  include/ufs/ufshcd.h           |  3 ++-
>  5 files changed, 47 insertions(+), 24 deletions(-)
> 
> diff --git a/drivers/ufs/core/ufs-mcq.c b/drivers/ufs/core/ufs-mcq.c
> index 228975caf68e..5a02e1b3b3a5 100644
> --- a/drivers/ufs/core/ufs-mcq.c
> +++ b/drivers/ufs/core/ufs-mcq.c
> @@ -268,17 +268,20 @@ static int ufshcd_mcq_get_tag(struct ufs_hba *hba,
> struct cq_entry *cqe)
>         return div_u64(addr, ufshcd_get_ucd_size(hba));
>  }
> 
> -static void ufshcd_mcq_process_cqe(struct ufs_hba *hba,
> -                                  struct ufs_hw_queue *hwq)
> +/* Returns true if and only if @compl_cmd has been completed. */
> +static bool ufshcd_mcq_process_cqe(struct ufs_hba *hba,
> +                                  struct ufs_hw_queue *hwq,
> +                                  struct scsi_cmnd *compl_cmd)
>  {
>         struct cq_entry *cqe = ufshcd_mcq_cur_cqe(hwq);
> -       int tag = ufshcd_mcq_get_tag(hba, cqe);
> 
>         if (cqe->command_desc_base_addr) {
> -               ufshcd_compl_one_cqe(hba, tag, cqe);
> -               /* After processed the cqe, mark it empty (invalid) entry */
> +               const int tag = ufshcd_mcq_get_tag(hba, cqe);
> +               /* Mark the CQE as invalid. */
>                 cqe->command_desc_base_addr = 0;
> +               return ufshcd_compl_one_cqe(hba, tag, cqe, compl_cmd);
>         }
> +       return false;
>  }
Maybe elaborate on explaining why the tag isn't enough to designate the completing command?

Thanks,
Avri



> 
>  void ufshcd_mcq_compl_all_cqes_lock(struct ufs_hba *hba,
> @@ -289,7 +292,7 @@ void ufshcd_mcq_compl_all_cqes_lock(struct ufs_hba
> *hba,
> 
>         spin_lock_irqsave(&hwq->cq_lock, flags);
>         while (entries > 0) {
> -               ufshcd_mcq_process_cqe(hba, hwq);
> +               ufshcd_mcq_process_cqe(hba, hwq, NULL);
>                 ufshcd_mcq_inc_cq_head_slot(hwq);
>                 entries--;
>         }
> @@ -299,8 +302,10 @@ void ufshcd_mcq_compl_all_cqes_lock(struct ufs_hba
> *hba,
>         spin_unlock_irqrestore(&hwq->cq_lock, flags);
>  }
> 
> +/* Clears *@compl_cmd if and only if *@compl_cmd has been completed. */
>  unsigned long ufshcd_mcq_poll_cqe_lock(struct ufs_hba *hba,
> -                                      struct ufs_hw_queue *hwq)
> +                                      struct ufs_hw_queue *hwq,
> +                                      struct scsi_cmnd **compl_cmd)
>  {
>         unsigned long completed_reqs = 0;
>         unsigned long flags;
> @@ -308,7 +313,9 @@ unsigned long ufshcd_mcq_poll_cqe_lock(struct
> ufs_hba *hba,
>         spin_lock_irqsave(&hwq->cq_lock, flags);
>         ufshcd_mcq_update_cq_tail_slot(hwq);
>         while (!ufshcd_mcq_is_cq_empty(hwq)) {
> -               ufshcd_mcq_process_cqe(hba, hwq);
> +               if (ufshcd_mcq_process_cqe(hba, hwq,
> +                                          compl_cmd ? *compl_cmd : NULL))
> +                       *compl_cmd = NULL;
>                 ufshcd_mcq_inc_cq_head_slot(hwq);
>                 completed_reqs++;
>         }
> diff --git a/drivers/ufs/core/ufshcd-priv.h b/drivers/ufs/core/ufshcd-priv.h
> index fb4457a84d11..42802fd689fb 100644
> --- a/drivers/ufs/core/ufshcd-priv.h
> +++ b/drivers/ufs/core/ufshcd-priv.h
> @@ -61,8 +61,8 @@ int ufshcd_query_attr(struct ufs_hba *hba, enum
> query_opcode opcode,
>  int ufshcd_query_flag(struct ufs_hba *hba, enum query_opcode opcode,
>         enum flag_idn idn, u8 index, bool *flag_res);
>  void ufshcd_auto_hibern8_update(struct ufs_hba *hba, u32 ahit);
> -void ufshcd_compl_one_cqe(struct ufs_hba *hba, int task_tag,
> -                         struct cq_entry *cqe);
> +bool ufshcd_compl_one_cqe(struct ufs_hba *hba, int task_tag,
> +                         struct cq_entry *cqe, struct scsi_cmnd *compl_cmd);
>  int ufshcd_mcq_init(struct ufs_hba *hba);
>  int ufshcd_mcq_decide_queue_depth(struct ufs_hba *hba);
>  int ufshcd_mcq_memory_alloc(struct ufs_hba *hba);
> diff --git a/drivers/ufs/core/ufshcd.c b/drivers/ufs/core/ufshcd.c
> index 66198eee51b0..08abdd763c51 100644
> --- a/drivers/ufs/core/ufshcd.c
> +++ b/drivers/ufs/core/ufshcd.c
> @@ -5540,9 +5540,12 @@ void ufshcd_release_scsi_cmd(struct ufs_hba *hba,
>   * @hba: per adapter instance
>   * @task_tag: the task tag of the request to be completed
>   * @cqe: pointer to the completion queue entry
> + * @compl_cmd: if not NULL, check whether this command has been
> completed
> + *
> + * Returns: true if and only if @compl_cmd has been completed.
>   */
> -void ufshcd_compl_one_cqe(struct ufs_hba *hba, int task_tag,
> -                         struct cq_entry *cqe)
> +bool ufshcd_compl_one_cqe(struct ufs_hba *hba, int task_tag,
> +                         struct cq_entry *cqe, struct scsi_cmnd *compl_cmd)
>  {
>         struct ufshcd_lrb *lrbp;
>         struct scsi_cmnd *cmd;
> @@ -5559,6 +5562,7 @@ void ufshcd_compl_one_cqe(struct ufs_hba *hba, int
> task_tag,
>                 ufshcd_release_scsi_cmd(hba, lrbp);
>                 /* Do not touch lrbp after scsi done */
>                 scsi_done(cmd);
> +               return cmd == compl_cmd;
>         } else if (lrbp->command_type == UTP_CMD_TYPE_DEV_MANAGE ||
>                    lrbp->command_type == UTP_CMD_TYPE_UFS_STORAGE) {
>                 if (hba->dev_cmd.complete) {
> @@ -5569,6 +5573,7 @@ void ufshcd_compl_one_cqe(struct ufs_hba *hba, int
> task_tag,
>                         complete(hba->dev_cmd.complete);
>                 }
>         }
> +       return false;
>  }
> 
>  /**
> @@ -5577,12 +5582,15 @@ void ufshcd_compl_one_cqe(struct ufs_hba *hba,
> int task_tag,
>   * @completed_reqs: bitmask that indicates which requests to complete
>   */
>  static void __ufshcd_transfer_req_compl(struct ufs_hba *hba,
> -                                       unsigned long completed_reqs)
> +                                       unsigned long completed_reqs,
> +                                       struct scsi_cmnd **compl_cmd)
>  {
>         int tag;
> 
>         for_each_set_bit(tag, &completed_reqs, hba->nutrs)
> -               ufshcd_compl_one_cqe(hba, tag, NULL);
> +               if (ufshcd_compl_one_cqe(hba, tag, NULL,
> +                                        compl_cmd ? *compl_cmd : NULL))
> +                       *compl_cmd = NULL;
>  }
> 
>  /* Any value that is not an existing queue number is fine for this constant. */
> @@ -5609,7 +5617,8 @@ static void ufshcd_clear_polled(struct ufs_hba *hba,
>   * Return: > 0 if one or more commands have been completed or 0 if no
>   * requests have been completed.
>   */
> -static int ufshcd_poll(struct Scsi_Host *shost, unsigned int queue_num)
> +static int __ufshcd_poll(struct Scsi_Host *shost, unsigned int queue_num,
> +                        struct scsi_cmnd **compl_cmd)
>  {
>         struct ufs_hba *hba = shost_priv(shost);
>         unsigned long completed_reqs, flags;
> @@ -5620,7 +5629,7 @@ static int ufshcd_poll(struct Scsi_Host *shost,
> unsigned int queue_num)
>                 WARN_ON_ONCE(queue_num ==
> UFSHCD_POLL_FROM_INTERRUPT_CONTEXT);
>                 hwq = &hba->uhq[queue_num];
> 
> -               return ufshcd_mcq_poll_cqe_lock(hba, hwq);
> +               return ufshcd_mcq_poll_cqe_lock(hba, hwq, compl_cmd);
>         }
> 
>         spin_lock_irqsave(&hba->outstanding_lock, flags);
> @@ -5637,11 +5646,16 @@ static int ufshcd_poll(struct Scsi_Host *shost,
> unsigned int queue_num)
>         spin_unlock_irqrestore(&hba->outstanding_lock, flags);
> 
>         if (completed_reqs)
> -               __ufshcd_transfer_req_compl(hba, completed_reqs);
> +               __ufshcd_transfer_req_compl(hba, completed_reqs, compl_cmd);
> 
>         return completed_reqs != 0;
>  }
> 
> +static int ufshcd_poll(struct Scsi_Host *shost, unsigned int queue_num)
> +{
> +       return __ufshcd_poll(shost, queue_num, NULL);
> +}
> +
>  /**
>   * ufshcd_mcq_compl_pending_transfer - MCQ mode function. It is
>   * invoked from the error handler context or ufshcd_host_reset_and_restore()
> @@ -5685,7 +5699,7 @@ static void
> ufshcd_mcq_compl_pending_transfer(struct ufs_hba *hba,
>                         }
>                         spin_unlock_irqrestore(&hwq->cq_lock, flags);
>                 } else {
> -                       ufshcd_mcq_poll_cqe_lock(hba, hwq);
> +                       ufshcd_mcq_poll_cqe_lock(hba, hwq, NULL);
>                 }
>         }
>  }
> @@ -6960,7 +6974,7 @@ static irqreturn_t
> ufshcd_handle_mcq_cq_events(struct ufs_hba *hba)
>                         ufshcd_mcq_write_cqis(hba, events, i);
> 
>                 if (events & UFSHCD_MCQ_CQIS_TAIL_ENT_PUSH_STS)
> -                       ufshcd_mcq_poll_cqe_lock(hba, hwq);
> +                       ufshcd_mcq_poll_cqe_lock(hba, hwq, NULL);
>         }
> 
>         return IRQ_HANDLED;
> @@ -7453,7 +7467,7 @@ static int ufshcd_eh_device_reset_handler(struct
> scsi_cmnd *cmd)
>                             lrbp->lun == lun) {
>                                 ufshcd_clear_cmd(hba, pos);
>                                 hwq = ufshcd_mcq_req_to_hwq(hba, scsi_cmd_to_rq(lrbp-
> >cmd));
> -                               ufshcd_mcq_poll_cqe_lock(hba, hwq);
> +                               ufshcd_mcq_poll_cqe_lock(hba, hwq, NULL);
>                         }
>                 }
>                 err = 0;
> @@ -7481,7 +7495,8 @@ static int ufshcd_eh_device_reset_handler(struct
> scsi_cmnd *cmd)
>                                 __func__, pos);
>                 }
>         }
> -       __ufshcd_transfer_req_compl(hba, pending_reqs & ~not_cleared_mask);
> +       __ufshcd_transfer_req_compl(hba, pending_reqs & ~not_cleared_mask,
> +                                   NULL);
> 
>  out:
>         hba->req_abort_count = 0;
> @@ -7658,7 +7673,7 @@ static int ufshcd_abort(struct scsi_cmnd *cmd)
>                 dev_err(hba->dev,
>                 "%s: cmd was completed, but without a notifying intr, tag = %d",
>                 __func__, tag);
> -               __ufshcd_transfer_req_compl(hba, 1UL << tag);
> +               __ufshcd_transfer_req_compl(hba, 1UL << tag, NULL);
>                 goto release;
>         }
> 
> diff --git a/drivers/ufs/host/ufs-qcom.c b/drivers/ufs/host/ufs-qcom.c
> index b3ca9b3bf94b..0598cd8f53dd 100644
> --- a/drivers/ufs/host/ufs-qcom.c
> +++ b/drivers/ufs/host/ufs-qcom.c
> @@ -1704,7 +1704,7 @@ static irqreturn_t ufs_qcom_mcq_esi_handler(int irq,
> void *data)
>         struct ufs_hw_queue *hwq = &hba->uhq[id];
> 
>         ufshcd_mcq_write_cqis(hba, 0x1, id);
> -       ufshcd_mcq_poll_cqe_lock(hba, hwq);
> +       ufshcd_mcq_poll_cqe_lock(hba, hwq, NULL);
> 
>         return IRQ_HANDLED;
>  }
> diff --git a/include/ufs/ufshcd.h b/include/ufs/ufshcd.h
> index 4ba826fe7b62..8fac282e0476 100644
> --- a/include/ufs/ufshcd.h
> +++ b/include/ufs/ufshcd.h
> @@ -1263,7 +1263,8 @@ void ufshcd_mcq_config_mac(struct ufs_hba *hba,
> u32 max_active_cmds);
>  u32 ufshcd_mcq_read_cqis(struct ufs_hba *hba, int i);
>  void ufshcd_mcq_write_cqis(struct ufs_hba *hba, u32 val, int i);
>  unsigned long ufshcd_mcq_poll_cqe_lock(struct ufs_hba *hba,
> -                                        struct ufs_hw_queue *hwq);
> +                                      struct ufs_hw_queue *hwq,
> +                                      struct scsi_cmnd **compl_cmd);
>  void ufshcd_mcq_make_queues_operational(struct ufs_hba *hba);
>  void ufshcd_mcq_enable_esi(struct ufs_hba *hba);
>  void ufshcd_mcq_enable(struct ufs_hba *hba);





[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [SCSI Target Devel]     [Linux SCSI Target Infrastructure]     [Kernel Newbies]     [IDE]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux ATA RAID]     [Linux IIO]     [Samba]     [Device Mapper]

  Powered by Linux