Skip to content
Snippets Groups Projects
Commit 7814abc0 authored by Anatolij Gustschin's avatar Anatolij Gustschin Committed by Stefano Babic
Browse files

imx: mx6ul_14x14_evk: turn of backlight and LCD before booting OS


This should help keeping the screen black when booting the kernel.

Signed-off-by: default avatarAnatolij Gustschin <agust@denx.de>
Reported-by: default avatarFabio Estevam <festevam@gmail.com>
Tested-by: default avatarFabio Estevam <festevam@gmail.com>
parent 2f2fdbe3
No related branches found
No related tags found
No related merge requests found
...@@ -384,6 +384,15 @@ int checkboard(void) ...@@ -384,6 +384,15 @@ int checkboard(void)
return 0; return 0;
} }
/*
* Backlight off and reset LCD before OS handover
*/
void board_preboot_os(void)
{
gpio_set_value(IMX_GPIO_NR(1, 8), 0);
gpio_set_value(IMX_GPIO_NR(5, 9), 0);
}
#ifdef CONFIG_SPL_BUILD #ifdef CONFIG_SPL_BUILD
#include <linux/libfdt.h> #include <linux/libfdt.h>
#include <spl.h> #include <spl.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment