e6e07c9a91e736d7426eee00e1f526dc8265143f
[seabios.git] / src / config.h
1 #ifndef __CONFIG_H
2 #define __CONFIG_H
3
4 #include "autoconf.h"
5
6 // Configuration definitions.
7
8 //#define CONFIG_APPNAME  "QEMU"
9 //#define CONFIG_CPUNAME8 "QEMUCPU "
10 //#define CONFIG_APPNAME6 "QEMU  "
11 //#define CONFIG_APPNAME4 "QEMU"
12 #define CONFIG_APPNAME  "Bochs"
13 #define CONFIG_CPUNAME8 "BOCHSCPU"
14 #define CONFIG_APPNAME6 "BOCHS "
15 #define CONFIG_APPNAME4 "BXPC"
16
17 // Maximum number of map entries in the e820 map
18 #define CONFIG_MAX_E820 32
19 // Space to reserve in f-segment for dynamic allocations
20 #define CONFIG_MAX_BIOSTABLE 2048
21 // Space to reserve in high-memory for tables
22 #define CONFIG_MAX_HIGHTABLE (64*1024)
23 // Largest supported externaly facing drive id
24 #define CONFIG_MAX_EXTDRIVE 16
25
26 #define CONFIG_MODEL_ID      0xFC
27 #define CONFIG_SUBMODEL_ID   0x00
28 #define CONFIG_BIOS_REVISION 0x01
29
30 // Various memory addresses used by the code.
31 #define BUILD_STACK_ADDR          0x7000
32 #define BUILD_S3RESUME_STACK_ADDR 0x1000
33 #define BUILD_AP_BOOT_ADDR        0x10000
34 #define BUILD_EBDA_MINIMUM        0x90000
35 #define BUILD_LOWRAM_END          0xa0000
36 #define BUILD_ROM_START           0xc0000
37 #define BUILD_BIOS_ADDR           0xf0000
38 #define BUILD_BIOS_SIZE           0x10000
39 // 32KB for shadow ram copying (works around emulator deficiencies)
40 #define BUILD_BIOS_TMP_ADDR       0x30000
41 #define BUILD_MAX_HIGHMEM         0xe0000000
42
43 // Support old pci mem assignment behaviour
44 //#define CONFIG_OLD_PCIMEM_ASSIGNMENT    1
45 #if CONFIG_OLD_PCIMEM_ASSIGNMENT
46 #define BUILD_PCIMEM_START        0xf0000000
47 #define BUILD_PCIMEM_SIZE         (BUILD_PCIMEM_END - BUILD_PCIMEM_START)
48 #define BUILD_PCIMEM_END          0xfec00000    /* IOAPIC is mapped at */
49 #define BUILD_PCIPREFMEM_START    0
50 #define BUILD_PCIPREFMEM_SIZE     0
51 #define BUILD_PCIPREFMEM_END      0
52 #else
53 #define BUILD_PCIMEM_START        0xf0000000
54 #define BUILD_PCIMEM_SIZE         0x08000000    /* half- of pci window */
55 #define BUILD_PCIMEM_END          (BUILD_PCIMEM_START + BUILD_PCIMEM_SIZE)
56 #define BUILD_PCIPREFMEM_START    BUILD_PCIMEM_END
57 #define BUILD_PCIPREFMEM_SIZE     (BUILD_PCIPREFMEM_END - BUILD_PCIPREFMEM_START)
58 #define BUILD_PCIPREFMEM_END      0xfec00000    /* IOAPIC is mapped at */
59 #endif
60
61 #define BUILD_APIC_ADDR           0xfee00000
62 #define BUILD_IOAPIC_ADDR         0xfec00000
63
64 #define BUILD_SMM_INIT_ADDR       0x38000
65 #define BUILD_SMM_ADDR            0xa8000
66 #define BUILD_SMM_SIZE            0x8000
67
68 // Important real-mode segments
69 #define SEG_IVT      0x0000
70 #define SEG_BDA      0x0040
71 #define SEG_BIOS     0xf000
72
73 // Segment definitions in protected mode (see rombios32_gdt in misc.c)
74 #define SEG32_MODE32_CS    (1 << 3)
75 #define SEG32_MODE32_DS    (2 << 3)
76 #define SEG32_MODE16_CS    (3 << 3)
77 #define SEG32_MODE16_DS    (4 << 3)
78 #define SEG32_MODE16BIG_CS (5 << 3)
79 #define SEG32_MODE16BIG_DS (6 << 3)
80
81 // Debugging levels.  If non-zero and CONFIG_DEBUG_LEVEL is greater
82 // than the specified value, then the corresponding irq handler will
83 // report every enter event.
84 #define DEBUG_ISR_02 1
85 #define DEBUG_HDL_05 1
86 #define DEBUG_ISR_08 20
87 #define DEBUG_ISR_09 9
88 #define DEBUG_ISR_0e 9
89 #define DEBUG_HDL_10 20
90 #define DEBUG_HDL_11 2
91 #define DEBUG_HDL_12 2
92 #define DEBUG_HDL_13 10
93 #define DEBUG_HDL_14 2
94 #define DEBUG_HDL_15 9
95 #define DEBUG_HDL_16 9
96 #define DEBUG_HDL_17 2
97 #define DEBUG_HDL_18 1
98 #define DEBUG_HDL_19 1
99 #define DEBUG_HDL_1a 9
100 #define DEBUG_HDL_40 1
101 #define DEBUG_ISR_70 9
102 #define DEBUG_ISR_74 9
103 #define DEBUG_ISR_75 1
104 #define DEBUG_ISR_76 10
105 #define DEBUG_ISR_hwpic1 5
106 #define DEBUG_ISR_hwpic2 5
107 #define DEBUG_HDL_pnp 1
108 #define DEBUG_HDL_pmm 1
109 #define DEBUG_HDL_pcibios32 9
110 #define DEBUG_HDL_apm 9
111
112 #define DEBUG_unimplemented 2
113 #define DEBUG_invalid 3
114 #define DEBUG_thread 2
115
116 #endif // config.h