2025-03-05 10:55 PM
I'm following along AN6000 to bypass the internal SMPS of the STM32N6 and use my own SMPS and LDOs power several of the power rails for the MCU and have some questions:
1. In section 3.2 "System power/up/uncontrolled power-down sequence", the document states that the bootloader software must disable the internal SMPS by clearing the SDEN bit in PWR_CR1 register. Is this behavior configurable via CubeMX setting, or needs to be set manually in bootloader and if so, is this achievable once Vdd comes on?
2. In the same section, it states that the PWR_ON signal is activated and Vddcore, Vdda18x and Vddperiph are enabled. The PWR_ON signal is asserted automatically once the power thresholds are reached, correct, or do I have to set the signal manually?
3. In section 2 "Discrete power supply topologies", the diagram shows the LDOs and SMPS for Vddcore, Vdd, Vdda1V8_AON, vdda1v8 and Vddperiph but I do not see an LDO or SMPS for Vddio although I see Vdda1v8 powering some IO blocks. My confusion is that the schematic shows Vddio being powered by LD39020ADTPU33R LDO which outputs 3.3V not 1.8V. So, should Vddio be actually 1.8V or 3.3V?
Thank you!
Solved! Go to Solution.
2025-03-06 1:13 AM
Hello @flexiglass
Here my answers below:
1. By default, after a reset and the execution of the bootROM, the internal SMPS is enabled.
This is the default content of the PWR_CR1 register bit 2 SDEN SMPS step-down converter enable.
According to AN6000 in section 3.2, you should understand that for an external SMPS (bypass) configuration, bit 2 SDEN of the PWR_CR1 register must be cleared in the FSBL code (which is referred to as Bootloader in the document).
Refer to the example below:
STM32Cube_FW_N6_V1.1.0\Projects\STM32N6570-DK\Templates\Template\FSBL\Src\main.c
in the SystemClock_Config() function, it is the role of the following code: HAL_PWREx_ConfigSupply(PWR_EXTERNAL_SOURCE_SUPPLY) which will change the value of SDEN=0.
2. Refer to RM0486 Rev2, section 13.4.1 System supply startup, VCORE supplied in bypass mode (SMPS off).
The digital output PWR_ON (which is in the VDD domain) once activated will drive the external DCDC component for VDDCore and other supply domains: To have PWR_ON = 1, two conditions are required (see Figure 18. Device startup (VCORE supplied from an external regulator)
When these two voltages are present and have crossed the internal POR threshold, then PWR_ON = 1 and can be used to drive external LDO or DCDC chip.
3. In the diagram, the configuration of the VDDIOx is shown (as an example) as the configuration of our STM32N6570-DK. VDD Configured at 3.3V with its own external regulator (SMPS or LDO) VDDA18ON at 1.8V You will notice that these 2 supplies are always present with reference to my response 1.
VDDIO2 and VDDIO3 (XSPI-P1 and XSPI-P2 for external memories) are connected to VDDA1V8.
VDDIO4 and VDDIO5 (SDMMCx) are connected to VDD.
The VDD, VDDIOx power rails can be configured to 3.3 or 1.8V (check Table 22 in DS14791 Rev2)
Let me know if it helps?
Best regards,
Romain
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2025-03-06 1:13 AM
Hello @flexiglass
Here my answers below:
1. By default, after a reset and the execution of the bootROM, the internal SMPS is enabled.
This is the default content of the PWR_CR1 register bit 2 SDEN SMPS step-down converter enable.
According to AN6000 in section 3.2, you should understand that for an external SMPS (bypass) configuration, bit 2 SDEN of the PWR_CR1 register must be cleared in the FSBL code (which is referred to as Bootloader in the document).
Refer to the example below:
STM32Cube_FW_N6_V1.1.0\Projects\STM32N6570-DK\Templates\Template\FSBL\Src\main.c
in the SystemClock_Config() function, it is the role of the following code: HAL_PWREx_ConfigSupply(PWR_EXTERNAL_SOURCE_SUPPLY) which will change the value of SDEN=0.
2. Refer to RM0486 Rev2, section 13.4.1 System supply startup, VCORE supplied in bypass mode (SMPS off).
The digital output PWR_ON (which is in the VDD domain) once activated will drive the external DCDC component for VDDCore and other supply domains: To have PWR_ON = 1, two conditions are required (see Figure 18. Device startup (VCORE supplied from an external regulator)
When these two voltages are present and have crossed the internal POR threshold, then PWR_ON = 1 and can be used to drive external LDO or DCDC chip.
3. In the diagram, the configuration of the VDDIOx is shown (as an example) as the configuration of our STM32N6570-DK. VDD Configured at 3.3V with its own external regulator (SMPS or LDO) VDDA18ON at 1.8V You will notice that these 2 supplies are always present with reference to my response 1.
VDDIO2 and VDDIO3 (XSPI-P1 and XSPI-P2 for external memories) are connected to VDDA1V8.
VDDIO4 and VDDIO5 (SDMMCx) are connected to VDD.
The VDD, VDDIOx power rails can be configured to 3.3 or 1.8V (check Table 22 in DS14791 Rev2)
Let me know if it helps?
Best regards,
Romain
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2025-03-06 10:59 AM
Thank you Romain, that helped!
2025-03-13 10:54 AM
A couple more follow-up questions about XSPI-P1 and XSPI-P2 voltages:
1. Can each run independently on different voltages, say flash memory at 1.8V and DRAM at 3.3V?
2. Can I use SDRAM memories instead of PSRAM/DDR which is used on the DK eval board?
Thanks a lot in advance!
2025-03-14 2:43 AM
Hello @flexiglass
1. Yes, the voltage domain is independent, XSPIM-Port1 is on VDDIO2 and XSPIM-Port2 is on VDDIO3, then you need to fuse the OTP124 bits and configure the VDDIO2VRSEL and VDDIO3VRSEL bits in the PWR_SVMCR3 register according if voltage is 1.8V or 3.3V.
2. Unless I am mistaken, only the FMC supports the SDRAM interface, the Hexa/Octospi only support SRAM and PSRAM.
Best regards,
Romain,
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2025-03-14 10:56 AM
Hi @RomainR. thank you for your prompt reply! I should have read section 2.1.1 (Introduction) of RM0486 on SDRAM support. I see that according to section 27 (FMC) in RM0486, the FMC includes a PSRAM and NAND memory controller as well besides SDRAM, whereas serial bus memories (including PSRAM) are supported using XSPI.