blob: 46dbd736db569d947ca728f8b3e4c2a0690056c9 [file] [log] [blame]
Eric Biederman8ca8d762003-04-22 19:02:15 +00001#ifndef PC80_MC146818RTC_H
2#define PC80_MC146818RTC_H
3
Edward O'Callaghan502c3db2014-06-21 23:02:46 +10004#include <arch/io.h>
Alexandru Gagniucd7134e02013-11-23 18:54:44 -06005#include <types.h>
6
Eric Biederman8ca8d762003-04-22 19:02:15 +00007#ifndef RTC_BASE_PORT
8#define RTC_BASE_PORT 0x70
9#endif
10
11#define RTC_PORT(x) (RTC_BASE_PORT + (x))
12
Eric Biederman8ca8d762003-04-22 19:02:15 +000013/* control registers - Moto names
14 */
15#define RTC_REG_A 10
16#define RTC_REG_B 11
17#define RTC_REG_C 12
18#define RTC_REG_D 13
19
20
21/**********************************************************************
22 * register details
23 **********************************************************************/
24#define RTC_FREQ_SELECT RTC_REG_A
25
26/* update-in-progress - set to "1" 244 microsecs before RTC goes off the bus,
27 * reset after update (may take 1.984ms @ 32768Hz RefClock) is complete,
Martin Roth0cb07e32013-07-09 21:46:01 -060028 * totaling to a max high interval of 2.228 ms.
Eric Biederman8ca8d762003-04-22 19:02:15 +000029 */
30# define RTC_UIP 0x80
31# define RTC_DIV_CTL 0x70
32 /* divider control: refclock values 4.194 / 1.049 MHz / 32.768 kHz */
33# define RTC_REF_CLCK_4MHZ 0x00
34# define RTC_REF_CLCK_1MHZ 0x10
35# define RTC_REF_CLCK_32KHZ 0x20
36 /* 2 values for divider stage reset, others for "testing purposes only" */
37# define RTC_DIV_RESET1 0x60
38# define RTC_DIV_RESET2 0x70
39 /* Periodic intr. / Square wave rate select. 0=none, 1=32.8kHz,... 15=2Hz */
40# define RTC_RATE_SELECT 0x0F
41# define RTC_RATE_NONE 0x00
42# define RTC_RATE_32786HZ 0x01
43# define RTC_RATE_16384HZ 0x02
44# define RTC_RATE_8192HZ 0x03
45# define RTC_RATE_4096HZ 0x04
46# define RTC_RATE_2048HZ 0x05
47# define RTC_RATE_1024HZ 0x06
48# define RTC_RATE_512HZ 0x07
49# define RTC_RATE_256HZ 0x08
50# define RTC_RATE_128HZ 0x09
51# define RTC_RATE_64HZ 0x0a
52# define RTC_RATE_32HZ 0x0b
53# define RTC_RATE_16HZ 0x0c
54# define RTC_RATE_8HZ 0x0d
55# define RTC_RATE_4HZ 0x0e
56# define RTC_RATE_2HZ 0x0f
57
58/**********************************************************************/
59#define RTC_CONTROL RTC_REG_B
60# define RTC_SET 0x80 /* disable updates for clock setting */
61# define RTC_PIE 0x40 /* periodic interrupt enable */
62# define RTC_AIE 0x20 /* alarm interrupt enable */
63# define RTC_UIE 0x10 /* update-finished interrupt enable */
64# define RTC_SQWE 0x08 /* enable square-wave output */
65# define RTC_DM_BINARY 0x04 /* all time/date values are BCD if clear */
66# define RTC_24H 0x02 /* 24 hour mode - else hours bit 7 means pm */
67# define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
68
69/**********************************************************************/
70#define RTC_INTR_FLAGS RTC_REG_C
71/* caution - cleared by read */
72# define RTC_IRQF 0x80 /* any of the following 3 is active */
73# define RTC_PF 0x40
74# define RTC_AF 0x20
75# define RTC_UF 0x10
76
77/**********************************************************************/
78#define RTC_VALID RTC_REG_D
79# define RTC_VRT 0x80 /* valid RAM and time */
80/**********************************************************************/
81
Duncan Lauriec8c836f2012-06-23 13:22:25 -070082/* Date and Time in RTC CMOS */
83#define RTC_CLK_SECOND 0
84#define RTC_CLK_SECOND_ALARM 1
85#define RTC_CLK_MINUTE 2
86#define RTC_CLK_MINUTE_ALARM 3
87#define RTC_CLK_HOUR 4
88#define RTC_CLK_HOUR_ALARM 5
89#define RTC_CLK_DAYOFWEEK 6
90#define RTC_CLK_DAYOFMONTH 7
91#define RTC_CLK_MONTH 8
92#define RTC_CLK_YEAR 9
zbaoa1e6a9c2012-08-02 19:02:26 +080093#define RTC_CLK_ALTCENTURY 0x32
94
95#define RTC_HAS_ALTCENTURY 1
96#define RTC_HAS_NO_ALTCENTURY 0
Duncan Lauriec8c836f2012-06-23 13:22:25 -070097
Eric Biederman8ca8d762003-04-22 19:02:15 +000098/* On PCs, the checksum is built only over bytes 16..45 */
99#define PC_CKS_RANGE_START 16
100#define PC_CKS_RANGE_END 45
101#define PC_CKS_LOC 46
102
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000103#ifndef UTIL_BUILD_OPTION_TABLE
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000104static inline unsigned char cmos_read(unsigned char addr)
105{
106 int offs = 0;
107 if (addr >= 128) {
108 offs = 2;
109 addr -= 128;
110 }
111 outb(addr, RTC_BASE_PORT + offs + 0);
112 return inb(RTC_BASE_PORT + offs + 1);
113}
114
Patrick Georgif9439012012-11-15 14:54:05 +0100115static inline void cmos_write_inner(unsigned char val, unsigned char addr)
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000116{
117 int offs = 0;
118 if (addr >= 128) {
119 offs = 2;
120 addr -= 128;
121 }
122 outb(addr, RTC_BASE_PORT + offs + 0);
123 outb(val, RTC_BASE_PORT + offs + 1);
124}
Duncan Laurie654f2932011-09-26 13:24:40 -0700125
Patrick Georgif9439012012-11-15 14:54:05 +0100126static inline void cmos_write(unsigned char val, unsigned char addr)
127{
128 u8 control_state = cmos_read(RTC_CONTROL);
129 /* There are various places where RTC bits might be hiding,
130 * eg. the Century / AltCentury byte. So to be safe, disable
131 * RTC before changing any value.
132 */
133 if ((addr != RTC_CONTROL) && !(control_state & RTC_SET)) {
134 cmos_write_inner(control_state | RTC_SET, RTC_CONTROL);
135 }
136 cmos_write_inner(val, addr);
137 /* reset to prior configuration */
138 if ((addr != RTC_CONTROL) && !(control_state & RTC_SET)) {
139 cmos_write_inner(control_state, RTC_CONTROL);
140 }
141}
142
143static inline void cmos_disable_rtc(void)
144{
145 u8 control_state = cmos_read(RTC_CONTROL);
146 cmos_write(control_state | RTC_SET, RTC_CONTROL);
147}
148
149static inline void cmos_enable_rtc(void)
150{
151 u8 control_state = cmos_read(RTC_CONTROL);
152 cmos_write(control_state & ~RTC_SET, RTC_CONTROL);
153}
154
Duncan Laurie654f2932011-09-26 13:24:40 -0700155static inline u32 cmos_read32(u8 offset)
156{
157 u32 value = 0;
158 u8 i;
159 for (i = 0; i < sizeof(value); ++i)
160 value |= cmos_read(offset + i) << (i << 3);
161 return value;
162}
163
164static inline void cmos_write32(u8 offset, u32 value)
165{
166 u8 i;
167 for (i = 0; i < sizeof(value); ++i)
168 cmos_write((value >> (i << 3)) & 0xff, offset + i);
169}
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000170#endif
171
172#if !defined(__ROMCC__)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000173void rtc_init(int invalid);
zbaoa1e6a9c2012-08-02 19:02:26 +0800174void rtc_check_update_cmos_date(u8 has_century);
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000175#if CONFIG_USE_OPTION_TABLE
Alexandru Gagniucd7134e02013-11-23 18:54:44 -0600176enum cb_err set_option(const char *name, void *val);
177enum cb_err get_option(void *dest, const char *name);
Patrick Georgib2517532011-05-10 21:53:13 +0000178unsigned read_option_lowlevel(unsigned start, unsigned size, unsigned def);
Luc Verhaegena9c5ea02009-06-03 14:19:33 +0000179#else
Alexandru Gagniucd7134e02013-11-23 18:54:44 -0600180static inline enum cb_err set_option(const char *name __attribute__((unused)),
181 void *val __attribute__((unused)))
182 { return CB_CMOS_OTABLE_DISABLED; };
183static inline enum cb_err get_option(void *dest __attribute__((unused)),
184 const char *name __attribute__((unused)))
185 { return CB_CMOS_OTABLE_DISABLED; }
Patrick Georgia27561c2011-11-22 10:27:24 +0100186#define read_option_lowlevel(start, size, def) def
Luc Verhaegena9c5ea02009-06-03 14:19:33 +0000187#endif
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000188#else
Stefan Reinauerae5e11d2012-04-27 02:31:28 +0200189#include <drivers/pc80/mc146818rtc_early.c>
Eric Biederman8ca8d762003-04-22 19:02:15 +0000190#endif
Patrick Georgib2517532011-05-10 21:53:13 +0000191#define read_option(name, default) read_option_lowlevel(CMOS_VSTART_ ##name, CMOS_VLEN_ ##name, (default))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000192
Duncan Laurieb6e97b12012-09-09 19:09:56 -0700193#if CONFIG_CMOS_POST
194#if CONFIG_USE_OPTION_TABLE
195# include "option_table.h"
196# define CMOS_POST_OFFSET (CMOS_VSTART_cmos_post_offset >> 3)
197#else
198# if defined(CONFIG_CMOS_POST_OFFSET)
199# define CMOS_POST_OFFSET CONFIG_CMOS_POST_OFFSET
200# else
201# error "Must define CONFIG_CMOS_POST_OFFSET"
202# endif
203#endif
204
Duncan Lauried5686fe2013-06-10 10:21:41 -0700205/*
206 * 0 = Bank Select Magic
207 * 1 = Bank 0 POST
208 * 2 = Bank 1 POST
209 * 3-6 = BANK 0 Extra log
210 * 7-10 = BANK 1 Extra log
211 */
Duncan Laurieb6e97b12012-09-09 19:09:56 -0700212#define CMOS_POST_BANK_OFFSET (CMOS_POST_OFFSET)
213#define CMOS_POST_BANK_0_MAGIC 0x80
214#define CMOS_POST_BANK_0_OFFSET (CMOS_POST_OFFSET + 1)
Duncan Lauried5686fe2013-06-10 10:21:41 -0700215#define CMOS_POST_BANK_0_EXTRA (CMOS_POST_OFFSET + 3)
Duncan Laurieb6e97b12012-09-09 19:09:56 -0700216#define CMOS_POST_BANK_1_MAGIC 0x81
217#define CMOS_POST_BANK_1_OFFSET (CMOS_POST_OFFSET + 2)
Duncan Lauried5686fe2013-06-10 10:21:41 -0700218#define CMOS_POST_BANK_1_EXTRA (CMOS_POST_OFFSET + 7)
Duncan Laurie1fc34612012-09-09 19:14:45 -0700219
Duncan Laurie8adf7a22013-06-10 10:34:20 -0700220#define CMOS_POST_EXTRA_DEV_PATH 0x01
221
Duncan Laurie1fc34612012-09-09 19:14:45 -0700222void cmos_post_log(void);
Edward O'Callaghan5c971422014-04-15 14:32:53 +1000223#else
224static inline void cmos_post_log(void) {}
Duncan Laurieb6e97b12012-09-09 19:09:56 -0700225#endif /* CONFIG_CMOS_POST */
226
Eric Biederman8ca8d762003-04-22 19:02:15 +0000227#endif /* PC80_MC146818RTC_H */