-
Notifications
You must be signed in to change notification settings - Fork 626
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Pull in global hsfll clock device driver #2300
base: main
Are you sure you want to change the base?
[WIP] Pull in global hsfll clock device driver #2300
Conversation
7081694
to
fa93afa
Compare
The following west manifest projects have been modified in this Pull Request:
Note: This message is automatically posted and updated by the Manifest GitHub Action. |
53dc701
to
9f6741b
Compare
soc/nordic/nrf54h/Kconfig
Outdated
config SOC_NRF54H20_GLOBAL_HSFLL_MIN_FREQ_HZ | ||
int "Minimum global HSFLL clock frequency in Hertz" | ||
range 64000000 320000000 | ||
default 320000000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having a range here is pretty pointless IMHO because the only allowed frequencies are: 64, 128, 256 and 320 MHz. Please change it into a choice of one of the allowed values.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will do
9f6741b
to
8673de1
Compare
Pulls PR that removed nRF Wi-Fi. Signed-off-by: Chaitanya Tata <[email protected]> (cherry picked from commit e512151)
Update hal_nordic revision to include nrfs services: - GDPWR - GDFS Signed-off-by: Bjarki Arge Andreasen <[email protected]> Upstream PR #: 81735
nRFs exposes now all power domains, following their actual name in the specification. Add support for all of them in the GPD service. Note that this is a breaking change: running this code requires a new SCFW as IDs have changed in nRFs and so SCFW. Upstream PR #: 82216 Signed-off-by: Gerard Marull-Paretas <[email protected]>
Adding the implementation for the GDFS service Upstream PR #: 81735 Signed-off-by: Paweł Pelikan <[email protected]>
Add specific device model for global hsfll clock and update dts tree to use specific model. The clock is not fixed, and configurable at runtime to predefined frequencies specified by the platform. Upstream PR #: 81735 Signed-off-by: Bjarki Arge Andreasen <[email protected]>
…fsll clock Add device driver support for global hsfll clock. Upstream PR #: 81735 Signed-off-by: Bjarki Arge Andreasen <[email protected]>
… hsfll Extend sample to support global hsfll clock control. Upstream PR #: 81735 Signed-off-by: Bjarki Arge Andreasen <[email protected]>
…lock Extend test suite to test global HSFLL clock. Upstream PR #: 81735 Signed-off-by: Bjarki Arge Andreasen <[email protected]>
Introduce feature which restricts the minimum global hsfll frequency. This feature is selected by default to preserve the behavior of the global hsfll before the clock control driver for it was introduced, which configured it as a fixed clock at 320MHz. Upstream PR #: 81735 Signed-off-by: Bjarki Arge Andreasen <[email protected]>
8673de1
to
83164e5
Compare
Blocked until WiFi changes have been merged.
Code has been run locally, sample and tests passes. Validating that frequency indeed changes still needed.
Build the samples:
and
to test it locally.