Cleanup boot order determination.
[seabios.git] / src / cmos.h
1 // Definitions for X86 CMOS non-volatile memory access.
2 //
3 // Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
4 //
5 // This file may be distributed under the terms of the GNU GPLv3 license.
6 #ifndef __CMOS_H
7 #define __CMOS_H
8
9 #include "ioport.h" // inb, outb
10
11 #define CMOS_RTC_SECONDS         0x00
12 #define CMOS_RTC_SECONDS_ALARM   0x01
13 #define CMOS_RTC_MINUTES         0x02
14 #define CMOS_RTC_MINUTES_ALARM   0x03
15 #define CMOS_RTC_HOURS           0x04
16 #define CMOS_RTC_HOURS_ALARM     0x05
17 #define CMOS_RTC_DAY_WEEK        0x06
18 #define CMOS_RTC_DAY_MONTH       0x07
19 #define CMOS_RTC_MONTH           0x08
20 #define CMOS_RTC_YEAR            0x09
21 #define CMOS_STATUS_A            0x0a
22 #define CMOS_STATUS_B            0x0b
23 #define CMOS_STATUS_C            0x0c
24 #define CMOS_STATUS_D            0x0d
25 #define CMOS_RESET_CODE          0x0f
26 #define CMOS_FLOPPY_DRIVE_TYPE   0x10
27 #define CMOS_DISK_DATA           0x12
28 #define CMOS_EQUIPMENT_INFO      0x14
29 #define CMOS_MEM_BASE_LOW        0x17
30 #define CMOS_MEM_BASE_HIGH       0x18
31 #define CMOS_DISK_DRIVE1_TYPE    0x19
32 #define CMOS_DISK_DRIVE2_TYPE    0x1a
33 #define CMOS_DISK_DRIVE1_CYL     0x1b
34 #define CMOS_DISK_DRIVE2_CYL     0x24
35 #define CMOS_MEM_EXTMEM_LOW      0x30
36 #define CMOS_MEM_EXTMEM_HIGH     0x31
37 #define CMOS_CENTURY             0x32
38 #define CMOS_MEM_EXTMEM2_LOW     0x34
39 #define CMOS_MEM_EXTMEM2_HIGH    0x35
40 #define CMOS_BIOS_BOOTFLAG1      0x38
41 #define CMOS_BIOS_DISKTRANSFLAG  0x39
42 #define CMOS_BIOS_BOOTFLAG2      0x3d
43
44 // CMOS_STATUS_B bitdefs
45 #define CSB_EN_ALARM_IRQ (1<<5)
46
47 // CMOS_FLOPPY_DRIVE_TYPE bitdefs
48 #define CFD_NO_DRIVE 0
49 #define CFD_360KB    1
50 #define CFD_12MB     2
51 #define CFD_720KB    3
52 #define CFD_144MB    4
53 #define CFD_288MB    5
54
55 static inline u8
56 inb_cmos(u8 reg)
57 {
58     outb(reg, PORT_CMOS_INDEX);
59     return inb(PORT_CMOS_DATA);
60 }
61
62 static inline void
63 outb_cmos(u8 val, u8 reg)
64 {
65     outb(reg, PORT_CMOS_INDEX);
66     outb(val, PORT_CMOS_DATA);
67 }
68
69 #endif // cmos.h