public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/6] mx6sabresd: Avoid calling setup_display() from SPL code
@ 2017-09-23  2:45 Fabio Estevam
  2017-09-23  2:45 ` [U-Boot] [PATCH 2/6] cgtqmx6eval: " Fabio Estevam
                   ` (5 more replies)
  0 siblings, 6 replies; 18+ messages in thread
From: Fabio Estevam @ 2017-09-23  2:45 UTC (permalink / raw)
  To: u-boot

From: Fabio Estevam <fabio.estevam@nxp.com>

There is no need call setup_display() from SPL code, so move it to
board_init(), which executes only in U-Boot proper.

Reported-by: Stefano Babic <sbabic@denx.de>
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
---
 board/freescale/mx6sabresd/mx6sabresd.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/board/freescale/mx6sabresd/mx6sabresd.c b/board/freescale/mx6sabresd/mx6sabresd.c
index 5b50bc8..f14b759 100644
--- a/board/freescale/mx6sabresd/mx6sabresd.c
+++ b/board/freescale/mx6sabresd/mx6sabresd.c
@@ -620,9 +620,6 @@ int board_ehci_power(int port, int on)
 int board_early_init_f(void)
 {
 	setup_iomux_uart();
-#if defined(CONFIG_VIDEO_IPUV3)
-	setup_display();
-#endif
 
 	return 0;
 }
@@ -639,6 +636,9 @@ int board_init(void)
 		setup_i2c(1, CONFIG_SYS_I2C_SPEED, 0x7f, &mx6q_i2c_pad_info1);
 	else
 		setup_i2c(1, CONFIG_SYS_I2C_SPEED, 0x7f, &mx6dl_i2c_pad_info1);
+#if defined(CONFIG_VIDEO_IPUV3)
+	setup_display();
+#endif
 #ifdef CONFIG_USB_EHCI_MX6
 	setup_usb();
 #endif
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2017-09-25 13:47 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-23  2:45 [U-Boot] [PATCH 1/6] mx6sabresd: Avoid calling setup_display() from SPL code Fabio Estevam
2017-09-23  2:45 ` [U-Boot] [PATCH 2/6] cgtqmx6eval: " Fabio Estevam
2017-09-23  8:07   ` Stefano Babic
2017-09-23  2:45 ` [U-Boot] [PATCH 3/6] wandboard: " Fabio Estevam
2017-09-23  8:07   ` Stefano Babic
2017-09-23  2:45 ` [U-Boot] [PATCH 4/6] mx6cuboxi: " Fabio Estevam
2017-09-23  8:07   ` Stefano Babic
2017-09-23  2:45 ` [U-Boot] [PATCH 5/6] apalis_imx6: " Fabio Estevam
2017-09-23  8:43   ` Stefano Babic
2017-09-23 13:01     ` Fabio Estevam
2017-09-23 15:11       ` Fabio Estevam
2017-09-25 13:46         ` Stefano Babic
2017-09-23 19:06     ` Anatolij Gustschin
2017-09-24 11:27       ` Max Krummenacher
2017-09-25 13:47         ` Stefano Babic
2017-09-23  2:45 ` [U-Boot] [PATCH 6/6] colibri_imx6: " Fabio Estevam
2017-09-24 11:31   ` Max Krummenacher
2017-09-23  8:06 ` [U-Boot] [PATCH 1/6] mx6sabresd: " Stefano Babic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox