Misc minor updates.
[seabios.git] / src / config.h
1 #ifndef __CONFIG_H
2 #define __CONFIG_H
3
4 // Configuration definitions.
5
6 /* Dont support QEMU BIOS by default.
7  * Change CONFIG_QEMU to 1 to support QEMU. */
8 #define CONFIG_QEMU 0
9
10 #if (QEMU_SUPPORT == 1)
11 #define CONFIG_APPNAME "QEMU"
12 #else
13 #define CONFIG_APPNAME "Bochs"
14 #endif
15
16 // Configure as a coreboot payload.
17 #define CONFIG_COREBOOT 0
18
19 // Control how verbose debug output is.
20 #define CONFIG_DEBUG_LEVEL 1
21
22 // Send debugging information to serial port
23 #define CONFIG_DEBUG_SERIAL 0
24
25 #define CONFIG_FLOPPY_SUPPORT 1
26 #define CONFIG_PS2_MOUSE 1
27 #define CONFIG_ATA 1
28 #define CONFIG_KBD_CALL_INT15_4F 1
29 #define CONFIG_CDROM_BOOT 1
30 #define CONFIG_CDROM_EMU 1
31 // Support built-in PIR table in 0xf000 segment
32 #define CONFIG_PIRTABLE 1
33 // Support int 1a/b1 PCI BIOS calls
34 #define CONFIG_PCIBIOS 1
35 // Support int 15/53 APM BIOS calls
36 #define CONFIG_APMBIOS 1
37
38 /* define it if the (emulated) hardware supports SMM mode */
39 #define CONFIG_USE_SMM 1
40
41 /* if true, put the MP float table and ACPI RSDT in EBDA and the MP
42    table in RAM. Unfortunately, Linux has bugs with that, so we prefer
43    to modify the BIOS in shadow RAM */
44 #define CONFIG_USE_EBDA_TABLES 0
45
46 #define CONFIG_MAX_ATA_INTERFACES 4
47 #define CONFIG_MAX_ATA_DEVICES  (CONFIG_MAX_ATA_INTERFACES*2)
48
49 #define CONFIG_STACK_SEGMENT 0x00
50 #define CONFIG_STACK_OFFSET  0xfffe
51
52 #define CONFIG_ACPI_DATA_SIZE 0x00010000L
53
54 #define CONFIG_MODEL_ID      0xFC
55 #define CONFIG_SUBMODEL_ID   0x00
56 #define CONFIG_BIOS_REVISION 0x01
57
58 // Start of fixed addresses in 0xf0000 segment.
59 #define CONFIG_START_FIXED 0xe050
60
61 #endif // config.h