Hi @sapirbuz
Answer your questions:
1. ROM= internal boot ROM?
=> Yes, internal ROM, mainly used for the boot.
2. Is this the only case where I don't need to configure the IOMUXC? when should I configure the IOMUX for some ALT mode and when it isn't required?
=>If your used pin is not the ROM related flash pin, you also can configure it in the user application code, about the IOMUX configure, just use my last reply, the code in the pinmux to configure it, when you select the related function, then it will help you select the it's ALT mode.
Eg.GPIO_AD_B1_15
#define IOMUXC_GPIO_AD_B1_15_FLEXSPIA_SS0_B 0x401F8138U, 0x0U, 0, 0, 0x401F8328U
#define IOMUXC_GPIO_AD_B1_15_ACMP_OUT03 0x401F8138U, 0x1U, 0, 0, 0x401F8328U
#define IOMUXC_GPIO_AD_B1_15_LPSPI3_SCK 0x401F8138U, 0x2U, 0x401F8510U, 0x1U, 0x401F8328U
#define IOMUXC_GPIO_AD_B1_15_SAI1_TX_SYNC 0x401F8138U, 0x3U, 0x401F85ACU, 0x1U, 0x401F8328U
#define IOMUXC_GPIO_AD_B1_15_CSI_DATA02 0x401F8138U, 0x4U, 0x401F8400U, 0x0U, 0x401F8328U
#define IOMUXC_GPIO_AD_B1_15_GPIO1_IO31 0x401F8138U, 0x5U, 0, 0, 0x401F8328U
#define IOMUXC_GPIO_AD_B1_15_USDHC2_DATA7 0x401F8138U, 0x6U, 0x401F8604U, 0x1U, 0x401F8328U
#define IOMUXC_GPIO_AD_B1_15_KPP_COL00 0x401F8138U, 0x7U, 0, 0, 0x401F8328U
#define IOMUXC_GPIO_AD_B1_15_ENET2_1588_EVENT3_IN 0x401F8138U, 0x8U, 0, 0, 0x401F8328U
#define IOMUXC_GPIO_AD_B1_15_FLEXIO3_FLEXIO15 0x401F8138U, 0x9U, 0, 0, 0x401F8328U
What about the other pins like JTAG, I2C, UART, FlexSPI B, do I need to configure their IOMUXC registers?
=>JTAG, is default as the SWD function, you don't need to configure it.
I2C, UART, pinmux to configure it, check the sdk driver related project.
FlexSPI B, if you want ot use it, you also can configure it.
SDK_2_11_1_EVK-MIMXRT1060\boards\evkmimxrt1060\driver_examples\flexspi
Although it is for A port, but you can modify it for B port.
BTW, a question for you, how do you modify your MIMXRT1050-EVKB board for the QSPI flash? I find one DFAE also helps you check the boot issues, he said you do the MIMXRT1050-EVK rework, but I don't know which detail HW points you have modified, this one?
OPTION2: USE QSPI FLASH(Mount R153~R158, DNP R356,R361~R366)
Best Regards,
kerry