e851bdceb85589c32c1d88a99851d897f81217fb
[coreboot.git] / src / pc80 / mc146818rtc.c
1 #include <console/console.h>
2 #include <arch/io.h>
3 #include <pc80/mc146818rtc.h>
4 #include <boot/coreboot_tables.h>
5 #include <string.h>
6
7 /* control registers - Moto names
8  */
9 #define RTC_REG_A               10
10 #define RTC_REG_B               11
11 #define RTC_REG_C               12
12 #define RTC_REG_D               13
13
14
15 /**********************************************************************
16  * register details
17  **********************************************************************/
18 #define RTC_FREQ_SELECT RTC_REG_A
19
20 /* update-in-progress  - set to "1" 244 microsecs before RTC goes off the bus,
21  * reset after update (may take 1.984ms @ 32768Hz RefClock) is complete,
22  * totalling to a max high interval of 2.228 ms.
23  */
24 # define RTC_UIP                0x80
25 # define RTC_DIV_CTL            0x70
26    /* divider control: refclock values 4.194 / 1.049 MHz / 32.768 kHz */
27 #  define RTC_REF_CLCK_4MHZ     0x00
28 #  define RTC_REF_CLCK_1MHZ     0x10
29 #  define RTC_REF_CLCK_32KHZ    0x20
30    /* 2 values for divider stage reset, others for "testing purposes only" */
31 #  define RTC_DIV_RESET1        0x60
32 #  define RTC_DIV_RESET2        0x70
33   /* Periodic intr. / Square wave rate select. 0=none, 1=32.8kHz,... 15=2Hz */
34 # define RTC_RATE_SELECT        0x0F
35 #  define RTC_RATE_NONE         0x00
36 #  define RTC_RATE_32786HZ      0x01
37 #  define RTC_RATE_16384HZ      0x02
38 #  define RTC_RATE_8192HZ       0x03
39 #  define RTC_RATE_4096HZ       0x04
40 #  define RTC_RATE_2048HZ       0x05
41 #  define RTC_RATE_1024HZ       0x06
42 #  define RTC_RATE_512HZ        0x07
43 #  define RTC_RATE_256HZ        0x08
44 #  define RTC_RATE_128HZ        0x09
45 #  define RTC_RATE_64HZ         0x0a
46 #  define RTC_RATE_32HZ         0x0b
47 #  define RTC_RATE_16HZ         0x0c
48 #  define RTC_RATE_8HZ          0x0d
49 #  define RTC_RATE_4HZ          0x0e
50 #  define RTC_RATE_2HZ          0x0f
51
52 /**********************************************************************/
53 #define RTC_CONTROL     RTC_REG_B
54 # define RTC_SET 0x80           /* disable updates for clock setting */
55 # define RTC_PIE 0x40           /* periodic interrupt enable */
56 # define RTC_AIE 0x20           /* alarm interrupt enable */
57 # define RTC_UIE 0x10           /* update-finished interrupt enable */
58 # define RTC_SQWE 0x08          /* enable square-wave output */
59 # define RTC_DM_BINARY 0x04     /* all time/date values are BCD if clear */
60 # define RTC_24H 0x02           /* 24 hour mode - else hours bit 7 means pm */
61 # define RTC_DST_EN 0x01        /* auto switch DST - works f. USA only */
62
63 /**********************************************************************/
64 #define RTC_INTR_FLAGS  RTC_REG_C
65 /* caution - cleared by read */
66 # define RTC_IRQF 0x80          /* any of the following 3 is active */
67 # define RTC_PF 0x40
68 # define RTC_AF 0x20
69 # define RTC_UF 0x10
70
71 /**********************************************************************/
72 #define RTC_VALID       RTC_REG_D
73 # define RTC_VRT 0x80           /* valid RAM and time */
74 /**********************************************************************/
75
76 static inline unsigned char cmos_read(unsigned char addr)
77 {
78         int offs = 0;
79         if (addr >= 128) {
80                 offs = 2;
81                 addr -= 128;
82         }
83         outb(addr, RTC_BASE_PORT + offs + 0);
84         return inb(RTC_BASE_PORT + offs + 1);
85 }
86
87 static inline void cmos_write(unsigned char val, unsigned char addr)
88 {
89         int offs = 0;
90         if (addr >= 128) {
91                 offs = 2;
92                 addr -= 128;
93         }
94         outb(addr, RTC_BASE_PORT + offs + 0);
95         outb(val, RTC_BASE_PORT + offs + 1);
96 }
97
98 static int rtc_checksum_valid(int range_start, int range_end, int cks_loc)
99 {
100         int i;
101         unsigned sum, old_sum;
102         sum = 0;
103         for(i = range_start; i <= range_end; i++) {
104                 sum += cmos_read(i);
105         }
106         sum = (~sum)&0x0ffff;
107         old_sum = ((cmos_read(cks_loc)<<8) | cmos_read(cks_loc+1))&0x0ffff;
108         return sum == old_sum;
109 }
110
111 static void rtc_set_checksum(int range_start, int range_end, int cks_loc)
112 {
113         int i;
114         unsigned sum;
115         sum = 0;
116         for(i = range_start; i <= range_end; i++) {
117                 sum += cmos_read(i);
118         }
119         sum = ~(sum & 0x0ffff);
120         cmos_write(((sum >> 8) & 0x0ff), cks_loc);
121         cmos_write(((sum >> 0) & 0x0ff), cks_loc+1);
122 }
123
124 #define RTC_CONTROL_DEFAULT (RTC_24H)
125 #define RTC_FREQ_SELECT_DEFAULT (RTC_REF_CLCK_32KHZ | RTC_RATE_1024HZ)
126
127 #if 0 /* alpha setup */
128 #undef RTC_CONTROL_DEFAULT
129 #undef RTC_FREQ_SELECT_DEFAULT
130 #define RTC_CONTROL_DEFAULT (RTC_SQWE | RTC_24H)
131 #define RTC_FREQ_SELECT_DEFAULT (RTC_REF_CLCK_32KHZ | RTC_RATE_1024HZ)
132 #endif
133
134 void rtc_init(int invalid)
135 {
136         unsigned char x;
137         int cmos_invalid, checksum_invalid;
138
139         printk_debug("RTC Init\n");
140
141 #if CONFIG_HAVE_OPTION_TABLE
142         /* See if there has been a CMOS power problem. */
143         x = cmos_read(RTC_VALID);
144         cmos_invalid = !(x & RTC_VRT);
145
146         /* See if there is a CMOS checksum error */
147         checksum_invalid = !rtc_checksum_valid(PC_CKS_RANGE_START,
148                         PC_CKS_RANGE_END,PC_CKS_LOC);
149
150         if (invalid || cmos_invalid || checksum_invalid) {
151                 printk_warning("RTC:%s%s%s zeroing cmos\n",
152                         invalid?" Clear requested":"", 
153                         cmos_invalid?" Power Problem":"",
154                         checksum_invalid?" Checksum invalid":"");
155 #if 0
156                 cmos_write(0, 0x01);
157                 cmos_write(0, 0x03);
158                 cmos_write(0, 0x05);
159                 for(i = 10; i < 48; i++) {
160                         cmos_write(0, i);
161                 }
162                 
163                 if (cmos_invalid) {
164                         /* Now setup a default date of Sat 1 January 2000 */
165                         cmos_write(0, 0x00); /* seconds */
166                         cmos_write(0, 0x02); /* minutes */
167                         cmos_write(1, 0x04); /* hours */
168                         cmos_write(7, 0x06); /* day of week */
169                         cmos_write(1, 0x07); /* day of month */
170                         cmos_write(1, 0x08); /* month */
171                         cmos_write(0, 0x09); /* year */
172                 }
173 #endif
174         }
175 #endif
176
177         /* Setup the real time clock */
178         cmos_write(RTC_CONTROL_DEFAULT, RTC_CONTROL);
179         /* Setup the frequency it operates at */
180         cmos_write(RTC_FREQ_SELECT_DEFAULT, RTC_FREQ_SELECT);
181
182 #if CONFIG_HAVE_OPTION_TABLE
183         /* See if there is a LB CMOS checksum error */
184         checksum_invalid = !rtc_checksum_valid(CONFIG_LB_CKS_RANGE_START,
185                         CONFIG_LB_CKS_RANGE_END,CONFIG_LB_CKS_LOC);
186         if(checksum_invalid)
187                 printk_debug("Invalid CMOS LB checksum\n");
188
189         /* Make certain we have a valid checksum */
190         rtc_set_checksum(PC_CKS_RANGE_START,
191                         PC_CKS_RANGE_END,PC_CKS_LOC);
192 #endif
193
194         /* Clear any pending interrupts */
195         (void) cmos_read(RTC_INTR_FLAGS);
196 }
197
198
199 #if CONFIG_USE_OPTION_TABLE == 1
200 /* This routine returns the value of the requested bits
201         input bit = bit count from the beginning of the cmos image
202               length = number of bits to include in the value
203               ret = a character pointer to where the value is to be returned
204         output the value placed in ret
205               returns 0 = successful, -1 = an error occurred
206 */
207 static int get_cmos_value(unsigned long bit, unsigned long length, void *vret)
208 {
209         unsigned char *ret;
210         unsigned long byte,byte_bit;
211         unsigned long i;
212         unsigned char uchar;
213
214         /* The table is checked when it is built to ensure all 
215                 values are valid. */
216         ret = vret;
217         byte=bit/8;     /* find the byte where the data starts */
218         byte_bit=bit%8; /* find the bit in the byte where the data starts */
219         if(length<9) {  /* one byte or less */
220                 uchar = cmos_read(byte); /* load the byte */
221                 uchar >>= byte_bit;     /* shift the bits to byte align */
222                 /* clear unspecified bits */
223                 ret[0] = uchar & ((1 << length) -1);
224         }
225         else {  /* more that one byte so transfer the whole bytes */
226                 for(i=0;length;i++,length-=8,byte++) {
227                         /* load the byte */
228                         ret[i]=cmos_read(byte);
229                 }
230         }
231         return 0;
232 }
233
234 int get_option(void *dest, const char *name)
235 {
236         extern struct cmos_option_table option_table;
237         struct cmos_option_table *ct;
238         struct cmos_entries *ce;
239         size_t namelen;
240         int found=0;
241
242         /* Figure out how long name is */
243         namelen = strnlen(name, CMOS_MAX_NAME_LENGTH);
244         
245         /* find the requested entry record */
246         ct=&option_table;
247         ce=(struct cmos_entries*)((unsigned char *)ct + ct->header_length);
248         for(;ce->tag==LB_TAG_OPTION;
249                 ce=(struct cmos_entries*)((unsigned char *)ce + ce->size)) {
250                 if (memcmp(ce->name, name, namelen) == 0) {
251                         found=1;
252                         break;
253                 }
254         }
255         if(!found) {
256                 printk_debug("WARNING: No cmos option '%s'\n", name);
257                 return(-2);
258         }
259         
260         if(get_cmos_value(ce->bit, ce->length, dest))
261                 return(-3);
262         if(!rtc_checksum_valid(CONFIG_LB_CKS_RANGE_START,
263                         CONFIG_LB_CKS_RANGE_END,CONFIG_LB_CKS_LOC))
264                 return(-4);
265         return(0);
266 }
267 #endif /* CONFIG_USE_OPTION_TABLE */