Re: [U-Boot] [RFC][PATCH 1/3] DDR2: Support new JEDEC DDR2 SPD 1.3 spec

2010-09-02 Thread Kyle Moffett
On Thu, Sep 2, 2010 at 23:06, Peter Tyser wrote: >> +/* These are all the types defined by the JEDEC DDR2 SPD 1.3 spec */ >> +#define SPD_DIMM_TYPE_UNDEFINED              0x00 >> +#define SPD_DIMM_TYPE_RDIMM          0x01 >> +#define SPD_DIMM_TYPE_UDIMM          0x02 >> +#define SPD_DIMM_TYPE_SO_D

Re: [U-Boot] [RFC][PATCH 1/3] DDR2: Support new JEDEC DDR2 SPD 1.3 spec

2010-09-02 Thread Peter Tyser
Hi Kyle, > +/* These are all the types defined by the JEDEC DDR2 SPD 1.3 spec */ > +#define SPD_DIMM_TYPE_UNDEFINED 0x00 > +#define SPD_DIMM_TYPE_RDIMM 0x01 > +#define SPD_DIMM_TYPE_UDIMM 0x02 > +#define SPD_DIMM_TYPE_SO_DIMM0x04 > +#define SPD_DIMM

[U-Boot] [RFC][PATCH 1/3] DDR2: Support new JEDEC DDR2 SPD 1.3 spec

2010-08-30 Thread Kyle Moffett
The new DDR2 SPD spec is backwards-compatible with the old one, but there are DIMMs which are being produced which have new SPD version fields that fail to work with U-boot. To make the code a bit more readable, we add some human-readable SPD_DIMM_TYPE_* constants. Signed-off-by: Kyle Moffett --

[U-Boot] [RFC][PATCH 1/3] DDR2: Support new JEDEC DDR2 SPD 1.3 spec

2010-08-13 Thread Kyle Moffett
The new DDR2 SPD spec is backwards-compatible with the old one, but there are DIMMs which are being produced which have new SPD version fields that fail to work with U-boot. To make the code a bit more readable, we add some human-readable SPD_DIMM_TYPE_* constants. Signed-off-by: Kyle Moffett --