blob: 5bb032f59f21fb697412508ee5528e6c25c76847 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassc404aa62015-04-20 12:37:24 -06002/*
3 * Simulate an I2C real time clock
4 *
5 * Copyright (c) 2015 Google, Inc
6 * Written by Simon Glass <sjg@chromium.org>
Simon Glassc404aa62015-04-20 12:37:24 -06007 */
8
9#ifndef __asm_rtc_h
10#define __asm_rtc_h
11
12/* Register numbers in the sandbox RTC */
13enum {
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
Rasmus Villemoes034b93b2020-07-06 22:01:18 +020024 REG_AUX0 = 0x30,
25 REG_AUX1,
26 REG_AUX2,
27 REG_AUX3,
28
Simon Glassc404aa62015-04-20 12:37:24 -060029 REG_COUNT = 0x80,
30};
31
32#endif