<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>nRF54L15 GRTC SYSCOUNTER resets after system soft reset</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/126189/nrf54l15-grtc-syscounter-resets-after-system-soft-reset</link><description>After upgrading my NCS version from 3.1.1 to 3.2.0 for the nRF54L15, I found that the GRTC resets after a sys_reboot(), whereas it didn&amp;#39;t in the previous version. What changes were made in version 3.2.0? How can I keep the GRTC counter from resetting</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 23 Dec 2025 01:20:06 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/126189/nrf54l15-grtc-syscounter-resets-after-system-soft-reset" /><item><title>RE: nRF54L15 GRTC SYSCOUNTER resets after system soft reset</title><link>https://devzone.nordicsemi.com/thread/557552?ContentTypeID=1</link><pubDate>Tue, 23 Dec 2025 01:20:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5468ec03-1282-4f77-a5ee-9d844670ee0b</guid><dc:creator>bzhou</dc:creator><description>&lt;p&gt;thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 GRTC SYSCOUNTER resets after system soft reset</title><link>https://devzone.nordicsemi.com/thread/557418?ContentTypeID=1</link><pubDate>Fri, 19 Dec 2025 10:39:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:243c311f-093b-43f1-ab6d-eaf9c8e8c864</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;You are correct that a soft reset should not reset the GRTC. The issue is that the GRTC is reset by the OS, as part of the reboot procedure. That is, in code called from sys_reboot().&lt;/p&gt;
&lt;p&gt;Your proposed workaround should work, yes. The nrfx_grtc_uninit_no_counter_reset() function was made for this purpose exactly; it solves the same issue in the bootloader, and will be used there as a workaround until the underlying issue is fixed.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 GRTC SYSCOUNTER resets after system soft reset</title><link>https://devzone.nordicsemi.com/thread/557383?ContentTypeID=1</link><pubDate>Fri, 19 Dec 2025 01:24:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fd4523eb-ee4b-454f-98b7-cde6098cb290</guid><dc:creator>bzhou</dc:creator><description>&lt;p&gt;Hi Terje,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thank you for you support.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Under the current NCS v3.2.0 version, entering Power Off mode still resets the GRTC SYSCOUNTER. However, according to the nRF54L15 specification, these reset behaviors (&lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf54L15/page/chapters/power-and-clock/reset/doc/reset.html"&gt;https://docs.nordicsemi.com/bundle/ps_nrf54L15/page/chapters/power-and-clock/reset/doc/reset.html&lt;/a&gt;) should not affect the GRTC SYSCOUNTER time.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;In the sys_clock_disable function within nrf_grtc_timer, if I replace nrfx_grtc_uninit() with something similar to nrfx_grtc_uninit_no_counter_reset() from MCUboot, it works fine. What would be the impact on other functionalities if I implement this change temporarily?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best Regards,&lt;/p&gt;
&lt;p&gt;Bill Zhou&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 GRTC SYSCOUNTER resets after system soft reset</title><link>https://devzone.nordicsemi.com/thread/557353?ContentTypeID=1</link><pubDate>Thu, 18 Dec 2025 15:23:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:de90d1fe-a788-40b2-a938-386cddc4fa7f</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Looking further into the issue, sys_clock_disable() was implemented or nRF Connect SDK v3.2.0, and that is what has changed. Previously, the call to sys_clock_disable() from within sys_reboot() did not actually disable the GRTC. Now it does.&lt;/p&gt;
&lt;p&gt;Adding a switch for keeping syscounter initialized (for the purpose of having GRTC running through the reboot) is on our roadmap, and so we do expect a fix in the not too distant future.&lt;/p&gt;
&lt;p&gt;In the mean time, you could try disabling CONFIG_SYSTEM_TIMER_HAS_DISABLE_SUPPORT, although that might require you to do changes to driver code in nrfx.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 GRTC SYSCOUNTER resets after system soft reset</title><link>https://devzone.nordicsemi.com/thread/557347?ContentTypeID=1</link><pubDate>Thu, 18 Dec 2025 14:47:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a4d8605f-6d9c-47f6-a629-1195f12a585f</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am not aware of any changes there, no. Do you have a minimal example for reproducing the behavior?&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>