Merge pull request #13 from Sgch/fix-lcdif

sharp: fix to reset LCDIF module before running linux
This commit is contained in:
Takumi Sueda 2021-05-29 23:36:29 +09:00 committed by GitHub
commit 4a52b35110
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,10 @@
#include <common.h>
#include <bootm.h>
#include <asm/mach-imx/dma.h>
#include <asm/arch/sys_proto.h>
void board_quiesce_devices(void) {
mxs_dma_disable(MXS_DMA_CHANNEL_AHB_APBH_LCDIF);
mxs_dma_release(MXS_DMA_CHANNEL_AHB_APBH_LCDIF);
lcdif_power_down();
}