-
Notifications
You must be signed in to change notification settings - Fork 8k
Clock separation test #95270
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
Clock separation test #95270
Conversation
The following west manifest projects have changed revision in this Pull Request:
⛔ DNM label due to: 1 project with PR revision Note: This message is automatically posted and updated by the Manifest GitHub Action. |
config CLOCK_CONTROL_NRF_HFCLK | ||
bool "NRF HFCLK driver support" | ||
depends on DT_HAS_NORDIC_NRF_CLOCK_HFCLK_ENABLED | ||
select CLOCK_CONTROL_NRF_COMMON | ||
default y | ||
|
||
config CLOCK_CONTROL_NRF_XO | ||
bool "NRF XO driver support" | ||
depends on DT_HAS_NORDIC_NRF_CLOCK_XO_ENABLED | ||
select CLOCK_CONTROL_NRF_COMMON | ||
default y |
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.
Formatting looks awry here (but may be rendering issue in Github).
#if NRFX_CHECK(NRFX_POWER_ENABLED) | ||
nrfx_power_irq_handler(); | ||
#endif | ||
|
||
STRUCT_SECTION_FOREACH(clock_control_nrf_irq_handler, irq) { | ||
irq->handler(); | ||
} | ||
|
||
/* temporary fix, it will be removed when all the clocks are moved to their files */ | ||
nrfx_clock_irq_handler(); |
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.
Similar formatting issue here.
.handler = _a, \ | ||
} | ||
|
||
void clock_control_nrf_common_connect_irq( void ); |
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.
Extra spaces around argument.
/* Check needed due to anomaly 201: | ||
* HFCLKSTARTED may be generated twice. | ||
*/ |
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.
Formatting.
@@ -0,0 +1,407 @@ | |||
#include <soc.h> |
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.
Copyright/license.
bee829d
to
043d569
Compare
Separated clock_control_nrf_hfclk shim from clock_control_nrf shim. Signed-off-by: Michal Frankiewicz <[email protected]>
Separated clock_control_nrf_xo shim from clock_control_nrf shim. Signed-off-by: Michal Frankiewicz <[email protected]>
Separated clock_control_nrf_lfclk shim from clock_control_nrf shim. Signed-off-by: Michal Frankiewicz <[email protected]>
52f74d5
to
aee41c5
Compare
Updated west to have nrfx driver clock separation PR. Signed-off-by: Michal Frankiewicz <[email protected]>
aee41c5
to
1a46985
Compare
Please retry analysis of this Pull-Request directly on SonarQube Cloud |
No description provided.