arm: xea: spl: Add GPIO0_0 setup on spl_board_init
authorLukasz Majewski <lukma@denx.de>
Sat, 25 Jan 2020 08:01:39 +0000 (09:01 +0100)
committerStefano Babic <sbabic@denx.de>
Sun, 9 Feb 2020 13:59:16 +0000 (14:59 +0100)
Explicitly configure GPIO0_0 in SPL, which controlls 3V3 voltage
on the XEA board (it also supplies TIVAs).

This code would enable TIVAs power supply early (also when board
uses the falcon boot).

Signed-off-by: Lukasz Majewski <lukma@denx.de>
board/liebherr/xea/xea.c

index bdc073664c4388a4ff8adf0a789f9a5cfe684da9..df5d316717fd2b0b9513ad0e8faf34998f3e91ff 100644 (file)
@@ -64,9 +64,24 @@ static int boot_tiva0, boot_tiva1;
 /* Check if TIVAs request booting via U-Boot proper */
 void spl_board_init(void)
 {
-       struct gpio_desc btiva0, btiva1;
+       struct gpio_desc btiva0, btiva1, en_3_3v;
        int ret;
 
+       /*
+        * Setup GPIO0_0 (TIVA power enable pin) to be output high
+        * to allow TIVA startup.
+        */
+       ret = dm_gpio_lookup_name("GPIO0_0", &en_3_3v);
+       if (ret)
+               printf("Cannot get GPIO0_0\n");
+
+       ret = dm_gpio_request(&en_3_3v, "pwr_3_3v");
+       if (ret)
+               printf("Cannot request GPIO0_0\n");
+
+       /* Set GPIO0_0 to HIGH */
+       dm_gpio_set_dir_flags(&en_3_3v, GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
+
        ret = dm_gpio_lookup_name("GPIO0_23", &btiva0);
        if (ret)
                printf("Cannot get GPIO0_23\n");