Skip to content

Commit

Permalink
[nrf noup] platform: Disable default RTC30 IRQ handler
Browse files Browse the repository at this point in the history
-RTC30 is generally not intended for use in L15 device and causes
 falures on nRF54L10 and nRF54L05 devices as it collides with
 CLOCK_POWER IRQ. This commit fixes these issues

NOTE: This is a short-lived noup as it will be part of the adding
nRF54L15 in upstream TF-M. See referenced jira

Ref: NCSDK-30214

Signed-off-by: Frank Audun Kvamtrø <[email protected]>
  • Loading branch information
frkv authored and nordicjm committed Nov 27, 2024
1 parent 82e7763 commit f2bf784
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions platform/ext/target/nordic_nrf/common/core/startup_nrf54l15.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,11 @@ DEFAULT_IRQ_HANDLER(GRTC_1_IRQHandler)
DEFAULT_IRQ_HANDLER(GRTC_2_IRQHandler)
DEFAULT_IRQ_HANDLER(GRTC_3_IRQHandler)
DEFAULT_IRQ_HANDLER(SERIAL30_IRQHandler)
DEFAULT_IRQ_HANDLER(RTC30_IRQHandler)
DEFAULT_IRQ_HANDLER(CLOCK_POWER_IRQHandler)
DEFAULT_IRQ_HANDLER(COMP_LPCOMP_IRQHandler)
DEFAULT_IRQ_HANDLER(WDT30_IRQHandler)
DEFAULT_IRQ_HANDLER(WDT31_IRQHandler)
DEFAULT_IRQ_HANDLER(GPIOTE30_1_IRQHandler)
DEFAULT_IRQ_HANDLER(CLOCK_POWER_IRQHandler)

#if defined(DOMAIN_NS) || defined(BL2)
DEFAULT_IRQ_HANDLER(MPC00_IRQHandler)
Expand Down Expand Up @@ -399,7 +398,7 @@ const VECTOR_TABLE_Type __VECTOR_TABLE[] __VECTOR_TABLE_ATTRIBUTE = {
default_tfm_IRQHandler,
default_tfm_IRQHandler,
SERIAL30_IRQHandler,
RTC30_IRQHandler,
CLOCK_POWER_IRQHandler,
COMP_LPCOMP_IRQHandler,
default_tfm_IRQHandler,
WDT30_IRQHandler,
Expand All @@ -408,7 +407,6 @@ const VECTOR_TABLE_Type __VECTOR_TABLE[] __VECTOR_TABLE_ATTRIBUTE = {
default_tfm_IRQHandler,
default_tfm_IRQHandler,
GPIOTE30_1_IRQHandler,
CLOCK_POWER_IRQHandler,
};

#if defined ( __GNUC__ )
Expand Down

0 comments on commit f2bf784

Please sign in to comment.