Dear FS-Support,
in order to have 0V on the pin 58 (spi_b_cs2, efusA9q) by System start, i want to configure this pin in U-Boot.
So, i want try to modify fsimx6.c (/fsimx6-V3.0/build/u-boot-2014.07-fsimx6-V3.0/board/F+S/fsimx6) as follow:
in the function int board_init(void)
{
...
gpio_direction_output(IMX_GPIO_NR(3,25), 0);
SETUP_IOMUX_PADS(testpad);
}
...
static iomux_v3_cfg_t const testpad [] = {
IOMUX_PADS(PAD_SPI_B_CS2__GPIO3_IO25 | MUX_PAD_CTRL(NO_PAD_CTRL)),
};
Is this correct way?
Thanks!