SUSPEND Mode: This mode is defined as the most power saving mode where all the clocks are
off (including the Cortex®-M33 CPU), all the unnecessary power supplies are off and all power
gateable portions of the SoC are power gated. The Cortex®-A55 CPU are fully power gated, all
internal digital logic and analog circuit that can be powered down will be off, and all PHYs are
power gated. DRAM is set at self-refresh/retention mode. VDD_SOC (and related digital supply)
voltage is reduced to the “Suspend mode” voltage.

You can see in the source code:
uboot-imx/board/freescale/imx93_evk/spl.c
if (IS_ENABLED(CONFIG_IMX9_LOW_DRIVE_MODE)){
/* 0.8v for Low drive mode
*/
pmic_reg_write(dev, PCA9450_BUCK1OUT_DVS0, 0x10);
pmic_reg_write(dev, PCA9450_BUCK3OUT_DVS0, 0x10);
} else {
/* 0.9v for Over drive mode
*/
pmic_reg_write(dev, PCA9450_BUCK1OUT_DVS0, 0x18);
pmic_reg_write(dev, PCA9450_BUCK3OUT_DVS0, 0x18);
}
/* set standby voltage to 0.65v */
pmic_reg_write(dev, PCA9450_BUCK1OUT_DVS1, 0x4);