From: Kalle Valo <kvalo@codeaurora.org>
To: Govind Singh <govinds@codeaurora.org>
Cc: andy.gross@linaro.org, david.brown@linaro.org,
linux-wireless@vger.kernel.org, ath10k@lists.infradead.org,
bjorn.andersson@linaro.org
Subject: Re: [PATCH v2 6/6] ath10k: Add QMI message handshake for wcn3990 client
Date: Tue, 03 Jul 2018 21:06:15 +0300 [thread overview]
Message-ID: <877emcnqi0.fsf@kamboji.qca.qualcomm.com> (raw)
In-Reply-To: <20180605123732.1993-1-govinds@codeaurora.org> (Govind Singh's message of "Tue, 5 Jun 2018 18:07:32 +0530")
Govind Singh <govinds@codeaurora.org> writes:
> Add WCN3990 QMI client handshakes for Q6 integrated WLAN connectivity
> subsystem. This layer is responsible for communicating qmi control
> messages to wifi fw QMI service using QMI messaging protocol.
>
> Qualcomm MSM Interface(QMI) is a messaging format used to communicate
> between components running between application processor and remote
> processors with underlying transport layer based on integrated
> chipset(shared memory) or discrete chipset(PCI/USB/SDIO/UART).
>
> With this patch-set basic functionality(STA/SAP) can be tested
> with WCN3990 chipset. The changes are verified with the firmware
> WLAN.HL.2.0-01192-QCAHLSWMTPLZ-1 and SDM845 MTP device.
>
> Signed-off-by: Govind Singh <govinds@codeaurora.org>
[...]
> +static void ath10k_qmi_driver_event_work(struct work_struct *work)
> +{
> + struct ath10k_qmi *qmi = container_of(work, struct ath10k_qmi,
> + event_work);
> + struct ath10k_qmi_driver_event *event;
> + struct ath10k *ar = qmi->ar;
> +
> + spin_lock(&qmi->event_lock);
> + while (!list_empty(&qmi->event_list)) {
> + event = list_first_entry(&qmi->event_list,
> + struct ath10k_qmi_driver_event, list);
> + list_del(&event->list);
> + spin_unlock(&qmi->event_lock);
> +
> + switch (event->type) {
> + case ATH10K_QMI_EVENT_SERVER_ARRIVE:
> + ath10k_qmi_event_server_arrive(qmi);
> + break;
> + case ATH10K_QMI_EVENT_SERVER_EXIT:
> + ath10k_qmi_event_server_exit(qmi);
> + break;
> + case ATH10K_QMI_EVENT_FW_READY_IND:
> + ath10k_qmi_event_fw_ready_ind(qmi);
> + break;
> + case ATH10K_QMI_EVENT_MSA_READY_IND:
> + ath10k_qmi_event_msa_ready(qmi);
> + break;
> + default:
> + ath10k_err(ar, "invalid event type: %d", event->type);
> + break;
> + }
> + kfree(event);
> + spin_lock(&qmi->event_lock);
> + }
> + spin_unlock(&qmi->event_lock);
> +}
BTW, do you really need this event loop? It's quite awkward, it would be
much cleaner to call the code directly. Or if you need a work queue for
a certain function call, create a specific workqueue. Don't add a
generic loop like this.
Didn't Bjorn mention something along the lines of that it's not needed
in earlier review?
--
Kalle Valo
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k
WARNING: multiple messages have this Message-ID (diff)
From: Kalle Valo <kvalo@codeaurora.org>
To: Govind Singh <govinds@codeaurora.org>
Cc: andy.gross@linaro.org, bjorn.andersson@linaro.org,
david.brown@linaro.org, linux-wireless@vger.kernel.org,
ath10k@lists.infradead.org
Subject: Re: [PATCH v2 6/6] ath10k: Add QMI message handshake for wcn3990 client
Date: Tue, 03 Jul 2018 21:06:15 +0300 [thread overview]
Message-ID: <877emcnqi0.fsf@kamboji.qca.qualcomm.com> (raw)
In-Reply-To: <20180605123732.1993-1-govinds@codeaurora.org> (Govind Singh's message of "Tue, 5 Jun 2018 18:07:32 +0530")
Govind Singh <govinds@codeaurora.org> writes:
> Add WCN3990 QMI client handshakes for Q6 integrated WLAN connectivity
> subsystem. This layer is responsible for communicating qmi control
> messages to wifi fw QMI service using QMI messaging protocol.
>
> Qualcomm MSM Interface(QMI) is a messaging format used to communicate
> between components running between application processor and remote
> processors with underlying transport layer based on integrated
> chipset(shared memory) or discrete chipset(PCI/USB/SDIO/UART).
>
> With this patch-set basic functionality(STA/SAP) can be tested
> with WCN3990 chipset. The changes are verified with the firmware
> WLAN.HL.2.0-01192-QCAHLSWMTPLZ-1 and SDM845 MTP device.
>
> Signed-off-by: Govind Singh <govinds@codeaurora.org>
[...]
> +static void ath10k_qmi_driver_event_work(struct work_struct *work)
> +{
> + struct ath10k_qmi *qmi = container_of(work, struct ath10k_qmi,
> + event_work);
> + struct ath10k_qmi_driver_event *event;
> + struct ath10k *ar = qmi->ar;
> +
> + spin_lock(&qmi->event_lock);
> + while (!list_empty(&qmi->event_list)) {
> + event = list_first_entry(&qmi->event_list,
> + struct ath10k_qmi_driver_event, list);
> + list_del(&event->list);
> + spin_unlock(&qmi->event_lock);
> +
> + switch (event->type) {
> + case ATH10K_QMI_EVENT_SERVER_ARRIVE:
> + ath10k_qmi_event_server_arrive(qmi);
> + break;
> + case ATH10K_QMI_EVENT_SERVER_EXIT:
> + ath10k_qmi_event_server_exit(qmi);
> + break;
> + case ATH10K_QMI_EVENT_FW_READY_IND:
> + ath10k_qmi_event_fw_ready_ind(qmi);
> + break;
> + case ATH10K_QMI_EVENT_MSA_READY_IND:
> + ath10k_qmi_event_msa_ready(qmi);
> + break;
> + default:
> + ath10k_err(ar, "invalid event type: %d", event->type);
> + break;
> + }
> + kfree(event);
> + spin_lock(&qmi->event_lock);
> + }
> + spin_unlock(&qmi->event_lock);
> +}
BTW, do you really need this event loop? It's quite awkward, it would be
much cleaner to call the code directly. Or if you need a work queue for
a certain function call, create a specific workqueue. Don't add a
generic loop like this.
Didn't Bjorn mention something along the lines of that it's not needed
in earlier review?
--
Kalle Valo
next prev parent reply other threads:[~2018-07-03 18:06 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-05 12:37 [PATCH v2 6/6] ath10k: Add QMI message handshake for wcn3990 client Govind Singh
2018-06-05 12:37 ` Govind Singh
2018-06-05 23:25 ` Brian Norris
2018-06-05 23:25 ` Brian Norris
2018-06-08 12:07 ` Govind Singh
2018-06-08 12:07 ` Govind Singh
2018-06-08 12:09 ` Govind Singh
2018-06-08 12:09 ` Govind Singh
2018-06-06 5:34 ` kbuild test robot
2018-06-06 5:34 ` kbuild test robot
2018-06-15 13:14 ` Kalle Valo
2018-06-15 13:14 ` Kalle Valo
2018-06-19 22:51 ` Niklas Cassel
2018-06-19 22:51 ` Niklas Cassel
2018-07-03 15:15 ` Kalle Valo
2018-07-03 15:15 ` Kalle Valo
2018-07-06 9:18 ` Govind Singh
2018-07-06 9:18 ` Govind Singh
2018-07-06 9:40 ` Govind Singh
2018-07-06 9:40 ` Govind Singh
2018-07-03 17:57 ` Kalle Valo
2018-07-03 17:57 ` Kalle Valo
2018-07-03 18:06 ` Kalle Valo [this message]
2018-07-03 18:06 ` Kalle Valo
2018-07-06 9:24 ` Govind Singh
2018-07-06 9:24 ` Govind Singh
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=877emcnqi0.fsf@kamboji.qca.qualcomm.com \
--to=kvalo@codeaurora.org \
--cc=andy.gross@linaro.org \
--cc=ath10k@lists.infradead.org \
--cc=bjorn.andersson@linaro.org \
--cc=david.brown@linaro.org \
--cc=govinds@codeaurora.org \
--cc=linux-wireless@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.