diff options
author | Marvin Borner | 2020-04-18 17:45:30 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-18 17:45:30 +0200 |
commit | 54d848127e2026b710463508b1e6ca89c2b4b068 (patch) | |
tree | 73929602c8824bc6fa06236840b6cac664448241 /src/kernel/cmos | |
parent | 8d78616a2b80c7625c1aa9ca4733e48a8bf8bf22 (diff) |
I don't know HOW I did it, but it works!
I finally fixed the acpi tables with some memory mapping magic and
paging allocations, which seems to do the trick. YAY.
Diffstat (limited to 'src/kernel/cmos')
-rw-r--r-- | src/kernel/cmos/rtc.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/kernel/cmos/rtc.c b/src/kernel/cmos/rtc.c index 6108a1e..c995be2 100644 --- a/src/kernel/cmos/rtc.c +++ b/src/kernel/cmos/rtc.c @@ -24,7 +24,6 @@ uint8_t get_rtc_register(int reg) void read_rtc() { - halt_loop(); unsigned int century = 20; // ... uint8_t last_second; uint8_t last_minute; @@ -37,15 +36,13 @@ void read_rtc() while (get_update_in_progress_flag()) { }; - halt_loop(); second = get_rtc_register(0x00); minute = get_rtc_register(0x02); hour = get_rtc_register(0x04); day = get_rtc_register(0x07); month = get_rtc_register(0x08); year = get_rtc_register(0x09); - halt_loop(); - // century = get_rtc_register(fadt->century); // TODO: Fix fadt table (page fault!) + century = get_rtc_register(fadt->century); // Try until the values are the same (fix for RTC updates) do { @@ -65,7 +62,7 @@ void read_rtc() day = get_rtc_register(0x07); month = get_rtc_register(0x08); year = get_rtc_register(0x09); - // century = get_rtc_register(fadt->century); + century = get_rtc_register(fadt->century); } while ((last_second != second) || (last_minute != minute) || (last_hour != hour) || (last_day != day) || (last_month != month) || (last_year != year) || (last_century != century)); @@ -79,7 +76,7 @@ void read_rtc() day = (uint8_t)((day & 0x0F) + ((day / 16) * 10)); month = (uint8_t)((month & 0x0F) + ((month / 16) * 10)); year = (year & 0x0F) + ((year / 16) * 10); - // century = (century & 0x0F) + ((century / 16) * 10); + century = (century & 0x0F) + ((century / 16) * 10); } year += century * 100; @@ -92,7 +89,6 @@ void read_rtc() void rtc_print() { - log("%d", fadt->century); read_rtc(); info("Current time: %d:%d:%d %d/%d/%d", hour, minute, second, month, day, year); } |