Skip to content
Snippets Groups Projects
options.c 31.7 KiB
Newer Older
  • Learn to ignore specific revisions
  •  * Copyright 2008, 2010-2014 Freescale Semiconductor, Inc.
    
     * SPDX-License-Identifier:	GPL-2.0+
    
    #include <hwconfig.h>
    
    #include <fsl_ddr_sdram.h>
    
    /*
     * Use our own stack based buffer before relocation to allow accessing longer
     * hwconfig strings that might be in the environment before we've relocated.
     * This is pretty fragile on both the use of stack and if the buffer is big
     * enough. However we will get a warning from getenv_f for the later.
     */
    
    
    /* Board-specific functions defined in each board's ddr.c */
    extern void fsl_ddr_board_options(memctl_options_t *popts,
    
    struct dynamic_odt {
    
    	unsigned int odt_rd_cfg;
    	unsigned int odt_wr_cfg;
    	unsigned int odt_rtt_norm;
    	unsigned int odt_rtt_wr;
    
    #ifdef CONFIG_SYS_FSL_DDR4
    /* Quad rank is not verified yet due availability.
     * Replacing 20 OHM with 34 OHM since DDR4 doesn't have 20 OHM option
     */
    static const struct dynamic_odt single_Q[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS_AND_OTHER_DIMM,
    		DDR4_RTT_34_OHM,	/* unverified */
    		DDR4_RTT_120_OHM
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR4_RTT_OFF,
    		DDR4_RTT_120_OHM
    	},
    	{	/* cs2 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS_AND_OTHER_DIMM,
    		DDR4_RTT_34_OHM,
    		DDR4_RTT_120_OHM
    	},
    	{	/* cs3 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,	/* tied high */
    		DDR4_RTT_OFF,
    		DDR4_RTT_120_OHM
    	}
    };
    
    static const struct dynamic_odt single_D[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_ALL,
    		DDR4_RTT_40_OHM,
    		DDR4_RTT_OFF
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR4_RTT_OFF,
    		DDR4_RTT_OFF
    	},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0}
    };
    
    static const struct dynamic_odt single_S[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_ALL,
    		DDR4_RTT_40_OHM,
    		DDR4_RTT_OFF
    	},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    };
    
    static const struct dynamic_odt dual_DD[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_SAME_DIMM,
    		DDR4_RTT_120_OHM,
    		DDR4_RTT_OFF
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR4_RTT_34_OHM,
    		DDR4_RTT_OFF
    	},
    	{	/* cs2 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_SAME_DIMM,
    		DDR4_RTT_120_OHM,
    		DDR4_RTT_OFF
    	},
    	{	/* cs3 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR4_RTT_34_OHM,
    		DDR4_RTT_OFF
    	}
    };
    
    static const struct dynamic_odt dual_DS[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_SAME_DIMM,
    		DDR4_RTT_120_OHM,
    		DDR4_RTT_OFF
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR4_RTT_34_OHM,
    		DDR4_RTT_OFF
    	},
    	{	/* cs2 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_ALL,
    		DDR4_RTT_34_OHM,
    		DDR4_RTT_120_OHM
    	},
    	{0, 0, 0, 0}
    };
    static const struct dynamic_odt dual_SD[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_ALL,
    		DDR4_RTT_34_OHM,
    		DDR4_RTT_120_OHM
    	},
    	{0, 0, 0, 0},
    	{	/* cs2 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_SAME_DIMM,
    		DDR4_RTT_120_OHM,
    		DDR4_RTT_OFF
    	},
    	{	/* cs3 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR4_RTT_34_OHM,
    		DDR4_RTT_OFF
    	}
    };
    
    static const struct dynamic_odt dual_SS[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_ALL,
    		DDR4_RTT_34_OHM,
    		DDR4_RTT_120_OHM
    	},
    	{0, 0, 0, 0},
    	{	/* cs2 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_ALL,
    		DDR4_RTT_34_OHM,
    		DDR4_RTT_120_OHM
    	},
    	{0, 0, 0, 0}
    };
    
    static const struct dynamic_odt dual_D0[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_SAME_DIMM,
    		DDR4_RTT_40_OHM,
    		DDR4_RTT_OFF
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR4_RTT_OFF,
    		DDR4_RTT_OFF
    	},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0}
    };
    
    static const struct dynamic_odt dual_0D[4] = {
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    	{	/* cs2 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_SAME_DIMM,
    		DDR4_RTT_40_OHM,
    		DDR4_RTT_OFF
    	},
    	{	/* cs3 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR4_RTT_OFF,
    		DDR4_RTT_OFF
    	}
    };
    
    static const struct dynamic_odt dual_S0[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR4_RTT_40_OHM,
    		DDR4_RTT_OFF
    	},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0}
    
    };
    
    static const struct dynamic_odt dual_0S[4] = {
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    	{	/* cs2 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR4_RTT_40_OHM,
    		DDR4_RTT_OFF
    	},
    	{0, 0, 0, 0}
    
    };
    
    static const struct dynamic_odt odt_unknown[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR4_RTT_120_OHM,
    		DDR4_RTT_OFF
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR4_RTT_120_OHM,
    		DDR4_RTT_OFF
    	},
    	{	/* cs2 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR4_RTT_120_OHM,
    		DDR4_RTT_OFF
    	},
    	{	/* cs3 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR4_RTT_120_OHM,
    		DDR4_RTT_OFF
    	}
    };
    #elif defined(CONFIG_SYS_FSL_DDR3)
    
    static const struct dynamic_odt single_Q[4] = {
    
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS_AND_OTHER_DIMM,
    		DDR3_RTT_20_OHM,
    		DDR3_RTT_120_OHM
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,	/* tied high */
    		DDR3_RTT_OFF,
    		DDR3_RTT_120_OHM
    	},
    	{	/* cs2 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS_AND_OTHER_DIMM,
    		DDR3_RTT_20_OHM,
    		DDR3_RTT_120_OHM
    	},
    	{	/* cs3 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,	/* tied high */
    		DDR3_RTT_OFF,
    		DDR3_RTT_120_OHM
    	}
    };
    
    
    static const struct dynamic_odt single_D[4] = {
    
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_ALL,
    		DDR3_RTT_40_OHM,
    		DDR3_RTT_OFF
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR3_RTT_OFF,
    		DDR3_RTT_OFF
    	},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0}
    };
    
    
    static const struct dynamic_odt single_S[4] = {
    
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_ALL,
    		DDR3_RTT_40_OHM,
    		DDR3_RTT_OFF
    	},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    };
    
    
    static const struct dynamic_odt dual_DD[4] = {
    
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_SAME_DIMM,
    		DDR3_RTT_120_OHM,
    		DDR3_RTT_OFF
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR3_RTT_30_OHM,
    		DDR3_RTT_OFF
    	},
    	{	/* cs2 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_SAME_DIMM,
    		DDR3_RTT_120_OHM,
    		DDR3_RTT_OFF
    	},
    	{	/* cs3 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR3_RTT_30_OHM,
    		DDR3_RTT_OFF
    	}
    };
    
    
    static const struct dynamic_odt dual_DS[4] = {
    
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_SAME_DIMM,
    		DDR3_RTT_120_OHM,
    		DDR3_RTT_OFF
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR3_RTT_30_OHM,
    		DDR3_RTT_OFF
    	},
    	{	/* cs2 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_ALL,
    		DDR3_RTT_20_OHM,
    		DDR3_RTT_120_OHM
    	},
    	{0, 0, 0, 0}
    };
    
    static const struct dynamic_odt dual_SD[4] = {
    
    	{	/* cs0 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_ALL,
    		DDR3_RTT_20_OHM,
    		DDR3_RTT_120_OHM
    	},
    	{0, 0, 0, 0},
    	{	/* cs2 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_SAME_DIMM,
    		DDR3_RTT_120_OHM,
    		DDR3_RTT_OFF
    	},
    	{	/* cs3 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR3_RTT_20_OHM,
    		DDR3_RTT_OFF
    	}
    };
    
    
    static const struct dynamic_odt dual_SS[4] = {
    
    	{	/* cs0 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_ALL,
    		DDR3_RTT_30_OHM,
    		DDR3_RTT_120_OHM
    	},
    	{0, 0, 0, 0},
    	{	/* cs2 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_ALL,
    		DDR3_RTT_30_OHM,
    		DDR3_RTT_120_OHM
    	},
    	{0, 0, 0, 0}
    };
    
    
    static const struct dynamic_odt dual_D0[4] = {
    
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_SAME_DIMM,
    		DDR3_RTT_40_OHM,
    		DDR3_RTT_OFF
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR3_RTT_OFF,
    		DDR3_RTT_OFF
    	},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0}
    };
    
    
    static const struct dynamic_odt dual_0D[4] = {
    
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    	{	/* cs2 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_SAME_DIMM,
    		DDR3_RTT_40_OHM,
    		DDR3_RTT_OFF
    	},
    	{	/* cs3 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR3_RTT_OFF,
    		DDR3_RTT_OFF
    	}
    };
    
    
    static const struct dynamic_odt dual_S0[4] = {
    
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR3_RTT_40_OHM,
    		DDR3_RTT_OFF
    	},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0}
    
    };
    
    
    static const struct dynamic_odt dual_0S[4] = {
    
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    	{	/* cs2 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR3_RTT_40_OHM,
    		DDR3_RTT_OFF
    	},
    	{0, 0, 0, 0}
    
    };
    
    
    static const struct dynamic_odt odt_unknown[4] = {
    
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR3_RTT_120_OHM,
    		DDR3_RTT_OFF
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR3_RTT_120_OHM,
    		DDR3_RTT_OFF
    	},
    	{	/* cs2 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR3_RTT_120_OHM,
    		DDR3_RTT_OFF
    	},
    	{	/* cs3 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR3_RTT_120_OHM,
    		DDR3_RTT_OFF
    	}
    };
    
    #else	/* CONFIG_SYS_FSL_DDR3 */
    
    static const struct dynamic_odt single_Q[4] = {
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0}
    };
    
    static const struct dynamic_odt single_D[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_ALL,
    		DDR2_RTT_150_OHM,
    		DDR2_RTT_OFF
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR2_RTT_OFF,
    		DDR2_RTT_OFF
    	},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0}
    };
    
    static const struct dynamic_odt single_S[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_ALL,
    		DDR2_RTT_150_OHM,
    		DDR2_RTT_OFF
    	},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    };
    
    static const struct dynamic_odt dual_DD[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR2_RTT_75_OHM,
    		DDR2_RTT_OFF
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR2_RTT_OFF,
    		DDR2_RTT_OFF
    	},
    	{	/* cs2 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR2_RTT_75_OHM,
    		DDR2_RTT_OFF
    	},
    	{	/* cs3 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR2_RTT_OFF,
    		DDR2_RTT_OFF
    	}
    };
    
    static const struct dynamic_odt dual_DS[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR2_RTT_75_OHM,
    		DDR2_RTT_OFF
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR2_RTT_OFF,
    		DDR2_RTT_OFF
    	},
    	{	/* cs2 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR2_RTT_75_OHM,
    		DDR2_RTT_OFF
    	},
    	{0, 0, 0, 0}
    };
    
    static const struct dynamic_odt dual_SD[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR2_RTT_75_OHM,
    		DDR2_RTT_OFF
    	},
    	{0, 0, 0, 0},
    	{	/* cs2 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR2_RTT_75_OHM,
    		DDR2_RTT_OFF
    	},
    	{	/* cs3 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR2_RTT_OFF,
    		DDR2_RTT_OFF
    	}
    };
    
    static const struct dynamic_odt dual_SS[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR2_RTT_75_OHM,
    		DDR2_RTT_OFF
    	},
    	{0, 0, 0, 0},
    	{	/* cs2 */
    		FSL_DDR_ODT_OTHER_DIMM,
    		FSL_DDR_ODT_OTHER_DIMM,
    		DDR2_RTT_75_OHM,
    		DDR2_RTT_OFF
    	},
    	{0, 0, 0, 0}
    };
    
    static const struct dynamic_odt dual_D0[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_ALL,
    		DDR2_RTT_150_OHM,
    		DDR2_RTT_OFF
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR2_RTT_OFF,
    		DDR2_RTT_OFF
    	},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0}
    };
    
    static const struct dynamic_odt dual_0D[4] = {
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    	{	/* cs2 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_ALL,
    		DDR2_RTT_150_OHM,
    		DDR2_RTT_OFF
    	},
    	{	/* cs3 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR2_RTT_OFF,
    		DDR2_RTT_OFF
    	}
    };
    
    static const struct dynamic_odt dual_S0[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR2_RTT_150_OHM,
    		DDR2_RTT_OFF
    	},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    	{0, 0, 0, 0}
    
    };
    
    static const struct dynamic_odt dual_0S[4] = {
    	{0, 0, 0, 0},
    	{0, 0, 0, 0},
    	{	/* cs2 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR2_RTT_150_OHM,
    		DDR2_RTT_OFF
    	},
    	{0, 0, 0, 0}
    
    };
    
    static const struct dynamic_odt odt_unknown[4] = {
    	{	/* cs0 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR2_RTT_75_OHM,
    		DDR2_RTT_OFF
    	},
    	{	/* cs1 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR2_RTT_OFF,
    		DDR2_RTT_OFF
    	},
    	{	/* cs2 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_CS,
    		DDR2_RTT_75_OHM,
    		DDR2_RTT_OFF
    	},
    	{	/* cs3 */
    		FSL_DDR_ODT_NEVER,
    		FSL_DDR_ODT_NEVER,
    		DDR2_RTT_OFF,
    		DDR2_RTT_OFF
    	}
    };
    #endif
    
    
    /*
     * Automatically seleect bank interleaving mode based on DIMMs
     * in this order: cs0_cs1_cs2_cs3, cs0_cs1, null.
     * This function only deal with one or two slots per controller.
     */
    static inline unsigned int auto_bank_intlv(dimm_params_t *pdimm)
    {
    #if (CONFIG_DIMM_SLOTS_PER_CTLR == 1)
    	if (pdimm[0].n_ranks == 4)
    		return FSL_DDR_CS0_CS1_CS2_CS3;
    	else if (pdimm[0].n_ranks == 2)
    		return FSL_DDR_CS0_CS1;
    #elif (CONFIG_DIMM_SLOTS_PER_CTLR == 2)
    #ifdef CONFIG_FSL_DDR_FIRST_SLOT_QUAD_CAPABLE
    	if (pdimm[0].n_ranks == 4)
    		return FSL_DDR_CS0_CS1_CS2_CS3;
    #endif
    	if (pdimm[0].n_ranks == 2) {
    		if (pdimm[1].n_ranks == 2)
    			return FSL_DDR_CS0_CS1_CS2_CS3;
    		else
    			return FSL_DDR_CS0_CS1;
    	}
    #endif
    	return 0;
    }
    
    
    unsigned int populate_memctl_options(const common_timing_params_t *common_dimm,
    
    			memctl_options_t *popts,
    
    			unsigned int ctrl_num)
    {
    	unsigned int i;
    
    	char buffer[HWCONFIG_BUFFER_SIZE];
    	char *buf = NULL;
    
    #if defined(CONFIG_SYS_FSL_DDR3) || \
    	defined(CONFIG_SYS_FSL_DDR2) || \
    	defined(CONFIG_SYS_FSL_DDR4)
    
    	const struct dynamic_odt *pdodt = odt_unknown;
    
    
    	/*
    	 * Extract hwconfig from environment since we have not properly setup
    	 * the environment but need it for ddr config params
    	 */
    	if (getenv_f("hwconfig", buffer, sizeof(buffer)) > 0)
    		buf = buffer;
    
    #if defined(CONFIG_SYS_FSL_DDR3) || \
    	defined(CONFIG_SYS_FSL_DDR2) || \
    	defined(CONFIG_SYS_FSL_DDR4)
    
    	/* Chip select options. */
    
    #if (CONFIG_DIMM_SLOTS_PER_CTLR == 1)
    	switch (pdimm[0].n_ranks) {
    	case 1:
    		pdodt = single_S;
    		break;
    	case 2:
    		pdodt = single_D;
    		break;
    	case 4:
    		pdodt = single_Q;
    		break;
    	}
    #elif (CONFIG_DIMM_SLOTS_PER_CTLR == 2)
    	switch (pdimm[0].n_ranks) {
    #ifdef CONFIG_FSL_DDR_FIRST_SLOT_QUAD_CAPABLE
    	case 4:
    		pdodt = single_Q;
    		if (pdimm[1].n_ranks)
    			printf("Error: Quad- and Dual-rank DIMMs cannot be used together\n");
    		break;
    #endif
    	case 2:
    		switch (pdimm[1].n_ranks) {
    
    			pdodt = dual_DD;
    
    		case 1:
    			pdodt = dual_DS;
    
    		case 0:
    			pdodt = dual_D0;
    
    		}
    		break;
    	case 1:
    		switch (pdimm[1].n_ranks) {
    
    			pdodt = dual_SD;
    
    			pdodt = dual_SS;
    
    			pdodt = dual_S0;
    
    		break;
    	case 0:
    		switch (pdimm[1].n_ranks) {
    		case 2:
    			pdodt = dual_0D;
    			break;
    		case 1:
    			pdodt = dual_0S;
    			break;
    		}
    		break;
    
    #endif	/* CONFIG_DIMM_SLOTS_PER_CTLR */
    #endif	/* CONFIG_SYS_FSL_DDR2, 3, 4 */
    
    
    	/* Pick chip-select local options. */
    	for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
    
    #if defined(CONFIG_SYS_FSL_DDR3) || \
    	defined(CONFIG_SYS_FSL_DDR2) || \
    	defined(CONFIG_SYS_FSL_DDR4)
    
    		popts->cs_local_opts[i].odt_rd_cfg = pdodt[i].odt_rd_cfg;
    		popts->cs_local_opts[i].odt_wr_cfg = pdodt[i].odt_wr_cfg;
    		popts->cs_local_opts[i].odt_rtt_norm = pdodt[i].odt_rtt_norm;
    		popts->cs_local_opts[i].odt_rtt_wr = pdodt[i].odt_rtt_wr;
    #else
    		popts->cs_local_opts[i].odt_rd_cfg = FSL_DDR_ODT_NEVER;
    		popts->cs_local_opts[i].odt_wr_cfg = FSL_DDR_ODT_CS;
    #endif
    
    		popts->cs_local_opts[i].auto_precharge = 0;
    	}
    
    	/* Pick interleaving mode. */
    
    	/*
    	 * 0 = no interleaving
    	 * 1 = interleaving between 2 controllers
    	 */
    	popts->memctl_interleaving = 0;
    
    	/*
    	 * 0 = cacheline
    	 * 1 = page
    	 * 2 = (logical) bank
    	 * 3 = superbank (only if CS interleaving is enabled)
    	 */
    	popts->memctl_interleaving_mode = 0;
    
    	/*
    	 * 0: cacheline: bit 30 of the 36-bit physical addr selects the memctl
    	 * 1: page:      bit to the left of the column bits selects the memctl
    	 * 2: bank:      bit to the left of the bank bits selects the memctl
    	 * 3: superbank: bit to the left of the chip select selects the memctl
    	 *
    	 * NOTE: ba_intlv (rank interleaving) is independent of memory
    	 * controller interleaving; it is only within a memory controller.
    	 * Must use superbank interleaving if rank interleaving is used and
    	 * memory controller interleaving is enabled.
    	 */
    
    	/*
    	 * 0 = no
    	 * 0x40 = CS0,CS1
    	 * 0x20 = CS2,CS3
    	 * 0x60 = CS0,CS1 + CS2,CS3
    	 * 0x04 = CS0,CS1,CS2,CS3
    	 */
    	popts->ba_intlv_ctl = 0;
    
    	/* Memory Organization Parameters */
    
    	popts->registered_dimm_en = common_dimm->all_dimms_registered;
    
    
    	/* Operational Mode Paramters */
    
    	/* Pick ECC modes */
    
    	popts->ecc_mode = 0;		  /* 0 = disabled, 1 = enabled */
    
    #ifdef CONFIG_DDR_ECC
    	if (hwconfig_sub_f("fsl_ddr", "ecc", buf)) {
    		if (hwconfig_subarg_cmp_f("fsl_ddr", "ecc", "on", buf))
    
    	/* 1 = use memory controler to init data */
    	popts->ecc_init_using_memctl = popts->ecc_mode ? 1 : 0;
    
    
    	/*
    	 * Choose DQS config
    	 * 0 for DDR1
    	 * 1 for DDR2
    	 */
    
    #if defined(CONFIG_SYS_FSL_DDR1)
    
    	popts->dqs_config = 0;
    
    #elif defined(CONFIG_SYS_FSL_DDR2) || defined(CONFIG_SYS_FSL_DDR3)
    
    	popts->dqs_config = 1;
    
    #endif
    
    	/* Choose self-refresh during sleep. */
    	popts->self_refresh_in_sleep = 1;
    
    	/* Choose dynamic power management mode. */
    	popts->dynamic_power = 0;
    
    
    	/*
    	 * check first dimm for primary sdram width
    	 * presuming all dimms are similar
    	 * 0 = 64-bit, 1 = 32-bit, 2 = 16-bit
    	 */
    
    #if defined(CONFIG_SYS_FSL_DDR1) || defined(CONFIG_SYS_FSL_DDR2)
    
    	if (pdimm[0].n_ranks != 0) {
    		if ((pdimm[0].data_width >= 64) && \
    			(pdimm[0].data_width <= 72))
    			popts->data_bus_width = 0;
    
    		else if ((pdimm[0].data_width >= 32) && \
    
    			(pdimm[0].data_width <= 40))
    			popts->data_bus_width = 1;
    		else {
    			panic("Error: data width %u is invalid!\n",
    				pdimm[0].data_width);
    		}
    	}
    #else
    	if (pdimm[0].n_ranks != 0) {
    		if (pdimm[0].primary_sdram_width == 64)
    			popts->data_bus_width = 0;
    		else if (pdimm[0].primary_sdram_width == 32)
    			popts->data_bus_width = 1;
    		else if (pdimm[0].primary_sdram_width == 16)
    			popts->data_bus_width = 2;
    		else {
    			panic("Error: primary sdram width %u is invalid!\n",
    				pdimm[0].primary_sdram_width);
    		}
    	}
    #endif
    
    	popts->x4_en = (pdimm[0].device_width == 4) ? 1 : 0;
    
    
    	/* Choose burst length. */
    
    #if defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR4)
    
    #if defined(CONFIG_E500MC)
    
    	popts->otf_burst_chop_en = 0;	/* on-the-fly burst chop disable */
    
    	popts->burst_length = DDR_BL8;	/* Fixed 8-beat burst len */
    #else
    
    	if ((popts->data_bus_width == 1) || (popts->data_bus_width == 2)) {
    		/* 32-bit or 16-bit bus */
    
    		popts->otf_burst_chop_en = 0;
    
    		popts->burst_length = DDR_BL8;
    	} else {
    
    		popts->otf_burst_chop_en = 1;	/* on-the-fly burst chop */
    
    		popts->burst_length = DDR_OTF;	/* on-the-fly BC4 and BL8 */
    	}
    
    #else
    	popts->burst_length = DDR_BL4;	/* has to be 4 for DDR2 */
    #endif
    
    	/* Choose ddr controller address mirror mode */
    
    #if defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR4)
    
    	for (i = 0; i < CONFIG_DIMM_SLOTS_PER_CTLR; i++) {
    		if (pdimm[i].n_ranks) {
    			popts->mirrored_dimm = pdimm[i].mirrored_dimm;
    			break;
    		}
    	}
    
    
    	/* Global Timing Parameters. */
    
    	debug("mclk_ps = %u ps\n", get_memory_clk_period_ps(ctrl_num));
    
    
    	/* Pick a caslat override. */
    	popts->cas_latency_override = 0;
    	popts->cas_latency_override_value = 3;
    	if (popts->cas_latency_override) {
    		debug("using caslat override value = %u\n",
    		       popts->cas_latency_override_value);
    	}
    
    	/* Decide whether to use the computed derated latency */
    	popts->use_derated_caslat = 0;
    
    	/* Choose an additive latency. */
    	popts->additive_latency_override = 0;
    	popts->additive_latency_override_value = 3;
    	if (popts->additive_latency_override) {
    		debug("using additive latency override value = %u\n",
    		       popts->additive_latency_override_value);
    	}
    
    	/*
    	 * 2T_EN setting
    	 *
    	 * Factors to consider for 2T_EN:
    	 *	- number of DIMMs installed
    	 *	- number of components, number of active ranks