Thanks for your reply, I have completed the implementation of this function.The following is the general implementation process.It may be helpful to some people.
In u-boot 2018.03, you need to properly configure the parameters of the LCD and then mask lcdif_power_down() called in cpu.c.
In the 4.14.98 kernel, mxsfb.c needs to be modified by calling pm_runtime_get_sync(&host->pdev->dev) in the probe function.Make sure the following clock is on and block all register initializations, then map the fb address to uboot.
imx_clk_prepare_enable (CLKS [IMX6SX_CLK_LCDIF1_PIX]);
imx_clk_prepare_enable (CLKS [IMX6SX_CLK_LCDIF_APB]);
imx_clk_prepare_enable (CLKS [IMX6SX_CLK_AXI]);
imx_clk_prepare_enable (CLKS [IMX6SX_CLK_DISPLAY_AXI]);