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
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
|
;*****************************************************************************
; AMD Generic Encapsulated Software Architecture
;
; $Workfile:: cpcar.inc
;
; Description: CPCAR.INC - AGESA cache-as-RAM setup Include File
;
;*****************************************************************************
;
; Copyright (C) 2012 Advanced Micro Devices, Inc.
; All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
; * Redistributions of source code must retain the above copyright
; notice, this list of conditions and the following disclaimer.
; * Redistributions in binary form must reproduce the above copyright
; notice, this list of conditions and the following disclaimer in the
; documentation and/or other materials provided with the distribution.
; * Neither the name of Advanced Micro Devices, Inc. nor the names of
; its contributors may be used to endorse or promote products derived
; from this software without specific prior written permission.
;
; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
; ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
; DISCLAIMED. IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. BE LIABLE FOR ANY
; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
; (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
; ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;
;*****************************************************************************
.LIST
.mmx
BSP_STACK_BASE_ADDR EQU 30000h ; Base address for primary cores stack
BSP_STACK_SIZE_64K EQU 10000h ; 64KB for BSP core
BSP_STACK_SIZE_32K EQU 8000h ; 32KB for BSP core
CORE0_STACK_BASE_ADDR EQU 80000h ; Base address for primary cores stack
CORE0_STACK_SIZE EQU 4000h ; 16KB for primary cores
CORE1_STACK_BASE_ADDR EQU 40000h ; Base address for AP cores
CORE1_STACK_SIZE EQU 1000h ; 4KB for each AP cores
L3_CONTROL_REGISTER EQU 8100C3B8h ; Bus 0, Device 18h, Function 3, Offset 1B8h
APIC_BASE_ADDRESS EQU 0000001Bh
APIC_BSC EQU 8 ; Boot Strap Core
APIC_MSG_REG EQU 380h ; Location of BSC message
APIC_MSG EQU 00DE00ADh ; Message data
APIC_CMD_LO_REG EQU 300h ; APIC command low
APIC_CMD_HI_REG EQU 310h ; APIC command high
CMD_REG_TO_READ_DATA EQU 00000338h ; APIC command for remote read of APIC_MSG_REG
REMOTE_READ_STS EQU 00030000h ; Remote read status mask
REMOTE_DELIVERY_PEND EQU 00010000h ; Remote read is pending
REMOTE_DELIVERY_DONE EQU 00020000h ; Remote read is complete
DELIVERY_STS_BIT EQU 12 ; Delivery status valid bit
APIC_ID_REG EQU 0020h ; Local APIC ID offset
APIC20_APICID EQU 24
APIC_REMOTE_READ_REG EQU 00C0h ; Remote read offset
; Flags can only run from bits 31 to 24. Bits 23:0 are in use.
AMD_CU_NEED_TO_WAIT EQU 31
AMD_CU_SEND_INVD_MSG EQU 30
AMD_CU_RESTORE_ES EQU 29
AMD_MTRR_VARIABLE_BASE0 EQU 0200h
AMD_MTRR_VARIABLE_BASE6 EQU 020Ch
AMD_MTRR_VARIABLE_BASE7 EQU 020Eh
VMTRR_VALID EQU 11
MTRR_TYPE_WB EQU 06h
MTRR_TYPE_WP EQU 05h
MTRR_TYPE_WT EQU 04h
MTRR_TYPE_UC EQU 00h
AMD_MTRR_VARIABLE_MASK7 EQU 020Fh
AMD_MTRR_FIX64k_00000 EQU 0250h
AMD_MTRR_FIX16k_80000 EQU 0258h
AMD_MTRR_FIX16k_A0000 EQU 0259h
AMD_MTRR_FIX4k_C0000 EQU 0268h
AMD_MTRR_FIX4k_C8000 EQU 0269h
AMD_MTRR_FIX4k_D0000 EQU 026Ah
AMD_MTRR_FIX4k_D8000 EQU 026Bh
AMD_MTRR_FIX4k_E0000 EQU 026Ch
AMD_MTRR_FIX4k_E8000 EQU 026Dh
AMD_MTRR_FIX4k_F0000 EQU 026Eh
AMD_MTRR_FIX4k_F8000 EQU 026Fh
AMD_MTRR_DEFTYPE EQU 02FFh
WB_DRAM_TYPE EQU 1Eh ; MemType - memory type
MTRR_DEF_TYPE_EN EQU 11 ; MtrrDefTypeEn - variable and fixed MTRRs default enabled
MTRR_DEF_TYPE_FIX_EN EQU 10 ; MtrrDefTypeEn - fixed MTRRs default enabled
HWCR EQU 0C0010015h ; Hardware Configuration
INVD_WBINVD EQU 4 ; INVD to WBINVD conversion
IORR_BASE EQU 0C0010016h ; IO Range Regusters Base/Mask, 2 pairs
; uses 16h - 19h
TOP_MEM EQU 0C001001Ah ; Top of Memory
TOP_MEM2 EQU 0C001001Dh ; Top of Memory2
LS_CFG EQU 0C0011020h ; Load-Store Configuration
DIS_SS EQU 28 ; Family 10h,12h,15h:Disable Streaming Store functionality
DIS_STREAM_ST EQU 28 ; Family 14h:DisStreamSt - Disable Streaming Store functionality
IC_CFG EQU 0C0011021h ; Instruction Cache Config Register
IC_DIS_SPEC_TLB_RLD EQU 9 ; Disable speculative TLB reloads
DIS_IND EQU 14 ; Family 10-14h:Disable Indirect Branch Predictor
DIS_I_CACHE EQU 14 ; Family 15h:DisICache - Disable Indirect Branch Predictor
DC_CFG EQU 0C0011022h ; Data Cache Configuration
DC_DIS_SPEC_TLB_RLD EQU 4 ; Disable speculative TLB reloads
DIS_CLR_WBTOL2_SMC_HIT EQU 8 ; self modifying code check buffer bit
DIS_HW_PF EQU 13 ; Hardware prefetches bit
CU_CFG EQU 0C0011023h ; Family 15h: Combined Unit Configuration
L2_WAY_LOCK_EN EQU 23 ; L2WayLock - L2 way lock enable
L2_FIRST_LOCKED_WAY EQU 19 ; L2FirstLockedWay - first L2 way lockedh
L2_FIRST_LOCKED_WAY_OR_MASK EQU 000780000h
DE_CFG EQU 0C0011029h ; Decode Configuration
CL_FLUSH_SERIALIZE EQU 23 ; Family 12h,15h: CL Flush Serialization
BU_CFG2 EQU 0C001102Ah ; Family 10h-14h: Bus Unit Configuration 2
CU_CFG2 EQU 0C001102Ah ; Family 15h: Combined Unit Configuration 2
F10_CL_LINES_TO_NB_DIS EQU 15 ; ClLinesToNbDis - allows WP code to be cached in L2
IC_DIS_SPEC_TLB_WR EQU 35 ; IcDisSpecTlbWr - ITLB speculative writes
CU_CFG3 EQU 0C001102Bh ; Combined Unit Configuration 3
COMBINE_CR0_CD EQU 49 ; Combine CR0.CD for both cores of a compute unit
CR0_PE EQU 0 ; Protection Enable
CR0_NW EQU 29 ; Not Write-through
CR0_CD EQU 30 ; Cache Disable
CR0_PG EQU 31 ; Paging Enable
; CPUID Functions
CPUID_MODEL EQU 1
AMD_CPUID_FMF EQU 80000001h ; Family Model Features information
AMD_CPUID_L2Cache EQU 80000006h ; L2/L3 cache info
AMD_CPUID_APIC EQU 80000008h ; Long Mode and APIC info., core count
APIC_ID_CORE_ID_SIZE EQU 12 ; ApicIdCoreIdSize bit position
NB_CFG EQU 0C001001Fh ; Northbridge Configuration Register
INIT_APIC_ID_CPU_ID_LO EQU 54 ; InitApicIdCpuIdLo - is core# in high or low half of APIC ID?
ENABLE_CF8_EXT_CFG EQU 46 ; EnableCf8ExtCfg - enable CF8 extended configuration cycles
MTRR_SYS_CFG EQU 0C0010010h ; System Configuration Register
CHX_TO_DIRTY_DIS EQU 16 ; ChxToDirtyDis Change to dirty disable
SYS_UC_LOCK_EN EQU 17 ; SysUcLockEn System lock command enable
MTRR_FIX_DRAM_EN EQU 18 ; MtrrFixDramEn MTRR fixed RdDram and WrDram attributes enable
MTRR_FIX_DRAM_MOD_EN EQU 19 ; MtrrFixDramModEn MTRR fixed RdDram and WrDram modification enable
MTRR_VAR_DRAM_EN EQU 20 ; MtrrVarDramEn MTRR variable DRAM enable
MTRR_TOM2_EN EQU 21 ; MtrrTom2En MTRR top of memory 2 enable
PERF_CONTROL3 EQU 0C0010003h ; Performance event control three
PERF_CONTROL3_RESERVE_L EQU 00200000h ; Preserve the reserved bits
PERF_CONTROL3_RESERVE_H EQU 0FCF0h ; Preserve the reserved bits
CONFIG_EVENT_L EQU 0F0E2h ; All cores with level detection
CONFIG_EVENT_H EQU 4 ; Increment count by number of event
; occured in clock cycle
EVENT_ENABLE EQU 22 ; Enable the event
PERF_COUNTER3 EQU 0C0010007h ; Performance event counter three
; Local use flags, in upper most byte of ESI
FLAG_UNKNOWN_FAMILY EQU 24 ; Signals that the family# of the installed processor is not recognized
FLAG_STACK_REENTRY EQU 25 ; Signals that the environment has made a re-entry (2nd) call to set up the stack
FLAG_IS_PRIMARY EQU 26 ; Signals that this core is the primary within the compute unit
FLAG_CORE_NOT_IDENTIFIED EQU 27 ; Signals that the cores/compute units of the installed processor is not recognized
FLAG_FORCE_32K_STACK EQU 28 ; Signals that to force 32KB stack size for BSP core
; Error code returned in EDX by AMD_ENABLE_STACK
IFNDEF CPU_EVENT_UNKNOWN_PROCESSOR_FAMILY
CPU_EVENT_UNKNOWN_PROCESSOR_FAMILY EQU 008010500h
ENDIF
IFNDEF CPU_EVENT_STACK_REENTRY
CPU_EVENT_STACK_REENTRY EQU 008020500h
ENDIF
IFNDEF CPU_EVENT_CORE_NOT_IDENTIFIED
CPU_EVENT_CORE_NOT_IDENTIFIED EQU 008030500h
ENDIF
; AGESA_STATUS values
IFNDEF AGESA_SUCCESS
AGESA_SUCCESS EQU 0
ENDIF
IFNDEF AGESA_WARNING
AGESA_WARNING EQU 4
ENDIF
IFNDEF AGESA_FATAL
AGESA_FATAL EQU 7
ENDIF
;;***************************************************************************
;;
;; CPU MACROS - PUBLIC
;;
;;***************************************************************************
_WRMSR macro
db 0Fh, 30h
endm
_RDMSR macro
db 0Fh, 32h
endm
AMD_CPUID MACRO arg0
IFB <arg0>
mov eax, 1
db 0Fh, 0A2h ; Execute instruction
bswap eax
xchg al, ah ; Ext model in al now
rol eax, 8 ; Ext model in ah, model in al
and ax, 0FFCFh ; Keep 23:16, 7:6, 3:0
ELSE
mov eax, arg0
db 0Fh, 0A2h
ENDIF
ENDM
;---------------------------------------------------
; LoadTableAddress
; Due to the various assembly methodologies used by BIOS vendors, this macro is needed to abstract the
; loading of the address of a table. The default is the standard LEA instruction with table address.
; The IBV that needs to use an alternative method can define their version of the macro prior to including
; this file into their source.
; An alternative example:
; LoadTableAddress MACRO MyTable
; LEA eax, -(LAST_ADDRESS - MyTable)
;---------------------------------------------------
IFNDEF LoadTableAddress
LoadTableAddress Macro TargetTable
LEA eax, TargetTable
ENDM
ENDIF
;;***************************************************************************
;;
;; CPU STRUCTURES - PUBLIC
;;
;;***************************************************************************
CPU_FAMILY_INFO STRUC
L2_MIN_SIZE WORD ? ; Minimum size of the L2 cache for this family, in K
NUM_SHARED_CORES BYTE ? ; Number of cores sharing an L2 cache
L2_ALLOC_MEM BYTE ? ; L2 space reserved for memory training, in K
L2_ALLOC_EXE WORD ? ; L2 space reserved for EXE CACHE, in K. 0 means unlimited.
SIZE_ADDRESS_BUS BYTE ? ; Number of address bits supported by this family
FAMILY_RESERVED BYTE ? ; reserved, pad to DWORD size
CPU_FAMILY_INFO ENDS
;---------------------------------------------------
;
; AMD_ENABLE_STACK_FAMILY_HOOK Macro - Stackless
;
; Set any family specific controls needed to enable the use of
; cache as general storage before main memory is available.
;
; Inputs:
; ESI - node#, core#, flags from GET_NODE_ID_CORE_ID
; Outputs:
; none
; Destroyed:
; eax, ebx, ecx, edx
;---------------------------------------------------
AMD_ENABLE_STACK_FAMILY_HOOK MACRO
AMD_ENABLE_STACK_FAMILY_HOOK_F10
AMD_ENABLE_STACK_FAMILY_HOOK_F12
AMD_ENABLE_STACK_FAMILY_HOOK_F14
AMD_ENABLE_STACK_FAMILY_HOOK_F15
ENDM
;----------------------------------------------
;
; AMD_DISABLE_STACK_FAMILY_HOOK Macro - Stackless
;
; Return any family specific controls to their 'standard'
; settings for using cache with main memory.
;
; Inputs:
; ESI - node#, core#, flags from GET_NODE_ID_CORE_ID
; Outputs:
; none
; Destroyed:
; eax, ebx, ecx, edx
;----------------------------------------------
AMD_DISABLE_STACK_FAMILY_HOOK MACRO
AMD_DISABLE_STACK_FAMILY_HOOK_F10
AMD_DISABLE_STACK_FAMILY_HOOK_F12
AMD_DISABLE_STACK_FAMILY_HOOK_F14
AMD_DISABLE_STACK_FAMILY_HOOK_F15
ENDM
;---------------------------------------------------
;
; GET_NODE_ID_CORE_ID Macro - Stackless
;
; Read family specific values to determine the node and core
; numbers for the core executing this code.
;
; Inputs:
; none
; Outputs:
; SI[7:0] = Core# (0..N, relative to node)
; SI[15:8]= Node# (0..N)
; SI[23:16]= reserved
; SI[24]= flag: 1=Family Unrecognized
; SI[25]= flag: 1=Interface re-entry call
; SI[26]= flag: 1=Core is primary of compute unit
; SI[31:27]= reserved, =0
;
; Destroyed:
; eax, ebx, ecx, edx, esi
;---------------------------------------------------
GET_NODE_ID_CORE_ID MACRO
mov si, -1
GET_NODE_ID_CORE_ID_F10
GET_NODE_ID_CORE_ID_F12
GET_NODE_ID_CORE_ID_F14
GET_NODE_ID_CORE_ID_F15
;
; Check for unrecognized Family
;
.if (si == -1) ; Has family (node/core) been discovered?
mov esi, ( (1 SHL FLAG_UNKNOWN_FAMILY)+(1 SHL FLAG_IS_PRIMARY) ) ; No, Set error code, Only let BSP continue
mov ecx, APIC_BASE_ADDRESS ; MSR:0000_001B
_RDMSR
bt eax, APIC_BSC ; Is this the BSC?
.if (!carry?)
; No, this is an AP
hlt ; Kill APs
.endif
.endif
ENDM
;;***************************************************************************
;; Family 10h MACROS
;;***************************************************************************
;---------------------------------------------------
;
; AMD_ENABLE_STACK_FAMILY_HOOK_F10 Macro - Stackless
;
; Set any family specific controls needed to enable the use of
; cache as general storage before main memory is available.
;
; Inputs:
; ESI - node#, core#, flags from GET_NODE_ID_CORE_ID
; Outputs:
; none
; Destroyed:
; eax, ebx, ecx, edx
;
; Family 10h requirements (BKDG section 2.3.3):
; * Paging disabled
; * MSRC001_0015[INVDWBINVD]=0
; * MSRC001_1021[DIS_IND]=1
; * MSRC001_1021[DIS_SPEC_TLB_RLD]=1
; * MSRC001_1022[DIS_SPEC_TLB_RLD]=1
; * MSRC001_1022[DIS_CLR_WBTOL2_SMC_HIT]=1
; * MSRC001_1022[DIS_HW_PF]=1
; * MSRC001_102A[IcDisSpecTlbWr]=1
; * MSRC001_102A[ClLinesToNbDis]=1
; * No INVD or WBINVD, no exceptions, page faults or interrupts
;---------------------------------------------------
AMD_ENABLE_STACK_FAMILY_HOOK_F10 MACRO
local fam10_enable_stack_hook_exit
AMD_CPUID CPUID_MODEL
mov ebx, eax ; Save revision info to EBX
shr eax, 20 ; AL = cpu extended family
cmp al, 01h ; Is this family 10h?
jnz fam10_enable_stack_hook_exit ; Br if no
; Errata #385
; F3x1B8[23] = 1 before enabling L3 cache through CR0[30](CD)
mov eax, ebx ; Restore revision info to EAX
.if (al >= 80h) ; Is this Revision D and later?
mov ecx, NB_CFG ; MSR:C001_001F
_RDMSR ; EDX has EnableCf8ExtCfg bit
bts edx, (ENABLE_CF8_EXT_CFG - 32)
_WRMSR
mov eax, esi ; Get node# from esi[15:8]
and eax, 0000FF00h
shl eax, (11 - 8) ; Device#
add eax, L3_CONTROL_REGISTER
mov dx, 0CF8h ; PCI Read
out dx, eax
mov dx, 0CFCh
in eax, dx
or eax, (1 shl 23) ; F3x1B8[23] = 1
out dx, eax ; PCI Write
.endif
mov ecx, DC_CFG ; MSR:C001_1022
_RDMSR
bts eax, DC_DIS_SPEC_TLB_RLD ; Turn on Disable speculative DTLB reloads bit
bts eax, DIS_CLR_WBTOL2_SMC_HIT ; Turn on Disable the self modifying code check buffer bit
bts eax, DIS_HW_PF ; Turn on Disable hardware prefetches bit
_WRMSR
dec cx ; MSR:C001_1021
_RDMSR
bts eax, IC_DIS_SPEC_TLB_RLD ; Turn on Disable speculative TLB reloads bit
bts eax, DIS_IND ; Turn on Disable indirect branch predictor
_WRMSR
mov ecx, BU_CFG2 ; MSR C001_102A
_RDMSR
bts eax, F10_CL_LINES_TO_NB_DIS ; Allow BIOS ROM to be cached in the IC
bts edx, (IC_DIS_SPEC_TLB_WR-32) ;Disable speculative writes to the ITLB
_WRMSR
mov ecx, HWCR ; MSR C001_0015
_RDMSR
bt esi, FLAG_STACK_REENTRY ; Check if stack has already been set
.if (!carry?)
btr eax, INVD_WBINVD ; disable INVD -> WBINVD conversion
_WRMSR
.endif
mov eax, esi ; load core#
.if (al == 0) ; If (BSP)
mov ecx, PERF_COUNTER3 ; Select performance counter three
; to count number of CAR evictions
xor eax, eax ; Initialize the lower part of the counter to zero
xor edx, edx ; Initializa the upper part of the counter to zero
_WRMSR ; Save it
mov ecx, PERF_CONTROL3 ; Select the event control three
_RDMSR ; Get the current setting
and eax, PERF_CONTROL3_RESERVE_L ; Preserve the reserved bits
or eax, CONFIG_EVENT_L ; Set the lower part of event register to
; select CAR Corruption occurred by any cores
and dx, PERF_CONTROL3_RESERVE_H ; Preserve the reserved bits
or dx, CONFIG_EVENT_H ; Set the upper part of event register
_WRMSR ; Save it
bts eax, EVENT_ENABLE ; Enable it
_WRMSR ; Save it
.endif ; endif
fam10_enable_stack_hook_exit:
ENDM
;----------------------------------------------
;
; AMD_DISABLE_STACK_FAMILY_HOOK_F10 Macro - Stackless
;
; Return any family specific controls to their 'standard'
; settings for using cache with main memory.
;
; Inputs:
; ESI - [31:24] flags; [15,8]= Node#; [7,0]= core#
; Outputs:
; none
; Destroyed:
; eax, ebx, ecx, edx
;
; Family 10h requirements:
; * INVD or WBINVD
; * MSRC001_0015[INVD_WBINVD]=1
; * MSRC001_1021[DIS_IND]=0
; * MSRC001_1021[DIS_SPEC_TLB_RLD]=0
; * MSRC001_1022[DIS_SPEC_TLB_RLD]=0
; * MSRC001_1022[DIS_CLR_WBTOL2_SMC_HIT]=0
; * MSRC001_1022[DIS_HW_PF]=0
; * MSRC001_102A[IcDisSpecTlbWr]=0
; * MSRC001_102A[ClLinesToNbDis]=0
;----------------------------------------------
AMD_DISABLE_STACK_FAMILY_HOOK_F10 MACRO
local fam10_disable_stack_hook_exit
AMD_CPUID CPUID_MODEL
shr eax, 20 ; AL = cpu extended family
cmp al, 01h ; Is this family 10h?
jnz fam10_disable_stack_hook_exit ; Br if no
mov ecx, DC_CFG ; MSR:C001_1022
_RDMSR
btr eax, DC_DIS_SPEC_TLB_RLD ; Enable speculative TLB reloads
btr eax, DIS_CLR_WBTOL2_SMC_HIT ; Allow self modifying code check buffer
btr eax, DIS_HW_PF ; Allow hardware prefetches
_WRMSR
dec cx ; MSR:C001_1021
_RDMSR
btr eax, DIS_IND ; Turn on indirect branch predictor
btr eax, IC_DIS_SPEC_TLB_RLD ; Turn on speculative TLB reloads
_WRMSR
mov ecx, BU_CFG2 ; MSR:C001_102A
_RDMSR
btr eax, F10_CL_LINES_TO_NB_DIS ; Return L3 to normal mode
btr edx, (IC_DIS_SPEC_TLB_WR-32) ;Re-enable speculative writes to the ITLB
_WRMSR
;--------------------------------------------------------------------------
; Begin critical sequence in which EAX, BX, ECX, and EDX must be preserved.
;--------------------------------------------------------------------------
mov ecx, HWCR ; MSR:0000_0015
_RDMSR
mov bx, ax ; Save INVD -> WBINVD bit
btr eax, INVD_WBINVD ; Disable INVD -> WBINVD conversion for the invd instruction.
_WRMSR
invd ; Clear the cache tag RAMs
mov ax, bx ; Restore INVD -> WBINVD bit
_WRMSR
;--------------------------------------------------------------------------
; End critical sequence in which EAX, BX, ECX, and EDX must be preserved.
;--------------------------------------------------------------------------
mov ecx, PERF_CONTROL3 ; Select the event control three
_RDMSR ; Retrieve the current value
btc eax, EVENT_ENABLE ; Is event enable, complement it as well
jnc fam10_disable_stack_hook_exit ; No
cmp ax, CONFIG_EVENT_L ; Is the lower part of event set to capture the CAR Corruption
jne fam10_disable_stack_hook_exit ; No
cmp dl, CONFIG_EVENT_H ; Is the upper part of event set to capture the CAR Corruption
jne fam10_disable_stack_hook_exit ; No
_WRMSR ; Disable the event
fam10_disable_stack_hook_exit:
ENDM
;---------------------------------------------------
;
; GET_NODE_ID_CORE_ID_F10 Macro - Stackless
;
; Read family specific values to determine the node and core
; numbers for the core executing this code.
;
; Inputs:
; none
; Outputs:
; ESI = core#, node# & flags (see GET_NODE_ID_CORE_ID macro above)
; MM5 = 32b pointer to family info structure
; Destroyed:
; eax, ebx, ecx, edx, esi, mm5
;---------------------------------------------------
GET_NODE_ID_CORE_ID_F10 MACRO
local node_core_f10_exit
local end_of_f10h_data
IFNDEF FAM10H_INFO_STRUCT
jmp end_of_f10h_data
; Family 10h Info Structure: L2Size, #SharedCores, AllocMem, AllocExe, SzAddrBus, pad
FAM10H_INFO_STRUCT CPU_FAMILY_INFO { 512, 1, 16, 384, 48, 0}
end_of_f10h_data:
ENDIF
cmp si, -1 ; Has node/core already been discovered?
jnz node_core_f10_exit ; Br if yes
AMD_CPUID CPUID_MODEL
shr eax, 20 ; AL = cpu extended family
cmp al, 01h ; Is this family 10h?
jnz node_core_f10_exit ; Br if no
LoadTableAddress(FAM10H_INFO_STRUCT)
movd mm5, eax ; load pointer to Family Info Struc
xor esi, esi ; Assume BSC, clear flags
mov ecx, APIC_BASE_ADDRESS ; MSR:0000_001B
_RDMSR
bt eax, APIC_BSC ; Is this the BSC?
.if (carry?)
; This is the BSP.
; Enable routing tables on BSP (just in case the HT init code has not yet enabled them)
mov eax, 8000C06Ch ; PCI address for D18F0x6C Link Initialization Control Register
mov dx, 0CF8h
out dx, eax
add dx, 4
in eax, dx
btr eax, 0 ; Set LinkInitializationControl[RouteTblDis] = 0
out dx, eax
.else
; This is an AP. Routing tables have been enabled by the HT Init process.
; Also, the MailBox register was set by the BSP during early init
; The Mailbox register content is formatted as follows:
; UINT32 Node:4; // The node id of Core's node.
; UINT32 Socket:4; // The socket of this Core's node.
; UINT32 Module:2; // The internal module number for Core's node.
; UINT32 ModuleType:2; // Single Module = 0, Multi-module = 1.
; UINT32 :20; // Reserved
;
mov ecx, 0C0000408h ; Read the family 10h mailbox
_RDMSR ; MC4_MISC1[63:32]
mov si, dx ; SI = raw mailbox contents (will extract node# from this)
shr ebx, 24 ; BL = CPUID Fn0000_0001_EBX[LocalApicId]
mov di, bx ; DI = Initial APIC ID (will extract core# from this)
AMD_CPUID AMD_CPUID_APIC ;
shr ch, 4 ; CH = ApicIdSize, #bits in APIC ID that show core#
inc cl ; CL = Number of enabled cores in the socket
mov bx, cx
mov ecx, NB_CFG ; MSR:C001_001F
_RDMSR ; EDX has InitApicIdCpuIdLo bit
mov cl, bh ; CL = APIC ID size
mov al, 1 ; Convert APIC ID size to an AND mask
shl al, cl ; AL = 2^APIC ID size
dec al ; AL = mask for relative core number
xor ah, ah ; AX = mask for relative core number
bt edx, (INIT_APIC_ID_CPU_ID_LO-32) ; InitApicIdCpuIdLo == 1?
.if (!carry?) ; Br if yes
mov ch, 8 ; Calculate core number shift count
sub ch, cl ; CH = core shift count
mov cl, ch
shr di, cl ; Right justify core number
.endif
and di, ax ; DI = socket-relative core number
mov cx, si ; CX = raw mailbox value
shr cx, 10 ; CL[1:0] = ModuleType or #nodes per socket (0-SCM, 1-MCM)
and cl, 3 ; Isolate ModuleType
xor bh, bh ; BX = Number of enabled cores in the socket
shr bx, cl ; BX = Number of enabled cores per node
xor dx, dx ; Clear upper word for div
mov ax, di ; AX = socket-relative core number
div bx ; DX = node-relative core number
movzx eax, si ; prepare return value (clears flags)
and ax, 000Fh ; AX = node number
shl ax, 8 ; [15:8]=node#
mov al, dl ; [7:0]=core# (relative to node)
mov esi, eax ; ESI = return value
.endif ; end: Is_AP
bts esi, FLAG_IS_PRIMARY ; all Family 10h cores are primary
bts esi, FLAG_FORCE_32K_STACK ; all Family 10h to force 32KB stack size for BSP core
node_core_f10_exit:
ENDM
;;***************************************************************************
;; Family 12h MACROS
;;***************************************************************************
;---------------------------------------------------
;
; AMD_ENABLE_STACK_FAMILY_HOOK_F12 Macro - Stackless
;
; Set any family specific controls needed to enable the use of
; cache as general storage before main memory is available.
;
; Inputs:
; ESI - node#, core#, flags from GET_NODE_ID_CORE_ID
; Outputs:
; none
; Destroyed:
; eax, ebx, ecx, edx
;
; Family 12h requirements (BKDG section 2.3.3):
; The following requirements must be satisfied prior to using the cache as general storage:
; * Paging must be disabled.
; * MSRC001_0015[INVD_WBINVD]=0
; * MSRC001_1020[DIS_SS]=1
; * MSRC001_1021[DIS_SPEC_TLB_RLD]=1
; * MSRC001_1022[DIS_SPEC_TLB_RLD]=1
; * MSRC001_1022[DIS_CLR_WBTOL2_SMC_HIT]=1
; * MSRC001_1022[DIS_HW_PF]=1
; * MSRC001_1029[ClflushSerialize]=1
; * No INVD or WBINVD, no exceptions, page faults or interrupts
;---------------------------------------------------
AMD_ENABLE_STACK_FAMILY_HOOK_F12 MACRO
local fam12_enable_stack_hook_exit
AMD_CPUID CPUID_MODEL
shr eax, 20 ; AL = cpu extended family
cmp al, 03h ; Is this family 12h?
jnz fam12_enable_stack_hook_exit ; Br if no
mov ecx, DC_CFG ; MSR:C001_1022
_RDMSR
bts eax, DC_DIS_SPEC_TLB_RLD ; Disable speculative DC-TLB reloads
bts eax, DIS_CLR_WBTOL2_SMC_HIT ; Disable self modifying code check buffer
bts eax, DIS_HW_PF ; Disable hardware prefetches
_WRMSR
dec cx ;IC_CFG ; MSR:C001_1021
_RDMSR
bts eax, IC_DIS_SPEC_TLB_RLD ; Disable speculative IC-TLB reloads
_WRMSR
dec cx ;LS_CFG ; MSR:C001_1020
_RDMSR
bts eax, DIS_SS ; Disabled Streaming store functionality
_WRMSR
mov ecx, HWCR ; MSR C001_0015
_RDMSR
bt esi, FLAG_STACK_REENTRY ; Check if stack has already been set
.if (!carry?)
btr eax, INVD_WBINVD ; disable INVD -> WBINVD conversion
_WRMSR
.endif
mov ecx, DE_CFG ; MSR:C001_1029
_RDMSR
bts eax, CL_FLUSH_SERIALIZE ; Serialize all CL Flush actions
_WRMSR
fam12_enable_stack_hook_exit:
ENDM
;----------------------------------------------
;
; AMD_DISABLE_STACK_FAMILY_HOOK_F12 Macro - Stackless
;
; Return any family specific controls to their 'standard'
; settings for using cache with main memory.
;
; Inputs:
; ESI - [31:24] flags; [15,8]= Node#; [7,0]= core#
; Outputs:
; none
; Destroyed:
; eax, ebx, ecx, edx
;
; Family 12h requirements:
; * INVD or WBINVD
; * MSRC001_0015[INVD_WBINVD]=1
; * MSRC001_1020[DIS_SS]=0
; * MSRC001_1021[DIS_SPEC_TLB_RLD]=0
; * MSRC001_1022[DIS_SPEC_TLB_RLD]=0
; * MSRC001_1022[DIS_CLR_WBTOL2_SMC_HIT]=0
; * MSRC001_1022[DIS_HW_PF]=0
; * MSRC001_1029[ClflushSerialize]=0
;---------------------------------------------------
AMD_DISABLE_STACK_FAMILY_HOOK_F12 MACRO
local fam12_disable_stack_hook_exit
AMD_CPUID CPUID_MODEL
shr eax, 20 ; AL = cpu extended family
cmp al, 03h ; Is this family 12h?
jnz fam12_disable_stack_hook_exit ; Br if no
mov ecx, DC_CFG ; MSR:C001_1022
_RDMSR
btr eax, DC_DIS_SPEC_TLB_RLD ; Turn on speculative DC-TLB reloads
btr eax, DIS_CLR_WBTOL2_SMC_HIT ; Enable self modifying code check buffer
btr eax, DIS_HW_PF ; Enable Hardware prefetches
_WRMSR
dec cx ;IC_CFG ; MSR:C001_1021
_RDMSR
btr eax, IC_DIS_SPEC_TLB_RLD ; Turn on speculative IC-TLB reloads
_WRMSR
dec cx ;LS_CFG ; MSR:C001_1020
_RDMSR
btr eax, DIS_SS ; Turn on Streaming store functionality
_WRMSR
mov ecx, DE_CFG ; MSR:C001_1029
_RDMSR
btr eax, CL_FLUSH_SERIALIZE
_WRMSR
;--------------------------------------------------------------------------
; Begin critical sequence in which EAX, BX, ECX, and EDX must be preserved.
;--------------------------------------------------------------------------
mov ecx, HWCR ; MSR:0000_0015h
_RDMSR
mov bx, ax ; Save INVD -> WBINVD bit
btr eax, INVD_WBINVD ; Disable INVD -> WBINVD conversion
_WRMSR
invd ; Clear the cache tag RAMs
mov ax, bx ; Restore INVD -> WBINVD bit
_WRMSR
;--------------------------------------------------------------------------
; End critical sequence in which EAX, BX, ECX, and EDX must be preserved.
;--------------------------------------------------------------------------
fam12_disable_stack_hook_exit:
ENDM
;---------------------------------------------------
;
; GET_NODE_ID_CORE_ID_F12 Macro - Stackless
;
; Read family specific values to determine the node and core
; numbers for the core executing this code.
;
; Inputs:
; none
; Outputs:
; ESI = core#, node# & flags (see GET_NODE_ID_CORE_ID macro above)
; MM5 = 32b pointer to family info structure
; Destroyed:
; eax, ebx, ecx, edx, esi, mm5
;---------------------------------------------------
GET_NODE_ID_CORE_ID_F12 MACRO
local node_core_f12_exit
local end_of_f12h_data
IFNDEF FAM12H_INFO_STRUCT
jmp end_of_f12h_data
; Family 12h Info Structure: L2Size, #SharedCores, AllocMem, AllocExe, SzAddrBus, pad
FAM12H_INFO_STRUCT CPU_FAMILY_INFO { 512, 1, 0, 384, 40, 0 }
end_of_f12h_data:
ENDIF
cmp si, -1 ; Has node/core already been discovered?
jnz node_core_f12_exit ; Br if yes
AMD_CPUID CPUID_MODEL
shr eax, 20 ; AL = cpu extended family
cmp al, 03h ; Is this family 12h?
jnz node_core_f12_exit ; Br if no
LoadTableAddress(FAM12H_INFO_STRUCT)
movd mm5, eax ; load pointer to Family Info Struc
shr ebx, 24 ; CPUID_0000_0001_EBX[31:24]: initial local APIC physical ID
bts ebx, FLAG_IS_PRIMARY ; all family 12h cores are primary
mov esi, ebx ; ESI = Node#=0, core number
bts esi, FLAG_FORCE_32K_STACK ; all Family 12h to force 32KB stack size for BSP core
node_core_f12_exit:
ENDM
;;***************************************************************************
;; Family 14h MACROS
;;***************************************************************************
;---------------------------------------------------
;
; AMD_ENABLE_STACK_FAMILY_HOOK_F14 Macro - Stackless
;
; Set any family specific controls needed to enable the use of
; cache as general storage before main memory is available.
;
; Inputs:
; ESI - node#, core#, flags from GET_NODE_ID_CORE_ID
; Outputs:
; none
; Destroyed:
; eax, ebx, ecx, edx
;
; Family 14h requirements (BKDG section 2.3.3):
; * Paging must be disabled.
; * MSRC001_0015[INVD_WBINVD]=0.
; * MSRC001_1020[DisStreamSt]=1.
; * MSRC001_1021[DIS_SPEC_TLB_RLD]=1. Disable speculative ITLB reloads.
; * MSRC001_1022[DIS_HW_PF]=1.
; * No INVD or WBINVD, no exceptions, page faults or interrupts
;---------------------------------------------------
AMD_ENABLE_STACK_FAMILY_HOOK_F14 MACRO
local fam14_enable_stack_hook_exit
AMD_CPUID CPUID_MODEL
shr eax, 20 ; AL = cpu extended family
cmp al, 05h ; Is this family 14h?
jnz fam14_enable_stack_hook_exit ; Br if no
mov ecx, DC_CFG ; MSR:C001_1022
_RDMSR
bts eax, DIS_HW_PF ; Disable hardware prefetches
_WRMSR
dec cx ;IC_CFG ; MSR:C001_1021
_RDMSR
bts eax, IC_DIS_SPEC_TLB_RLD ; Disable speculative TLB reloads
_WRMSR
dec cx ;LS_CFG ; MSR:C001_1020
_RDMSR
bts eax, DIS_STREAM_ST ; Disabled Streaming store functionality
_WRMSR
mov ecx, HWCR ; MSR C001_0015
_RDMSR
bt esi, FLAG_STACK_REENTRY ; Check if stack has already been set
.if (!carry?)
btr eax, INVD_WBINVD ; disable INVD -> WBINVD conversion
_WRMSR
.endif
fam14_enable_stack_hook_exit:
ENDM
;----------------------------------------------
;
; AMD_DISABLE_STACK_FAMILY_HOOK_F14 Macro - Stackless
;
; Return any family specific controls to their 'standard'
; settings for using cache with main memory.
;
; Inputs:
; ESI - [31:24] flags; [15,8]= Node#; [7,0]= core#
; Outputs:
; none
; Destroyed:
; eax, ebx, ecx, edx
;
; Family 14h requirements:
; * INVD or WBINVD
; * MSRC001_0015[INVD_WBINVD]=1.
; * MSRC001_1020[DisStreamSt]=0.
; * MSRC001_1021[DIS_SPEC_TLB_RLD]=0.
; * MSRC001_1022[DIS_HW_PF]=0.
;---------------------------------------------------
AMD_DISABLE_STACK_FAMILY_HOOK_F14 MACRO
local fam14_disable_stack_hook_exit
AMD_CPUID CPUID_MODEL
shr eax, 20 ; AL = cpu extended family
cmp al, 05h ; Is this family 14h?
jnz fam14_disable_stack_hook_exit ; Br if no
mov ecx, LS_CFG ; MSR:C001_1020
_RDMSR
btr eax, DIS_STREAM_ST ; Turn on Streaming store functionality
_WRMSR
inc cx ;IC_CFG ; MSR:C001_1021
_RDMSR
btr eax, IC_DIS_SPEC_TLB_RLD ; Turn on speculative DC-TLB reloads
_WRMSR
inc cx ;DC_CFG ; MSR:C001_1022
_RDMSR
btr eax, DIS_HW_PF ; Turn on hardware prefetches
_WRMSR
;--------------------------------------------------------------------------
; Begin critical sequence in which EAX, BX, ECX, and EDX must be preserved.
;--------------------------------------------------------------------------
mov ecx, HWCR ; MSR:C001_0015h
_RDMSR
btr eax, INVD_WBINVD ; Disable INVD -> WBINVD conversion
_WRMSR
invd ; Clear the cache tag RAMs
bts eax, INVD_WBINVD ; Turn on Conversion of INVD to WBINVD
_WRMSR
;--------------------------------------------------------------------------
; End critical sequence in which EAX, BX, ECX, and EDX must be preserved.
;--------------------------------------------------------------------------
fam14_disable_stack_hook_exit:
ENDM
;---------------------------------------------------
;
; GET_NODE_ID_CORE_ID_F14 Macro - Stackless
;
; Read family specific values to determine the node and core
; numbers for the core executing this code.
;
; Inputs:
; none
; Outputs:
; ESI = core#, node# & flags (see GET_NODE_ID_CORE_ID macro above)
; MM5 = 32b pointer to family info structure
; Destroyed:
; eax, ebx, ecx, edx, esi, mm5
;---------------------------------------------------
GET_NODE_ID_CORE_ID_F14 MACRO
local node_core_f14_exit
local end_of_f14h_data
IFNDEF FAM14H_INFO_STRUCT
jmp end_of_f14h_data
; Family 14h Info Structure: L2Size, #SharedCores, AllocMem, AllocExe, SzAddrBus, pad
FAM14H_INFO_STRUCT CPU_FAMILY_INFO { 256, 1, 0, 0, 36, 0}
end_of_f14h_data:
ENDIF
cmp si, -1 ; Has node/core already been discovered?
jnz node_core_f14_exit ; Br if yes
AMD_CPUID CPUID_MODEL
shr eax, 20 ; AL = cpu extended family
cmp al, 05h ; Is this family 14h?
jnz node_core_f14_exit ; Br if no
LoadTableAddress(FAM14H_INFO_STRUCT)
movd mm5, eax ; load pointer to Family Info Struc
shr ebx, 24 ; CPUID_0000_0001_EBX[31:24]: initial local APIC physical ID
bts ebx, FLAG_IS_PRIMARY ; all family 14h cores are primary
mov esi, ebx ; ESI = Node#=0, core number
node_core_f14_exit:
ENDM
;;***************************************************************************
;; Family 15h MACROS
;;***************************************************************************
;---------------------------------------------------
;
; AMD_ENABLE_STACK_FAMILY_HOOK_F15 Macro - Stackless
;
; Set any family specific controls needed to enable the use of
; cache as general storage before main memory is available.
;
; Inputs:
; ESI - node#, core#, flags from GET_NODE_ID_CORE_ID
; Outputs:
; none
; Destroyed:
; eax, ebx, ecx, edx
;
; Family 15h requirements (BKDG #42301 section 2.3.3):
; * Paging must be disabled.
; * MSRC001_0015[INVD_WBINVD]=0
; * MSRC001_1020[DisSS]=1
; * MSRC001_1021[DIS_SPEC_TLB_RLD]=1
; * MSRC001_1022[DIS_SPEC_TLB_RLD]=1
; * MSRC001_1022[DisHwPf]=1
; * No INVD or WBINVD, no exceptions, page faults or interrupts
;---------------------------------------------------
AMD_ENABLE_STACK_FAMILY_HOOK_F15 MACRO
local fam15_enable_stack_hook_exit
AMD_CPUID CPUID_MODEL
mov ebx, eax ; Save revision info to EBX
shr eax, 20 ; AL = cpu extended family
cmp al, 06h ; Is this family 15h?
jnz fam15_enable_stack_hook_exit ; Br if no
bt esi, FLAG_STACK_REENTRY ; Check if stack has already been set
.if (!carry?)
mov ecx, HWCR ; MSR C001_0015
_RDMSR
btr eax, INVD_WBINVD ; disable INVD -> WBINVD conversion
_WRMSR
.endif
mov ecx, LS_CFG ; MSR:C001_1020
_RDMSR
bts eax, DIS_SS ; Turn on Streaming store functionality disabled bit
_WRMSR
inc ecx ;IC_CFG ; MSR:C001_1021
_RDMSR
bts eax, IC_DIS_SPEC_TLB_RLD ; Turn on Disable speculative IC-TLB reloads bit
_WRMSR
inc ecx ;DC_CFG ; MSR:C001_1022
_RDMSR
bts eax, DC_DIS_SPEC_TLB_RLD ; Turn on Disable speculative DC-TLB reloads bit
bts eax, DIS_HW_PF ; Turn on Disable hardware prefetches bit
_WRMSR
mov eax, ebx ; Restore revision info to EAX
shr eax, 16
and al, 0Fh ; AL = cpu extended model
.if (al == 01h) ; Is this TN?
; Do TN enable stack special
mov ecx, CU_CFG ; MSR:C001_1023
_RDMSR
bt eax, L2_WAY_LOCK_EN ; Check if way 15 of the L2 needs to be reserved
.if (!carry?)
bts eax, L2_WAY_LOCK_EN
or eax, L2_FIRST_LOCKED_WAY_OR_MASK
_WRMSR
.endif
.endif
; Do Standard Family 15 work
mov ecx, CU_CFG3 ; MSR:C001_102B
_RDMSR
btr edx, (COMBINE_CR0_CD - 32) ; Clear CombineCr0Cd bit
_WRMSR
fam15_enable_stack_hook_exit:
ENDM
;----------------------------------------------
;
; AMD_DISABLE_STACK_FAMILY_HOOK_F15 Macro - Stackless
;
; Return any family specific controls to their 'standard'
; settings for using cache with main memory.
;
; Inputs:
; ESI - [31:24] flags; [15,8]= Node#; [7,0]= core#
; Outputs:
; none
; Destroyed:
; eax, ebx, ecx, edx
;
; Family 15h requirements:
; * INVD or WBINVD
; * MSRC001_0015[INVD_WBINVD]=1
; * MSRC001_1020[DisSS]=0
; * MSRC001_1021[DIS_SPEC_TLB_RLD]=0
; * MSRC001_1022[DIS_SPEC_TLB_RLD]=0
; * MSRC001_1022[DIS_HW_PF]=0
;---------------------------------------------------
AMD_DISABLE_STACK_FAMILY_HOOK_F15 MACRO
local fam15_disable_stack_hook_exit
local fam15_disable_stack_remote_read_exit
AMD_CPUID CPUID_MODEL
mov ebx, eax ; Save revision info to EBX
shr eax, 20 ; AL = cpu extended family
cmp al, 06h ; Is this family 15h?
jnz fam15_disable_stack_hook_exit ; Br if no
mov edi, ebx ; Save revision info to EDI
AMD_CPUID AMD_CPUID_APIC
mov al, cl ; AL = number of cores - 1
shr cx, APIC_ID_CORE_ID_SIZE ; CL = ApicIdCoreIdSize
mov bx, 1
shl bl, cl ; BL = theoretical number of cores on socket
dec bx ; BL = core number on socket mask
mov ah, bl ; AH = core number on socket mask
mov ebx, edi ; Restore revision info to EBX
mov di, ax ; DI[15:8] = core number mask, DI[7:0] = number of cores - 1
and ebx, 0F00FFh
mov eax, ebx
shr eax, 8
or bx, ax ; Save Extended Model, Model and Stepping to BX
; [11:8] = Extended Model, [7:4] = Model, [3:0] = Stepping
;; A handshake is required to ensure that all cores on a node invalidate in sync.
mov ecx, APIC_BASE_ADDRESS
_RDMSR
mov dx, bx ; Save Extended Model, Model and Stepping to DX
shl edx, 16 ; EDX[31:16] = Extended Model, Model and Stepping
mov ebx, eax ; EBX = LAPIC base
xor ecx, ecx ; Zero out CU flags
bts ecx, AMD_CU_NEED_TO_WAIT ; Default to waiting
bts ecx, AMD_CU_SEND_INVD_MSG ; Default to signaling
mov eax, CR0
bt ax, CR0_PE ; Are we in protected mode?
.if (!carry?)
bts ecx, AMD_CU_RESTORE_ES ; Indicate ES restore is required
mov cx, es ; Save ES segment register to CX
xor ax, ax
mov es, ax ; Set ES to big real mode selector for 4GB access
.endif
and bx, 0F000h ; EBX = LAPIC base, offset 0
or bl, APIC_ID_REG
mov eax, es:[ebx] ; EAX[31:24] = APIC ID
shr eax, APIC20_APICID ; AL = APIC ID
mov ah, al ; AH = APIC ID
mov dx, di ; DH = core mask
and ah, dh ; AH = core number
.if (zero?)
;; Core 0 of a socket
btr ecx, AMD_CU_SEND_INVD_MSG ; No need to signal after INVD
.if (dl != 0)
;; This socket has multiple cores
and bx, 0F000h ; EBX = LAPIC base, offset 0
or bx, APIC_MSG_REG
mov edi, APIC_MSG
mov es:[ebx], edi ; Signal for non core 0s to complete CAR breakdown
.else
btr ecx, AMD_CU_NEED_TO_WAIT ; No need to wait on a single core CPU
.endif
.endif
bt ecx, AMD_CU_NEED_TO_WAIT
.if (carry?)
.if (ah == dl)
;; This is the highest numbered core on this socket -- wait on core 0
not dh ; Flip the mask to determine local core 0's APIC ID
and al, dh ; AL = target APIC ID
.else
;; All other cores (including core 0) wait on the next highest core.
;; In this way, cores will halt in a cascading fashion down to 0.
inc al
.endif
shl eax, APIC20_APICID
and bx, 0F000h
or bx, APIC_CMD_HI_REG
mov es:[ebx], eax ; Set target APIC ID
;; Use bits 23:16 as a timeout for unresponsive cores
ror ecx, 8
mov ch, 0FFh
stc
.while (carry?)
and bx, 0F000h ; EBX = LAPIC base, offset 0
or bx, APIC_CMD_LO_REG
mov eax, CMD_REG_TO_READ_DATA
mov es:[ebx], eax ; Fire remote read IPI
inc ch ; Pre increment the timeout
stc
.while (carry?)
dec ch ; Check the timeout
jz fam15_disable_stack_remote_read_exit ; Branch if there is an unresponsive core
mov eax, es:[ebx]
bt eax, DELIVERY_STS_BIT
.endw
stc
.while (carry?)
mov eax, es:[ebx]
and eax, REMOTE_READ_STS
.if (eax == REMOTE_DELIVERY_PEND)
dec ch ; Check the timeout
jz fam15_disable_stack_remote_read_exit ; Branch if there is an unresponsive core
stc
.else
clc
.endif
.endw
.if (eax == REMOTE_DELIVERY_DONE)
and bx, 0F000h ; EBX = LAPIC base, offset 0
or bl, APIC_REMOTE_READ_REG
mov eax, es:[ebx]
.if (eax == APIC_MSG)
clc
.else
stc
.endif
.else
dec ch ; Check the timeout
jz fam15_disable_stack_remote_read_exit ; Branch if there is an unresponsive core
stc
.endif
.endw
fam15_disable_stack_remote_read_exit:
rol ecx, 8 ; Restore ECX
.endif
bt ecx, AMD_CU_RESTORE_ES
.if (carry?)
mov es, cx
.endif
mov edi, ecx ; EDI = CU flags
shr edx, 16
mov bx, dx ; Restore Extended Model, Model and Stepping
;; Handshaking complete. Continue tearing down CAR.
mov ecx, LS_CFG ; MSR:C001_1020
.if (bx != 0) ; Is this OR A0?
_RDMSR
btr eax, DIS_SS ; Turn on Streaming store functionality
_WRMSR
.endif ; End workaround for errata 495 and 496
inc ecx ;IC_CFG ; MSR:C001_1021
_RDMSR
btr eax, IC_DIS_SPEC_TLB_RLD ; Turn on speculative TLB reloads
_WRMSR
inc ecx ;DC_CFG ; MSR:C001_1022
_RDMSR
btr eax, DC_DIS_SPEC_TLB_RLD ; Turn on speculative TLB reloads
.if (bx != 0) ; Is this OR A0?
btr eax, DIS_HW_PF ; Turn on hardware prefetches
.endif ; End workaround for erratum 498
_WRMSR
mov ecx, HWCR ; MSR:C001_0015h
_RDMSR
btr eax, INVD_WBINVD ; Disable INVD -> WBINVD conversion
_WRMSR
invd ; Clear the cache tag RAMs
.if (bh == 01h) ; Is this TN?
; Do TN enable stack special
mov ecx, CU_CFG ; MSR:C001_1023
_RDMSR
shr eax, L2_FIRST_LOCKED_WAY
and eax, 01Fh
.if (eax == 01Fh) ; Check if way 15 of the L2 needs to be reserved
mov ecx, CU_CFG ; MSR:C001_1023
_RDMSR
btr eax, L2_WAY_LOCK_EN
_WRMSR
.endif
.endif
; Do Standard Family 15 work
mov ecx, HWCR ; MSR:C001_0015h
_RDMSR
bts eax, INVD_WBINVD ; Turn on INVD -> WBINVD conversion
_WRMSR
mov ecx, CU_CFG3 ; MSR:C001_102B
_RDMSR
bts edx, (COMBINE_CR0_CD - 32) ; Set CombineCr0Cd bit
_WRMSR
bt edi, AMD_CU_SEND_INVD_MSG
.if (carry?)
;; Non core zero needs to signal to core 0 to proceed
mov ecx, APIC_BASE_ADDRESS
_RDMSR
mov ebx, eax ; EBX = LAPIC base
and bx, 0F000h ; EBX = LAPIC base, offset 0
or bx, APIC_MSG_REG
mov eax, APIC_MSG
mov es:[ebx], eax ; Signal for core 0 to complete CAR breakdown
.endif
fam15_disable_stack_hook_exit:
ENDM
;---------------------------------------------------
;
; GET_NODE_ID_CORE_ID_F15 Macro - Stackless
;
; Read family specific values to determine the node and core
; numbers for the core executing this code.
;
; Inputs:
; none
; Outputs:
; ESI = core#, node# & flags (see GET_NODE_ID_CORE_ID macro above)
; MM5 = 32b pointer to family info structure
; Destroyed:
; eax, ebx, ecx, edx, esi, mm5
;---------------------------------------------------
GET_NODE_ID_CORE_ID_F15 MACRO
local node_core_f15_exit
local end_of_f15h_data
IFNDEF FAM15H_INFO_STRUCT
jmp end_of_f15h_data
; Family 15h Info Structure: L2Size, #SharedCores, AllocMem, AllocExe, SzAddrBus, pad
FAM15H_INFO_STRUCT CPU_FAMILY_INFO { 512, 2, 0, 0, 48, 0 }
end_of_f15h_data:
ENDIF
cmp si, -1 ; Has node/core already been discovered?
jnz node_core_f15_exit ; Br if yes
AMD_CPUID CPUID_MODEL
shr eax, 20 ; AL = cpu extended family
cmp al, 06h ; Is this family 15h?
jnz node_core_f15_exit ; Br if no
LoadTableAddress(FAM15H_INFO_STRUCT)
movd mm5, eax ; load pointer to Family Info Struc
xor esi, esi ; Assume BSC, clear local flags
mov ecx, APIC_BASE_ADDRESS ; MSR:0000_001B
_RDMSR
bt eax, APIC_BSC ; Is this the BSC?
.if (carry?)
; This is the BSP.
; Enable routing tables on BSP (just in case the HT init code has not yet enabled them)
mov eax, 8000C06Ch ; PCI address for D18F0x6C Link Initialization Control Register
mov dx, 0CF8h
out dx, eax
add dx, 4
in eax, dx
btr eax, 0 ; Set LinkInitializationControl[RouteTblDis] = 0
out dx, eax
.else ;
; This is an AP. Routing tables have been enabled by the HT Init process.
; Also, the MailBox register was set by the BSP during early init
; The Mailbox register content is formatted as follows:
; UINT32 Node:4; // The node id of Core's node.
; UINT32 Socket:4; // The socket of this Core's node.
; UINT32 Module:2; // The internal module number for Core's node.
; UINT32 ModuleType:2; // Single Module = 0, Multi-module = 1.
; UINT32 :20; // Reserved
;
mov ecx, 0C0000408h ; Read the family 15h mailbox
_RDMSR ; MC4_MISC1[63:32]
mov si, dx ; SI = raw mailbox contents (will extract node# from this)
shr ebx, 24 ; BL = CPUID Fn0000_0001_EBX[LocalApicId]
mov di, bx ; DI = Initial APIC ID (will extract core# from this)
AMD_CPUID AMD_CPUID_APIC ;
shr ch, 4 ; CH = ApicIdSize, #bits in APIC ID that show core#
inc cl ; CL = Number of enabled cores in the socket
mov bx, cx
mov ecx, NB_CFG
_RDMSR ; EDX has InitApicIdCpuIdLo bit
mov cl, bh ; CL = APIC ID size
mov al, 1 ; Convert APIC ID size to an AND mask
shl al, cl ; AL = 2^APIC ID size
dec al ; AL = mask for relative core number
xor ah, ah ; AX = mask for relative core number
bt edx, (INIT_APIC_ID_CPU_ID_LO-32) ; InitApicIdCpuIdLo == 1?
.if (!carry?) ; Br if yes
mov ch, 8 ; Calculate core number shift count
sub ch, cl ; CH = core shift count
mov cl, ch ;
shr di, cl ; Right justify core number
.endif ;
and di, ax ; DI = socket-relative core number
mov cx, si ; CX = raw mailbox value
shr cx, 10 ; CL[1:0] = ModuleType or #nodes per socket (0-SCM, 1-MCM)
and cl, 3 ; Isolate ModuleType
xor bh, bh ; BX = Number of enabled cores in the socket
shr bx, cl ; BX = Number of enabled cores per node
xor dx, dx ; Clear upper word for div
mov ax, di ; AX = socket-relative core number
div bx ; DX = node-relative core number
movzx eax, si ; Prepare return value
and ax, 000Fh ; AX = node number
shl ax, 8 ; [15:8]=node#
mov al, dl ; [7:0]=core# (relative to node)
mov esi, eax ; ESI = node-relative core number
.endif ; end
;
; determine if this core shares MTRRs
;
mov eax, 8000C580h ; Compute Unit Status
mov bx, si ; load node#(bh), core#(bl)
shl bh, 3 ; Move node# to PCI Dev# field
add ah, bh ; Adjust PCI adress for node number
mov dx, 0CF8h
out dx, eax
add dx, 4
in eax, dx ; [3:0]=Enabled; [19:16]=DualCore
; BL is MyCore# , BH is primary flag
mov cx, 06h ; Use CH as 'first of pair' core#
.while (cl > 0)
bt eax, 0 ; Is pair enabled?
.if (carry?) ;
mov bh, 01h ; flag core as primary
bt eax, 16 ; Is there a 2nd in the pair?
.if (carry?) ;
.break .if (ch == bl) ; Does 1st match MyCore#?
inc ch
xor bh, bh ; flag core as NOT primary
.break .if (ch == bl) ; Does 2nd match MyCore#?
.else ; No 2nd core
.break .if (ch == bl) ; Does 1st match MyCore#?
.endif
inc ch
.endif
shr eax, 1
dec cl
.endw
.if (cl == 0)
;Error - core# didn't match Compute Unit Status content
bts esi, FLAG_CORE_NOT_IDENTIFIED
bts esi, FLAG_IS_PRIMARY ; Set Is_Primary for unknowns
.endif
.if (bh != 0) ; Check state of primary for the matched core
bts esi, FLAG_IS_PRIMARY ; Set shared flag into return value
.endif
node_core_f15_exit:
ENDM
|