* [PATCH] PCI/pwrctl: pwrseq: add support for WCN6855
@ 2024-08-13 19:12 Bartosz Golaszewski
2024-08-14 10:28 ` Konrad Dybcio
2024-08-22 19:04 ` Bjorn Helgaas
0 siblings, 2 replies; 3+ messages in thread
From: Bartosz Golaszewski @ 2024-08-13 19:12 UTC (permalink / raw)
To: Bjorn Helgaas; +Cc: linux-pci, linux-kernel, Konrad Dybcio, Bartosz Golaszewski
From: Konrad Dybcio <konradybcio@kernel.org>
Add support for ATH11K inside the WCN6855 package to the power
sequencing PCI power control driver.
Signed-off-by: Konrad Dybcio <konradybcio@kernel.org>
[Bartosz: split Konrad's bigger patch, write the commit message]
Co-developed-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
drivers/pci/pwrctl/pci-pwrctl-pwrseq.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/pci/pwrctl/pci-pwrctl-pwrseq.c b/drivers/pci/pwrctl/pci-pwrctl-pwrseq.c
index f07758c9edad..a23a4312574b 100644
--- a/drivers/pci/pwrctl/pci-pwrctl-pwrseq.c
+++ b/drivers/pci/pwrctl/pci-pwrctl-pwrseq.c
@@ -66,6 +66,11 @@ static const struct of_device_id pci_pwrctl_pwrseq_of_match[] = {
.compatible = "pci17cb,1101",
.data = "wlan",
},
+ {
+ /* ATH11K in WCN6855 package. */
+ .compatible = "pci17cb,1103",
+ .data = "wlan",
+ },
{
/* ATH12K in WCN7850 package. */
.compatible = "pci17cb,1107",
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] PCI/pwrctl: pwrseq: add support for WCN6855
2024-08-13 19:12 [PATCH] PCI/pwrctl: pwrseq: add support for WCN6855 Bartosz Golaszewski
@ 2024-08-14 10:28 ` Konrad Dybcio
2024-08-22 19:04 ` Bjorn Helgaas
1 sibling, 0 replies; 3+ messages in thread
From: Konrad Dybcio @ 2024-08-14 10:28 UTC (permalink / raw)
To: Bartosz Golaszewski, Bjorn Helgaas
Cc: linux-pci, linux-kernel, Konrad Dybcio, Bartosz Golaszewski
On 13.08.2024 9:12 PM, Bartosz Golaszewski wrote:
> From: Konrad Dybcio <konradybcio@kernel.org>
>
> Add support for ATH11K inside the WCN6855 package to the power
> sequencing PCI power control driver.
>
> Signed-off-by: Konrad Dybcio <konradybcio@kernel.org>
> [Bartosz: split Konrad's bigger patch, write the commit message]
> Co-developed-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konradybcio@kernel.org>
Konrad
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] PCI/pwrctl: pwrseq: add support for WCN6855
2024-08-13 19:12 [PATCH] PCI/pwrctl: pwrseq: add support for WCN6855 Bartosz Golaszewski
2024-08-14 10:28 ` Konrad Dybcio
@ 2024-08-22 19:04 ` Bjorn Helgaas
1 sibling, 0 replies; 3+ messages in thread
From: Bjorn Helgaas @ 2024-08-22 19:04 UTC (permalink / raw)
To: Bartosz Golaszewski
Cc: Bjorn Helgaas, linux-pci, linux-kernel, Konrad Dybcio,
Bartosz Golaszewski
On Tue, Aug 13, 2024 at 09:12:00PM +0200, Bartosz Golaszewski wrote:
> From: Konrad Dybcio <konradybcio@kernel.org>
>
> Add support for ATH11K inside the WCN6855 package to the power
> sequencing PCI power control driver.
>
> Signed-off-by: Konrad Dybcio <konradybcio@kernel.org>
> [Bartosz: split Konrad's bigger patch, write the commit message]
> Co-developed-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Applied to pci/pwrctl for v6.12, thanks!
> ---
> drivers/pci/pwrctl/pci-pwrctl-pwrseq.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/drivers/pci/pwrctl/pci-pwrctl-pwrseq.c b/drivers/pci/pwrctl/pci-pwrctl-pwrseq.c
> index f07758c9edad..a23a4312574b 100644
> --- a/drivers/pci/pwrctl/pci-pwrctl-pwrseq.c
> +++ b/drivers/pci/pwrctl/pci-pwrctl-pwrseq.c
> @@ -66,6 +66,11 @@ static const struct of_device_id pci_pwrctl_pwrseq_of_match[] = {
> .compatible = "pci17cb,1101",
> .data = "wlan",
> },
> + {
> + /* ATH11K in WCN6855 package. */
> + .compatible = "pci17cb,1103",
> + .data = "wlan",
> + },
> {
> /* ATH12K in WCN7850 package. */
> .compatible = "pci17cb,1107",
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-08-22 19:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-13 19:12 [PATCH] PCI/pwrctl: pwrseq: add support for WCN6855 Bartosz Golaszewski
2024-08-14 10:28 ` Konrad Dybcio
2024-08-22 19:04 ` Bjorn Helgaas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox