Re: [U-Boot] [PATCH 03/10] x86: Add helpers to read/write CMOS RAM

2015-01-04 Thread Simon Glass
Hi Bin, On 3 January 2015 at 23:43, Bin Meng wrote: > Hi Simon, > > On Tue, Dec 30, 2014 at 9:12 AM, Simon Glass wrote: >> On x86 we use CMOS RAM to read and write some settings. Add basic support >> for this. > > Should we consolidate the cmos support with the existing mc146818.c RTC > driver?

Re: [U-Boot] [PATCH 03/10] x86: Add helpers to read/write CMOS RAM

2015-01-03 Thread Bin Meng
Hi Simon, On Tue, Dec 30, 2014 at 9:12 AM, Simon Glass wrote: > On x86 we use CMOS RAM to read and write some settings. Add basic support > for this. Should we consolidate the cmos support with the existing mc146818.c RTC driver? > Signed-off-by: Simon Glass > --- > > arch/x86/include/asm/cmo

[U-Boot] [PATCH 03/10] x86: Add helpers to read/write CMOS RAM

2014-12-29 Thread Simon Glass
On x86 we use CMOS RAM to read and write some settings. Add basic support for this. Signed-off-by: Simon Glass --- arch/x86/include/asm/cmos.h | 181 1 file changed, 181 insertions(+) create mode 100644 arch/x86/include/asm/cmos.h diff --git a/arch