1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
|
#######################################################
#
# Main options file for coreboot
#
# Each option used by a part must be defined in
# this file. The format for options is:
#
# define <name>
# default <expr> | {<expr>} | "<string>" | none
# format "<string>"
# export always | used | never
# comment "<string>"
# end
#
# where
#
# <name> is the name of the option
# <expr> is a numeric expression
# <string> is a string
#
# Either a default value or 'default none' must
# be specified for every option. An option
# specified as 'default none' will not be exported
# (i.e. will remain undefined) unless it has
# been assigned a value.
#
# Option values can be an immediate expression that
# evaluates to a numeric value, a delayed expression
# (surrounded by curley braces), or a string
# (surrounded by double quotes.)
#
# Immediate expressions are evaluated at the time an
# option is defined or set and the numeric result
# becomes the value of the option.
#
# Delayed expression are evaluated at the time the
# option is used, either in another expression or
# when being exported.
#
# String values will have the double quotes removed
# automatically.
#
# Format strings determine the print format that is
# used when exporting options. The default format
# is "%s" for strings and "%d" for numbers.
#
# Exported options generate entries in the
# Makefile.settings file. Options can be always
# exported, exported only if used, or never exported.
#
# A comment string must be supplied for every option.
#
#######################################################
###############################################
# Architecture options
###############################################
define ARCH
default "i386"
export always
comment "Default architecture is i386, options are alpha and ppc"
end
define HAVE_MOVNTI
default 0
export always
comment "This cpu supports the MOVNTI directive"
end
###############################################
# Build options
###############################################
define CROSS_COMPILE
default ""
export always
comment "Cross compiler prefix"
end
define CC
default "$(CROSS_COMPILE)gcc"
export always
comment "Target C Compiler"
end
define HOSTCC
default "gcc"
export always
comment "Host C Compiler"
end
define CPU_OPT
default none
export used
comment "Additional per-cpu CFLAGS"
end
define OBJCOPY
default "$(CROSS_COMPILE)objcopy --gap-fill 0xff"
export always
comment "Objcopy command"
end
# Try to determine svn revision first.
# If that fails, try last svn revision in git log.
define COREBOOT_VERSION
default "2.0.0-r$(shell if [ -d $(TOP)/.svn -a -f `which svnversion` ]; then svnversion $(TOP); else if [ -d $(TOP)/.git -a -f `which git` ]; then git --git-dir=/$(TOP)/.git log|grep git-svn-id|cut -f 2 -d@|cut -f 1 -d' '|sort -g|tail -1; fi; fi)"
export always
format "\"%s\""
comment "coreboot version"
end
define COREBOOT_EXTRA_VERSION
default ""
export used
format "\"%s\""
comment "coreboot extra version"
end
define COREBOOT_BUILD
default "$(shell date)"
export always
format "\"%s\""
comment "Build date"
end
define COREBOOT_COMPILE_TIME
default "$(shell date +%T)"
export always
format "\"%s\""
comment "Build time"
end
define COREBOOT_COMPILE_BY
default "$(shell whoami)"
export always
format "\"%s\""
comment "Who build this image"
end
define COREBOOT_COMPILE_HOST
default "$(shell hostname)"
export always
format "\"%s\""
comment "Build host"
end
define COREBOOT_COMPILE_DOMAIN
default "$(shell dnsdomainname)"
export always
format "\"%s\""
comment "Build domain name"
end
define COREBOOT_COMPILER
default "$(shell $(CC) $(CFLAGS) -v 2>&1 | tail -n 1)"
export always
format "\"%s\""
comment "Build compiler"
end
define COREBOOT_LINKER
default "$(shell $(CC) -Wl,--version 2>&1 | grep \" ld\")"
export always
format "\"%s\""
comment "Build linker"
end
define COREBOOT_ASSEMBLER
default "$(shell touch dummy.s ; $(CC) -c -Wa,-v dummy.s 2>&1; rm -f dummy.s dummy.o )"
export always
format "\"%s\""
comment "Build assembler"
end
define CONFIG_CHIP_CONFIGURE
default 0
export used
comment "Use new chip_configure method for configuring (non-pci) devices"
end
define CONFIG_USE_INIT
default 0
export always
comment "Use stage 1 initialization code"
end
define COREBOOT_V2
default 1
export always
comment "This is used by code to determine v2 vs v3"
end
###############################################
# ROM image options
###############################################
define HAVE_FALLBACK_BOOT
format "%d"
default 0
export always
comment "Set if fallback booting required"
end
define HAVE_FAILOVER_BOOT
format "%d"
default 0
export always
comment "Set if failover booting required"
end
define USE_FALLBACK_IMAGE
format "%d"
default 0
export used
comment "Set to build a fallback image"
end
define USE_FAILOVER_IMAGE
format "%d"
default 0
export used
comment "Set to build a failover image"
end
define FALLBACK_SIZE
default 65536
format "0x%x"
export used
comment "Default fallback image size"
end
define FAILOVER_SIZE
default 0
format "0x%x"
export used
comment "Default failover image size"
end
define ROM_SIZE
default none
format "0x%x"
export used
comment "Size of your ROM"
end
define ROM_IMAGE_SIZE
default 65535
format "0x%x"
export always
comment "Default image size"
end
define ROM_SECTION_SIZE
default {FALLBACK_SIZE}
format "0x%x"
export used
comment "Default rom section size"
end
define ROM_SECTION_OFFSET
default {ROM_SIZE - FALLBACK_SIZE}
format "0x%x"
export used
comment "Default rom section offset"
end
define PAYLOAD_SIZE
default {ROM_SECTION_SIZE - ROM_IMAGE_SIZE}
format "0x%x"
export always
comment "Default payload size"
end
define _ROMBASE
default {PAYLOAD_SIZE}
format "0x%x"
export always
comment "Base address of coreboot in ROM"
end
define _ROMSTART
default none
format "0x%x"
export used
comment "Start address of coreboot in ROM"
end
define _RESET
default {_ROMBASE}
format "0x%x"
export always
comment "Hardware reset vector address"
end
define _EXCEPTION_VECTORS
default {_ROMBASE+0x100}
format "0x%x"
export always
comment "Address of exception vector table"
end
define STACK_SIZE
default 0x2000
format "0x%x"
export always
comment "Default stack size"
end
define HEAP_SIZE
default 0x2000
format "0x%x"
export always
comment "Default heap size"
end
define _RAMBASE
default none
format "0x%x"
export always
comment "Base address of coreboot in RAM"
end
define _RAMSTART
default none
format "0x%x"
export used
comment "Start address of coreboot in RAM"
end
define USE_DCACHE_RAM
default 0
export always
comment "Use data cache as temporary RAM if possible"
end
define CAR_FAM10
default 0
export always
comment "AMD family 10 CAR requires additional setup"
end
define DCACHE_RAM_BASE
default 0xc0000
format "0x%x"
export always
comment "Base address of data cache when using it for temporary RAM"
end
define DCACHE_RAM_SIZE
default 0x1000
format "0x%x"
export always
comment "Size of data cache when using it for temporary RAM"
end
define DCACHE_RAM_GLOBAL_VAR_SIZE
default 0
format "0x%x"
export always
comment "Size of region that for global variable of cache as ram stage"
end
define CONFIG_AP_CODE_IN_CAR
default 0
export always
comment "will copy coreboot_apc to AP cache ane execute in AP"
end
define MEM_TRAIN_SEQ
default 0
export always
comment "0: three for in bsp, 1: on every core0, 2: one for on bsp"
end
define WAIT_BEFORE_CPUS_INIT
default 0
export always
comment "execute cpus_ready_for_init if it is set to 1"
end
define XIP_ROM_BASE
default 0
format "0x%x"
export used
comment "Start address of area to cache during coreboot execution directly from ROM"
end
define XIP_ROM_SIZE
default 0
format "0x%x"
export used
comment "Size of area to cache during coreboot execution directly from ROM"
end
define CONFIG_COMPRESS
default 1
export always
comment "Set for compressed image"
end
define CONFIG_UNCOMPRESSED
format "%d"
default {!CONFIG_COMPRESS}
export always
comment "Set for uncompressed image"
end
define CONFIG_LB_MEM_TOPK
format "%d"
default 2048
export always
comment "Kilobytes of memory to initialized before executing code from RAM"
end
define HAVE_OPTION_TABLE
default 0
export always
comment "Export CMOS option table"
end
define USE_OPTION_TABLE
format "%d"
default {HAVE_OPTION_TABLE && !USE_FALLBACK_IMAGE}
export always
comment "Use option table"
end
###############################################
# CMOS variable options
###############################################
define LB_CKS_RANGE_START
default 49
format "%d"
export always
comment "First CMOS byte to use for coreboot options"
end
define LB_CKS_RANGE_END
default 125
format "%d"
export always
comment "Last CMOS byte to use for coreboot options"
end
define LB_CKS_LOC
default 126
format "%d"
export always
comment "Pair of bytes to use for CMOS checksum"
end
###############################################
# Build targets
###############################################
define CRT0
default "$(TOP)/src/arch/$(ARCH)/init/crt0.S.lb"
export always
comment "Main initialization target"
end
###############################################
# Debugging/Logging options
###############################################
define DEBUG
default 0
export always
comment "Enable x86emu debugging code"
end
define CONFIG_CONSOLE_VGA
default 0
export always
comment "Log messages to any VGA-compatible device (may require *_ROM_RUN to bring up)"
end
define CONFIG_CONSOLE_VGA_MULTI
default 0
export always
comment "Multi VGA console"
end
define CONFIG_CONSOLE_VGA_ONBOARD_AT_FIRST
default 0
export always
comment "Use onboard VGA instead of add on VGA card"
end
define CONFIG_CONSOLE_BTEXT
default 0
export always
comment "Log messages to btext fb console"
end
define CONFIG_CONSOLE_LOGBUF
default 0
export always
comment "Log messages to buffer"
end
define CONFIG_CONSOLE_SROM
default 0
export always
comment "Log messages to SROM console"
end
define CONFIG_CONSOLE_SERIAL8250
default 0
export always
comment "Log messages to 8250 uart based serial console"
end
define CONFIG_USBDEBUG_DIRECT
default 0
export always
comment "Log messages to ehci debug port console"
end
define DEFAULT_CONSOLE_LOGLEVEL
default 7
export always
comment "Console will log at this level unless changed"
end
define MAXIMUM_CONSOLE_LOGLEVEL
default 8
export always
comment "Error messages up to this level can be printed"
end
define CONFIG_SERIAL_POST
default 0
export always
comment "Enable SERIAL POST codes"
end
define NO_POST
default none
export used
comment "Disable POST codes"
end
define TTYS0_BASE
default 0x3f8
format "0x%x"
export always
comment "Base address for 8250 uart for the serial console"
end
define TTYS0_BAUD
default 115200
export always
comment "Default baud rate for serial console"
end
define TTYS0_DIV
default none
format "%d"
export used
comment "Allow UART divisor to be set explicitly"
end
define TTYS0_LCS
default 0x3
format "0x%x"
export always
comment "Default flow control settings for the 8250 serial console uart"
end
define CONFIG_USE_PRINTK_IN_CAR
default 0
export always
comment "use printk instead of print in CAR stage code"
end
define ASSEMBLER_DEBUG
default 0
export always
comment "Create disassembly files for debugging"
end
###############################################
# Mainboard options
###############################################
define MAINBOARD
default "Mainboard_not_set"
export always
comment "Mainboard name"
end
define MAINBOARD_PART_NUMBER
default "Part_number_not_set"
export always
format "\"%s\""
comment "Part number of mainboard"
end
define MAINBOARD_VENDOR
default "Vendor_not_set"
export always
format "\"%s\""
comment "Vendor of mainboard"
end
define MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID
default 0
export always
comment "PCI Vendor ID of mainboard manufacturer"
end
define MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID
default 0
format "0x%x"
export always
comment "PCI susbsystem device id assigned my mainboard manufacturer"
end
define MAINBOARD_POWER_ON_AFTER_POWER_FAIL
default none
export used
comment "Default power on after power fail setting"
end
define CONFIG_SYS_CLK_FREQ
default none
export used
comment "System clock frequency in MHz"
end
define CONFIG_MAX_PCI_BUSES
default 255
export always
comment "Maximum number of PCI buses to search for devices"
end
###############################################
# SMP options
###############################################
define CONFIG_SMP
default 0
export always
comment "Define if we support SMP"
end
define CONFIG_MAX_CPUS
default 1
export always
comment "Maximum CPU count for this machine"
end
define CONFIG_MAX_PHYSICAL_CPUS
default 1
export always
comment "Maximum physical CPU count for this machine"
end
define CONFIG_LOGICAL_CPUS
default 0
export always
comment "Should multiple cpus per die be enabled?"
end
define CONFIG_AP_IN_SIPI_WAIT
default 0
export always
comment "Should application processors go to SIPI wait state after initialization? (Required for Intel Core Duo)"
end
define HAVE_MP_TABLE
default none
export used
comment "Define to build an MP table"
end
define SERIAL_CPU_INIT
default 1
export always
comment "Serialize CPU init"
end
define APIC_ID_OFFSET
default 0
export always
comment "We need to share this value between cache_as_ram_auto.c and northbridge.c"
end
define ENABLE_APIC_EXT_ID
default 0
export always
comment "Enable APIC ext id mode 8 bit"
end
define LIFT_BSP_APIC_ID
default 0
export always
comment "decide if we lift bsp apic id while ap apic id"
end
###############################################
# Boot options
###############################################
define CONFIG_MULTIBOOT
default 1
export always
comment "Use Multiboot (rather than ELF boot notes) to boot the payload"
end
define CONFIG_IDE_PAYLOAD
default 0
export always
comment "Boot from IDE device"
end
define CONFIG_ROM_PAYLOAD
default 0
export always
comment "Boot image is located in ROM"
end
define CONFIG_ROM_PAYLOAD_START
default {0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1}
format "0x%x"
export always
comment "ROM stream start location"
end
define CONFIG_COMPRESSED_PAYLOAD_NRV2B
default 0
export always
comment "NRV2B compressed boot image is located in ROM"
end
define CONFIG_COMPRESSED_PAYLOAD_LZMA
default 0
export always
comment "LZMA compressed boot image is located in ROM"
end
define CONFIG_PRECOMPRESSED_PAYLOAD
default 0
export always
comment "boot image is already compressed"
end
define CONFIG_SERIAL_PAYLOAD
default 0
export always
comment "Download boot image from serial port"
end
define CONFIG_FS_PAYLOAD
default 0
export always
comment "Boot from a filesystem"
end
define CONFIG_FS_EXT2
default 0
export always
comment "Enable ext2 filesystem support"
end
define CONFIG_FS_ISO9660
default 0
export always
comment "Enable ISO9660 filesystem support"
end
define CONFIG_FS_FAT
default 0
export always
comment "Enable FAT filesystem support"
end
define CONFIG_CBFS
default 0
export always
comment "The new CBFS file system"
end
define AUTOBOOT_DELAY
default 2
export always
comment "Delay (in seconds) before autobooting"
end
define AUTOBOOT_CMDLINE
default "hdc1:/vmlinuz root=/dev/hdc3 console=tty0 console=ttyS0,115200"
export always
format "\"%s\""
comment "Default command line when autobooting"
end
define USE_WATCHDOG_ON_BOOT
default 0
export always
comment "Use the watchdog on booting"
end
###############################################
# Plugin Device support options
###############################################
define CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT
default 1
export always
comment "Enable support for plugin Hypertransport busses"
end
define CONFIG_AGP_PLUGIN_SUPPORT
default 1
export always
comment "Enable support for plugin AGP busses"
end
define CONFIG_CARDBUS_PLUGIN_SUPPORT
default 1
export always
comment "Enable support cardbus plugin cards"
end
define CONFIG_PCIX_PLUGIN_SUPPORT
default 1
export always
comment "Enable support for plugin PCI-X busses"
end
define CONFIG_PCIEXP_PLUGIN_SUPPORT
default 1
export always
comment "Enable support for plugin PCI-E busses"
end
###############################################
# IRQ options
###############################################
define HAVE_PIRQ_TABLE
default none
export used
comment "Define if we have a PIRQ table"
end
define PIRQ_ROUTE
default 0
export always
comment "Define if we have a PIRQ table and want routing IRQs"
end
define IRQ_SLOT_COUNT
default none
export used
comment "Number of IRQ slots"
end
define CONFIG_PCIBIOS_IRQ
default none
export used
comment "PCIBIOS IRQ support"
end
define CONFIG_IOAPIC
default none
export used
comment "IOAPIC support"
end
###############################################
# IDE specific options
###############################################
define CONFIG_IDE
default 0
export always
comment "Define to include IDE support"
end
define IDE_BOOT_DRIVE
default 0
export always
comment "Disk number of boot drive"
end
define IDE_SWAB
default none
export used
comment "Swap bytes when reading from IDE device"
end
define IDE_OFFSET
default 0
export always
comment "Sector at which to start searching for boot image"
end
###############################################
# Options for memory mapped I/O
###############################################
define PCI_IO_CFG_EXT
default 0
export always
comment "allow 4K register space via io CFG port"
end
define PCIC0_CFGADDR
default none
format "0x%x"
export used
comment "Address of PCI Configuration Address Register"
end
define PCIC0_CFGDATA
default none
format "0x%x"
export used
comment "Address of PCI Configuration Data Register"
end
define ISA_IO_BASE
default none
format "0x%x"
export used
comment "Base address of PCI/ISA I/O address range"
end
define ISA_MEM_BASE
default none
format "0x%x"
export used
comment "Base address of PCI/ISA memory address range"
end
define PNP_CFGADDR
default none
format "0x%x"
export used
comment "PNP Configuration Address Register offset"
end
define PNP_CFGDATA
default none
format "0x%x"
export used
comment "PNP Configuration Data Register offset"
end
define _IO_BASE
default none
format "0x%x"
export used
comment "Base address of memory mapped I/O operations"
end
###############################################
# Options for embedded systems
###############################################
define EMBEDDED_RAM_SIZE
default none
export used
comment "Embedded boards generally have fixed RAM size"
end
###############################################
# Misc options
###############################################
define CONFIG_GDB_STUB
default 0
export used
comment "Compile in gdb stub support?"
end
define HAVE_INIT_TIMER
default 0
export always
comment "Have a init_timer function"
end
define HAVE_HARD_RESET
default none
export used
comment "Have hard reset"
end
define HAVE_SMI_HANDLER
default 0
export always
comment "Set, if the board needs an SMI handler"
end
define MEMORY_HOLE
default none
export used
comment "Set to deal with memory hole"
end
define MAX_REBOOT_CNT
default 3
export always
comment "Set maximum reboots"
end
###############################################
# Misc device options
###############################################
define HAVE_FANCTL
default 0
export used
comment "Include board specific FAN control initialization"
end
define CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2
default 0
export used
comment "Use timer2 to callibrate the x86 time stamp counter"
end
define INTEL_PPRO_MTRR
default none
export used
comment ""
end
define CONFIG_UDELAY_TSC
default 0
export used
comment "Implement udelay with the x86 time stamp counter"
end
define CONFIG_UDELAY_IO
default 0
export used
comment "Implement udelay with x86 io registers"
end
define FAKE_SPDROM
default 0
export always
comment "Use this to fake spd rom values"
end
define HAVE_ACPI_TABLES
default 0
export always
comment "Define to build ACPI tables"
end
define HAVE_ACPI_RESUME
default 0
export always
comment "Define to build ACPI with resume support"
end
define ACPI_SSDTX_NUM
default 0
export always
comment "extra ssdt num for PCI Device"
end
define AGP_APERTURE_SIZE
default none
export used
format "0x%x"
comment "AGP graphics virtual memory aperture size"
end
define HT_CHAIN_UNITID_BASE
default 1
export always
comment "this will be first hypertransport device's unitid base, if sb ht chain only has one ht device, it could be 0"
end
define HT_CHAIN_END_UNITID_BASE
default 0x20
export always
comment "this will be unit id of the end of hypertransport chain (usually the real SB) if it is small than HT_CHAIN_UNITID_BASE, it could be 0"
end
define SB_HT_CHAIN_UNITID_OFFSET_ONLY
default 1
export always
comment "this will decided if only offset SB hypertransport chain"
end
define SB_HT_CHAIN_ON_BUS0
default 0
export always
comment "this will make SB hypertransport chain sit on bus 0, if it is 1, will put sb ht chain on bus 0, if it is 2 will put other chain on 0x40, 0x80, 0xc0"
end
define PCI_BUS_SEGN_BITS
default 0
export always
comment "It could be 0, 1, 2, 3 and 4 only"
end
define MMCONF_SUPPORT
default 0
export always
comment "enable mmconfig for pci conf"
end
define MMCONF_SUPPORT_DEFAULT
default 0
export always
comment "enable mmconfig for pci conf"
end
define MMCONF_BASE_ADDRESS
default none
format "0x%x"
export used
comment "enable mmconfig base address"
end
define HW_MEM_HOLE_SIZEK
default 0
export always
comment "Opteron E0 later memory hole size in K, 0 mean disable"
end
define HW_MEM_HOLE_SIZE_AUTO_INC
default 0
export always
comment "Opteron E0 later memory hole size auto increase to avoid hole startk equal to basek"
end
define CONFIG_VAR_MTRR_HOLE
default 1
export always
comment "using hole in MTRR instead of increasing method"
end
define K8_HT_FREQ_1G_SUPPORT
default 0
export always
comment "Optern E0 later could support 1G HT, but still depends MB design"
end
define K8_REV_F_SUPPORT
default 0
export always
comment "Opteron Rev F (DDR2) support"
end
define CBB
default 0
export always
comment "Opteron cpu bus num base"
end
define CDB
default 0x18
export always
comment "Opteron cpu device num base"
end
define HT3_SUPPORT
default 0
export always
comment "Hypertransport 3 support, include ac HT and unganged sublink feature"
end
define EXT_RT_TBL_SUPPORT
default 0
export always
comment "support AMD family 10 extended routing table via F0x158, normally is enabled when node nums is greater than 8"
end
define EXT_CONF_SUPPORT
default 0
export always
comment "support AMD family 10 extended config space for ram, bus, io, mmio via F1x110, normally is enabled when HT3 is enabled and non ht chain nums is greater than 4"
end
define DIMM_SUPPORT
default 0x0108
format "0x%x"
export always
comment "DIMM support: bit 0 - sdram, bit 1: ddr1, bit 2: ddr2, bit 3: ddr3, bit 4: fbdimm, bit 8: reg"
end
define CPU_SOCKET_TYPE
default 0x10
export always
comment "cpu socket type, 0x10 mean Socket F, 0x11 mean socket M2, 0x20, Soxket G, and 0x21 mean socket M3"
end
define CPU_ADDR_BITS
default 36
export always
comment "CPU hardware address lines num, for AMD K8 could be 40, and AMD family 10 could be 48"
end
define CONFIG_VGA_ROM_RUN
default 0
export always
comment "Init x86 ROMs on VGA-class PCI devices"
end
define CONFIG_PCI_ROM_RUN
default 0
export always
comment "Init x86 ROMs on all PCI devices"
end
define CONFIG_PCI_OPTION_ROM_RUN_YABEL
default 0
export used
comment "Use Yabel instead of old bios emulator"
end
define CONFIG_YABEL_DEBUG_FLAGS
default 0
export used
comment "YABEL debug flags, for possible values, see util/x86emu/yabel/debug.h"
end
define CONFIG_YABEL_PCI_ACCESS_OTHER_DEVICES
default 0
export used
comment "Allow Option ROMs executed by YABEL to access the config space of devices other than the one YABEL is running for. This may be needed by some onboard Graphics cards ROMs."
end
define CONFIG_PCI_OPTION_ROM_RUN_VM86
default 0
export used
comment "Use Yabel instead of old bios emulator"
end
define CONFIG_PCI_64BIT_PREF_MEM
default 0
export always
comment "allow PCI device get 4G above Region as pref mem"
end
define CONFIG_AMDMCT
default 0
export always
comment "use AMD MCT to init RAM instead of native code"
end
define AMD_UCODE_PATCH_FILE
default none
export used
format "\"%s\""
comment "name of the microcode patch file"
end
define K8_MEM_BANK_B_ONLY
default 0
export always
comment "use AMD K8's memory bank B only to make a 64bit memory system and memory bank A is free, such as Filbert."
end
define CONFIG_VIDEO_MB
default none
export used
comment "Integrated graphics with UMA has dynamic setup"
end
define CONFIG_GFXUMA
default none
export used
comment "GFX UMA"
end
define HAVE_MAINBOARD_RESOURCES
default 0
export always
comment "Enable if the mainboard/chipset requires extra entries in the memory map"
end
define HAVE_LOW_TABLES
default 1
export always
comment "Enable if ACPI, PIRQ, MP tables are supposed to live in the low megabyte"
end
define HAVE_HIGH_TABLES
default 0
export always
comment "Enable if ACPI, PIRQ, MP tables are supposed to live at top of memory"
end
define CONFIG_SPLASH_GRAPHIC
default 0
export used
comment "Paint a splash screen"
end
define CONFIG_GX1_VIDEO
default 0
export used
comment "Build in GX1's graphic support"
end
define CONFIG_GX1_VIDEOMODE
default none
export used
comment "Define video mode after reset"
# could be
# 0 for 640x480
# 1 for 800x600
# 2 for 1024x768
# 3 for 1280x960
# 4 for 1280x1024
end
define CONFIG_PCIE_CONFIGSPACE_HOLE
default 0
export always
comment "Leave a hole for PCIe config space in the device allocator"
end
###############################################
# Board specific options
###############################################
###############################################
# Options for motorola/sandpoint
###############################################
define CONFIG_SANDPOINT_ALTIMUS
default 0
export never
comment "Configure Sandpoint with Altimus PMC"
end
define CONFIG_SANDPOINT_TALUS
default 0
export never
comment "Configure Sandpoint with Talus PMC"
end
define CONFIG_SANDPOINT_UNITY
default 0
export never
comment "Configure Sandpoint with Unity PMC"
end
define CONFIG_SANDPOINT_VALIS
default 0
export never
comment "Configure Sandpoint with Valis PMC"
end
define CONFIG_SANDPOINT_GYRUS
default 0
export never
comment "Configure Sandpoint with Gyrus PMC"
end
###############################################
# Options for totalimpact/briq
###############################################
define CONFIG_BRIQ_750FX
default 0
export never
comment "Configure briQ with PowerPC 750FX"
end
define CONFIG_BRIQ_7400
default 0
export never
comment "Configure briQ with PowerPC G4"
end
|