<?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 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/118176/nrf54l15---nfct-pins-as-gpio-with-tf-m</link><description>Good day, I&amp;#39;m trying to use pin 1.02 as a GPIO in a TF-M build using a (custom) non-secure board target, and I&amp;#39;m struggling to find the appropriate way to accomplish this. All current resources point to deprecated Kconfig defines (USE_NFCT_PINS_AS_GPIO</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 17 Nov 2025 15:16:23 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/118176/nrf54l15---nfct-pins-as-gpio-with-tf-m" /><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/554568?ContentTypeID=1</link><pubDate>Mon, 17 Nov 2025 15:16:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2111389f-79e5-48e4-a0dd-428b956ae1b8</guid><dc:creator>WiWa</dc:creator><description>&lt;p&gt;Hi Hieu,&lt;/p&gt;
&lt;p&gt;I was able to fix the issue by deleting the PADCONFIG bit manually like suggested by you. I used:&lt;br /&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;static int disable_nfc_pads_early(const struct device *unused)
{
    ARG_UNUSED(unused);

    /* Clear the PADCONFIG bit so the NFC pads stop being forced to NFC */
    NRF_NFCT_NS-&amp;gt;PADCONFIG = 0;   /* Use NRF_NFCT_NS if called from non-secure */
    return 0;
}

