powerpc/8xxx: Enabled address hashing for 85xx

For 85xx silicon which supports address hashing, it can be activated by
hwconfig.

Signed-off-by: York Sun <yorksun@freescale.com>
This commit is contained in:
york 2010-07-02 22:25:54 +00:00 committed by Kumar Gala
parent 5800e7ab32
commit 7fd101c97b
5 changed files with 34 additions and 2 deletions

View file

@ -33,6 +33,8 @@ void fsl_ddr_set_memctl_regs(const fsl_ddr_cfg_regs_t *regs,
return; return;
} }
out_be32(&ddr->eor, regs->ddr_eor);
for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) { for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
if (i == 0) { if (i == 0) {
out_be32(&ddr->cs0_bnds, regs->cs[i].bnds); out_be32(&ddr->cs0_bnds, regs->cs[i].bnds);

View file

@ -1161,6 +1161,14 @@ static void set_ddr_sdram_rcw_2(fsl_ddr_cfg_regs_t *ddr)
); );
} }
static void set_ddr_eor(fsl_ddr_cfg_regs_t *ddr, const memctl_options_t *popts)
{
if (popts->addr_hash) {
ddr->ddr_eor = 0x40000000; /* address hash enable */
puts("Addess hashing enabled.\n");
}
}
unsigned int unsigned int
check_fsl_memctl_config_regs(const fsl_ddr_cfg_regs_t *ddr) check_fsl_memctl_config_regs(const fsl_ddr_cfg_regs_t *ddr)
{ {
@ -1392,6 +1400,8 @@ compute_fsl_memctl_config_regs(const memctl_options_t *popts,
set_csn_config_2(i, ddr); set_csn_config_2(i, ddr);
} }
set_ddr_eor(ddr, popts);
#if !defined(CONFIG_FSL_DDR1) #if !defined(CONFIG_FSL_DDR1)
set_timing_cfg_0(ddr); set_timing_cfg_0(ddr);
#endif #endif

View file

@ -341,6 +341,13 @@ unsigned int populate_memctl_options(int all_DIMMs_registered,
} }
} }
if (hwconfig_sub("fsl_ddr", "addr_hash")) {
if (hwconfig_subarg_cmp("fsl_ddr", "addr_hash", "null"))
popts->addr_hash = 0;
else if (hwconfig_subarg_cmp("fsl_ddr", "addr_hash", "true"))
popts->addr_hash = 1;
}
if (pdimm[0].n_ranks == 4) if (pdimm[0].n_ranks == 4)
popts->quad_rank_present = 1; popts->quad_rank_present = 1;

View file

@ -119,6 +119,7 @@ typedef struct fsl_ddr_cfg_regs_s {
unsigned int ddr_sr_cntr; unsigned int ddr_sr_cntr;
unsigned int ddr_sdram_rcw_1; unsigned int ddr_sdram_rcw_1;
unsigned int ddr_sdram_rcw_2; unsigned int ddr_sdram_rcw_2;
unsigned int ddr_eor;
} fsl_ddr_cfg_regs_t; } fsl_ddr_cfg_regs_t;
typedef struct memctl_options_partial_s { typedef struct memctl_options_partial_s {
@ -156,6 +157,7 @@ typedef struct memctl_options_s {
unsigned int memctl_interleaving; unsigned int memctl_interleaving;
unsigned int memctl_interleaving_mode; unsigned int memctl_interleaving_mode;
unsigned int ba_intlv_ctl; unsigned int ba_intlv_ctl;
unsigned int addr_hash;
/* Operational mode parameters */ /* Operational mode parameters */
unsigned int ECC_mode; /* Use ECC? */ unsigned int ECC_mode; /* Use ECC? */

View file

@ -71,5 +71,16 @@ The ways to configure the ddr interleaving mode
# bank(chip-select) interleaving (cs0+cs1+cs2+cs3) (4x1) # bank(chip-select) interleaving (cs0+cs1+cs2+cs3) (4x1)
setenv hwconfig "fsl_ddr:bank_intlv=cs0_cs1_cs2_cs3" setenv hwconfig "fsl_ddr:bank_intlv=cs0_cs1_cs2_cs3"
The above memory controller interleaving and bank interleaving can be mixed. The syntax is Memory controller address hashing
setenv hwconfig "fsl_ddr:ctlr_intlv=cacheline,bank_intlv=cs0_cs1" ==================================
If the DDR controller supports address hashing, it can be enabled by hwconfig.
Syntax is:
hwconfig=fsl_ddr:addr_hash=true
Combination of hwconfig
=======================
Hwconfig can be combined with multiple parameters, for example, on a supported
platform
hwconfig=fsl_ddr:addr_hash=true,ctlr_intlv=cacheline,bank_intlv=cs0_cs1_cs2_cs3