From: Kalle Valo <kvalo@codeaurora.org>
To: ath11k@lists.infradead.org
Cc: linux-wireless@vger.kernel.org
Subject: [PATCH 0/8] ath11k: enable shadow register for QCA6390
Date: Thu, 1 Oct 2020 12:34:42 +0300 [thread overview]
Message-ID: <1601544890-13450-1-git-send-email-kvalo@codeaurora.org> (raw)
Enable the shadow register feature for QCA6390, so that it can enter idle power
save mode. Shadow registers can be accessed regardless target's power state,
and hardware will forward the value to target register automatically.
Also implement a workaround to fix a shadow register deficit.
This depends on patchset: ath11k: qca6390: packet log support and fixes for crashes
Kalle
Carl Huang (7):
ath11k: read and write registers below unwindowed address
ath11k: enable shadow register configuration and access
ath11k: set WMI pipe credit to 1 for QCA6390
ath11k: start a timer to update TCL HP
ath11k: start a timer to update REO cmd ring
ath11k: start a timer to update HP for CE pipe 4
ath11k: enable idle power save mode
Kalle Valo (1):
ath11k: remove unnecessary casts to u32
drivers/net/wireless/ath/ath11k/ce.c | 80 ++++++++++++++++++
drivers/net/wireless/ath/ath11k/ce.h | 3 +
drivers/net/wireless/ath/ath11k/core.c | 7 ++
drivers/net/wireless/ath/ath11k/dp.c | 97 ++++++++++++++++++++++
drivers/net/wireless/ath/ath11k/dp.h | 24 ++++++
drivers/net/wireless/ath/ath11k/dp_tx.c | 2 +
drivers/net/wireless/ath/ath11k/hal.c | 135 +++++++++++++++++++++++++++++--
drivers/net/wireless/ath/ath11k/hal.h | 19 ++++-
drivers/net/wireless/ath/ath11k/hal_rx.c | 2 +
drivers/net/wireless/ath/ath11k/htc.c | 6 ++
drivers/net/wireless/ath/ath11k/hw.h | 2 +
drivers/net/wireless/ath/ath11k/mac.c | 9 +++
drivers/net/wireless/ath/ath11k/pci.c | 38 +++++++++
drivers/net/wireless/ath/ath11k/pci.h | 7 ++
drivers/net/wireless/ath/ath11k/qmi.c | 13 ++-
drivers/net/wireless/ath/ath11k/qmi.h | 2 +-
16 files changed, 434 insertions(+), 12 deletions(-)
--
2.7.4
--
ath11k mailing list
ath11k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath11k
WARNING: multiple messages have this Message-ID (diff)
From: Kalle Valo <kvalo@codeaurora.org>
To: ath11k@lists.infradead.org
Cc: linux-wireless@vger.kernel.org
Subject: [PATCH 0/8] ath11k: enable shadow register for QCA6390
Date: Thu, 1 Oct 2020 12:34:42 +0300 [thread overview]
Message-ID: <1601544890-13450-1-git-send-email-kvalo@codeaurora.org> (raw)
Enable the shadow register feature for QCA6390, so that it can enter idle power
save mode. Shadow registers can be accessed regardless target's power state,
and hardware will forward the value to target register automatically.
Also implement a workaround to fix a shadow register deficit.
This depends on patchset: ath11k: qca6390: packet log support and fixes for crashes
Kalle
Carl Huang (7):
ath11k: read and write registers below unwindowed address
ath11k: enable shadow register configuration and access
ath11k: set WMI pipe credit to 1 for QCA6390
ath11k: start a timer to update TCL HP
ath11k: start a timer to update REO cmd ring
ath11k: start a timer to update HP for CE pipe 4
ath11k: enable idle power save mode
Kalle Valo (1):
ath11k: remove unnecessary casts to u32
drivers/net/wireless/ath/ath11k/ce.c | 80 ++++++++++++++++++
drivers/net/wireless/ath/ath11k/ce.h | 3 +
drivers/net/wireless/ath/ath11k/core.c | 7 ++
drivers/net/wireless/ath/ath11k/dp.c | 97 ++++++++++++++++++++++
drivers/net/wireless/ath/ath11k/dp.h | 24 ++++++
drivers/net/wireless/ath/ath11k/dp_tx.c | 2 +
drivers/net/wireless/ath/ath11k/hal.c | 135 +++++++++++++++++++++++++++++--
drivers/net/wireless/ath/ath11k/hal.h | 19 ++++-
drivers/net/wireless/ath/ath11k/hal_rx.c | 2 +
drivers/net/wireless/ath/ath11k/htc.c | 6 ++
drivers/net/wireless/ath/ath11k/hw.h | 2 +
drivers/net/wireless/ath/ath11k/mac.c | 9 +++
drivers/net/wireless/ath/ath11k/pci.c | 38 +++++++++
drivers/net/wireless/ath/ath11k/pci.h | 7 ++
drivers/net/wireless/ath/ath11k/qmi.c | 13 ++-
drivers/net/wireless/ath/ath11k/qmi.h | 2 +-
16 files changed, 434 insertions(+), 12 deletions(-)
--
2.7.4
next reply other threads:[~2020-10-01 9:35 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-01 9:34 Kalle Valo [this message]
2020-10-01 9:34 ` [PATCH 0/8] ath11k: enable shadow register for QCA6390 Kalle Valo
2020-10-01 9:34 ` [PATCH 1/8] ath11k: read and write registers below unwindowed address Kalle Valo
2020-10-01 9:34 ` Kalle Valo
2020-10-01 19:33 ` Kalle Valo
2020-10-01 19:33 ` Kalle Valo
2020-10-01 9:34 ` [PATCH 2/8] ath11k: enable shadow register configuration and access Kalle Valo
2020-10-01 9:34 ` Kalle Valo
2020-10-01 9:34 ` [PATCH 3/8] ath11k: set WMI pipe credit to 1 for QCA6390 Kalle Valo
2020-10-01 9:34 ` Kalle Valo
2020-10-01 9:34 ` [PATCH 4/8] ath11k: start a timer to update TCL HP Kalle Valo
2020-10-01 9:34 ` Kalle Valo
2020-10-01 9:34 ` [PATCH 5/8] ath11k: start a timer to update REO cmd ring Kalle Valo
2020-10-01 9:34 ` Kalle Valo
2020-10-01 9:34 ` [PATCH 6/8] ath11k: start a timer to update HP for CE pipe 4 Kalle Valo
2020-10-01 9:34 ` Kalle Valo
2020-10-01 9:34 ` [PATCH 7/8] ath11k: enable idle power save mode Kalle Valo
2020-10-01 9:34 ` Kalle Valo
2020-10-01 9:34 ` [PATCH 8/8] ath11k: remove unnecessary casts to u32 Kalle Valo
2020-10-01 9:34 ` Kalle Valo
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=1601544890-13450-1-git-send-email-kvalo@codeaurora.org \
--to=kvalo@codeaurora.org \
--cc=ath11k@lists.infradead.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.