Hi,
In our i.MX8QX HW we have pull-up on SCU_GPIO0_00 - pin and by default it has pull-down resulting non-ideal state until system reached either U-boot or Linux.
I tried to disable the pull-down in SCU firmware with command:
(void) sc_pad_set_gp(pt_sc, SC_P_SCU_GPIO0_00, 0x00000060);
Called from function : void board_config_sc(sc_rm_pt_t pt_sc)
But it did nothing. We release that pin in SCU firmware (or make it 'movable' as it's called there) so I already know that the SCU modifications will go through in use.
I tried different values for the last one, but none of them didn't seem to work and couldn't really find examples/better documentation.
Is that even correct function call and what control value I should use?