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_AUX0 = 0x30, 25 REG_AUX1, 26 REG_AUX2, 27 REG_AUX3, 28 29 REG_COUNT = 0x80, 30 }; 31 32 #endif 33