Skip to content
Snippets Groups Projects
cpu_init.c 26.1 KiB
Newer Older
  • Learn to ignore specific revisions
  • Zhao Qiang's avatar
    Zhao Qiang committed
    #ifdef CONFIG_U_QE
    	uint qe_base = CONFIG_SYS_IMMR + 0x00140000; /* QE immr base */
    #elif defined CONFIG_QE
    
    	uint qe_base = CONFIG_SYS_IMMR + 0x00080000; /* QE immr base */
    
    Zhao Qiang's avatar
    Zhao Qiang committed
    #endif
    
    #ifdef CONFIG_QE
    
    
    #ifdef CONFIG_BOARD_LATE_INIT
    int board_late_init(void)
    {
    #ifdef CONFIG_CHAIN_OF_TRUST
    	fsl_setenv_chain_of_trust();
    #endif
    
    	return 0;
    }
    #endif