blob: 1fbfea79998a5bf4b4891a4ddcf8b9fc1b2f5387 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassdd18e5d2015-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 Glassdd18e5d2015-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
24 REG_COUNT = 0x80,
25};
26
27#endif