add SDHC support in mmc driver
[u-boot-openmoko/mini2440.git] / doc / README.mpc83xx.ddrecc
blob0029f08759d611edead742d6323f8978ce62e792
1 Overview
2 ========
4 The overall usage pattern for ECC diagnostic commands is the following:
6   * (injecting errors is initially disabled)
8   * define inject mask (which tells the DDR controller what type of errors
9     we'll be injecting: single/multiple bit etc.)
11   * enable injecting errors - from now on the controller injects errors as
12     indicated in the inject mask
14 IMPORTANT NOTICE: enabling injecting multiple-bit errors is potentially
15 dangerous as such errors are NOT corrected by the controller. Therefore caution
16 should be taken when enabling the injection of multiple-bit errors: it is only
17 safe when used on a carefully selected memory area and used under control of
18 the 'ecc testdw' 'ecc testword' command (see example 'Injecting Multiple-Bit
19 Errors' below). In particular, when you simply set the multiple-bit errors in
20 inject mask and enable injection, U-Boot is very likely to hang quickly as the
21 errors will be injected when it accesses its code, data etc.
24 Use cases for DDR 'ecc' command:
25 ================================
27 Before executing particular tests reset target board or clear status registers:
29 => ecc captureclear
30 => ecc errdetectclr all
31 => ecc sbecnt 0
34 Injecting Single-Bit Errors
35 ---------------------------
37 1. Set 1 bit in Data Path Error Inject Mask
39 => ecc injectdatahi 1
41 2. Run test over some memory region
43 => ecc testdw 200000 10
45 3. Check ECC status
47 => ecc status
48 ...
49 Memory Data Path Error Injection Mask High/Low: 00000001 00000000
50 ...
51 Memory Single-Bit Error Management (0..255):
52   Single-Bit Error Threshold: 255
53   Single Bit Error Counter: 16
54 ...
55 Memory Error Detect:
56   Multiple Memory Errors: 0
57   Multiple-Bit Error: 0
58   Single-Bit Error: 0
59 ...
61 16 errors were generated, Single-Bit Error flag was not set as Single Bit Error
62 Counter did not reach  Single-Bit Error Threshold.
64 4. Make sure used memory region got re-initialized with 0x0123456789abcdef
66 => md 200000
67 00200000: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
68 00200010: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
69 00200020: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
70 00200030: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
71 00200040: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
72 00200050: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
73 00200060: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
74 00200070: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
75 00200080: deadbeef deadbeef deadbeef deadbeef    ................
76 00200090: deadbeef deadbeef deadbeef deadbeef    ................
78 Injecting Multiple-Bit Errors
79 -----------------------------
81 1. Set more than 1 bit in Data Path Error Inject Mask
83 => ecc injectdatahi 1
84 => ecc injectdatalo 1
86 2. Run test over some memory region
88 => ecc testword 200000 1
90 3. Check ECC status
92 => ecc status
93 ...
94 Memory Data Path Error Injection Mask High/Low: 00000001 00000001
95 ...
96 Memory Error Detect:
97   Multiple Memory Errors: 0
98   Multiple-Bit Error: 1
99   Single-Bit Error: 0
102 The Multiple Memory Errors flags not set and Multiple-Bit Error flags are set.
104 4. Make sure used memory region got re-initialized with 0x0123456789abcdef
106 => md 200000
107 00200000: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
108 00200010: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
109 00200020: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
110 00200030: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
111 00200040: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
112 00200050: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
113 00200060: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
114 00200070: 01234567 89abcdef 01234567 89abcdef    .#Eg.....#Eg....
115 00200080: deadbeef deadbeef deadbeef deadbeef    ................
116 00200090: deadbeef deadbeef deadbeef deadbeef    ................
119 Test Single-Bit Error Counter and Threshold
120 -------------------------------------------
122 1. Set 1 bit in Data Path Error Inject Mask
124 => ecc injectdatahi 1
126 2. Enable error injection
128 => ecc inject en
130 3. Let u-boot run for a with Single-Bit error injection enabled
132 4. Disable error injection
134 => ecc inject dis
136 4. Check status
138 => ecc status
141 Memory Single-Bit Error Management (0..255):
142   Single-Bit Error Threshold: 255
143   Single Bit Error Counter: 199
145 Memory Error Detect:
146   Multiple Memory Errors: 1
147   Multiple-Bit Error: 0
148   Single-Bit Error: 1
151 Observe that Single-Bit Error is 'on' which means that Single-Bit Error Counter
152 reached Single-Bit Error Threshold. Multiple Memory Errors bit is also 'on', that
153 is Counter reached Threshold more than one time (it wraps back after reaching
154 Threshold).