Reduce stack usage for ISRs; minor fixes.
[seabios.git] / src / clock.c
1 // 16bit code to handle system clocks.
2 //
3 // Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
4 // Copyright (C) 2002  MandrakeSoft S.A.
5 //
6 // This file may be distributed under the terms of the GNU GPLv3 license.
7
8 #include "biosvar.h" // struct bregs
9 #include "util.h" // debug_enter
10 #include "disk.h" // floppy_tick
11 #include "cmos.h" // inb_cmos
12
13 #define DEBUGF1(fmt, args...) bprintf(0, fmt , ##args)
14 #define DEBUGF(fmt, args...)
15
16 static void
17 init_rtc()
18 {
19     outb_cmos(0x26, CMOS_STATUS_A);
20     outb_cmos(0x02, CMOS_STATUS_B);
21     inb_cmos(CMOS_STATUS_C);
22     inb_cmos(CMOS_STATUS_D);
23 }
24
25 static u8
26 rtc_updating()
27 {
28     // This function checks to see if the update-in-progress bit
29     // is set in CMOS Status Register A.  If not, it returns 0.
30     // If it is set, it tries to wait until there is a transition
31     // to 0, and will return 0 if such a transition occurs.  A 1
32     // is returned only after timing out.  The maximum period
33     // that this bit should be set is constrained to 244useconds.
34     // The count I use below guarantees coverage or more than
35     // this time, with any reasonable IPS setting.
36
37     u16 count = 25000;
38     while (--count != 0) {
39         if ( (inb_cmos(CMOS_STATUS_A) & 0x80) == 0 )
40             return 0;
41     }
42     return 1; // update-in-progress never transitioned to 0
43 }
44
45 // get current clock count
46 static void
47 handle_1a00(struct bregs *regs)
48 {
49     u32 ticks = GET_BDA(timer_counter);
50     regs->cx = ticks >> 16;
51     regs->dx = ticks;
52     regs->al = GET_BDA(timer_rollover);
53     SET_BDA(timer_rollover, 0); // reset flag
54     set_success(regs);
55 }
56
57 // Set Current Clock Count
58 static void
59 handle_1a01(struct bregs *regs)
60 {
61     u32 ticks = (regs->cx << 16) | regs->dx;
62     SET_BDA(timer_counter, ticks);
63     SET_BDA(timer_rollover, 0); // reset flag
64     regs->ah = 0;
65     set_success(regs);
66 }
67
68 // Read CMOS Time
69 static void
70 handle_1a02(struct bregs *regs)
71 {
72     if (rtc_updating()) {
73         set_fail(regs);
74         return;
75     }
76
77     regs->dh = inb_cmos(CMOS_RTC_SECONDS);
78     regs->cl = inb_cmos(CMOS_RTC_MINUTES);
79     regs->ch = inb_cmos(CMOS_RTC_HOURS);
80     regs->dl = inb_cmos(CMOS_STATUS_B) & 0x01;
81     regs->ah = 0;
82     regs->al = regs->ch;
83     set_success(regs);
84 }
85
86 // Set CMOS Time
87 static void
88 handle_1a03(struct bregs *regs)
89 {
90     // Using a debugger, I notice the following masking/setting
91     // of bits in Status Register B, by setting Reg B to
92     // a few values and getting its value after INT 1A was called.
93     //
94     //        try#1       try#2       try#3
95     // before 1111 1101   0111 1101   0000 0000
96     // after  0110 0010   0110 0010   0000 0010
97     //
98     // Bit4 in try#1 flipped in hardware (forced low) due to bit7=1
99     // My assumption: RegB = ((RegB & 01100000b) | 00000010b)
100     if (rtc_updating()) {
101         init_rtc();
102         // fall through as if an update were not in progress
103     }
104     outb_cmos(regs->dh, CMOS_RTC_SECONDS);
105     outb_cmos(regs->cl, CMOS_RTC_MINUTES);
106     outb_cmos(regs->ch, CMOS_RTC_HOURS);
107     // Set Daylight Savings time enabled bit to requested value
108     u8 val8 = (inb_cmos(CMOS_STATUS_B) & 0x60) | 0x02 | (regs->dl & 0x01);
109     outb_cmos(val8, CMOS_STATUS_B);
110     regs->ah = 0;
111     regs->al = val8; // val last written to Reg B
112     set_success(regs);
113 }
114
115 // Read CMOS Date
116 static void
117 handle_1a04(struct bregs *regs)
118 {
119     regs->ah = 0;
120     if (rtc_updating()) {
121         set_fail(regs);
122         return;
123     }
124     regs->cl = inb_cmos(CMOS_RTC_YEAR);
125     regs->dh = inb_cmos(CMOS_RTC_MONTH);
126     regs->dl = inb_cmos(CMOS_RTC_DAY_MONTH);
127     regs->ch = inb_cmos(CMOS_CENTURY);
128     regs->al = regs->ch;
129     set_success(regs);
130 }
131
132 // Set CMOS Date
133 static void
134 handle_1a05(struct bregs *regs)
135 {
136     // Using a debugger, I notice the following masking/setting
137     // of bits in Status Register B, by setting Reg B to
138     // a few values and getting its value after INT 1A was called.
139     //
140     //        try#1       try#2       try#3       try#4
141     // before 1111 1101   0111 1101   0000 0010   0000 0000
142     // after  0110 1101   0111 1101   0000 0010   0000 0000
143     //
144     // Bit4 in try#1 flipped in hardware (forced low) due to bit7=1
145     // My assumption: RegB = (RegB & 01111111b)
146     if (rtc_updating()) {
147         init_rtc();
148         set_fail(regs);
149         return;
150     }
151     outb_cmos(regs->cl, CMOS_RTC_YEAR);
152     outb_cmos(regs->dh, CMOS_RTC_MONTH);
153     outb_cmos(regs->dl, CMOS_RTC_DAY_MONTH);
154     outb_cmos(regs->ch, CMOS_CENTURY);
155     u8 val8 = inb_cmos(CMOS_STATUS_B) & 0x7f; // clear halt-clock bit
156     outb_cmos(val8, CMOS_STATUS_B);
157     regs->ah = 0;
158     regs->al = val8; // AL = val last written to Reg B
159     set_success(regs);
160 }
161
162 // Set Alarm Time in CMOS
163 static void
164 handle_1a06(struct bregs *regs)
165 {
166     // Using a debugger, I notice the following masking/setting
167     // of bits in Status Register B, by setting Reg B to
168     // a few values and getting its value after INT 1A was called.
169     //
170     //        try#1       try#2       try#3
171     // before 1101 1111   0101 1111   0000 0000
172     // after  0110 1111   0111 1111   0010 0000
173     //
174     // Bit4 in try#1 flipped in hardware (forced low) due to bit7=1
175     // My assumption: RegB = ((RegB & 01111111b) | 00100000b)
176     u8 val8 = inb_cmos(CMOS_STATUS_B); // Get Status Reg B
177     regs->ax = 0;
178     if (val8 & 0x20) {
179         // Alarm interrupt enabled already
180         set_fail(regs);
181         return;
182     }
183     if (rtc_updating()) {
184         init_rtc();
185         // fall through as if an update were not in progress
186     }
187     outb_cmos(regs->dh, CMOS_RTC_SECONDS_ALARM);
188     outb_cmos(regs->cl, CMOS_RTC_MINUTES_ALARM);
189     outb_cmos(regs->ch, CMOS_RTC_HOURS_ALARM);
190     outb(inb(PORT_PIC2_DATA) & ~PIC2_IRQ8, PORT_PIC2_DATA); // enable IRQ 8
191     // enable Status Reg B alarm bit, clear halt clock bit
192     outb_cmos((val8 & 0x7f) | 0x20, CMOS_STATUS_B);
193     set_success(regs);
194 }
195
196 // Turn off Alarm
197 static void
198 handle_1a07(struct bregs *regs)
199 {
200     // Using a debugger, I notice the following masking/setting
201     // of bits in Status Register B, by setting Reg B to
202     // a few values and getting its value after INT 1A was called.
203     //
204     //        try#1       try#2       try#3       try#4
205     // before 1111 1101   0111 1101   0010 0000   0010 0010
206     // after  0100 0101   0101 0101   0000 0000   0000 0010
207     //
208     // Bit4 in try#1 flipped in hardware (forced low) due to bit7=1
209     // My assumption: RegB = (RegB & 01010111b)
210     u8 val8 = inb_cmos(CMOS_STATUS_B); // Get Status Reg B
211     // clear clock-halt bit, disable alarm bit
212     outb_cmos(val8 & 0x57, CMOS_STATUS_B); // disable alarm bit
213     regs->ah = 0;
214     regs->al = val8; // val last written to Reg B
215     set_success(regs);
216 }
217
218 static void
219 handle_1ab1(struct bregs *regs)
220 {
221     // XXX - pcibios stuff
222     set_fail(regs);
223 }
224
225 // Unsupported
226 static void
227 handle_1aXX(struct bregs *regs)
228 {
229     set_fail(regs);
230 }
231
232 // INT 1Ah Time-of-day Service Entry Point
233 void VISIBLE16
234 handle_1a(struct bregs *regs)
235 {
236     //debug_enter(regs);
237     switch (regs->ah) {
238     case 0x00: handle_1a00(regs); break;
239     case 0x01: handle_1a01(regs); break;
240     case 0x02: handle_1a02(regs); break;
241     case 0x03: handle_1a03(regs); break;
242     case 0x04: handle_1a04(regs); break;
243     case 0x05: handle_1a05(regs); break;
244     case 0x06: handle_1a06(regs); break;
245     case 0x07: handle_1a07(regs); break;
246     case 0xb1: handle_1ab1(regs); break;
247     default:   handle_1aXX(regs); break;
248     }
249 }
250
251 // User Timer Tick
252 void VISIBLE16
253 handle_1c()
254 {
255     //debug_enter(regs);
256 }
257
258 // INT 08h System Timer ISR Entry Point
259 void VISIBLE16
260 handle_08()
261 {
262     //debug_isr();
263     irq_enable();
264
265     floppy_tick();
266
267     u32 counter = GET_BDA(timer_counter);
268     counter++;
269     // compare to one days worth of timer ticks at 18.2 hz
270     if (counter >= 0x001800B0) {
271         // there has been a midnight rollover at this point
272         counter = 0;
273         SET_BDA(timer_rollover, GET_BDA(timer_rollover) + 1);
274     }
275
276     SET_BDA(timer_counter, counter);
277
278     // chain to user timer tick INT #0x1c
279     struct bregs br;
280     memset(&br, 0, sizeof(br));
281     call16_int(0x1c, &br);
282
283     irq_disable();
284
285     eoi_master_pic();
286 }
287
288 // Set Interval requested.
289 static void
290 handle_158300(struct bregs *regs)
291 {
292     if (GET_BDA(rtc_wait_flag) & RWS_WAIT_PENDING) {
293         // Interval already set.
294         DEBUGF("int15: Func 83h, failed, already waiting.\n" );
295         set_code_fail(regs, RET_EUNSUPPORTED);
296     }
297     // Interval not already set.
298     SET_BDA(rtc_wait_flag, RWS_WAIT_PENDING);  // Set status byte.
299     u32 v = (regs->es << 16) | regs->bx;
300     SET_BDA(ptr_user_wait_complete_flag, v);
301     v = (regs->dx << 16) | regs->cx;
302     SET_BDA(user_wait_timeout, v);
303
304     // Unmask IRQ8 so INT70 will get through.
305     u8 irqDisable = inb(PORT_PIC2_DATA);
306     outb(irqDisable & ~PIC2_IRQ8, PORT_PIC2_DATA);
307     // Turn on the Periodic Interrupt timer
308     u8 bRegister = inb_cmos(CMOS_STATUS_B);
309     outb_cmos(CMOS_STATUS_B, bRegister | CSB_EN_ALARM_IRQ);
310
311     set_success(regs); // XXX - no set ah?
312 }
313
314 // Clear interval requested
315 static void
316 handle_158301(struct bregs *regs)
317 {
318     SET_BDA(rtc_wait_flag, 0); // Clear status byte
319     // Turn off the Periodic Interrupt timer
320     u8 bRegister = inb_cmos(CMOS_STATUS_B);
321     outb_cmos(CMOS_STATUS_B, bRegister & ~CSB_EN_ALARM_IRQ);
322     set_success(regs); // XXX - no set ah?
323 }
324
325 static void
326 handle_1583XX(struct bregs *regs)
327 {
328     set_code_fail(regs, RET_EUNSUPPORTED);
329     regs->al--;
330 }
331
332 void
333 handle_1583(struct bregs *regs)
334 {
335     switch (regs->al) {
336     case 0x00: handle_158300(regs); break;
337     case 0x01: handle_158301(regs); break;
338     default:   handle_1583XX(regs); break;
339     }
340 }
341
342 // int70h: IRQ8 - CMOS RTC
343 void VISIBLE16
344 handle_70()
345 {
346     debug_isr();
347
348     // Check which modes are enabled and have occurred.
349     u8 registerB = inb_cmos(CMOS_STATUS_B);
350     u8 registerC = inb_cmos(CMOS_STATUS_C);
351
352     if (!(registerB & 0x60))
353         goto done;
354     if (registerC & 0x20) {
355         // Handle Alarm Interrupt.
356         struct bregs br;
357         memset(&br, 0, sizeof(br));
358         call16_int(0x4a, &br);
359     }
360     if (!(registerC & 0x40))
361         goto done;
362
363     // Handle Periodic Interrupt.
364
365     if (!GET_BDA(rtc_wait_flag))
366         goto done;
367
368     // Wait Interval (Int 15, AH=83) active.
369     u32 time = GET_BDA(user_wait_timeout);  // Time left in microseconds.
370     if (time < 0x3D1) {
371         // Done waiting.
372         u32 segoff = GET_BDA(ptr_user_wait_complete_flag);
373         u16 segment = segoff >> 16;
374         u16 offset = segoff & 0xffff;
375         // Turn off status byte.
376         SET_BDA(rtc_wait_flag, 0);
377         // Clear the Periodic Interrupt.
378         outb_cmos(registerB & 0x37, CMOS_STATUS_B);
379         // Write to specified flag byte.
380         u8 oldval = GET_FARVAR(segment, *(u8*)(offset+0));
381         SET_FARVAR(segment, *(u8*)(offset+0), oldval | 0x80);
382     } else {
383         // Continue waiting.
384         time -= 0x3D1;
385         SET_BDA(user_wait_timeout, time);
386     }
387
388 done:
389     eoi_both_pics();
390 }