blob: fcdc698bb15b8c9a0cad8a950312fa1b3b35e965 [file] [log] [blame]
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05001// 16bit code to handle system clocks.
2//
Kevin O'Connorabf31d32010-07-26 22:33:54 -04003// Copyright (C) 2008-2010 Kevin O'Connor <kevin@koconnor.net>
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05004// Copyright (C) 2002 MandrakeSoft S.A.
5//
Kevin O'Connorb1b7c2a2009-01-15 20:52:58 -05006// This file may be distributed under the terms of the GNU LGPLv3 license.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05007
Kevin O'Connor9521e262008-07-04 13:04:29 -04008#include "biosvar.h" // SET_BDA
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05009#include "util.h" // debug_enter
10#include "disk.h" // floppy_tick
Kevin O'Connor4b60c002008-02-25 22:29:55 -050011#include "cmos.h" // inb_cmos
Kevin O'Connord21c0892008-11-26 17:02:43 -050012#include "pic.h" // eoi_pic1
Kevin O'Connor9521e262008-07-04 13:04:29 -040013#include "bregs.h" // struct bregs
Kevin O'Connor15157a32008-12-13 11:10:37 -050014#include "biosvar.h" // GET_GLOBAL
Kevin O'Connor0e885762010-05-01 22:14:40 -040015#include "usb-hid.h" // usb_check_event
Kevin O'Connor4b60c002008-02-25 22:29:55 -050016
Kevin O'Connor5be04902008-05-18 17:12:06 -040017// RTC register flags
18#define RTC_A_UIP 0x80
Kevin O'Connorf3587592009-02-15 13:02:56 -050019
20#define RTC_B_SET 0x80
21#define RTC_B_PIE 0x40
22#define RTC_B_AIE 0x20
23#define RTC_B_UIE 0x10
24#define RTC_B_BIN 0x04
25#define RTC_B_24HR 0x02
26#define RTC_B_DSE 0x01
27
Kevin O'Connor5be04902008-05-18 17:12:06 -040028
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -050029// Bits for PORT_PS2_CTRLB
30#define PPCB_T2GATE (1<<0)
31#define PPCB_SPKR (1<<1)
32#define PPCB_T2OUT (1<<5)
33
34// Bits for PORT_PIT_MODE
35#define PM_SEL_TIMER0 (0<<6)
36#define PM_SEL_TIMER1 (1<<6)
37#define PM_SEL_TIMER2 (2<<6)
38#define PM_SEL_READBACK (3<<6)
39#define PM_ACCESS_LATCH (0<<4)
40#define PM_ACCESS_LOBYTE (1<<4)
41#define PM_ACCESS_HIBYTE (2<<4)
42#define PM_ACCESS_WORD (3<<4)
43#define PM_MODE0 (0<<1)
44#define PM_MODE1 (1<<1)
45#define PM_MODE2 (2<<1)
46#define PM_MODE3 (3<<1)
47#define PM_MODE4 (4<<1)
48#define PM_MODE5 (5<<1)
49#define PM_CNT_BINARY (0<<0)
50#define PM_CNT_BCD (1<<0)
51
52
53/****************************************************************
54 * TSC timer
55 ****************************************************************/
56
Kevin O'Connor6aee52d2009-09-27 20:07:40 -040057#define CALIBRATE_COUNT 0x800 // Approx 1.7ms
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -050058
Kevin O'Connor372e0712009-09-09 09:51:31 -040059u32 cpu_khz VAR16VISIBLE;
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -050060
61static void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -050062calibrate_tsc(void)
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -050063{
64 // Setup "timer2"
65 u8 orig = inb(PORT_PS2_CTRLB);
66 outb((orig & ~PPCB_SPKR) | PPCB_T2GATE, PORT_PS2_CTRLB);
67 /* binary, mode 0, LSB/MSB, Ch 2 */
68 outb(PM_SEL_TIMER2|PM_ACCESS_WORD|PM_MODE0|PM_CNT_BINARY, PORT_PIT_MODE);
69 /* LSB of ticks */
70 outb(CALIBRATE_COUNT & 0xFF, PORT_PIT_COUNTER2);
71 /* MSB of ticks */
72 outb(CALIBRATE_COUNT >> 8, PORT_PIT_COUNTER2);
73
74 u64 start = rdtscll();
75 while ((inb(PORT_PS2_CTRLB) & PPCB_T2OUT) == 0)
76 ;
77 u64 end = rdtscll();
78
79 // Restore PORT_PS2_CTRLB
80 outb(orig, PORT_PS2_CTRLB);
81
82 // Store calibrated cpu khz.
83 u64 diff = end - start;
84 dprintf(6, "tsc calibrate start=%u end=%u diff=%u\n"
85 , (u32)start, (u32)end, (u32)diff);
86 u32 hz = diff * PIT_TICK_RATE / CALIBRATE_COUNT;
Kevin O'Connor15157a32008-12-13 11:10:37 -050087 SET_GLOBAL(cpu_khz, hz / 1000);
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -050088
89 dprintf(1, "CPU Mhz=%u\n", hz / 1000000);
90}
91
92static void
Kevin O'Connor89eb6242009-10-22 22:30:37 -040093tscdelay(u64 diff)
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -050094{
95 u64 start = rdtscll();
96 u64 end = start + diff;
Kevin O'Connor144817b2010-05-23 10:46:49 -040097 while (!check_tsc(end))
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -050098 cpu_relax();
99}
100
Kevin O'Connor10ad7992009-10-24 11:06:08 -0400101static void
102tscsleep(u64 diff)
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -0500103{
Kevin O'Connor10ad7992009-10-24 11:06:08 -0400104 u64 start = rdtscll();
105 u64 end = start + diff;
Kevin O'Connor144817b2010-05-23 10:46:49 -0400106 while (!check_tsc(end))
Kevin O'Connor10ad7992009-10-24 11:06:08 -0400107 yield();
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -0500108}
Kevin O'Connor10ad7992009-10-24 11:06:08 -0400109
110void ndelay(u32 count) {
111 tscdelay(count * GET_GLOBAL(cpu_khz) / 1000000);
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -0500112}
Kevin O'Connor10ad7992009-10-24 11:06:08 -0400113void udelay(u32 count) {
114 tscdelay(count * GET_GLOBAL(cpu_khz) / 1000);
115}
116void mdelay(u32 count) {
117 tscdelay(count * GET_GLOBAL(cpu_khz));
118}
119
120void nsleep(u32 count) {
121 tscsleep(count * GET_GLOBAL(cpu_khz) / 1000000);
122}
123void usleep(u32 count) {
124 tscsleep(count * GET_GLOBAL(cpu_khz) / 1000);
125}
126void msleep(u32 count) {
127 tscsleep(count * GET_GLOBAL(cpu_khz));
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -0500128}
129
Kevin O'Connor4e6c9702008-12-13 10:45:50 -0500130// Return the TSC value that is 'msecs' time in the future.
131u64
132calc_future_tsc(u32 msecs)
133{
Kevin O'Connor15157a32008-12-13 11:10:37 -0500134 u32 khz = GET_GLOBAL(cpu_khz);
Kevin O'Connor4e6c9702008-12-13 10:45:50 -0500135 return rdtscll() + ((u64)khz * msecs);
136}
Kevin O'Connor1c46a542009-10-17 23:53:32 -0400137u64
138calc_future_tsc_usec(u32 usecs)
139{
140 u32 khz = GET_GLOBAL(cpu_khz);
141 return rdtscll() + ((u64)(khz/1000) * usecs);
142}
Kevin O'Connor4e6c9702008-12-13 10:45:50 -0500143
Kevin O'Connor5be04902008-05-18 17:12:06 -0400144
145/****************************************************************
146 * Init
147 ****************************************************************/
148
Kevin O'Connor4e6c9702008-12-13 10:45:50 -0500149static int
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500150rtc_updating(void)
Kevin O'Connor4e6c9702008-12-13 10:45:50 -0500151{
152 // This function checks to see if the update-in-progress bit
153 // is set in CMOS Status Register A. If not, it returns 0.
154 // If it is set, it tries to wait until there is a transition
155 // to 0, and will return 0 if such a transition occurs. A -1
156 // is returned only after timing out. The maximum period
Kevin O'Connor4f5586c2009-02-16 10:14:10 -0500157 // that this bit should be set is constrained to (1984+244)
Kevin O'Connor11cc6622010-03-13 23:04:41 -0500158 // useconds, but we wait for longer just to be sure.
Kevin O'Connor4e6c9702008-12-13 10:45:50 -0500159
Kevin O'Connorf3587592009-02-15 13:02:56 -0500160 if ((inb_cmos(CMOS_STATUS_A) & RTC_A_UIP) == 0)
Kevin O'Connor4e6c9702008-12-13 10:45:50 -0500161 return 0;
Kevin O'Connor11cc6622010-03-13 23:04:41 -0500162 u64 end = calc_future_tsc(15);
163 for (;;) {
Kevin O'Connorf3587592009-02-15 13:02:56 -0500164 if ((inb_cmos(CMOS_STATUS_A) & RTC_A_UIP) == 0)
Kevin O'Connor4e6c9702008-12-13 10:45:50 -0500165 return 0;
Kevin O'Connor144817b2010-05-23 10:46:49 -0400166 if (check_tsc(end))
Kevin O'Connor11cc6622010-03-13 23:04:41 -0500167 // update-in-progress never transitioned to 0
168 return -1;
169 yield();
170 }
Kevin O'Connor4e6c9702008-12-13 10:45:50 -0500171}
172
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500173static void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500174pit_setup(void)
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400175{
176 // timer0: binary count, 16bit count, mode 2
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -0500177 outb(PM_SEL_TIMER0|PM_ACCESS_WORD|PM_MODE2|PM_CNT_BINARY, PORT_PIT_MODE);
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400178 // maximum count of 0000H = 18.2Hz
179 outb(0x0, PORT_PIT_COUNTER0);
180 outb(0x0, PORT_PIT_COUNTER0);
181}
182
Kevin O'Connorf3587592009-02-15 13:02:56 -0500183static void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500184init_rtc(void)
Kevin O'Connorf3587592009-02-15 13:02:56 -0500185{
Kevin O'Connor4f5586c2009-02-16 10:14:10 -0500186 outb_cmos(0x26, CMOS_STATUS_A); // 32,768Khz src, 976.5625us updates
Kevin O'Connorf3587592009-02-15 13:02:56 -0500187 u8 regB = inb_cmos(CMOS_STATUS_B);
188 outb_cmos((regB & RTC_B_DSE) | RTC_B_24HR, CMOS_STATUS_B);
189 inb_cmos(CMOS_STATUS_C);
190 inb_cmos(CMOS_STATUS_D);
191}
192
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400193static u32
194bcd2bin(u8 val)
195{
196 return (val & 0xf) + ((val >> 4) * 10);
197}
198
199void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500200timer_setup(void)
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400201{
Kevin O'Connor35192dd2008-06-08 19:18:33 -0400202 dprintf(3, "init timer\n");
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -0500203 calibrate_tsc();
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400204 pit_setup();
205
Kevin O'Connorf3587592009-02-15 13:02:56 -0500206 init_rtc();
Kevin O'Connor4e6c9702008-12-13 10:45:50 -0500207 rtc_updating();
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400208 u32 seconds = bcd2bin(inb_cmos(CMOS_RTC_SECONDS));
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400209 u32 minutes = bcd2bin(inb_cmos(CMOS_RTC_MINUTES));
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400210 u32 hours = bcd2bin(inb_cmos(CMOS_RTC_HOURS));
Kevin O'Connor6aee52d2009-09-27 20:07:40 -0400211 u32 ticks = (hours * 60 + minutes) * 60 + seconds;
212 ticks = ((u64)ticks * PIT_TICK_RATE) / PIT_TICK_INTERVAL;
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400213 SET_BDA(timer_counter, ticks);
Kevin O'Connorf54c1502008-06-14 15:56:16 -0400214
Kevin O'Connorcc9e1bf2010-07-28 21:31:38 -0400215 enable_hwirq(0, FUNC16(entry_08));
216 enable_hwirq(8, FUNC16(entry_70));
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400217}
218
Kevin O'Connor5be04902008-05-18 17:12:06 -0400219
220/****************************************************************
221 * Standard clock functions
222 ****************************************************************/
223
Kevin O'Connorb5cc2ca2010-05-23 11:38:53 -0400224#define TICKS_PER_DAY (u32)((u64)60*60*24*PIT_TICK_RATE / PIT_TICK_INTERVAL)
225
226// Calculate the timer value at 'count' number of full timer ticks in
227// the future.
228u32
229calc_future_timer_ticks(u32 count)
230{
231 return (GET_BDA(timer_counter) + count + 1) % TICKS_PER_DAY;
232}
Kevin O'Connorbb685912010-05-23 12:40:40 -0400233
Kevin O'Connorb5cc2ca2010-05-23 11:38:53 -0400234// Return the timer value that is 'msecs' time in the future.
235u32
236calc_future_timer(u32 msecs)
237{
Kevin O'Connorbb685912010-05-23 12:40:40 -0400238 if (!msecs)
239 return GET_BDA(timer_counter);
Kevin O'Connorabf31d32010-07-26 22:33:54 -0400240 u32 kticks = DIV_ROUND_UP((u64)msecs * PIT_TICK_RATE, PIT_TICK_INTERVAL);
Kevin O'Connorb5cc2ca2010-05-23 11:38:53 -0400241 u32 ticks = DIV_ROUND_UP(kticks, 1000);
242 return calc_future_timer_ticks(ticks);
243}
Kevin O'Connorbb685912010-05-23 12:40:40 -0400244
Kevin O'Connorb5cc2ca2010-05-23 11:38:53 -0400245// Check if the given timer value has passed.
246int
247check_timer(u32 end)
248{
249 return (((GET_BDA(timer_counter) + TICKS_PER_DAY - end) % TICKS_PER_DAY)
250 < (TICKS_PER_DAY/2));
251}
252
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500253// get current clock count
254static void
255handle_1a00(struct bregs *regs)
256{
Kevin O'Connor68c51392010-03-13 22:23:44 -0500257 yield();
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500258 u32 ticks = GET_BDA(timer_counter);
259 regs->cx = ticks >> 16;
260 regs->dx = ticks;
261 regs->al = GET_BDA(timer_rollover);
262 SET_BDA(timer_rollover, 0); // reset flag
Kevin O'Connor6c781222008-03-09 12:19:23 -0400263 set_success(regs);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500264}
265
266// Set Current Clock Count
267static void
268handle_1a01(struct bregs *regs)
269{
270 u32 ticks = (regs->cx << 16) | regs->dx;
271 SET_BDA(timer_counter, ticks);
272 SET_BDA(timer_rollover, 0); // reset flag
Kevin O'Connor15157a32008-12-13 11:10:37 -0500273 // XXX - should use set_code_success()?
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500274 regs->ah = 0;
Kevin O'Connor6c781222008-03-09 12:19:23 -0400275 set_success(regs);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500276}
277
278// Read CMOS Time
279static void
280handle_1a02(struct bregs *regs)
281{
282 if (rtc_updating()) {
Kevin O'Connordfefeb52009-12-13 13:04:17 -0500283 set_invalid(regs);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500284 return;
285 }
286
287 regs->dh = inb_cmos(CMOS_RTC_SECONDS);
288 regs->cl = inb_cmos(CMOS_RTC_MINUTES);
289 regs->ch = inb_cmos(CMOS_RTC_HOURS);
Kevin O'Connorf3587592009-02-15 13:02:56 -0500290 regs->dl = inb_cmos(CMOS_STATUS_B) & RTC_B_DSE;
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500291 regs->ah = 0;
292 regs->al = regs->ch;
Kevin O'Connor6c781222008-03-09 12:19:23 -0400293 set_success(regs);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500294}
295
296// Set CMOS Time
297static void
298handle_1a03(struct bregs *regs)
299{
300 // Using a debugger, I notice the following masking/setting
301 // of bits in Status Register B, by setting Reg B to
302 // a few values and getting its value after INT 1A was called.
303 //
304 // try#1 try#2 try#3
305 // before 1111 1101 0111 1101 0000 0000
306 // after 0110 0010 0110 0010 0000 0010
307 //
308 // Bit4 in try#1 flipped in hardware (forced low) due to bit7=1
309 // My assumption: RegB = ((RegB & 01100000b) | 00000010b)
310 if (rtc_updating()) {
311 init_rtc();
312 // fall through as if an update were not in progress
313 }
314 outb_cmos(regs->dh, CMOS_RTC_SECONDS);
315 outb_cmos(regs->cl, CMOS_RTC_MINUTES);
316 outb_cmos(regs->ch, CMOS_RTC_HOURS);
317 // Set Daylight Savings time enabled bit to requested value
Kevin O'Connorf3587592009-02-15 13:02:56 -0500318 u8 val8 = ((inb_cmos(CMOS_STATUS_B) & (RTC_B_PIE|RTC_B_AIE))
319 | RTC_B_24HR | (regs->dl & RTC_B_DSE));
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500320 outb_cmos(val8, CMOS_STATUS_B);
321 regs->ah = 0;
322 regs->al = val8; // val last written to Reg B
Kevin O'Connor6c781222008-03-09 12:19:23 -0400323 set_success(regs);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500324}
325
326// Read CMOS Date
327static void
328handle_1a04(struct bregs *regs)
329{
330 regs->ah = 0;
331 if (rtc_updating()) {
Kevin O'Connordfefeb52009-12-13 13:04:17 -0500332 set_invalid(regs);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500333 return;
334 }
335 regs->cl = inb_cmos(CMOS_RTC_YEAR);
336 regs->dh = inb_cmos(CMOS_RTC_MONTH);
337 regs->dl = inb_cmos(CMOS_RTC_DAY_MONTH);
Kevin O'Connorf3587592009-02-15 13:02:56 -0500338 if (CONFIG_COREBOOT) {
339 if (regs->cl > 0x80)
340 regs->ch = 0x19;
341 else
342 regs->ch = 0x20;
343 } else {
344 regs->ch = inb_cmos(CMOS_CENTURY);
345 }
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500346 regs->al = regs->ch;
Kevin O'Connor6c781222008-03-09 12:19:23 -0400347 set_success(regs);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500348}
349
350// Set CMOS Date
351static void
352handle_1a05(struct bregs *regs)
353{
354 // Using a debugger, I notice the following masking/setting
355 // of bits in Status Register B, by setting Reg B to
356 // a few values and getting its value after INT 1A was called.
357 //
358 // try#1 try#2 try#3 try#4
359 // before 1111 1101 0111 1101 0000 0010 0000 0000
360 // after 0110 1101 0111 1101 0000 0010 0000 0000
361 //
362 // Bit4 in try#1 flipped in hardware (forced low) due to bit7=1
363 // My assumption: RegB = (RegB & 01111111b)
364 if (rtc_updating()) {
365 init_rtc();
Kevin O'Connordfefeb52009-12-13 13:04:17 -0500366 set_invalid(regs);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500367 return;
368 }
369 outb_cmos(regs->cl, CMOS_RTC_YEAR);
370 outb_cmos(regs->dh, CMOS_RTC_MONTH);
371 outb_cmos(regs->dl, CMOS_RTC_DAY_MONTH);
Kevin O'Connorf3587592009-02-15 13:02:56 -0500372 if (!CONFIG_COREBOOT)
373 outb_cmos(regs->ch, CMOS_CENTURY);
Kevin O'Connor5be04902008-05-18 17:12:06 -0400374 // clear halt-clock bit
375 u8 val8 = inb_cmos(CMOS_STATUS_B) & ~RTC_B_SET;
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500376 outb_cmos(val8, CMOS_STATUS_B);
377 regs->ah = 0;
378 regs->al = val8; // AL = val last written to Reg B
Kevin O'Connor6c781222008-03-09 12:19:23 -0400379 set_success(regs);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500380}
381
382// Set Alarm Time in CMOS
383static void
384handle_1a06(struct bregs *regs)
385{
386 // Using a debugger, I notice the following masking/setting
387 // of bits in Status Register B, by setting Reg B to
388 // a few values and getting its value after INT 1A was called.
389 //
390 // try#1 try#2 try#3
391 // before 1101 1111 0101 1111 0000 0000
392 // after 0110 1111 0111 1111 0010 0000
393 //
394 // Bit4 in try#1 flipped in hardware (forced low) due to bit7=1
395 // My assumption: RegB = ((RegB & 01111111b) | 00100000b)
396 u8 val8 = inb_cmos(CMOS_STATUS_B); // Get Status Reg B
397 regs->ax = 0;
Kevin O'Connorf3587592009-02-15 13:02:56 -0500398 if (val8 & RTC_B_AIE) {
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500399 // Alarm interrupt enabled already
Kevin O'Connordfefeb52009-12-13 13:04:17 -0500400 set_invalid(regs);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500401 return;
402 }
403 if (rtc_updating()) {
404 init_rtc();
405 // fall through as if an update were not in progress
406 }
407 outb_cmos(regs->dh, CMOS_RTC_SECONDS_ALARM);
408 outb_cmos(regs->cl, CMOS_RTC_MINUTES_ALARM);
409 outb_cmos(regs->ch, CMOS_RTC_HOURS_ALARM);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500410 // enable Status Reg B alarm bit, clear halt clock bit
Kevin O'Connor5be04902008-05-18 17:12:06 -0400411 outb_cmos((val8 & ~RTC_B_SET) | RTC_B_AIE, CMOS_STATUS_B);
Kevin O'Connor6c781222008-03-09 12:19:23 -0400412 set_success(regs);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500413}
414
415// Turn off Alarm
416static void
417handle_1a07(struct bregs *regs)
418{
419 // Using a debugger, I notice the following masking/setting
420 // of bits in Status Register B, by setting Reg B to
421 // a few values and getting its value after INT 1A was called.
422 //
423 // try#1 try#2 try#3 try#4
424 // before 1111 1101 0111 1101 0010 0000 0010 0010
425 // after 0100 0101 0101 0101 0000 0000 0000 0010
426 //
427 // Bit4 in try#1 flipped in hardware (forced low) due to bit7=1
428 // My assumption: RegB = (RegB & 01010111b)
429 u8 val8 = inb_cmos(CMOS_STATUS_B); // Get Status Reg B
430 // clear clock-halt bit, disable alarm bit
Kevin O'Connor5be04902008-05-18 17:12:06 -0400431 outb_cmos(val8 & ~(RTC_B_SET|RTC_B_AIE), CMOS_STATUS_B);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500432 regs->ah = 0;
433 regs->al = val8; // val last written to Reg B
Kevin O'Connor6c781222008-03-09 12:19:23 -0400434 set_success(regs);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500435}
436
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500437// Unsupported
438static void
439handle_1aXX(struct bregs *regs)
440{
Kevin O'Connordfefeb52009-12-13 13:04:17 -0500441 set_unimplemented(regs);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500442}
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500443
444// INT 1Ah Time-of-day Service Entry Point
Kevin O'Connor19786762008-03-05 21:09:59 -0500445void VISIBLE16
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500446handle_1a(struct bregs *regs)
447{
Kevin O'Connor15c1f222008-06-12 22:59:43 -0400448 debug_enter(regs, DEBUG_HDL_1a);
Kevin O'Connor4b60c002008-02-25 22:29:55 -0500449 switch (regs->ah) {
450 case 0x00: handle_1a00(regs); break;
451 case 0x01: handle_1a01(regs); break;
452 case 0x02: handle_1a02(regs); break;
453 case 0x03: handle_1a03(regs); break;
454 case 0x04: handle_1a04(regs); break;
455 case 0x05: handle_1a05(regs); break;
456 case 0x06: handle_1a06(regs); break;
457 case 0x07: handle_1a07(regs); break;
458 case 0xb1: handle_1ab1(regs); break;
459 default: handle_1aXX(regs); break;
460 }
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500461}
462
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500463// INT 08h System Timer ISR Entry Point
Kevin O'Connor19786762008-03-05 21:09:59 -0500464void VISIBLE16
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500465handle_08(void)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500466{
Kevin O'Connor15c1f222008-06-12 22:59:43 -0400467 debug_isr(DEBUG_ISR_08);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500468
469 floppy_tick();
470
471 u32 counter = GET_BDA(timer_counter);
472 counter++;
473 // compare to one days worth of timer ticks at 18.2 hz
Kevin O'Connor6aee52d2009-09-27 20:07:40 -0400474 if (counter >= TICKS_PER_DAY) {
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500475 // there has been a midnight rollover at this point
476 counter = 0;
477 SET_BDA(timer_rollover, GET_BDA(timer_rollover) + 1);
478 }
479
480 SET_BDA(timer_counter, counter);
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500481
Kevin O'Connor0e885762010-05-01 22:14:40 -0400482 usb_check_event();
Kevin O'Connor114592f2009-09-28 21:32:08 -0400483
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500484 // chain to user timer tick INT #0x1c
Kevin O'Connora83ff552009-01-01 21:00:59 -0500485 u32 eax=0, flags;
486 call16_simpint(0x1c, &eax, &flags);
Kevin O'Connored128492008-03-11 11:14:59 -0400487
Kevin O'Connorf54c1502008-06-14 15:56:16 -0400488 eoi_pic1();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500489}
490
Kevin O'Connor5be04902008-05-18 17:12:06 -0400491
492/****************************************************************
493 * Periodic timer
494 ****************************************************************/
495
Kevin O'Connorad901592009-12-13 11:25:25 -0500496void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500497useRTC(void)
Kevin O'Connorad901592009-12-13 11:25:25 -0500498{
499 u16 ebda_seg = get_ebda_seg();
500 int count = GET_EBDA2(ebda_seg, RTCusers);
501 SET_EBDA2(ebda_seg, RTCusers, count+1);
502 if (count)
503 return;
504 // Turn on the Periodic Interrupt timer
505 u8 bRegister = inb_cmos(CMOS_STATUS_B);
506 outb_cmos(bRegister | RTC_B_PIE, CMOS_STATUS_B);
507}
508
509void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500510releaseRTC(void)
Kevin O'Connorad901592009-12-13 11:25:25 -0500511{
512 u16 ebda_seg = get_ebda_seg();
513 int count = GET_EBDA2(ebda_seg, RTCusers);
514 SET_EBDA2(ebda_seg, RTCusers, count-1);
515 if (count != 1)
516 return;
517 // Clear the Periodic Interrupt.
518 u8 bRegister = inb_cmos(CMOS_STATUS_B);
519 outb_cmos(bRegister & ~RTC_B_PIE, CMOS_STATUS_B);
520}
521
Kevin O'Connor5be04902008-05-18 17:12:06 -0400522static int
Kevin O'Connor72743f12008-05-24 23:04:09 -0400523set_usertimer(u32 usecs, u16 seg, u16 offset)
Kevin O'Connorbdce35f2008-02-26 21:33:14 -0500524{
Kevin O'Connor5be04902008-05-18 17:12:06 -0400525 if (GET_BDA(rtc_wait_flag) & RWS_WAIT_PENDING)
526 return -1;
527
Kevin O'Connorbdce35f2008-02-26 21:33:14 -0500528 // Interval not already set.
529 SET_BDA(rtc_wait_flag, RWS_WAIT_PENDING); // Set status byte.
Kevin O'Connor9f985422009-09-09 11:34:39 -0400530 SET_BDA(user_wait_complete_flag, SEGOFF(seg, offset));
Kevin O'Connor72743f12008-05-24 23:04:09 -0400531 SET_BDA(user_wait_timeout, usecs);
Kevin O'Connorad901592009-12-13 11:25:25 -0500532 useRTC();
Kevin O'Connor5be04902008-05-18 17:12:06 -0400533 return 0;
534}
535
536static void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500537clear_usertimer(void)
Kevin O'Connor5be04902008-05-18 17:12:06 -0400538{
Kevin O'Connorad901592009-12-13 11:25:25 -0500539 if (!(GET_BDA(rtc_wait_flag) & RWS_WAIT_PENDING))
540 return;
Kevin O'Connor5be04902008-05-18 17:12:06 -0400541 // Turn off status byte.
542 SET_BDA(rtc_wait_flag, 0);
Kevin O'Connorad901592009-12-13 11:25:25 -0500543 releaseRTC();
Kevin O'Connor5be04902008-05-18 17:12:06 -0400544}
545
Kevin O'Connor5be04902008-05-18 17:12:06 -0400546#define RET_ECLOCKINUSE 0x83
547
Kevin O'Connord21c0892008-11-26 17:02:43 -0500548// Wait for CX:DX microseconds
Kevin O'Connor5be04902008-05-18 17:12:06 -0400549void
550handle_1586(struct bregs *regs)
551{
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -0500552 // Use the rtc to wait for the specified time.
553 u8 statusflag = 0;
554 u32 count = (regs->cx << 16) | regs->dx;
555 int ret = set_usertimer(count, GET_SEG(SS), (u32)&statusflag);
556 if (ret) {
Kevin O'Connordfefeb52009-12-13 13:04:17 -0500557 set_code_invalid(regs, RET_ECLOCKINUSE);
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -0500558 return;
559 }
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -0500560 while (!statusflag)
Kevin O'Connoree2efa72009-09-20 15:33:08 -0400561 wait_irq();
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -0500562 set_success(regs);
Kevin O'Connor5be04902008-05-18 17:12:06 -0400563}
564
565// Set Interval requested.
566static void
567handle_158300(struct bregs *regs)
568{
569 int ret = set_usertimer((regs->cx << 16) | regs->dx, regs->es, regs->bx);
570 if (ret)
571 // Interval already set.
Kevin O'Connordfefeb52009-12-13 13:04:17 -0500572 set_code_invalid(regs, RET_EUNSUPPORTED);
Kevin O'Connor5be04902008-05-18 17:12:06 -0400573 else
574 set_success(regs);
Kevin O'Connorbdce35f2008-02-26 21:33:14 -0500575}
576
577// Clear interval requested
578static void
579handle_158301(struct bregs *regs)
580{
Kevin O'Connor5be04902008-05-18 17:12:06 -0400581 clear_usertimer();
582 set_success(regs);
Kevin O'Connorbdce35f2008-02-26 21:33:14 -0500583}
584
585static void
586handle_1583XX(struct bregs *regs)
587{
Kevin O'Connordfefeb52009-12-13 13:04:17 -0500588 set_code_unimplemented(regs, RET_EUNSUPPORTED);
Kevin O'Connorbdce35f2008-02-26 21:33:14 -0500589 regs->al--;
Kevin O'Connorbdce35f2008-02-26 21:33:14 -0500590}
591
592void
593handle_1583(struct bregs *regs)
594{
595 switch (regs->al) {
596 case 0x00: handle_158300(regs); break;
597 case 0x01: handle_158301(regs); break;
598 default: handle_1583XX(regs); break;
599 }
600}
601
Kevin O'Connor6aee52d2009-09-27 20:07:40 -0400602#define USEC_PER_RTC DIV_ROUND_CLOSEST(1000000, 1024)
603
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500604// int70h: IRQ8 - CMOS RTC
Kevin O'Connor19786762008-03-05 21:09:59 -0500605void VISIBLE16
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500606handle_70(void)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500607{
Kevin O'Connor15c1f222008-06-12 22:59:43 -0400608 debug_isr(DEBUG_ISR_70);
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500609
610 // Check which modes are enabled and have occurred.
611 u8 registerB = inb_cmos(CMOS_STATUS_B);
612 u8 registerC = inb_cmos(CMOS_STATUS_C);
613
Kevin O'Connor5be04902008-05-18 17:12:06 -0400614 if (!(registerB & (RTC_B_PIE|RTC_B_AIE)))
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500615 goto done;
Kevin O'Connorf3587592009-02-15 13:02:56 -0500616 if (registerC & RTC_B_AIE) {
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500617 // Handle Alarm Interrupt.
Kevin O'Connora83ff552009-01-01 21:00:59 -0500618 u32 eax=0, flags;
619 call16_simpint(0x4a, &eax, &flags);
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500620 }
Kevin O'Connorf3587592009-02-15 13:02:56 -0500621 if (!(registerC & RTC_B_PIE))
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500622 goto done;
623
624 // Handle Periodic Interrupt.
625
Kevin O'Connorad901592009-12-13 11:25:25 -0500626 check_preempt();
627
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500628 if (!GET_BDA(rtc_wait_flag))
629 goto done;
630
631 // Wait Interval (Int 15, AH=83) active.
632 u32 time = GET_BDA(user_wait_timeout); // Time left in microseconds.
Kevin O'Connor6aee52d2009-09-27 20:07:40 -0400633 if (time < USEC_PER_RTC) {
Kevin O'Connor5be04902008-05-18 17:12:06 -0400634 // Done waiting - write to specified flag byte.
Kevin O'Connor9f985422009-09-09 11:34:39 -0400635 struct segoff_s segoff = GET_BDA(user_wait_complete_flag);
636 u16 ptr_seg = segoff.seg;
637 u8 *ptr_far = (u8*)(segoff.offset+0);
638 u8 oldval = GET_FARVAR(ptr_seg, *ptr_far);
639 SET_FARVAR(ptr_seg, *ptr_far, oldval | 0x80);
Kevin O'Connor5be04902008-05-18 17:12:06 -0400640
641 clear_usertimer();
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500642 } else {
643 // Continue waiting.
Kevin O'Connor6aee52d2009-09-27 20:07:40 -0400644 time -= USEC_PER_RTC;
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500645 SET_BDA(user_wait_timeout, time);
646 }
647
648done:
Kevin O'Connorf54c1502008-06-14 15:56:16 -0400649 eoi_pic2();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500650}