Re: [U-Boot] [PATCH 02/10] x86: Add checksum implementation

2015-01-04 Thread Simon Glass
Hi Bin, On 3 January 2015 at 23:16, Bin Meng wrote: > Hi Simon, > > On Tue, Dec 30, 2014 at 9:12 AM, Simon Glass wrote: >> Add a checksum implementation that can be used with CMOS RAM. > > What about the existing coreboot version of checksum implementation > (arch/x86/cpu/coreboot/ipchecksum.c)?

Re: [U-Boot] [PATCH 02/10] x86: Add checksum implementation

2015-01-03 Thread Bin Meng
Hi Simon, On Tue, Dec 30, 2014 at 9:12 AM, Simon Glass wrote: > Add a checksum implementation that can be used with CMOS RAM. What about the existing coreboot version of checksum implementation (arch/x86/cpu/coreboot/ipchecksum.c)? We need consolidate them. > Signed-off-by: Simon Glass > --- >

[U-Boot] [PATCH 02/10] x86: Add checksum implementation

2014-12-29 Thread Simon Glass
Add a checksum implementation that can be used with CMOS RAM. Signed-off-by: Simon Glass --- arch/x86/cpu/Makefile | 1 + arch/x86/cpu/ip_checksum.c | 61 ++ arch/x86/include/asm/ip_checksum.h | 16 ++ 3 files changed, 78 inserti