/* Run before GPIO and pinctrl take effect */
SYS_INIT(disable_nfc_pads_early, PRE_KERNEL_1, 0);&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Br&lt;/p&gt;
&lt;p&gt;Walter&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/554513?ContentTypeID=1</link><pubDate>Mon, 17 Nov 2025 12:06:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e544b7ea-b071-42a0-aae6-c299af770537</guid><dc:creator>WiWa</dc:creator><description>&lt;p&gt;Hi Hieu,&lt;br /&gt;I am trying to use P1.02 and P1.03 as PWM outputs on a custom board that I developed. Now I am running into the same issue, that disabling NFC does not release these two GPIOs. As I need 8 Analog inputs and 7 analog outputs I used all GPIOs from P1 and cannot simply change the PIN. Could you please assist me in solving that issue?&lt;br /&gt;Do you have any news from the&amp;nbsp;DeviceTree team working on this?&lt;/p&gt;
&lt;p&gt;Thank you in advance!&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Walter&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/553782?ContentTypeID=1</link><pubDate>Mon, 10 Nov 2025 09:07:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d0d8e54c-c985-4d5d-b4a0-4a2d2559ed65</guid><dc:creator>Hieu</dc:creator><description>&lt;p&gt;Hi Justin,&lt;/p&gt;
&lt;p&gt;No problem. I too agree that choosing a less special pin is the best way forward. Would also limit the amount of change necessary if one day in the future, NFC is considered.&lt;/p&gt;
&lt;p&gt;Please just let me know if the issue becomes bothersome again in the future.&lt;/p&gt;
&lt;p&gt;-----------------------&lt;/p&gt;
&lt;p&gt;Hi Mark,&lt;/p&gt;
&lt;p&gt;If the issue is blocking your project, please let me know.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Hieu&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/553770?ContentTypeID=1</link><pubDate>Mon, 10 Nov 2025 07:50:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:47898fc4-bcf9-4c71-a79c-1b5d5949b476</guid><dc:creator>JVer</dc:creator><description>&lt;p&gt;Hi Hieu,&lt;/p&gt;
&lt;p&gt;Sorry for the delay, We only have one nRF54L15 dev kit laying around and we modified it to function exactly as in the prototype hardware so getting an exact working example is difficult and I also do not have enough time to prepare a minimal repoducable example.&lt;/p&gt;
&lt;p&gt;I cut and soldered the connections such that the external 32kHz crystal is disconnected and redirected to the IO headers just like the NFC pins. I use the dev kit board files as base with an overlay file to redirect the debug uart pins on the P1 block to other pins since I needed the default UART pins for different connections. My project Kconfig contains some additional configurations to enable the internal RC oscilator.&lt;/p&gt;
&lt;p&gt;I attempted to write the PADCONFIG register in the main function while in secured and non-secured to attempt to change it with the mentioned results. The results reflect the same on the prototype hardware in that we are unable to change the register in non-secured mode.&lt;/p&gt;
&lt;p&gt;Sadly I do not have enough time to dive much deeper since we internally decided to just use different pins and avoid the problem in our next revision of the hardware. If required I can provide more information but I do not have the time to setup a dev kit for further testing.&lt;/p&gt;
&lt;p&gt;Sadly it is not a quick fix and you provided good support but we need to continue.&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Justin Verkade&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/553542?ContentTypeID=1</link><pubDate>Thu, 06 Nov 2025 11:09:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f7d92e5c-9bef-4427-bf24-2eeaa3fddf4c</guid><dc:creator>Hieu</dc:creator><description>&lt;p&gt;Hi Justin and Mark,&lt;/p&gt;
&lt;p&gt;Sorry for the late reply. I&amp;nbsp;broke the environment on my machines and can&amp;#39;t test anything for a while.&lt;/p&gt;
&lt;p&gt;That is fixed now, but I still can&amp;#39;t reproduce your issue with NVS v3.1.1.&lt;/p&gt;
&lt;p&gt;Do you have a minimal setup I can reproduce the issue with?&lt;/p&gt;
&lt;p&gt;Here is my copy of modified zephyr/samples/basic/blinky sample, where P1.02 works as expected.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/c339307_2D00_251106_5F00_01.zip"&gt;devzone.nordicsemi.com/.../c339307_2D00_251106_5F00_01.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Hieu&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/553017?ContentTypeID=1</link><pubDate>Fri, 31 Oct 2025 12:54:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8ef894a1-49c7-40d8-a87e-f512c17acced</guid><dc:creator>JVer</dc:creator><description>&lt;p&gt;Hi Mark,&lt;/p&gt;
&lt;p&gt;Thanks for the additional information on this case, this helps.&lt;/p&gt;
&lt;p&gt;I configured the NRF5L15 dev kit and resoldered the connections to output to the IO headers. I can observe the same behavior as metioned that the IO does not get unlocked when building with TF-M and the application running non-secured. I can toggle the pin when it is unlocked in a secured build.&lt;/p&gt;
&lt;p&gt;I did some additional testing and noticed that the NRF_NFCT_NS-&amp;gt;PADCONFIG is set to 0 inside the driver init as it gets cleared by the POST_KERNEL function I have but the debugger says the register is still set.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1761914644930v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Trying to write to it does alter NRF_NFCT_NS-&amp;gt;PADCONFIG but it does not correlate to the actual register as shown by the debugger.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1761914925603v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Justin Verkade&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/552995?ContentTypeID=1</link><pubDate>Fri, 31 Oct 2025 11:23:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:38a56d8e-06a0-4a5e-97c4-0c5d1e836375</guid><dc:creator>MarkLaloo</dc:creator><description>&lt;p&gt;Hi Hieu, Justin&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve noticed (due to recommendations in other tickets to upgrade our SDK) that the solution we have been using (NRF_NFCT_NS-&amp;gt;PADCONFIG=0) no longer works in our project. We previously built using NCS v2.9.1 (where it worked), and have moved to v3.1.1 (no longer working). Tests were completed using non-secure build target, building with TF-M.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;I have also tested on v3.1.1 with TF-M removed (and building with secure target), and NFCT config now works as expected (using NRF_NFCT_S). &lt;br /&gt;&lt;br /&gt;Note, in this specific test, the GPIO was used to drive an LED. &lt;br /&gt;&lt;br /&gt;Kind regards,&lt;br /&gt;Mark Laloo&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/552920?ContentTypeID=1</link><pubDate>Thu, 30 Oct 2025 14:28:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ea5ae933-e743-430f-9779-8a4659c32b1a</guid><dc:creator>Hieu</dc:creator><description>&lt;p&gt;Hi Justin,&lt;/p&gt;
&lt;p&gt;Can you get a very simplified test going where you only control the pin as a GPIO?&lt;/p&gt;
&lt;p&gt;Here is my project where I&amp;nbsp;overlayed the Devicetree to&amp;nbsp;have P1.02 as LED1 and toggle it.&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Hieu&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/552865?ContentTypeID=1</link><pubDate>Thu, 30 Oct 2025 08:59:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9ef2aba6-21d7-4b2a-a63a-42a5e3eefca7</guid><dc:creator>JVer</dc:creator><description>&lt;p&gt;Hi Hieu,&lt;/p&gt;
&lt;p&gt;We have a MCP251xFD CAN transceiver connected and we are using the can_mcp251xfd zephyr driver. The pins are connected to the SS and MOSI, and the pins and managed by the zephyr driver. The function to disable the IO lock runs in POST_KERNEL with a priority of 20 and has been verified using a debugger to run before the can_mcp251xfd driver. The SDK version is v3.1.1.&lt;/p&gt;
&lt;p&gt;A result table of my findings in secured and non-secured builds are:&lt;/p&gt;
&lt;p&gt;Secured:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;NRF_NFCT-&amp;gt;PADCONFIG&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&amp;gt; Writes the register correctly.&lt;/li&gt;
&lt;li&gt;NRF_NFCT_S-&amp;gt;PADCONFIG&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;&amp;gt; Writes the register correctly.&lt;/li&gt;
&lt;li&gt;NRF_NFCT_NS-&amp;gt;PADCONFIG&amp;nbsp; &amp;nbsp;&amp;lt;&amp;gt; Jumps to z_arm_usage_fault().&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Non-Secured:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;NRF_NFCT-&amp;gt;PADCONFIG&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&amp;gt; Steps over the operation but does not write the register.&lt;/li&gt;
&lt;li&gt;NRF_NFCT_S-&amp;gt;PADCONFIG&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;&amp;gt; Jumps to SecureFault_Handler().&lt;/li&gt;
&lt;li&gt;NRF_NFCT_NS-&amp;gt;PADCONFIG&amp;nbsp; &amp;nbsp;&amp;lt;&amp;gt; Steps over the operation but does not write the register.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The jumps to SecureFault_Handler() are expected but the NRF_NFCT and NRF_NFCT_NS both step over the write without faults but do not update the register.&lt;/p&gt;
&lt;p&gt;In a secured build where the register does get written correctly the device boots correctly and everything works as intended.&lt;/p&gt;
&lt;p&gt;One additional bit of information that I do not think matters is that we are using a nRF54L10 instead of a L15.&lt;/p&gt;
&lt;p&gt;We are out of ideas and wil most likely change the hardware but we are interested to see if we can find a fix for it.&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Justin Verkade&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/552830?ContentTypeID=1</link><pubDate>Thu, 30 Oct 2025 01:26:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bc31bd83-cd2b-4352-901a-cce40c1e00af</guid><dc:creator>Hieu</dc:creator><description>&lt;p&gt;Hi Justin,&lt;/p&gt;
&lt;p&gt;What is the driver that you are trying to use the pin with? &lt;br /&gt;At what initialization priority does it initialize?&lt;br /&gt;And what SDK version are you testing with?&lt;/p&gt;
&lt;p&gt;I didn&amp;#39;t try to write to NRF_NFCT_S not during initialization time, but just in main(), and can see pin 1.02 is able to toggle correctly in NCS v3.1.1.&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Hieu&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/552664?ContentTypeID=1</link><pubDate>Tue, 28 Oct 2025 15:16:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a761dad5-7700-41f8-bec4-c00a5d2b30ed</guid><dc:creator>JVer</dc:creator><description>&lt;p&gt;Hi Hieu,&lt;/p&gt;
&lt;p&gt;Thanks for the response.&lt;/p&gt;
&lt;p&gt;Sorry for my bad explenation, I ment to say that writing the PADCONFIG register only works in non secure mode using the NRF_NFCT_S and NRF_NFCT versions but the solution to use the NRF_NFCT_NS with a Non-Secure build does not work.&lt;/p&gt;
&lt;p&gt;The program correctly faults when attempting to write using the NRF_NFCT_NS version in a secure build.&lt;/p&gt;
&lt;p&gt;I verified that using the NRF_NFCT_S and NRF_NFCT set the register correctly while probing using a debugger with a secure build but changing these to NRF_NFCT_NS and building the application in a Non-Secure build causes the debugger to continue running the code but the register does not update.&lt;/p&gt;
&lt;p&gt;I try to unlock the NFCT pins using a function running POST_KERNEL with a priority of 20. The debugger shows that it gets in the init function before reaching the drivers that require the pins to function as GPIO but although the function runs and exits the register does not get changed.&lt;/p&gt;
&lt;p&gt;We are considering updating the hardware design to avoid the use of these pins,but understanding why it is not possible to unlock the pins in a Non-Secure build is favorable over updating the hardware.&lt;/p&gt;
&lt;p&gt;I tried running the unlock function in PRE_KERNEL_1 but the code seems to crash if I set it like this.&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Justin Verkade&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/552640?ContentTypeID=1</link><pubDate>Tue, 28 Oct 2025 13:27:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0e7cc154-0522-4c50-bd88-12c4beb3f7be</guid><dc:creator>Hieu</dc:creator><description>&lt;p&gt;Hi JVer,&lt;/p&gt;
&lt;p&gt;Are you certain that NRF_NFCT_NS-&amp;gt;PADCONFIG works when you build&amp;nbsp;&lt;em&gt;without&lt;/em&gt; TF-M?&lt;/p&gt;
&lt;p&gt;Without TF-M, your application should be built to run in the &lt;span style="background-color:rgba(255, 255, 0, 1);"&gt;&lt;strong&gt;S&lt;/strong&gt;&lt;/span&gt;ecure Environment, which means it should write to NRF_NFCT_&lt;span style="background-color:rgba(255, 255, 0, 1);"&gt;&lt;strong&gt;S&lt;/strong&gt;&lt;/span&gt; instead.&lt;/p&gt;
&lt;p&gt;With TF-M, your application should be built to run in the &lt;span style="background-color:rgba(255, 255, 0, 1);"&gt;&lt;strong&gt;N&lt;/strong&gt;&lt;/span&gt;on-&lt;span style="background-color:rgba(255, 255, 0, 1);"&gt;&lt;strong&gt;s&lt;/strong&gt;&lt;/span&gt;ecure Environment, thus NRF_NFCT_&lt;span style="background-color:rgba(255, 255, 0, 1);"&gt;&lt;strong&gt;NS&lt;/strong&gt;&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Hieu&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/552536?ContentTypeID=1</link><pubDate>Mon, 27 Oct 2025 16:04:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:03780cd0-96cf-4698-b192-5a98ebb84d0e</guid><dc:creator>JVer</dc:creator><description>&lt;p&gt;Hi Hieu,&lt;/p&gt;
&lt;p&gt;We tried this solution to write the memory using the NRF_NFCT_NS-&amp;gt;PADCONFIG register but this only works for us when building the application without TF-M. We are using the SDK 3.1.1 and we are wondering if the solution does not work anymore or if a different solution has been found to fix the issue?&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;JVer&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/520815?ContentTypeID=1</link><pubDate>Fri, 31 Jan 2025 07:41:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:46d605e5-2765-4795-b67d-2e49b7cc1d04</guid><dc:creator>MarkLaloo</dc:creator><description>&lt;p&gt;HI&amp;nbsp;&lt;span&gt;Hieu,&lt;br /&gt;&lt;br /&gt;Thank you for the response; we will continue using the PADCONFIG register until a driver solution is available.&lt;br /&gt;&lt;br /&gt;Kind regards,&lt;br /&gt;Mark Laloo&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/520567?ContentTypeID=1</link><pubDate>Wed, 29 Jan 2025 14:39:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:22347ca5-6aeb-4bc9-9241-505996709704</guid><dc:creator>Hieu</dc:creator><description>&lt;p&gt;Hi Mark,&lt;/p&gt;
&lt;p&gt;Unfortunately, the people working on the DeviceTree solution are unavailable at the moment.&lt;/p&gt;
&lt;p&gt;I also would like to correct that writing NRF_NFCT_NS-&amp;gt;PADCONFIG works. I didn&amp;#39;t know that P1.02 isn&amp;#39;t connected from the SoC to the pin header on the DK. Checking R33 on the DK shows that the pin works normally.&lt;/p&gt;
&lt;p&gt;Could you please use the direct register write method for now?&lt;/p&gt;
&lt;p&gt;I will file an internal ticket for a driver approach solution to the problem.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Hieu&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/519883?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 22:45:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1b2d3e0f-58c0-4a09-b11f-b17072de0590</guid><dc:creator>Hieu</dc:creator><description>&lt;p&gt;Hi Mark,&lt;/p&gt;
&lt;p&gt;My apology. I am able to reproduce the issue. I actually am not able to work around it by writing to NRF_NFCT_NS-&amp;gt;PADCONFIG. Did you write&amp;nbsp;to that register from the secure domain?&lt;/p&gt;
&lt;p&gt;I&amp;nbsp;am also asking internally if there is any DeviceTree method for this instead. I will get back to you when I got an answer.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Hieu&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/519456?ContentTypeID=1</link><pubDate>Wed, 22 Jan 2025 08:02:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f4d5addf-9327-4d1c-994c-34763e62df99</guid><dc:creator>MarkLaloo</dc:creator><description>&lt;p&gt;HI Hieu,&lt;br /&gt;&lt;br /&gt;Thanks for the response. I&amp;#39;ve seen this post before, with no luck.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve tried disabled the NFC node using:&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;&lt;span&gt;&amp;amp;&lt;/span&gt;&lt;span&gt;nfct&lt;/span&gt;&lt;span&gt; {&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span&gt;status&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;&amp;quot;disabled&amp;quot;&lt;/span&gt;&lt;span&gt;;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;};&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;in board_nrf54l15_cpuapp_ns.dts, and after testing again, this does not solve the issue. Debugging in VSCode/Ozone and inspecting the registers, PADCONFIG is still enabled in the NFCT_NS register, and the pin does not function as a GPIO unless I manually disable. Worth noting, the TFM_NFCT_PINS_AS_GPIO appears to target only the 5340 SoC. Is there perhaps something I&amp;#39;m missing alongside the NFCT node change in devicetree?&lt;br /&gt;&lt;br /&gt;Kind regards,&lt;br /&gt;Mark Laloo&amp;nbsp;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 - NFCT Pins as GPIO with TF-M</title><link>https://devzone.nordicsemi.com/thread/519404?ContentTypeID=1</link><pubDate>Tue, 21 Jan 2025 19:22:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0a02cb09-51fc-4881-bd68-9989c179d519</guid><dc:creator>Hieu</dc:creator><description>&lt;p&gt;Hi Mark,&lt;/p&gt;
&lt;p&gt;Referring to&amp;nbsp;this earlier DevZone case:&amp;nbsp;&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/113935/nrf5340-best-way-to-configure-p0-02-nfct-as-gpio-with-tfm"&gt;nRF5340: best way to configure P0.02 (NFCT) as GPIO with TFM&lt;/a&gt;&amp;nbsp;.&lt;/p&gt;
&lt;p&gt;As long as the NFC node is disabled in DeviceTree on the non-secure target, P1.02 will be enabled as a GPIO pin by default.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Hieu&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>