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
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
|
##
## This file is part of the coreboot project.
##
## Copyright (C) 2013 DMP Electronics Inc.
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; version 2 of the License.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
##
if BOARD_DMP_EX
config BOARD_SPECIFIC_OPTIONS # dummy
def_bool y
select CPU_DMP_VORTEX86EX
select NORTHBRIDGE_DMP_VORTEX86EX
select SOUTHBRIDGE_DMP_VORTEX86EX
select HAVE_PIRQ_TABLE
select BOARD_ROMSIZE_KB_256
select ROMCC
select HAVE_DEBUG_RAM_SETUP
config MAINBOARD_DIR
string
default dmp/vortex86ex
config MAINBOARD_PART_NUMBER
string
default "Vortex86EX"
config IRQ_SLOT_COUNT
int
default 12
config ID_SECTION_OFFSET
# Vortex86 ROM fixed data areas used too big range, we need
# to move ID from default address to another place.
# 18K below top of ROM should be ok.
hex
default 0x4800
# SPI I/O base address control.
config I2C_BASE
hex
default 0xfb00
menu "On-Chip Device Power Down Control"
config TEMP_POWERDOWN
bool "Temperature sensor power-down"
config SATA_POWERDOWN
bool "SATA power-down"
config ADC_POWERDOWN
bool "ADC power-down"
config PCIE0_POWERDOWN
bool "PCIE0 power-down"
config MAC_POWERDOWN
bool "MAC power-down"
config USB1_POWERDOWN
bool "USB2.0 Host Controller 1 power-down"
config IDE_POWERDOWN
bool "IDE power-down"
endmenu
menu "Watchdog Timer setting"
config WDT1_INITIALIZE
bool "Initialize WDT1"
default n
config WDT1_ENABLE
depends on WDT1_INITIALIZE
bool "Enable WDT1"
default n
choice
depends on WDT1_INITIALIZE
prompt "WDT1 Signal Select"
default WDT1_SIGNAL_RESET
config WDT1_SINGAL_NMI
bool "NMI"
config WDT1_SIGNAL_RESET
bool "Reset"
config WDT1_SIGNAL_SMI
bool "SMI"
endchoice
endmenu
menu "IDE controller setting"
choice
prompt "Operation Mode"
default IDE_NATIVE_MODE
config IDE_NATIVE_MODE
bool "Native Mode"
config IDE_LEGACY_MODE
bool "Legacy Mode"
endchoice
config IDE1_ENABLE
bool "IDE Primary channel Enable"
default y
config IDE2_ENABLE
bool "IDE Secondary channel Enable"
default y
config IDE_STANDARD_COMPATIBLE
bool "Standard IDE Compatible"
default n
help
Built-in IDE controller PCI vendor/device ID is 17F3:1012, which
is not recognized by some OSes.
This option can change IDE controller PCI vendor/device ID to
other value for software compatibility.
config IDE_COMPATIBLE_SELECTION
depends on IDE_STANDARD_COMPATIBLE
hex "IDE Compatible Selection"
default 0x808624db
help
IDE controller PCI vendor/device ID value setting.
Higher 16-bit is vendor ID, lower 16-bit is device ID.
endmenu
# GPIO setting :
menu "GPIO setting"
# Begin of GPIO0
config GPIO_P0_ENABLE
bool "GPIO port 0 Enable"
default n
config GPIO_P0_DATA_ADDR
hex "GPIO port 0 data address"
depends on GPIO_P0_ENABLE
config GPIO_P0_DIR_ADDR
hex "GPIO port 0 direction address"
depends on GPIO_P0_ENABLE
config GPIO_P0_INIT_DIR
hex "GPIO port 0 initial direction"
default 0x00
depends on GPIO_P0_ENABLE
config GPIO_P0_INIT_DATA
hex "GPIO port 0 initial data"
depends on GPIO_P0_ENABLE
# end of GPIO0
# Begin of GPIO1
config GPIO_P1_ENABLE
bool "GPIO port 1 Enable"
default n
config GPIO_P1_DATA_ADDR
hex "GPIO port 1 data address"
depends on GPIO_P1_ENABLE
config GPIO_P1_DIR_ADDR
hex "GPIO port 1 direction address"
depends on GPIO_P1_ENABLE
config GPIO_P1_INIT_DIR
hex "GPIO port 1 initial direction"
default 0x00
depends on GPIO_P1_ENABLE
config GPIO_P1_INIT_DATA
hex "GPIO port 1 initial data"
depends on GPIO_P1_ENABLE
# end of GPIO1
# Begin of GPIO2
config GPIO_P2_ENABLE
bool "GPIO port 2 Enable"
default n
config GPIO_P2_DATA_ADDR
hex "GPIO port 2 data address"
depends on GPIO_P2_ENABLE
config GPIO_P2_DIR_ADDR
hex "GPIO port 2 direction address"
depends on GPIO_P2_ENABLE
config GPIO_P2_INIT_DIR
hex "GPIO port 2 initial direction"
default 0x00
depends on GPIO_P2_ENABLE
config GPIO_P2_INIT_DATA
hex "GPIO port 2 initial data"
depends on GPIO_P2_ENABLE
# end of GPIO2
# Begin of GPIO3
config GPIO_P3_ENABLE
bool "GPIO port 3 Enable"
default n
config GPIO_P3_DATA_ADDR
hex "GPIO port 3 data address"
depends on GPIO_P3_ENABLE
config GPIO_P3_DIR_ADDR
hex "GPIO port 3 direction address"
depends on GPIO_P3_ENABLE
config GPIO_P3_INIT_DIR
hex "GPIO port 3 initial direction"
default 0x00
depends on GPIO_P3_ENABLE
config GPIO_P3_INIT_DATA
hex "GPIO port 3 initial data"
depends on GPIO_P3_ENABLE
# end of GPIO3
# Begin of GPIO4
config GPIO_P4_ENABLE
bool "GPIO port 4 Enable"
default n
config GPIO_P4_DATA_ADDR
hex "GPIO port 4 data address"
depends on GPIO_P4_ENABLE
config GPIO_P4_DIR_ADDR
hex "GPIO port 4 direction address"
depends on GPIO_P4_ENABLE
config GPIO_P4_INIT_DIR
hex "GPIO port 4 initial direction"
default 0x00
depends on GPIO_P4_ENABLE
config GPIO_P4_INIT_DATA
hex "GPIO port 4 initial data"
depends on GPIO_P4_ENABLE
# end of GPIO4
# Begin of GPIO5
config GPIO_P5_ENABLE
bool "GPIO port 5 Enable"
default n
config GPIO_P5_DATA_ADDR
hex "GPIO port 5 data address"
depends on GPIO_P5_ENABLE
config GPIO_P5_DIR_ADDR
hex "GPIO port 5 direction address"
depends on GPIO_P5_ENABLE
config GPIO_P5_INIT_DIR
hex "GPIO port 5 initial direction"
default 0x00
depends on GPIO_P5_ENABLE
config GPIO_P5_INIT_DATA
hex "GPIO port 5 initial data"
depends on GPIO_P5_ENABLE
# end of GPIO5
# Begin of GPIO6
config GPIO_P6_ENABLE
bool "GPIO port 6 Enable"
default n
config GPIO_P6_DATA_ADDR
hex "GPIO port 6 data address"
depends on GPIO_P6_ENABLE
config GPIO_P6_DIR_ADDR
hex "GPIO port 6 direction address"
depends on GPIO_P6_ENABLE
config GPIO_P6_INIT_DIR
hex "GPIO port 6 initial direction"
default 0x00
depends on GPIO_P6_ENABLE
config GPIO_P6_INIT_DATA
hex "GPIO port 6 initial data"
depends on GPIO_P6_ENABLE
# end of GPIO6
# Begin of GPIO7
config GPIO_P7_ENABLE
bool "GPIO port 7 Enable"
default n
config GPIO_P7_DATA_ADDR
hex "GPIO port 7 data address"
depends on GPIO_P7_ENABLE
config GPIO_P7_DIR_ADDR
hex "GPIO port 7 direction address"
depends on GPIO_P7_ENABLE
config GPIO_P7_INIT_DIR
hex "GPIO port 7 initial direction"
default 0x00
depends on GPIO_P7_ENABLE
config GPIO_P7_INIT_DATA
hex "GPIO port 7 initial data"
depends on GPIO_P7_ENABLE
# end of GPIO7
# Begin of GPIO8
config GPIO_P8_ENABLE
bool "GPIO port 8 Enable"
default n
config GPIO_P8_DATA_ADDR
hex "GPIO port 8 data address"
depends on GPIO_P8_ENABLE
config GPIO_P8_DIR_ADDR
hex "GPIO port 8 direction address"
depends on GPIO_P8_ENABLE
config GPIO_P8_INIT_DIR
hex "GPIO port 8 initial direction"
default 0x00
depends on GPIO_P8_ENABLE
config GPIO_P8_INIT_DATA
hex "GPIO port 8 initial data"
depends on GPIO_P8_ENABLE
# end of GPIO8
# Begin of GPIO9
config GPIO_P9_ENABLE
bool "GPIO port 9 Enable"
default n
config GPIO_P9_DATA_ADDR
hex "GPIO port 9 data address"
depends on GPIO_P9_ENABLE
config GPIO_P9_DIR_ADDR
hex "GPIO port 9 direction address"
depends on GPIO_P9_ENABLE
config GPIO_P9_INIT_DIR
hex "GPIO port 9 initial direction"
default 0x00
depends on GPIO_P9_ENABLE
config GPIO_P9_INIT_DATA
hex "GPIO port 9 initial data"
depends on GPIO_P9_ENABLE
# end of GPIO9
endmenu
# UART setting :
menu "UART setting"
# Begin of UART1
config UART1_ENABLE
bool "UART1 Enable"
default y
choice
prompt "UART1 I/O port"
default UART1_IO_PORT_3F8
depends on UART1_ENABLE
config UART1_IO_PORT_3F8
bool "0x3f8, COM1"
config UART1_IO_PORT_2F8
bool "0x2f8, COM2"
config UART1_IO_PORT_3E8
bool "0x3e8, COM3"
config UART1_IO_PORT_2E8
bool "0x2e8, COM4"
config UART1_IO_PORT_OTHER
bool "Other"
endchoice
config UART1_IO_PORT_OTHER_INPUT
hex "UART1 I/O port"
depends on UART1_ENABLE && UART1_IO_PORT_OTHER
config UART1_IO
hex
depends on UART1_ENABLE
default 0x3f8 if UART1_IO_PORT_3F8
default 0x2f8 if UART1_IO_PORT_2F8
default 0x3e8 if UART1_IO_PORT_3E8
default 0x2e8 if UART1_IO_PORT_2E8
default UART1_IO_PORT_OTHER_INPUT if UART1_IO_PORT_OTHER
choice
prompt "UART1 IRQ"
default UART1_IRQ4
depends on UART1_ENABLE
config UART1_IRQ_DISABLE
bool "Disable"
config UART1_IRQ3
bool "IRQ3, COM2"
config UART1_IRQ4
bool "IRQ4, COM1"
config UART1_IRQ5
bool "IRQ5"
config UART1_IRQ6
bool "IRQ6"
config UART1_IRQ7
bool "IRQ7"
config UART1_IRQ9
bool "IRQ9"
config UART1_IRQ10
bool "IRQ10, COM3"
config UART1_IRQ11
bool "IRQ11, COM4"
config UART1_IRQ12
bool "IRQ12"
config UART1_IRQ14
bool "IRQ14"
config UART1_IRQ15
bool "IRQ15"
endchoice
config UART1_IRQ
int
depends on UART1_ENABLE
default 0 if UART1_IRQ_DISABLE
default 3 if UART1_IRQ3
default 4 if UART1_IRQ4
default 5 if UART1_IRQ5
default 6 if UART1_IRQ6
default 7 if UART1_IRQ7
default 9 if UART1_IRQ9
default 10 if UART1_IRQ10
default 11 if UART1_IRQ11
default 12 if UART1_IRQ12
default 14 if UART1_IRQ14
default 15 if UART1_IRQ15
# end of UART1
# Begin of UART2
config UART2_ENABLE
bool "UART2 Enable"
default y
choice
prompt "UART2 I/O port"
default UART2_IO_PORT_2F8
depends on UART2_ENABLE
config UART2_IO_PORT_3F8
bool "0x3f8, COM1"
config UART2_IO_PORT_2F8
bool "0x2f8, COM2"
config UART2_IO_PORT_3E8
bool "0x3e8, COM3"
config UART2_IO_PORT_2E8
bool "0x2e8, COM4"
config UART2_IO_PORT_OTHER
bool "Other"
endchoice
config UART2_IO_PORT_OTHER_INPUT
hex "UART2 I/O port"
depends on UART2_ENABLE && UART2_IO_PORT_OTHER
config UART2_IO
hex
depends on UART2_ENABLE
default 0x3f8 if UART2_IO_PORT_3F8
default 0x2f8 if UART2_IO_PORT_2F8
default 0x3e8 if UART2_IO_PORT_3E8
default 0x2e8 if UART2_IO_PORT_2E8
default UART2_IO_PORT_OTHER_INPUT if UART2_IO_PORT_OTHER
choice
prompt "UART2 IRQ"
default UART2_IRQ3
depends on UART2_ENABLE
config UART2_IRQ_DISABLE
bool "Disable"
config UART2_IRQ3
bool "IRQ3, COM2"
config UART2_IRQ4
bool "IRQ4, COM1"
config UART2_IRQ5
bool "IRQ5"
config UART2_IRQ6
bool "IRQ6"
config UART2_IRQ7
bool "IRQ7"
config UART2_IRQ9
bool "IRQ9"
config UART2_IRQ10
bool "IRQ10, COM3"
config UART2_IRQ11
bool "IRQ11, COM4"
config UART2_IRQ12
bool "IRQ12"
config UART2_IRQ14
bool "IRQ14"
config UART2_IRQ15
bool "IRQ15"
endchoice
config UART2_IRQ
int
depends on UART2_ENABLE
default 0 if UART2_IRQ_DISABLE
default 3 if UART2_IRQ3
default 4 if UART2_IRQ4
default 5 if UART2_IRQ5
default 6 if UART2_IRQ6
default 7 if UART2_IRQ7
default 9 if UART2_IRQ9
default 10 if UART2_IRQ10
default 11 if UART2_IRQ11
default 12 if UART2_IRQ12
default 14 if UART2_IRQ14
default 15 if UART2_IRQ15
# end of UART2
# Begin of UART3
config UART3_ENABLE
bool "UART3 Enable"
default y
choice
prompt "UART3 I/O port"
default UART3_IO_PORT_3E8
depends on UART3_ENABLE
config UART3_IO_PORT_3F8
bool "0x3f8, COM1"
config UART3_IO_PORT_2F8
bool "0x2f8, COM2"
config UART3_IO_PORT_3E8
bool "0x3e8, COM3"
config UART3_IO_PORT_2E8
bool "0x2e8, COM4"
config UART3_IO_PORT_OTHER
bool "Other"
endchoice
config UART3_IO_PORT_OTHER_INPUT
hex "UART3 I/O port"
depends on UART3_ENABLE && UART3_IO_PORT_OTHER
config UART3_IO
hex
depends on UART3_ENABLE
default 0x3f8 if UART3_IO_PORT_3F8
default 0x2f8 if UART3_IO_PORT_2F8
default 0x3e8 if UART3_IO_PORT_3E8
default 0x2e8 if UART3_IO_PORT_2E8
default UART3_IO_PORT_OTHER_INPUT if UART3_IO_PORT_OTHER
choice
prompt "UART3 IRQ"
default UART3_IRQ10
depends on UART3_ENABLE
config UART3_IRQ_DISABLE
bool "Disable"
config UART3_IRQ3
bool "IRQ3, COM2"
config UART3_IRQ4
bool "IRQ4, COM1"
config UART3_IRQ5
bool "IRQ5"
config UART3_IRQ6
bool "IRQ6"
config UART3_IRQ7
bool "IRQ7"
config UART3_IRQ9
bool "IRQ9"
config UART3_IRQ10
bool "IRQ10, COM3"
config UART3_IRQ11
bool "IRQ11, COM4"
config UART3_IRQ12
bool "IRQ12"
config UART3_IRQ14
bool "IRQ14"
config UART3_IRQ15
bool "IRQ15"
endchoice
config UART3_IRQ
int
depends on UART3_ENABLE
default 0 if UART3_IRQ_DISABLE
default 3 if UART3_IRQ3
default 4 if UART3_IRQ4
default 5 if UART3_IRQ5
default 6 if UART3_IRQ6
default 7 if UART3_IRQ7
default 9 if UART3_IRQ9
default 10 if UART3_IRQ10
default 11 if UART3_IRQ11
default 12 if UART3_IRQ12
default 14 if UART3_IRQ14
default 15 if UART3_IRQ15
# end of UART3
# Begin of UART4
config UART4_ENABLE
bool "UART4 Enable"
default y
choice
prompt "UART4 I/O port"
default UART4_IO_PORT_2E8
depends on UART4_ENABLE
config UART4_IO_PORT_3F8
bool "0x3f8, COM1"
config UART4_IO_PORT_2F8
bool "0x2f8, COM2"
config UART4_IO_PORT_3E8
bool "0x3e8, COM3"
config UART4_IO_PORT_2E8
bool "0x2e8, COM4"
config UART4_IO_PORT_OTHER
bool "Other"
endchoice
config UART4_IO_PORT_OTHER_INPUT
hex "UART4 I/O port"
depends on UART4_ENABLE && UART4_IO_PORT_OTHER
config UART4_IO
hex
depends on UART4_ENABLE
default 0x3f8 if UART4_IO_PORT_3F8
default 0x2f8 if UART4_IO_PORT_2F8
default 0x3e8 if UART4_IO_PORT_3E8
default 0x2e8 if UART4_IO_PORT_2E8
default UART4_IO_PORT_OTHER_INPUT if UART4_IO_PORT_OTHER
choice
prompt "UART4 IRQ"
default UART4_IRQ11
depends on UART4_ENABLE
config UART4_IRQ_DISABLE
bool "Disable"
config UART4_IRQ3
bool "IRQ3, COM2"
config UART4_IRQ4
bool "IRQ4, COM1"
config UART4_IRQ5
bool "IRQ5"
config UART4_IRQ6
bool "IRQ6"
config UART4_IRQ7
bool "IRQ7"
config UART4_IRQ9
bool "IRQ9"
config UART4_IRQ10
bool "IRQ10, COM3"
config UART4_IRQ11
bool "IRQ11, COM4"
config UART4_IRQ12
bool "IRQ12"
config UART4_IRQ14
bool "IRQ14"
config UART4_IRQ15
bool "IRQ15"
endchoice
config UART4_IRQ
int
depends on UART4_ENABLE
default 0 if UART4_IRQ_DISABLE
default 3 if UART4_IRQ3
default 4 if UART4_IRQ4
default 5 if UART4_IRQ5
default 6 if UART4_IRQ6
default 7 if UART4_IRQ7
default 9 if UART4_IRQ9
default 10 if UART4_IRQ10
default 11 if UART4_IRQ11
default 12 if UART4_IRQ12
default 14 if UART4_IRQ14
default 15 if UART4_IRQ15
# end of UART4
# Begin of UART5
config UART5_ENABLE
bool "UART5 Enable"
default n
choice
prompt "UART5 I/O port"
default UART5_IO_PORT_OTHER
depends on UART5_ENABLE
config UART5_IO_PORT_3F8
bool "0x3f8, COM1"
config UART5_IO_PORT_2F8
bool "0x2f8, COM2"
config UART5_IO_PORT_3E8
bool "0x3e8, COM3"
config UART5_IO_PORT_2E8
bool "0x2e8, COM4"
config UART5_IO_PORT_OTHER
bool "Other"
endchoice
config UART5_IO_PORT_OTHER_INPUT
hex "UART5 I/O port"
depends on UART5_ENABLE && UART5_IO_PORT_OTHER
config UART5_IO
hex
depends on UART5_ENABLE
default 0x3f8 if UART5_IO_PORT_3F8
default 0x2f8 if UART5_IO_PORT_2F8
default 0x3e8 if UART5_IO_PORT_3E8
default 0x2e8 if UART5_IO_PORT_2E8
default UART5_IO_PORT_OTHER_INPUT if UART5_IO_PORT_OTHER
choice
prompt "UART5 IRQ"
default UART5_IRQ_DISABLE
depends on UART5_ENABLE
config UART5_IRQ_DISABLE
bool "Disable"
config UART5_IRQ3
bool "IRQ3, COM2"
config UART5_IRQ4
bool "IRQ4, COM1"
config UART5_IRQ5
bool "IRQ5"
config UART5_IRQ6
bool "IRQ6"
config UART5_IRQ7
bool "IRQ7"
config UART5_IRQ9
bool "IRQ9"
config UART5_IRQ10
bool "IRQ10, COM3"
config UART5_IRQ11
bool "IRQ11, COM4"
config UART5_IRQ12
bool "IRQ12"
config UART5_IRQ14
bool "IRQ14"
config UART5_IRQ15
bool "IRQ15"
endchoice
config UART5_IRQ
int
depends on UART5_ENABLE
default 0 if UART5_IRQ_DISABLE
default 3 if UART5_IRQ3
default 4 if UART5_IRQ4
default 5 if UART5_IRQ5
default 6 if UART5_IRQ6
default 7 if UART5_IRQ7
default 9 if UART5_IRQ9
default 10 if UART5_IRQ10
default 11 if UART5_IRQ11
default 12 if UART5_IRQ12
default 14 if UART5_IRQ14
default 15 if UART5_IRQ15
# end of UART5
# Begin of UART6
config UART6_ENABLE
bool "UART6 Enable"
default n
choice
prompt "UART6 I/O port"
default UART6_IO_PORT_OTHER
depends on UART6_ENABLE
config UART6_IO_PORT_3F8
bool "0x3f8, COM1"
config UART6_IO_PORT_2F8
bool "0x2f8, COM2"
config UART6_IO_PORT_3E8
bool "0x3e8, COM3"
config UART6_IO_PORT_2E8
bool "0x2e8, COM4"
config UART6_IO_PORT_OTHER
bool "Other"
endchoice
config UART6_IO_PORT_OTHER_INPUT
hex "UART6 I/O port"
depends on UART6_ENABLE && UART6_IO_PORT_OTHER
config UART6_IO
hex
depends on UART6_ENABLE
default 0x3f8 if UART6_IO_PORT_3F8
default 0x2f8 if UART6_IO_PORT_2F8
default 0x3e8 if UART6_IO_PORT_3E8
default 0x2e8 if UART6_IO_PORT_2E8
default UART6_IO_PORT_OTHER_INPUT if UART6_IO_PORT_OTHER
choice
prompt "UART6 IRQ"
default UART6_IRQ_DISABLE
depends on UART6_ENABLE
config UART6_IRQ_DISABLE
bool "Disable"
config UART6_IRQ3
bool "IRQ3, COM2"
config UART6_IRQ4
bool "IRQ4, COM1"
config UART6_IRQ5
bool "IRQ5"
config UART6_IRQ6
bool "IRQ6"
config UART6_IRQ7
bool "IRQ7"
config UART6_IRQ9
bool "IRQ9"
config UART6_IRQ10
bool "IRQ10, COM3"
config UART6_IRQ11
bool "IRQ11, COM4"
config UART6_IRQ12
bool "IRQ12"
config UART6_IRQ14
bool "IRQ14"
config UART6_IRQ15
bool "IRQ15"
endchoice
config UART6_IRQ
int
depends on UART6_ENABLE
default 0 if UART6_IRQ_DISABLE
default 3 if UART6_IRQ3
default 4 if UART6_IRQ4
default 5 if UART6_IRQ5
default 6 if UART6_IRQ6
default 7 if UART6_IRQ7
default 9 if UART6_IRQ9
default 10 if UART6_IRQ10
default 11 if UART6_IRQ11
default 12 if UART6_IRQ12
default 14 if UART6_IRQ14
default 15 if UART6_IRQ15
# end of UART6
# Begin of UART7
config UART7_ENABLE
bool "UART7 Enable"
default n
choice
prompt "UART7 I/O port"
default UART7_IO_PORT_OTHER
depends on UART7_ENABLE
config UART7_IO_PORT_3F8
bool "0x3f8, COM1"
config UART7_IO_PORT_2F8
bool "0x2f8, COM2"
config UART7_IO_PORT_3E8
bool "0x3e8, COM3"
config UART7_IO_PORT_2E8
bool "0x2e8, COM4"
config UART7_IO_PORT_OTHER
bool "Other"
endchoice
config UART7_IO_PORT_OTHER_INPUT
hex "UART7 I/O port"
depends on UART7_ENABLE && UART7_IO_PORT_OTHER
config UART7_IO
hex
depends on UART7_ENABLE
default 0x3f8 if UART7_IO_PORT_3F8
default 0x2f8 if UART7_IO_PORT_2F8
default 0x3e8 if UART7_IO_PORT_3E8
default 0x2e8 if UART7_IO_PORT_2E8
default UART7_IO_PORT_OTHER_INPUT if UART7_IO_PORT_OTHER
choice
prompt "UART7 IRQ"
default UART7_IRQ_DISABLE
depends on UART7_ENABLE
config UART7_IRQ_DISABLE
bool "Disable"
config UART7_IRQ3
bool "IRQ3, COM2"
config UART7_IRQ4
bool "IRQ4, COM1"
config UART7_IRQ5
bool "IRQ5"
config UART7_IRQ6
bool "IRQ6"
config UART7_IRQ7
bool "IRQ7"
config UART7_IRQ9
bool "IRQ9"
config UART7_IRQ10
bool "IRQ10, COM3"
config UART7_IRQ11
bool "IRQ11, COM4"
config UART7_IRQ12
bool "IRQ12"
config UART7_IRQ14
bool "IRQ14"
config UART7_IRQ15
bool "IRQ15"
endchoice
config UART7_IRQ
int
depends on UART7_ENABLE
default 0 if UART7_IRQ_DISABLE
default 3 if UART7_IRQ3
default 4 if UART7_IRQ4
default 5 if UART7_IRQ5
default 6 if UART7_IRQ6
default 7 if UART7_IRQ7
default 9 if UART7_IRQ9
default 10 if UART7_IRQ10
default 11 if UART7_IRQ11
default 12 if UART7_IRQ12
default 14 if UART7_IRQ14
default 15 if UART7_IRQ15
# end of UART7
# Begin of UART8
config UART8_ENABLE
bool "UART8 Enable"
default n
choice
prompt "UART8 I/O port"
default UART8_IO_PORT_OTHER
depends on UART8_ENABLE
config UART8_IO_PORT_3F8
bool "0x3f8, COM1"
config UART8_IO_PORT_2F8
bool "0x2f8, COM2"
config UART8_IO_PORT_3E8
bool "0x3e8, COM3"
config UART8_IO_PORT_2E8
bool "0x2e8, COM4"
config UART8_IO_PORT_OTHER
bool "Other"
endchoice
config UART8_IO_PORT_OTHER_INPUT
hex "UART8 I/O port"
depends on UART8_ENABLE && UART8_IO_PORT_OTHER
config UART8_IO
hex
depends on UART8_ENABLE
default 0x3f8 if UART8_IO_PORT_3F8
default 0x2f8 if UART8_IO_PORT_2F8
default 0x3e8 if UART8_IO_PORT_3E8
default 0x2e8 if UART8_IO_PORT_2E8
default UART8_IO_PORT_OTHER_INPUT if UART8_IO_PORT_OTHER
choice
prompt "UART8 IRQ"
default UART8_IRQ_DISABLE
depends on UART8_ENABLE
config UART8_IRQ_DISABLE
bool "Disable"
config UART8_IRQ3
bool "IRQ3, COM2"
config UART8_IRQ4
bool "IRQ4, COM1"
config UART8_IRQ5
bool "IRQ5"
config UART8_IRQ6
bool "IRQ6"
config UART8_IRQ7
bool "IRQ7"
config UART8_IRQ9
bool "IRQ9"
config UART8_IRQ10
bool "IRQ10, COM3"
config UART8_IRQ11
bool "IRQ11, COM4"
config UART8_IRQ12
bool "IRQ12"
config UART8_IRQ14
bool "IRQ14"
config UART8_IRQ15
bool "IRQ15"
endchoice
config UART8_IRQ
int
depends on UART8_ENABLE
default 0 if UART8_IRQ_DISABLE
default 3 if UART8_IRQ3
default 4 if UART8_IRQ4
default 5 if UART8_IRQ5
default 6 if UART8_IRQ6
default 7 if UART8_IRQ7
default 9 if UART8_IRQ9
default 10 if UART8_IRQ10
default 11 if UART8_IRQ11
default 12 if UART8_IRQ12
default 14 if UART8_IRQ14
default 15 if UART8_IRQ15
# end of UART8
# Begin of UART9
config UART9_ENABLE
bool "UART9 Enable"
default n
choice
prompt "UART9 I/O port"
default UART9_IO_PORT_OTHER
depends on UART9_ENABLE
config UART9_IO_PORT_3F8
bool "0x3f8, COM1"
config UART9_IO_PORT_2F8
bool "0x2f8, COM2"
config UART9_IO_PORT_3E8
bool "0x3e8, COM3"
config UART9_IO_PORT_2E8
bool "0x2e8, COM4"
config UART9_IO_PORT_OTHER
bool "Other"
endchoice
config UART9_IO_PORT_OTHER_INPUT
hex "UART9 I/O port"
depends on UART9_ENABLE && UART9_IO_PORT_OTHER
config UART9_IO
hex
depends on UART9_ENABLE
default 0x3f8 if UART9_IO_PORT_3F8
default 0x2f8 if UART9_IO_PORT_2F8
default 0x3e8 if UART9_IO_PORT_3E8
default 0x2e8 if UART9_IO_PORT_2E8
default UART9_IO_PORT_OTHER_INPUT if UART9_IO_PORT_OTHER
choice
prompt "UART9 IRQ"
default UART9_IRQ_DISABLE
depends on UART9_ENABLE
config UART9_IRQ_DISABLE
bool "Disable"
config UART9_IRQ3
bool "IRQ3, COM2"
config UART9_IRQ4
bool "IRQ4, COM1"
config UART9_IRQ5
bool "IRQ5"
config UART9_IRQ6
bool "IRQ6"
config UART9_IRQ7
bool "IRQ7"
config UART9_IRQ9
bool "IRQ9"
config UART9_IRQ10
bool "IRQ10, COM3"
config UART9_IRQ11
bool "IRQ11, COM4"
config UART9_IRQ12
bool "IRQ12"
config UART9_IRQ14
bool "IRQ14"
config UART9_IRQ15
bool "IRQ15"
endchoice
config UART9_IRQ
int
depends on UART9_ENABLE
default 0 if UART9_IRQ_DISABLE
default 3 if UART9_IRQ3
default 4 if UART9_IRQ4
default 5 if UART9_IRQ5
default 6 if UART9_IRQ6
default 7 if UART9_IRQ7
default 9 if UART9_IRQ9
default 10 if UART9_IRQ10
default 11 if UART9_IRQ11
default 12 if UART9_IRQ12
default 14 if UART9_IRQ14
default 15 if UART9_IRQ15
# end of UART9
# Begin of UART10
config UART10_ENABLE
bool "UART10 Enable"
default n
choice
prompt "UART10 I/O port"
default UART10_IO_PORT_OTHER
depends on UART10_ENABLE
config UART10_IO_PORT_3F8
bool "0x3f8, COM1"
config UART10_IO_PORT_2F8
bool "0x2f8, COM2"
config UART10_IO_PORT_3E8
bool "0x3e8, COM3"
config UART10_IO_PORT_2E8
bool "0x2e8, COM4"
config UART10_IO_PORT_OTHER
bool "Other"
endchoice
config UART10_IO_PORT_OTHER_INPUT
hex "UART10 I/O port"
depends on UART10_ENABLE && UART10_IO_PORT_OTHER
config UART10_IO
hex
depends on UART10_ENABLE
default 0x3f8 if UART10_IO_PORT_3F8
default 0x2f8 if UART10_IO_PORT_2F8
default 0x3e8 if UART10_IO_PORT_3E8
default 0x2e8 if UART10_IO_PORT_2E8
default UART10_IO_PORT_OTHER_INPUT if UART10_IO_PORT_OTHER
choice
prompt "UART10 IRQ"
default UART10_IRQ_DISABLE
depends on UART10_ENABLE
config UART10_IRQ_DISABLE
bool "Disable"
config UART10_IRQ3
bool "IRQ3, COM2"
config UART10_IRQ4
bool "IRQ4, COM1"
config UART10_IRQ5
bool "IRQ5"
config UART10_IRQ6
bool "IRQ6"
config UART10_IRQ7
bool "IRQ7"
config UART10_IRQ9
bool "IRQ9"
config UART10_IRQ10
bool "IRQ10, COM3"
config UART10_IRQ11
bool "IRQ11, COM4"
config UART10_IRQ12
bool "IRQ12"
config UART10_IRQ14
bool "IRQ14"
config UART10_IRQ15
bool "IRQ15"
endchoice
config UART10_IRQ
int
depends on UART10_ENABLE
default 0 if UART10_IRQ_DISABLE
default 3 if UART10_IRQ3
default 4 if UART10_IRQ4
default 5 if UART10_IRQ5
default 6 if UART10_IRQ6
default 7 if UART10_IRQ7
default 9 if UART10_IRQ9
default 10 if UART10_IRQ10
default 11 if UART10_IRQ11
default 12 if UART10_IRQ12
default 14 if UART10_IRQ14
default 15 if UART10_IRQ15
# end of UART10
endmenu
# LPT setting :
menu "LPT setting"
# Begin of LPT
config LPT_ENABLE
bool "LPT Enable"
default n
choice
prompt "LPT I/O port"
default LPT_IO_PORT_278
depends on LPT_ENABLE
config LPT_IO_PORT_378
bool "0x378, LPT1"
config LPT_IO_PORT_278
bool "0x278, LPT2"
config LPT_IO_PORT_OTHER
bool "Other"
endchoice
config LPT_IO_PORT_OTHER_INPUT
hex "LPT I/O port"
depends on LPT_ENABLE && LPT_IO_PORT_OTHER
config LPT_IO
hex
depends on LPT_ENABLE
default 0x378 if LPT_IO_PORT_378
default 0x278 if LPT_IO_PORT_278
default LPT_IO_PORT_OTHER_INPUT if LPT_IO_PORT_OTHER
choice
prompt "LPT IRQ"
default LPT_IRQ_DISABLE
depends on LPT_ENABLE
config LPT_IRQ_DISABLE
bool "Disable"
config LPT_IRQ3
bool "IRQ3"
config LPT_IRQ4
bool "IRQ4"
config LPT_IRQ5
bool "IRQ5"
config LPT_IRQ6
bool "IRQ6"
config LPT_IRQ7
bool "IRQ7"
config LPT_IRQ9
bool "IRQ9"
config LPT_IRQ10
bool "IRQ10"
config LPT_IRQ11
bool "IRQ11"
config LPT_IRQ12
bool "IRQ12"
config LPT_IRQ14
bool "IRQ14"
config LPT_IRQ15
bool "IRQ15"
endchoice
config LPT_IRQ
int
depends on LPT_ENABLE
default 0 if LPT_IRQ_DISABLE
default 3 if LPT_IRQ3
default 4 if LPT_IRQ4
default 5 if LPT_IRQ5
default 6 if LPT_IRQ6
default 7 if LPT_IRQ7
default 9 if LPT_IRQ9
default 10 if LPT_IRQ10
default 11 if LPT_IRQ11
default 12 if LPT_IRQ12
default 14 if LPT_IRQ14
default 15 if LPT_IRQ15
choice
prompt "LPT Mode Setting"
default LPT_MODE_SPP
depends on LPT_ENABLE
config LPT_MODE_BPP
bool "BPP mode"
config LPT_MODE_EPP_19_AND_SPP
bool "EPP 1.9 and SPP mode"
config LPT_MODE_ECP
bool "ECP Mode"
config LPT_MODE_ECP_AND_EPP_19
bool "ECP and EPP 1.9 mode"
config LPT_MODE_SPP
bool "SPP Mode"
config LPT_MODE_EPP_17_AND_SPP
bool "EPP 1.7 and SPP mode"
config LPT_MODE_ECP_AND_EPP_17
bool "ECP and EPP 1.7 mode"
endchoice
# end of LPT
endmenu
endif # BOARD_DMP_EX
|