Haiying Wang | c9ffd83 | 2008-10-03 12:37:10 -0400 | [diff] [blame] | 1 | |
| 2 | Table of interleaving modes supported in cpu/8xxx/ddr/ |
| 3 | ====================================================== |
| 4 | +-------------+---------------------------------------------------------+ |
| 5 | | | Rank Interleaving | |
| 6 | | +--------+-----------+-----------+------------+-----------+ |
| 7 | |Memory | | | | 2x2 | 4x1 | |
| 8 | |Controller | None | 2x1 lower | 2x1 upper | {CS0+CS1}, | {CS0+CS1+ | |
| 9 | |Interleaving | | {CS0+CS1} | {CS2+CS3} | {CS2+CS3} | CS2+CS3} | |
| 10 | +-------------+--------+-----------+-----------+------------+-----------+ |
| 11 | |None | Yes | Yes | Yes | Yes | Yes | |
| 12 | +-------------+--------+-----------+-----------+------------+-----------+ |
| 13 | |Cacheline | Yes | Yes | No | No, Only(*)| Yes | |
| 14 | | |CS0 Only| | | {CS0+CS1} | | |
| 15 | +-------------+--------+-----------+-----------+------------+-----------+ |
| 16 | |Page | Yes | Yes | No | No, Only(*)| Yes | |
| 17 | | |CS0 Only| | | {CS0+CS1} | | |
| 18 | +-------------+--------+-----------+-----------+------------+-----------+ |
| 19 | |Bank | Yes | Yes | No | No, Only(*)| Yes | |
| 20 | | |CS0 Only| | | {CS0+CS1} | | |
| 21 | +-------------+--------+-----------+-----------+------------+-----------+ |
| 22 | |Superbank | No | Yes | No | No, Only(*)| Yes | |
| 23 | | | | | | {CS0+CS1} | | |
| 24 | +-------------+--------+-----------+-----------+------------+-----------+ |
| 25 | (*) Although the hardware can be configured with memory controller |
| 26 | interleaving using "2x2" rank interleaving, it only interleaves {CS0+CS1} |
| 27 | from each controller. {CS2+CS3} on each controller are only rank |
| 28 | interleaved on that controller. |
| 29 | |
york | 076bff8 | 2010-07-02 22:25:52 +0000 | [diff] [blame] | 30 | For memory controller interleaving, identical DIMMs are suggested. Software |
| 31 | doesn't check the size or organization of interleaved DIMMs. |
| 32 | |
Haiying Wang | c9ffd83 | 2008-10-03 12:37:10 -0400 | [diff] [blame] | 33 | The ways to configure the ddr interleaving mode |
| 34 | ============================================== |
| 35 | 1. In board header file(e.g.MPC8572DS.h), add default interleaving setting |
| 36 | under "CONFIG_EXTRA_ENV_SETTINGS", like: |
| 37 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Kumar Gala | 79e4e64 | 2010-07-14 10:04:21 -0500 | [diff] [blame] | 38 | "hwconfig=fsl_ddr:ctlr_intlv=bank" \ |
Haiying Wang | c9ffd83 | 2008-10-03 12:37:10 -0400 | [diff] [blame] | 39 | ...... |
| 40 | |
| 41 | 2. Run u-boot "setenv" command to configure the memory interleaving mode. |
| 42 | Either numerical or string value is accepted. |
| 43 | |
| 44 | # disable memory controller interleaving |
Kumar Gala | 79e4e64 | 2010-07-14 10:04:21 -0500 | [diff] [blame] | 45 | setenv hwconfig "fsl_ddr:ctlr_intlv=null" |
Haiying Wang | c9ffd83 | 2008-10-03 12:37:10 -0400 | [diff] [blame] | 46 | |
| 47 | # cacheline interleaving |
Kumar Gala | 79e4e64 | 2010-07-14 10:04:21 -0500 | [diff] [blame] | 48 | setenv hwconfig "fsl_ddr:ctlr_intlv=cacheline" |
Haiying Wang | c9ffd83 | 2008-10-03 12:37:10 -0400 | [diff] [blame] | 49 | |
| 50 | # page interleaving |
Kumar Gala | 79e4e64 | 2010-07-14 10:04:21 -0500 | [diff] [blame] | 51 | setenv hwconfig "fsl_ddr:ctlr_intlv=page" |
Haiying Wang | c9ffd83 | 2008-10-03 12:37:10 -0400 | [diff] [blame] | 52 | |
| 53 | # bank interleaving |
Kumar Gala | 79e4e64 | 2010-07-14 10:04:21 -0500 | [diff] [blame] | 54 | setenv hwconfig "fsl_ddr:ctlr_intlv=bank" |
Haiying Wang | c9ffd83 | 2008-10-03 12:37:10 -0400 | [diff] [blame] | 55 | |
| 56 | # superbank |
Kumar Gala | 79e4e64 | 2010-07-14 10:04:21 -0500 | [diff] [blame] | 57 | setenv hwconfig "fsl_ddr:ctlr_intlv=superbank" |
Haiying Wang | c9ffd83 | 2008-10-03 12:37:10 -0400 | [diff] [blame] | 58 | |
| 59 | # disable bank (chip-select) interleaving |
Kumar Gala | 79e4e64 | 2010-07-14 10:04:21 -0500 | [diff] [blame] | 60 | setenv hwconfig "fsl_ddr:bank_intlv=null" |
Haiying Wang | c9ffd83 | 2008-10-03 12:37:10 -0400 | [diff] [blame] | 61 | |
| 62 | # bank(chip-select) interleaving cs0+cs1 |
Kumar Gala | 79e4e64 | 2010-07-14 10:04:21 -0500 | [diff] [blame] | 63 | setenv hwconfig "fsl_ddr:bank_intlv=cs0_cs1" |
Haiying Wang | c9ffd83 | 2008-10-03 12:37:10 -0400 | [diff] [blame] | 64 | |
| 65 | # bank(chip-select) interleaving cs2+cs3 |
Kumar Gala | 79e4e64 | 2010-07-14 10:04:21 -0500 | [diff] [blame] | 66 | setenv hwconfig "fsl_ddr:bank_intlv=cs2_cs3" |
Haiying Wang | c9ffd83 | 2008-10-03 12:37:10 -0400 | [diff] [blame] | 67 | |
| 68 | # bank(chip-select) interleaving (cs0+cs1) and (cs2+cs3) (2x2) |
Kumar Gala | 79e4e64 | 2010-07-14 10:04:21 -0500 | [diff] [blame] | 69 | setenv hwconfig "fsl_ddr:bank_intlv=cs0_cs1_and_cs2_cs3" |
Haiying Wang | c9ffd83 | 2008-10-03 12:37:10 -0400 | [diff] [blame] | 70 | |
| 71 | # bank(chip-select) interleaving (cs0+cs1+cs2+cs3) (4x1) |
Kumar Gala | 79e4e64 | 2010-07-14 10:04:21 -0500 | [diff] [blame] | 72 | setenv hwconfig "fsl_ddr:bank_intlv=cs0_cs1_cs2_cs3" |
| 73 | |
york | 7fd101c | 2010-07-02 22:25:54 +0000 | [diff] [blame] | 74 | Memory controller address hashing |
| 75 | ================================== |
| 76 | If the DDR controller supports address hashing, it can be enabled by hwconfig. |
| 77 | |
| 78 | Syntax is: |
| 79 | hwconfig=fsl_ddr:addr_hash=true |
| 80 | |
York Sun | ebbe11d | 2010-09-28 15:20:33 -0700 | [diff] [blame] | 81 | |
| 82 | Memory testing options for mpc85xx |
| 83 | ================================== |
| 84 | 1. Memory test can be done once U-boot prompt comes up using mtest, or |
| 85 | 2. Memory test can be done with Power-On-Self-Test function, activated at |
| 86 | compile time. |
| 87 | |
| 88 | In order to enable the POST memory test, CONFIG_POST needs to be |
| 89 | defined in board configuraiton header file. By default, POST memory test |
| 90 | performs a fast test. A slow test can be enabled by changing the flag at |
| 91 | compiling time. To test memory bigger than 2GB, 36BIT support is needed. |
| 92 | Memory is tested within a 2GB window. TLBs are used to map the virtual 2GB |
| 93 | window to physical address so that all physical memory can be tested. |
| 94 | |
york | 7fd101c | 2010-07-02 22:25:54 +0000 | [diff] [blame] | 95 | Combination of hwconfig |
| 96 | ======================= |
| 97 | Hwconfig can be combined with multiple parameters, for example, on a supported |
| 98 | platform |
| 99 | |
| 100 | hwconfig=fsl_ddr:addr_hash=true,ctlr_intlv=cacheline,bank_intlv=cs0_cs1_cs2_cs3 |