xref: /openbmc/u-boot/arch/sandbox/include/asm/rtc.h (revision e8f80a5a)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Simulate an I2C real time clock
4  *
5  * Copyright (c) 2015 Google, Inc
6  * Written by Simon Glass <sjg@chromium.org>
7  */
8 
9 #ifndef __asm_rtc_h
10 #define __asm_rtc_h
11 
12 /* Register numbers in the sandbox RTC */
13 enum {
14 	REG_SEC		= 5,
15 	REG_MIN,
16 	REG_HOUR,
17 	REG_MDAY,
18 	REG_MON,
19 	REG_YEAR,
20 	REG_WDAY,
21 
22 	REG_RESET	= 0x20,
23 
24 	REG_COUNT	= 0x80,
25 };
26 
27 #endif
28