NRF subsys NFC library code (platform.c) fails at compilation when CONFIG_BUILD_WITH_TFM is enabled

/home/work/external/nrf/subsys/nfc/lib/platform.c: In function 'nfc_platform_tagheaders_get':
/home/work/external/nrf/subsys/nfc/lib/platform.c:143:9: error: unknown type name 'FICR_NFC_Type'; did you mean 'NRF_FICR_NFC_Type'?
  143 |         FICR_NFC_Type ficr_nfc_ns;
      |         ^~~~~~~~~~~~~
      |         NRF_FICR_NFC_Type
/home/work/external/nrf/subsys/nfc/lib/platform.c:144:15: error: unknown type name 'FICR_NFC_Type'
  144 |         __IOM FICR_NFC_Type *ficr_nfc = &NRF_FICR_S->NFC;
      |               ^~~~~~~~~~~~~
/home/work/external/nrf/subsys/nfc/lib/platform.c:144:42: error: 'NRF_FICR_S' undeclared (first use in this function); did you mean 'NRF_SICR_S'?
  144 |         __IOM FICR_NFC_Type *ficr_nfc = &NRF_FICR_S->NFC;
      |                                          ^~~~~~~~~~
      |                                          NRF_SICR_S
/home/work/external/nrf/subsys/nfc/lib/platform.c:144:42: note: each undeclared identifier is reported only once for each function it appears in
/home/work/external/nrf/subsys/nfc/lib/platform.c:154:36: error: request for member 'TAGHEADER0' in something not a structure or union
  154 |         tag_header[0] = ficr_nfc_ns.TAGHEADER0;
      |                                    ^
/home/work/external/nrf/subsys/nfc/lib/platform.c:155:36: error: request for member 'TAGHEADER1' in something not a structure or union
  155 |         tag_header[1] = ficr_nfc_ns.TAGHEADER1;
      |                                    ^
/home/work/external/nrf/subsys/nfc/lib/platform.c:156:36: error: request for member 'TAGHEADER2' in something not a structure or union
  156 |         tag_header[2] = ficr_nfc_ns.TAGHEADER2;
      |                                    ^
[293/373] Building C object modules/nrf/modules/trusted-firmware-m/CMakeFiles/..__nrf__modules__trusted-firmware-m.dir/fault.c.obj
ninja: build stopped: subcommand failed.


Hello - 

Above is an error message I am encountering when attempting to use the NFC record_text sample code for a nRF54L15DK in TF-M as the Secure Environment.

The samples do not use TF-M, and so they compile fine, hitting this code in the library:

#else

	tag_header[0] = nrf_ficr_nfc_tagheader_get(NRF_FICR, 0);
	tag_header[1] = nrf_ficr_nfc_tagheader_get(NRF_FICR, 1);
	tag_header[2] = nrf_ficr_nfc_tagheader_get(NRF_FICR, 2);

#endif /* CONFIG_TRUSTED_EXECUTION_NONSECURE */

However, with TF-M, I get the build errors shown at the top of my post, caused by this block of code:

static nrfx_err_t nfc_platform_tagheaders_get(uint32_t tag_header[3])
{
#ifdef CONFIG_TRUSTED_EXECUTION_NONSECURE
#if defined(CONFIG_BUILD_WITH_TFM)
	uint32_t err = 0;
	enum tfm_platform_err_t plt_err;
	FICR_NFC_Type ficr_nfc_ns;
	__IOM FICR_NFC_Type *ficr_nfc = &NRF_FICR_S->NFC;

	plt_err = tfm_platform_mem_read(&ficr_nfc_ns, (uint32_t)ficr_nfc,
					sizeof(ficr_nfc_ns), &err);
	if (plt_err != TFM_PLATFORM_ERR_SUCCESS || err != 0) {
		LOG_ERR("Could not read FICR NFC Tag Header (plt_err %d, err: %d)",
			plt_err, err);
		return NRFX_ERROR_INTERNAL;
	}

	tag_header[0] = ficr_nfc_ns.TAGHEADER0;
	tag_header[1] = ficr_nfc_ns.TAGHEADER1;
	tag_header[2] = ficr_nfc_ns.TAGHEADER2;

#else
#error "Cannot read FICR NFC Tag Header in current configuration"

I am looking for a bit of guidance on how I can properly configure my nRF54L15DK project to be able to use Nordic's Zephyr NFC library code while still using CONFIG_BUILD_WITH_TFM.

Thank you!

  • Hello,

    ''Above is an error message I am encountering when attempting to use the NFC record_text sample code for a nRF54L15DK in TF-M as the Secure Environment.''

    Did you try to run the NFC record_text sample using the build target nrf54l15dk/nrf54l15/cpuapp/ns and setting CONFIG_BUILD_WITH_TFM as y in the config file?

    I have tried it and got the same error.

    I think it is not supposed to build in TF-M as the secure environment while setting CONFIG_BUILD_WITH_TFM=y (or not setting) in prj.conf file

    However, I will ask team and get back to you soon.

    Thanks.

    BR

    Kazi

  • Thanks for the reply.

    Yes - I cannot compile on the nRF54L15DK when using CONFIG_BUILD_WITH_TFM, because FICR_NFC_Type is not defined for the nRF54L15, causing the TAGHEADER members to also be undefined.

    Here I can see that NRF_FICR_NFC_Type is defined for the nRF54L15 instead, maybe this difference in naming is causing the error? The struct definitions appear to be the same, but for the nRF54L15, there is that NRF_ prefix.

    NRF_FICR_S is also undefined for the nRF54L15, only appearing when building for the nRF5340 and nRF9120.

    Let me know what you think, if this might be an issue with naming in the SDK, or if NFC on this chip while TF-M is enabled is just unsupported, and a workaround must be found.

    I want to use the NFC tag in my nRF54L15 application, but have to compile for TF-M.

    Thanks

  • Hello,

    ''Above is an error message I am encountering when attempting to use the NFC record_text sample code for a nRF54L15DK in TF-M as the Secure Environment.''

    Did you try to run the NFC record_text sample using the build target nrf54l15dk/nrf54l15/cpuapp/ns and setting CONFIG_BUILD_WITH_TFM as y in the config file?

    I have tried it and got the same error.

    I think it is not supposed to build in TF-M as the secure environment while setting CONFIG_BUILD_WITH_TFM=y (or not setting) in prj.conf file

    However, I will ask team and get back to you soon.

    Thanks.

    BR

    Kazi

  • Thanks. Please let me know when you have received a reply from the team regarding the usage of Nordic's NFC Platform Module when building with the TF-M.

    I created a reply to your first message going into a bit more detail the error I've seen, where it appears to be caused by missing FICR definitions for the nRF54L15 target.

    Thank you for your help.

  • Hello,

    I got feedback from team.

    NFC is not yet supported with TF-M on the nRF54L15.

Related