mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
Fix DDR ECC bit definitions for MPC83xx.
This commit is contained in:
parent
991425fe05
commit
97f98001a3
2 changed files with 4 additions and 2 deletions
|
@ -2,6 +2,8 @@
|
|||
Changes since U-Boot 1.1.4:
|
||||
======================================================================
|
||||
|
||||
* Fix DDR ECC bit definitions for MPC83xx.
|
||||
|
||||
* Add initial support for MPC8349E MDS board.
|
||||
|
||||
* Add support for ECC DDR initialization on MPC83xx.
|
||||
|
|
|
@ -686,13 +686,13 @@ typedef struct ddr8349{
|
|||
u32 ecc_err_inject; /**< Memory Data Path Error Injection Mask ECC */
|
||||
#define ECC_ERR_INJECT_EMB (0x80000000>>22) /* ECC Mirror Byte */
|
||||
#define ECC_ERR_INJECT_EIEN (0x80000000>>23) /* Error Injection Enable */
|
||||
#define ECC_ERR_INJECT_EEIM (0xF0000000>>24) /* ECC Erroe Injection Enable */
|
||||
#define ECC_ERR_INJECT_EEIM (0xff000000>>24) /* ECC Erroe Injection Enable */
|
||||
#define ECC_ERR_INJECT_EEIM_SHIFT 0
|
||||
u8 res5[0x14];
|
||||
u32 capture_data_hi; /**< Memory Data Path Read Capture High */
|
||||
u32 capture_data_lo; /**< Memory Data Path Read Capture Low */
|
||||
u32 capture_ecc; /**< Memory Data Path Read Capture ECC */
|
||||
#define CAPTURE_ECC_ECE (0xF0000000>>24)
|
||||
#define CAPTURE_ECC_ECE (0xff000000>>24)
|
||||
#define CAPTURE_ECC_ECE_SHIFT 0
|
||||
u8 res6[0x14];
|
||||
u32 err_detect; /**< Memory Error Detect */
|
||||
|
|
Loading…
Reference in a new issue