分支自 DSP/ADSP21569/DSP-21569

graydon
2024-02-28 420778fcee054257d540cf24fbf1b1e3f9fc0d9f
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
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
/*
** ADSP-21569 linker description file generated on Aug 02, 2023 at 21:46:12.
*/
/*
** Copyright (C) 2000-2022 Analog Devices Inc., All Rights Reserved.
**
** This file is generated automatically based upon the options selected
** in the System Configuration utility. Changes to the LDF configuration
** should be made by modifying the appropriate options rather than editing
** this file. To access the System Configuration utility, double-click the
** system.svc file from a navigation view.
**
** Custom additions can be inserted within the user-modifiable sections. These
** sections are bounded by comments that start with "$VDSG". Only changes
** placed within these sections are preserved when this file is re-generated.
**
** Product      : CrossCore Embedded Studio
** Tool Version : 6.2.3.3
*/
 
ARCHITECTURE(ADSP-21569)
 
/*
** Define a linked library list. Libraries from the command line are included
** in COMMAND_LINE_OBJECTS.
*/
$LIBRARIES = 
 
/*$VDSG<insert-user-libraries-at-beginning>                     */
/* Text inserted between these $VDSG comments will be preserved */
/*$VDSG<insert-user-libraries-at-beginning>                     */
 
    libcc.dlb
   ,libc.dlb
   ,libio.dlb
   ,libcpp.dlb
   ,libosal_noos.dlb
   ,libprofile.dlb
   ,libssl.dlb
   ,libdrv.dlb
   ,libdsp.dlb
   ,libldr.dlb
 
/*$VDSG<insert-user-libraries-at-end>                           */
/* Text inserted between these $VDSG comments will be preserved */
/*$VDSG<insert-user-libraries-at-end>                           */
 
   ;
 
/*
** Define a linked objects list.
*/
$OBJECTS = 
 
/*$VDSG<insert-user-objects-at-beginning>                       */
/* Text inserted between these $VDSG comments will be preserved */
/*$VDSG<insert-user-objects-at-beginning>                       */
 
    "app_startup.doj"
   ,$COMMAND_LINE_OBJECTS
 
/*$VDSG<insert-user-objects-at-end>                             */
/* Text inserted between these $VDSG comments will be preserved */
/*$VDSG<insert-user-objects-at-end>                             */
 
   ;
 
/*
** List of all objects and libraries.
*/
$OBJS_LIBS = $OBJECTS, $LIBRARIES;
 
/*
** List of objects and libraries which prefer internal memory as
** specified by prefersMem attribute.
*/
$OBJS_LIBS_INTERNAL = 
 
/*$VDSG<insert-libraries-internal>                              */
/* Text inserted between these $VDSG comments will be preserved */
/*$VDSG<insert-libraries-internal>                              */
 
    $OBJS_LIBS{prefersMem("internal")}
 
/*$VDSG<insert-libraries-internal-end>                          */
/* Text inserted between these $VDSG comments will be preserved */
/*$VDSG<insert-libraries-internal-end>                          */
 
   ;
 
/*
** List of objects and libraries which don't have a preference for
** external memory as specified by prefersMem attribute.
*/
$OBJS_LIBS_NOT_EXTERNAL = 
 
/*$VDSG<insert-libraries-not-external>                          */
/* Text inserted between these $VDSG comments will be preserved */
/*$VDSG<insert-libraries-not-external>                          */
 
    $OBJS_LIBS{!prefersMem("external")}
 
/*$VDSG<insert-libraries-not-external-end>                      */
/* Text inserted between these $VDSG comments will be preserved */
/*$VDSG<insert-libraries-not-external-end>                      */
 
   ;
 
 
/*$VDSG<insert-user-macros>                                     */
/* Text inserted between these $VDSG comments will be preserved */
/*$VDSG<insert-user-macros>                                     */
 
 
MEMORY
{
   // ADSP-21569 MEMORY MAP.
   // The ADSP-2156x SHARC+ cores have 5 Mbit L1 RAM split over four blocks.
 
   // This LDF defines memory sections only in byte format. It is no longer
   // necessary to partition memory for different widths and different
   // input types.
 
   // The output sections that populate the memory are defined to use
   // one of the following qualifiers:
 
   //    BW     - byte sections
   //    PM     - PM data/ISA code
   //    DM     - DM data
   //    SW     - VISA code
   //    DATA64 - long word data
 
   // The linker filters the inputs for each output section to match
   // these output section qualfiers. Each output section uses the same
   // byte memory sections which the linker packs correctly for each
   // qualifier.
   // Notes:
   // 1) The interrupt Vector Table (IVT) code is placed in internal memory
   //    by default and has to use ISA (NW, 48 bit) instructions.
 
 
   // ----------------------- L1-Block 0 RAM (1.5 MBit) ------------------------
   mem_iv_code             { TYPE(PM RAM) START(0x00090000) END(0x000900a7) WIDTH(48) }
   mem_block0_bw           { TYPE(BW RAM) START(0x002403f0) END(0x0026ffff) WIDTH(8) }
 
   // ----------------------- L1-Block 1 RAM (1.5 MBit) ------------------------
   // The data cache attached to block 1 caches all the external memory access
   // requests for the DM bus. The size of the cache can be adjusted with a
   // corresponding reduction of the available non-cache L1 space.
   // 64 KB at the end of block 1 is DM cache
   mem_block1_bw           { TYPE(BW RAM) START(0x002c0000) END(0x002dffff) WIDTH(8) }
 
   // ----------------------- L1-Block 2 RAM (1 MBit) --------------------------
   // The data cache attached to block 2 caches all the external memory access
   // requests for the PM bus. If the size of the cache is 128KB, the whole
   // of block 2 is cache.
   // 32 KB at the end of block 2 is PM cache
   mem_block2_bw           { TYPE(BW RAM) START(0x00300000) END(0x00317fff) WIDTH(8) }
 
   // ----------------------- L1-Block 3 RAM (1 MBit) --------------------------
   // The instruction cache is attached to block 3.
   // 32 KB at the end of block 3 is instruction cache
   mem_block3_bw           { TYPE(BW RAM) START(0x00380000) END(0x00397fff) WIDTH(8) }
 
   // ----------------------- L2-RAM (8 MBit) ----------------------------------
   // The 8Mb/1MB L2 SRAM memory has 8 contiguous 128 KB banks.
   //
   // Notes:
   // 1. The boot code claims the last 8KB of L2 SRAM, as working space.
   //    This memory is not bootable, but can be used by the application once
   //    booting is complete (NO_INIT in CCES). Note that if the application
   //    makes use of this space and then calls the Boot Code APIs, the
   //    space may be corrupted.
   // 2. All memory except the 16KB before the boot code claimed L2 SRAM
   //    is cached.
   mem_L2_bw               { TYPE(BW RAM) START(0x20000000) END(0x200f9fff) WIDTH(8) }
   mem_L2UC_bw             { TYPE(BW RAM) START(0x200fa000) END(0x200fdfff) WIDTH(8) }
   mem_L2BC_bw             { TYPE(BW RAM) START(0x200fe000) END(0x200fffff) WIDTH(8) }
 
  #define MY_L2_UNCACHED_MEM mem_L2UC_bw
  #define MY_L2_CACHED_MEM   mem_L2_bw
 
   // ----------------------- L3 -----------------------------------------------
   // DMC0 DDR3 SDRAM memory.
   //
   // Notes
   //  1. Code execution addresses are restricted for SHARC cores so
   //     the memory allocated cannot be increased or moved.
   //  2. All L3 will be considered cached.
   //  3. MY_SDRAM_DATA1_MEM is defined to be the smaller L3 data section and
   //     MY_SDRAM_DATA2_MEM is the larger one.
   //  4. The reason for splitting the SDRAM into segments is that the SW
   //     alias doesn't start at the bottom of the DMC address range and the
   //     linker doesn't support trying to allocate from the parts of a larger
   //     BW segment that might include a smaller SW alias range.
   //  5. The stack in SDRAM does not use memory in byte range 0xA0000000
   //     through to 0xBFFFFFFF as these addresses cannot be converted to
   //     word-addresses.
 
   // ----------------------- 256MB DMC0(DDR-A) --------------------------------
   // 256MB DMC0 DDR3 SDRAM memory is partitioned and used as follows:
   //   DDR-A segment 1 :   6MB  NW code or data
   //                       4MB  data
   //   DDR-A segment 2 :   6MB  VISA code or data
   //                     240MB  data
   mem_DMC0_SDRAM_A1       { TYPE(BW RAM) START(0x80000000) END(0x809fffff) WIDTH(8) }
   mem_DMC0_SDRAM_A2       { TYPE(BW RAM) START(0x80a00000) END(0x8fffffff) WIDTH(8) }
 
  #define MY_SDRAM_NWCODE_MEM mem_DMC0_SDRAM_A1
  #define MY_SDRAM_DATA1_MEM  mem_DMC0_SDRAM_A1
  #define MY_SDRAM_SWCODE_MEM mem_DMC0_SDRAM_A2
  #define MY_SDRAM_DATA2_MEM  mem_DMC0_SDRAM_A2
  #define SDRAM_STACK_HEAP_BLOCK  mem_DMC0_SDRAM_A2
   
   /*$VDSG<insert-new-memory-segments>                          */
   /* Text inserted between these $VDSG comments will be preserved */
   /*$VDSG<insert-new-memory-segments>                          */
   
} /* MEMORY */
 
PROCESSOR 21569_CORE0_SHARC0
{
   LINK_AGAINST( $COMMAND_LINE_LINK_AGAINST )
   OUTPUT($COMMAND_LINE_OUTPUT_FILE)
   KEEP(___ctor_NULL_marker)
   KEEP(__ctor_NULL_marker.)
   ENTRY(start)
   
   /*$VDSG<insert-user-ldf-commands>                            */
   /* Text inserted between these $VDSG comments will be preserved */
   /*$VDSG<insert-user-ldf-commands>                            */
   
   SECTIONS
   {
      
      /*$VDSG<insert-new-sections-at-iv_code>                   */
      /* Text inserted between these $VDSG comments will be preserved */
      /*$VDSG<insert-new-sections-at-iv_code>                   */
      
 
    // ------------------------------------------------------------------
    // Block 0 is primarily used for the interrupt vectors code, stack,
    // heap and DM data.
    // If the entire block3 is cache (128KB size) it also includes priority
    // code section.
      
      /*$VDSG<insert-new-sections-for-l1_block0>                */
      /* Text inserted between these $VDSG comments will be preserved */
      /*$VDSG<insert-new-sections-for-l1_block0>                */
      
      #define IV_CODE dxe_iv_code
      IV_CODE PM
      {
         
         /*$VDSG<insert-new-sections-at-the-start-of-iv_code>   */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-new-sections-at-the-start-of-iv_code>   */
         
         // Interrupt vector code (4 NW instructions per interrupt)
         INPUT_SECTIONS( $OBJECTS(iv_code) )
         
         /*$VDSG<insert-new-sections-at-the-end-of-iv_code>     */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-new-sections-at-the-end-of-iv_code>     */
         
      } > mem_iv_code
      
      
      /*$VDSG<insert-new-sections-at-mem_block0_bw>             */
      /* Text inserted between these $VDSG comments will be preserved */
      /*$VDSG<insert-new-sections-at-mem_block0_bw>             */
      
      // Stack and heap initial memory reserve.
      dxe_block0_stack_and_heap_reserve NO_INIT BW
      {
         RESERVE(heaps_and_system_stack_in_L1, heaps_and_system_stack_in_L1_length = 189440, 8)
      } > mem_block0_bw
      
      // Highest priority (prio0) data and code.
      dxe_block0_data_prio0_bw BW
      {
         // Highest priority byte data for block0.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block0 seg_int_data) )
      } > mem_block0_bw
      
      dxe_block0_data_prio0 DM
      {
         // Highest priority data for block 0.
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block0 seg_int_data ) )
      } > mem_block0_bw
      
      dxe_block0_sw_code_prio0 SW
      {
         // Highest priority SW code for block 0.
         INPUT_SECTION_ALIGN(2)
         
         /*$VDSG<insert-new-sections-at-the-start-of-dxe_block0_sw_code_prio0>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-new-sections-at-the-start-of-dxe_block0_sw_code_prio0>  */
         
         FILL(0x1)  // fill gaps in memory with NOPs
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block0) )
         
         /*$VDSG<insert-new-sections-at-the-end-of-dxe_block0_sw_code_prio0>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-new-sections-at-the-end-of-dxe_block0_sw_code_prio0>  */
         
      } > mem_block0_bw
      
      dxe_block0_nw_code_prio0 PM
      {
         // Highest priority code for block 0.
         INPUT_SECTION_ALIGN(2)
         
         /*$VDSG<insert-new-sections-at-the-start-of-dxe_block0_nw_code_prio0>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-new-sections-at-the-start-of-dxe_block0_nw_code_prio0>  */
         
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block0) )
         
         /*$VDSG<insert-new-sections-at-the-end-of-dxe_block0_nw_code_prio0>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-new-sections-at-the-end-of-dxe_block0_nw_code_prio0>  */
         
      } > mem_block0_bw
      
      dxe_block0_noinit_prio0 NO_INIT DM
      {
         // Highest priority uninitialized data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block0_noinit_data seg_int_noinit_data) )
      } > mem_block0_bw
      
      dxe_block0_noinit_prio0_bw NO_INIT BW
      {
         // Highest priority uninitialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block0_noinit_data seg_int_noinit_data) )
      } > mem_block0_bw
      
      dxe_block0_bsz_prio0 ZERO_INIT DM
      {
         // Highest priority zero initialized data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block0_bsz_data seg_int_bsz_data) )
      } > mem_block0_bw
      
      dxe_block0_bsz_prio0_bw ZERO_INIT BW
      {
         // Highest priority zero initialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block0_bsz_data seg_int_bsz_data) )
      } > mem_block0_bw
      
      // High priority (prio1) data, and code if necessary.
      dxe_block0_data_prio1 DM
      {
         // High priority data.
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_dmda_nw seg_dmda seg_vtbl) )
      } > mem_block0_bw
      
      dxe_block0_data_prio1_bw BW
      {
         // High priority byte data for block0.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_dmda_bw seg_dmda seg_vtbl) )
      } > mem_block0_bw
      
      dxe_block0_bsz_prio1 ZERO_INIT DM
      {
         // High priority zero initialized data.
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_bsz_data .bss32 .bss bsz) )
      } > mem_block0_bw
      
      dxe_block0_bsz_prio1_bw ZERO_INIT BW
      {
         // High priority zero initialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_bsz_data .bss8 .bss) )
      } > mem_block0_bw
      
      dxe_block0_noinit_prio1 NO_INIT DM
      {
         // High priority uninitialized data.
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_noinit_data) )
      } > mem_block0_bw
      
      dxe_block0_noinit_prio1_bw NO_INIT BW
      {
         // High priority uninitialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_noinit_data) )
      } > mem_block0_bw
      
      // Next map data that's not thought to be low priority.
      dxe_block0_data_prio2 DM
      {
         // Default priority data.
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_dmda_nw seg_dmda seg_vtbl) )
      } > mem_block0_bw
      
      dxe_block0_data_prio2_bw BW
      {
         // Default priority data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_dmda_bw seg_dmda seg_vtbl) )
      } > mem_block0_bw
      
      dxe_block0_bsz_prio2 ZERO_INIT DM
      {
         // Default priority zero initialized data.
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_bsz_data .bss32 .bss bsz) )
      } > mem_block0_bw
      
      dxe_block0_bsz_prio2_bw ZERO_INIT BW
      {
         // Default priority zero initialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_bsz_data .bss8 .bss) )
      } > mem_block0_bw
      
      dxe_block0_noinit_prio2 NO_INIT DM
      {
         // Default priority uninitialized data.
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_noinit_data) )
      } > mem_block0_bw
      
      dxe_block0_noinit_prio2_bw NO_INIT BW
      {
         // Default priority uninitialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_noinit_data) )
      } > mem_block0_bw
      
      dxe_block0_data_prio3 DM
      {
         // Unspecified and lowest priority data for any unused memory.
         INPUT_SECTIONS( $OBJS_LIBS(seg_dmda_nw seg_dmda seg_vtbl .rtti .cht .edt) )
      } > mem_block0_bw
      
      dxe_block0_data_prio3_bw BW
      {
         // Unspecified and lowest priority data for any unused memory.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_dmda_bw seg_dmda seg_vtbl .rtti .cht .edt) )
      } > mem_block0_bw
      
      dxe_block0_bsz_prio3 ZERO_INIT DM
      {
         // Unspecified and lowest priority zero init data for any unused memory.
         INPUT_SECTIONS( $OBJS_LIBS(seg_bsz_data .bss32 .bss) )
      } > mem_block0_bw
      
      dxe_block0_bsz_prio3_bw ZERO_INIT BW
      {
         // Unspecified and lowest priority zero init data for any unused memory.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_bsz_data .bss8 .bss) )
      } > mem_block0_bw
      
      dxe_block0_noinit_prio3 NO_INIT DM
      {
         //  Unspecified and lowest priority no init data for any unused memory.
         INPUT_SECTIONS( $OBJS_LIBS(seg_noinit_data) )
      } > mem_block0_bw
      
      dxe_block0_noinit_prio3_bw NO_INIT BW
      {
         //  Unspecified and lowest priority no init data for any unused memory.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_noinit_data) )
      } > mem_block0_bw
      
 
    // ------------------------------------------------------------------
    // Block 1 is primarily used for the DM data and DM cache.
 
    // Define a DM cache size symbol.
    // The values used match the bits in the L1C0_CFG register size bits or
    // -1 if cache is off.
 
      ___ldf_dmcachesize = 2; // 64 KB DM cache
      
      /*$VDSG<insert-new-sections-for-l1_block1>                */
      /* Text inserted between these $VDSG comments will be preserved */
      /*$VDSG<insert-new-sections-for-l1_block1>                */
      
      dxe_block1_data_prio0_bw BW
      {
         // Highest priority byte data for block1.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block1 seg_int_data) )
      } > mem_block1_bw
      
      dxe_block1_data_prio0 DM
      {
         // Highest priority data for block1.
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_dm_data_prio0>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_dm_data_prio0>  */
         
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block1 seg_int_data) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_dm_data_prio0>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_dm_data_prio0>  */
         
      } > mem_block1_bw
      
      dxe_block1_sw_code_prio0 SW
      {
         // Highest priority SW code for block1.
         INPUT_SECTION_ALIGN(2)
         FILL(0x1)  // fill gaps in memory with NOPs
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block1) )
      } > mem_block1_bw
      
      dxe_block1_nw_code_prio0 PM
      {
         // Highest priority code for block1.
         INPUT_SECTION_ALIGN(2)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block1) )
      } > mem_block1_bw
      
      dxe_block1_noinit_prio0 NO_INIT DM
      {
         // Highest priority uninitialized data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block1_noinit_data seg_int_noinit_data) )
      } > mem_block1_bw
      
      dxe_block1_noinit_prio0_bw NO_INIT BW
      {
         // Highest priority uninitialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block1_noinit_data seg_int_noinit_data) )
      } > mem_block1_bw
      
      dxe_block1_bsz_prio0 ZERO_INIT DM
      {
         // Highest priority zero initialized data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block1_bsz_data seg_int_bsz_data) )
      } > mem_block1_bw
      
      dxe_block1_bsz_prio0_bw ZERO_INIT BW
      {
         // Highest priority zero initialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block1_bsz_data seg_int_bsz_data) )
      } > mem_block1_bw
      
      dxe_block1_data_prio1 DM
      {
         // High priority data.
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_dm_data_prio1>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_dm_data_prio1>  */
         
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_dmda_nw seg_dmda seg_vtbl) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_dm_data_prio1>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_dm_data_prio1>  */
         
      } > mem_block1_bw
      
      dxe_block1_data_prio1_bw BW
      {
         // High priority byte data for block1.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_dmda_bw seg_dmda seg_vtbl) )
      } > mem_block1_bw
      
      dxe_block1_bsz_prio1 ZERO_INIT DM
      {
         // High priority zero initialized data.
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_bsz_prio1>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_bsz_prio1>  */
         
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_bsz_data .bss32 .bss bsz) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_bsz_prio1>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_bsz_prio1>  */
         
      } > mem_block1_bw
      
      dxe_block1_bsz_prio1_bw ZERO_INIT BW
      {
         // High priority zero initialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_bsz_data .bss8 .bss) )
      } > mem_block1_bw
      
      dxe_block1_noinit_prio1 NO_INIT DM
      {
         // High priority uninitialized data.
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_noinit_data) )
      } > mem_block1_bw
      
      dxe_block1_noinit_prio1_bw NO_INIT BW
      {
         // High priority uninitialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_noinit_data) )
      } > mem_block1_bw
      
      dxe_block1_data_prio2 DM
      {
         // Default priority data.
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_dm_data_prio2>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_dm_data_prio2>  */
         
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_dmda_nw seg_dmda seg_vtbl) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_dm_data_prio2>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_dm_data_prio2>  */
         
      } > mem_block1_bw
      
      dxe_block1_data_prio2_bw BW
      {
         // Default priority data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_dmda_bw seg_dmda seg_vtbl) )
      } > mem_block1_bw
      
      dxe_block1_bsz_prio2 ZERO_INIT DM
      {
         // Default priority zero initialized data.
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_bsz_prio2>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_bsz_prio2>  */
         
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_bsz_data .bss32 .bss bsz) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_bsz_prio2>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_bsz_prio2>  */
         
      } > mem_block1_bw
      
      dxe_block1_bsz_prio2_bw ZERO_INIT BW
      {
         // Default priority zero initialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_bsz_data .bss8 .bss) )
      } > mem_block1_bw
      
      dxe_block1_noinit_prio2 NO_INIT DM
      {
         // Default priority uninitialized data.
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_noinit_data) )
      } > mem_block1_bw
      
      dxe_block1_noinit_prio2_bw NO_INIT BW
      {
         // Default priority uninitialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_noinit_data) )
      } > mem_block1_bw
      
      dxe_block1_data_prio3 DM
      {
         // Unspecified and lowest priority data for any unused memory.
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_dm_data_prio3>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_dm_data_prio3>  */
         
         INPUT_SECTIONS( $OBJS_LIBS(seg_dmda_nw seg_dmda seg_vtbl .rtti .cht .edt) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_dm_data_prio3>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_dm_data_prio3>  */
         
      } > mem_block1_bw
      
      dxe_block1_data_prio3_bw BW
      {
         // Unspecified and lowest priority data for any unused memory.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_dmda_bw seg_dmda seg_vtbl .rtti .cht .edt) )
      } > mem_block1_bw
      
      dxe_block1_bsz_prio3 ZERO_INIT DM
      {
         // Unspecified and lowest priority zero init data for any unused memory.
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_bsz_prio3>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_bsz_prio3>  */
         
         INPUT_SECTIONS( $OBJS_LIBS(seg_bsz_data .bss32 .bss) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_bsz_prio3>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_bsz_prio3>  */
         
      } > mem_block1_bw
      
      dxe_block1_bsz_prio3_bw ZERO_INIT BW
      {
         // Unspecified and lowest priority zero init data for any unused memory.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_bsz_data .bss8 .bss) )
      } > mem_block1_bw
      
      dxe_block1_noinit_prio3 NO_INIT DM
      {
         //  Unspecified and lowest priority no init data for any unused memory.
         INPUT_SECTIONS( $OBJS_LIBS(seg_noinit_data) )
      } > mem_block1_bw
      
      dxe_block1_noinit_prio3_bw NO_INIT BW
      {
         //  Unspecified and lowest priority no init data for any unused memory.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_noinit_data) )
      } > mem_block1_bw
      
 
    // ------------------------------------------------------------------
    // Block 2 is primarily used for the PM data and PM cache.
 
    // Define a PM cache size symbol.
    // The values used match the bits in the L1C0_CFG register size bits or
    // -1 if cache is off.
 
      ___ldf_pmcachesize = 1; // 32 KB PM cache
      
      /*$VDSG<insert-new-sections-for-l1_block2>                */
      /* Text inserted between these $VDSG comments will be preserved */
      /*$VDSG<insert-new-sections-for-l1_block2>                */
      
      dxe_block2_data_prio0_bw BW
      {
         // Highest priority byte data for block2.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block2) )
      } > mem_block2_bw
      
      dxe_block2_data_prio0 DM
      {
         // Highest priority data for block2.
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block2) )
      } > mem_block2_bw
      
      dxe_block2_sw_code_prio0 SW
      {
         // Highest priority SW code for block2.
         INPUT_SECTION_ALIGN(2)
         FILL(0x1)  // fill gaps in memory with NOPs
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block2) )
      } > mem_block2_bw
      
      dxe_block2_nw_code_prio0 PM
      {
         // Highest priority code for block2.
         INPUT_SECTION_ALIGN(2)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block2) )
      } > mem_block2_bw
      
      dxe_block2_noinit_prio0 NO_INIT DM
      {
         // Highest priority uninitialized data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block2_noinit_data) )
      } > mem_block2_bw
      
      dxe_block2_noinit_prio0_bw NO_INIT BW
      {
         // Highest priority uninitialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block2_noinit_data) )
      } > mem_block2_bw
      
      dxe_block2_bsz_prio0 ZERO_INIT DM
      {
         // Highest priority zero initialized data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block2_bsz_data) )
      } > mem_block2_bw
      
      dxe_block2_bsz_prio0_bw ZERO_INIT BW
      {
         // Highest priority zero initialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block2_bsz_data) )
      } > mem_block2_bw
      
      dxe_block2_pm_data_prio1 PM 32
      {
         // High priority pm data.
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block2_pm_data>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block2_pm_data>  */
         
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_pmda_nw seg_pmda) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block2_pm_data>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block2_pm_data>  */
         
      } > mem_block2_bw
      
      dxe_block2_pm_data_prio1_bw BW
      {
         // High priority data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_pmda_bw seg_pmda) )
      } > mem_block2_bw
      
      dxe_block2_pm_data_prio2 PM 32
      {
         // Default priority pm data.
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_pmda_nw seg_pmda) )
      } > mem_block2_bw
      
      dxe_block2_pm_data_prio2_bw BW
      {
         // Default priority pm data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_pmda_bw seg_pmda) )
      } > mem_block2_bw
      
      dxe_block2_pm_data_prio3 PM 32
      {
         // Unspecified and lowest priority pm data for any unused memory.
         INPUT_SECTIONS( $OBJS_LIBS(seg_pmda_nw seg_pmda) )
      } > mem_block2_bw
      
      dxe_block2_pm_data_prio3_bw BW
      {
         // Unspecified and lowest priority pm data for any unused memory.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_pmda) )
      } > mem_block2_bw
      
 
    // ------------------------------------------------------------------
    // Block 3 is primarily used for code and instruction cache.
 
    // Define an instruction cache size symbol.
    // The values used match the bits in the L1C0_CFG register size bits or
    // -1 if cache is off.
 
      ___ldf_icachesize = 1; // 32 KB instruction cache
      
      /*$VDSG<insert-new-sections-for-l1_block3>                */
      /* Text inserted between these $VDSG comments will be preserved */
      /*$VDSG<insert-new-sections-for-l1_block3>                */
      
      dxe_block3_data_prio0 DM
      {
         // Highest priority data for block3.
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block3) )
      } > mem_block3_bw
      
      dxe_block3_data_prio0_bw BW
      {
         // Highest priority byte data for block3.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block3) )
      } > mem_block3_bw
      
      dxe_block3_noinit_prio0 NO_INIT DM
      {
         // Highest priority uninitialized data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block3_noinit_data) )
      } > mem_block3_bw
      
      dxe_block3_noinit_prio0_bw NO_INIT BW
      {
         // Highest priority uninitialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block3_noinit_data) )
      } > mem_block3_bw
      
      dxe_block3_bsz_prio0 ZERO_INIT DM
      {
         // Highest priority zero initialized data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block3_bsz_data) )
      } > mem_block3_bw
      
      dxe_block3_bsz_prio0_bw ZERO_INIT BW
      {
         // Highest priority zero initialized data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block3_bsz_data) )
      } > mem_block3_bw
      
      // Now use the remaining block 3 memory for code sections.
      // Starting with inputs sections required to be in internal memory.
      dxe_block3_sw_code_prio0 SW
      {
         // Highest priority SW code for block3.
         INPUT_SECTION_ALIGN(2)
         FILL(0x1)  // fill gaps in memory with NOPs
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block3 seg_int_code_sw seg_int_code) )
      } > mem_block3_bw
      
      dxe_block3_nw_code_prio0 PM
      {
         // Highest priority code for block3.
         INPUT_SECTION_ALIGN(2)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l1_block3 seg_int_code) )
         // The __lib_setup_memory routine requires seg_init to be placed in L1.
         INPUT_SECTIONS( $OBJS_LIBS(seg_init) )
      } > mem_block3_bw
      
      // Try and use internal memory for the highest priority code.
      // Inputs that are not prioritized can use L2 or L3.
      dxe_block3_sw_code_prio1 SW
      {
         FILL(0x1)  // fill gaps in memory with NOPs
         INPUT_SECTION_ALIGN(2)
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_swco seg_pmco) )
      } > mem_block3_bw
      
      dxe_block3_nw_code_prio1 PM
      {
         INPUT_SECTION_ALIGN(2)
         INPUT_SECTIONS( $OBJS_LIBS_INTERNAL(seg_pmco) )
      } > mem_block3_bw
      
      dxe_block3_sw_code_prio2 SW
      {
         INPUT_SECTION_ALIGN(2)
         FILL(0x1)  // fill gaps in memory with NOPs
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_swco seg_pmco) )
      } > mem_block3_bw
      
      dxe_block3_nw_code_prio2 PM
      {
         INPUT_SECTION_ALIGN(2)
         INPUT_SECTIONS( $OBJS_LIBS_NOT_EXTERNAL(seg_pmco) )
      } > mem_block3_bw
      
      #define BLOCK3_SW_CODE dxe_block3_sw_code_prio3
      BLOCK3_SW_CODE SW
      {
         INPUT_SECTION_ALIGN(2)
         FILL(0x1)  // fill gaps in memory with NOPs
         INPUT_SECTIONS( $OBJS_LIBS(seg_swco seg_pmco) )
      } > mem_block3_bw
      
      #define BLOCK3_NW_CODE dxe_block3_nw_code_prio3
      BLOCK3_NW_CODE PM
      {
         INPUT_SECTION_ALIGN(2)
         INPUT_SECTIONS( $OBJS_LIBS(seg_pmco) )
      } > mem_block3_bw
      
 
    // ------------------------------------------------------------------
    // Input any unmapped data or code to fill up any unused L1 memory
    // available in the blocks. However, we can't put code in blocks 1 and
    // 2 when they are used as data caches.
 
      
      /*$VDSG<insert-new-sections-at-mem_block2_overflow>       */
      /* Text inserted between these $VDSG comments will be preserved */
      /*$VDSG<insert-new-sections-at-mem_block2_overflow>       */
      
      // try code in blocks 0-2
      dxe_block0_sw_code SW
      {
         // VISA code.
         INPUT_SECTION_ALIGN(2)
         FILL(0x1)  // fill gaps in memory with NOPs
         INPUT_SECTIONS( $OBJS_LIBS(seg_int_code_sw seg_int_code seg_swco seg_pmco) )
      } > mem_block0_bw
      
      dxe_block0_nw_code PM
      {
         // ISA code.
         INPUT_SECTION_ALIGN(2)
         INPUT_SECTIONS( $OBJS_LIBS(seg_int_code) )
         // The __lib_setup_memory routine requires seg_init to be placed in L1.
         INPUT_SECTIONS( $OBJS_LIBS(seg_init) )
         INPUT_SECTIONS( $OBJS_LIBS(seg_pmco) )
      } > mem_block0_bw
      
 
    // next try non-PM data in block 2
 
      dxe_block2_data DM
      {
         // general data.
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block2_overflow_data>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block2_overflow_data>  */
         
         INPUT_SECTIONS( $OBJS_LIBS(seg_int_data seg_dmda_nw seg_dmda seg_vtbl .rtti .cht .edt) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block2_overflow_data>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block2_overflow_data>  */
         
      } > mem_block2_bw
      
      dxe_block2_data_bw BW
      {
         // General data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_int_data seg_dmda_bw seg_dmda seg_vtbl .rtti .cht .edt) )
      } > mem_block2_bw
      
      dxe_block2_bsz ZERO_INIT DM
      {
         // Zero init data.
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block2_bsz>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block2_bsz>  */
         
         INPUT_SECTIONS( $OBJS_LIBS(seg_int_bsz_data seg_bsz_data .bss32 .bss) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block2_bsz>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block2_bsz>  */
         
      } > mem_block2_bw
      
      dxe_block2_bsz_bw ZERO_INIT BW
      {
         // Zero init data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_int_bsz_data seg_bsz_data .bss8 .bss) )
      } > mem_block2_bw
      
      dxe_block2_noinit NO_INIT DM
      {
         // No-init data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_int_noinit_data seg_noinit_data) )
      } > mem_block2_bw
      
      dxe_block2_noinit_bw NO_INIT BW
      {
         // No-init data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_int_noinit_data seg_noinit_data) )
      } > mem_block2_bw
      
      // next try PM data in block 0 and block 1
      dxe_block0_pm_data PM 32
      {
         // PM data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_pmda_nw seg_pmda) )
      } > mem_block0_bw
      
      dxe_block0_pm_data_bw BW
      {
         // PM data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_pmda_bw seg_pmda) )
      } > mem_block0_bw
      
      dxe_block1_pm_data PM 32
      {
         // PM data.
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_overflow_data>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_block1_overflow_data>  */
         
         INPUT_SECTIONS( $OBJS_LIBS(seg_pmda_nw seg_pmda) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_overflow_data>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_block1_overflow_data>  */
         
      } > mem_block1_bw
      
      dxe_block1_pm_data_bw BW
      {
         // PM data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_pmda_bw seg_pmda) )
      } > mem_block1_bw
      
      // lastly try DM and PM data in block 3
      dxe_block3_data DM
      {
         // General data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_int_data seg_dmda_nw seg_dmda seg_vtbl .rtti .cht .edt) )
      } > mem_block3_bw
      
      dxe_block3_data_bw BW
      {
         // General data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_int_data seg_dmda_bw seg_dmda seg_vtbl .rtti .cht .edt) )
      } > mem_block3_bw
      
      dxe_block3_pm_data PM 32
      {
         // PM data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_pmda_nw seg_pmda) )
      } > mem_block3_bw
      
      dxe_block3_pm_data_bw BW
      {
         // PM data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_pmda_bw seg_pmda) )
      } > mem_block3_bw
      
      dxe_block3_bsz ZERO_INIT DM
      {
         // Zero init data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_int_bsz_data seg_bsz_data .bss32 .bss) )
      } > mem_block3_bw
      
      dxe_block3_bsz_bw ZERO_INIT BW
      {
         // Zero init data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_int_bsz_data seg_bsz_data .bss8 .bss) )
      } > mem_block3_bw
      
      dxe_block3_noinit NO_INIT DM
      {
         // No-init data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_int_noinit_data seg_noinit_data) )
      } > mem_block3_bw
      
      dxe_block3_noinit_bw NO_INIT BW
      {
         // No-init data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_int_noinit_data seg_noinit_data) )
      } > mem_block3_bw
      
 
    // ------------------------------------------------------------------
    // L2 - core memory
 
      
      /*$VDSG<insert-new-sections-for-l2>                       */
      /* Text inserted between these $VDSG comments will be preserved */
      /*$VDSG<insert-new-sections-for-l2>                       */
      
      // First do inputs for noinit data to the boot code working area memory.
      dxe_l2bootcode_noinit NO_INIT DM
      {
         // L2 no init data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_l2_noinit_data seg_noinit_data) )
      } > mem_L2BC_bw
      
      dxe_l2bootcode_noinit_bw NO_INIT BW
      {
         // L2 no init data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l2_noinit_data seg_noinit_data) )
      } > mem_L2BC_bw
      
      #if defined(MY_L2_CACHED_MEM)
      dxe_l2_user_tables_nw DM
      {
         FORCE_CONTIGUITY
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_l2_user_tables_nw>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_l2_user_tables_nw>  */
         
      } > MY_L2_CACHED_MEM
      
      dxe_l2_user_tables_bw BW
      {
         FORCE_CONTIGUITY
         INPUT_SECTION_ALIGN(4)
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_l2_user_tables_bw>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_l2_user_tables_bw>  */
         
      } > MY_L2_CACHED_MEM
      
      dxe_l2_stack_and_heap_reserve NO_INIT BW
      {
         RESERVE(heaps_and_system_stack_in_L2, heaps_and_system_stack_in_L2_length = 1024000, 8)
      } > MY_L2_CACHED_MEM
      
      dxe_l2_sw_code SW
      {
         // VISA code.
         INPUT_SECTION_ALIGN(2)
         FILL(0x1)  // fill gaps in memory with NOPs
         INPUT_SECTIONS( $OBJS_LIBS(seg_l2 seg_l2_swco seg_swco seg_pmco) )
      } > MY_L2_CACHED_MEM
      
      dxe_l2_nw_code PM
      {
         // ISA code.
         INPUT_SECTION_ALIGN(2)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l2 seg_l2_pmco seg_pmco) )
      } > MY_L2_CACHED_MEM
      
      dxe_l2_data DM
      {
         // L2 data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_l2 seg_l2_dmda seg_dmda_nw seg_dmda seg_vtbl .rtti .cht .edt) )
      } > MY_L2_CACHED_MEM
      
      dxe_l2_data_bw BW
      {
         // L2 data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l2 seg_l2_dmda_bw seg_dmda_bw seg_dmda seg_vtbl .rtti .cht .edt) )
      } > MY_L2_CACHED_MEM
      
      dxe_l2_bsz ZERO_INIT DM
      {
         // L2 zero init data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_l2_bsz_data seg_bsz_data .bss32 .bss) )
      } > MY_L2_CACHED_MEM
      
      dxe_l2_bsz_bw ZERO_INIT BW
      {
         // L2 zero init data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l2_bsz_data seg_bsz_data .bss8 .bss) )
      } > MY_L2_CACHED_MEM
      
      dxe_l2_noinit NO_INIT DM
      {
         // L2 no init data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_l2_noinit_data seg_noinit_data) )
      } > MY_L2_CACHED_MEM
      
      dxe_l2_noinit_bw NO_INIT BW
      {
         // L2 no init data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l2_noinit_data seg_noinit_data) )
      } > MY_L2_CACHED_MEM
      
      dxe_l2_pm_data PM 32
      {
         // L2 pm data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_pmda_nw seg_pmda) )
      } > MY_L2_CACHED_MEM
      
      dxe_l2_pm_data_bw BW
      {
         // L2 pm data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_pmda) )
      } > MY_L2_CACHED_MEM
      
      #else
      #warning L2 cached memory unused
      #endif // MY_L2_CACHED_MEM
 
    // ------------------------------------------------------------------
    // L2 - uncached memory
 
 
    // Define labels used by library cache support functions.
    ___l2_uncached_start  = MEMORY_START(mem_L2UC_bw);
    ___l2_uncached_end    = MEMORY_END  (mem_L2UC_bw);
      #if defined(MY_L2_UNCACHED_MEM)
      dxe_l2_uncached_bw BW
      {
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_l2_uncached seg_uncached) )
      } > MY_L2_UNCACHED_MEM
      
      dxe_l2_uncached DM
      {
         INPUT_SECTIONS( $OBJS_LIBS(seg_l2_uncached seg_uncached) )
      } > MY_L2_UNCACHED_MEM
      
      #else
      #warning L2 uncached memory unused
      #endif // MY_L2_UNCACHED_MEM
 
    // ------------------------------------------------------------------
    // SDRAM
 
      
      /*$VDSG<insert-new-sections-for-sdram>                    */
      /* Text inserted between these $VDSG comments will be preserved */
      /*$VDSG<insert-new-sections-for-sdram>                    */
      
      
      /*$VDSG<insert-new-sections-at-mem_sdram_code>            */
      /* Text inserted between these $VDSG comments will be preserved */
      /*$VDSG<insert-new-sections-at-mem_sdram_code>            */
      
      #if defined(MY_SDRAM_SWCODE_MEM)
      dxe_sdram_sw_code SW
      {
         // VISA code.
         INPUT_SECTION_ALIGN(2)
         FILL(0x1)  // fill gaps in memory with NOPs
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_sw_code>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_sw_code>  */
         
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram seg_ext_code seg_swco seg_pmco) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_sdram_sw_code>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_sdram_sw_code>  */
         
      } > MY_SDRAM_SWCODE_MEM
      
      #endif // defined(MY_SDRAM_SWCODE_MEM)
      dxe_sdram_nw_code PM
      {
         // ISA code.
         INPUT_SECTION_ALIGN(2)
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_nw_code>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_nw_code>  */
         
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram seg_ext_code seg_pmco) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_sdram_nw_code>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_sdram_nw_code>  */
         
      } > MY_SDRAM_NWCODE_MEM
      
      
      /*$VDSG<insert-new-sections-at-mem_sdram_dmda>            */
      /* Text inserted between these $VDSG comments will be preserved */
      /*$VDSG<insert-new-sections-at-mem_sdram_dmda>            */
      
      dxe_sdram_user_tables_nw DM
      {
         FORCE_CONTIGUITY
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_user_tables_nw>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_user_tables_nw>  */
         
      } > MY_SDRAM_DATA1_MEM
      
      dxe_sdram_cpp_ctors_nw DM
      {
         // C++ global constructors list for word-addressed code.
         FORCE_CONTIGUITY
         __ctors = .;    // __ctors points to the start of the section
         INPUT_SECTIONS( $OBJS_LIBS(seg_ctdm) )
         INPUT_SECTIONS( $OBJS_LIBS(seg_ctdml) )
      } > MY_SDRAM_DATA1_MEM
      
      dxe_sdram_cpp_eh_gdt_nw DM
      {
         // C++ exceptions data table.
         FORCE_CONTIGUITY
         INPUT_SECTIONS( $OBJS_LIBS(.gdt32 .gdt) )
         INPUT_SECTIONS( $OBJS_LIBS(.gdtl32 .gdtl) )
      } > MY_SDRAM_DATA1_MEM
      
      dxe_sdram_cpp_eh_gdt_bw BW
      {
         // C++ exceptions data table.
         INPUT_SECTION_ALIGN(4)
         FORCE_CONTIGUITY
         INPUT_SECTIONS( $OBJS_LIBS(.gdt) )
         INPUT_SECTIONS( $OBJS_LIBS(.gdtl) )
      } > MY_SDRAM_DATA1_MEM
      
      dxe_sdram_cpp_ctors_bw BW
      {
         // C++ global constructors list for byte-addressed code.
         INPUT_SECTION_ALIGN(4)
         FORCE_CONTIGUITY
         _ctors. = .;    // _ctors. points to the start of the section
         INPUT_SECTIONS( $OBJS_LIBS(seg_ctdm) )
         INPUT_SECTIONS( $OBJS_LIBS(seg_ctdml seg_ctdml_bw) )
      } > MY_SDRAM_DATA1_MEM
      
      dxe_sdram_user_tables_bw BW
      {
         FORCE_CONTIGUITY
         INPUT_SECTION_ALIGN(4)
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_user_tables_bw>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_user_tables_bw>  */
         
      } > MY_SDRAM_DATA1_MEM
      
      #if defined(MY_SDRAM_DATA2_MEM)
      dxe_sdram_stack_and_heap_reserve NO_INIT BW
      {
         RESERVE(heaps_and_system_stack_in_L3, heaps_and_system_stack_in_L3_length = 134217728, 8)
      } > MY_SDRAM_DATA2_MEM
      
      #else
      dxe_sdram_stack_and_heap_reserve NO_INIT BW
      {
         RESERVE(heaps_and_system_stack_in_L3, heaps_and_system_stack_in_L3_length = 134217728, 8)
      } > MY_SDRAM_DATA1_MEM
      
      #endif // defined(MY_SDRAM_DATA2_MEM)
      dxe_sdram_data DM
      {
         // general data.
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_data>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_data>  */
         
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram seg_ext_data seg_dmda_nw seg_dmda seg_vtbl .rtti .cht .edt) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_sdram_data>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_sdram_data>  */
         
      } > MY_SDRAM_DATA1_MEM
      
      dxe_sdram_data_bw BW
      {
         // general data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram seg_ext_data seg_dmda_bw seg_dmda seg_vtbl .rtti .cht .edt) )
      } > MY_SDRAM_DATA1_MEM
      
      dxe_sdram_bsz ZERO_INIT DM
      {
         // zero init data.
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_bsz>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_bsz>  */
         
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram_bsz_data seg_bsz_data .bss32 .bss) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_sdram_bsz>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_sdram_bsz>  */
         
      } > MY_SDRAM_DATA1_MEM
      
      dxe_sdram_bsz_bw ZERO_INIT BW
      {
         // zero init data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram_bsz_data seg_bsz_data .bss8 .bss) )
      } > MY_SDRAM_DATA1_MEM
      
      dxe_sdram_noinit NO_INIT DM
      {
         // no init data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram_noinit_data seg_noinit_data) )
      } > MY_SDRAM_DATA1_MEM
      
      dxe_sdram_noinit_bw NO_INIT BW
      {
         // no init data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram_noinit_data seg_noinit_data) )
      } > MY_SDRAM_DATA1_MEM
      
      
      /*$VDSG<insert-new-sections-at-mem_sdram_pmda>            */
      /* Text inserted between these $VDSG comments will be preserved */
      /*$VDSG<insert-new-sections-at-mem_sdram_pmda>            */
      
      dxe_sdram_pm_data PM 32
      {
         // pm data.
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_pm_data>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_pm_data>  */
         
         INPUT_SECTIONS( $OBJS_LIBS(seg_ext_pmda seg_pmda_nw seg_pmda) )
         
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_sdram_pm_data>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-end-of-dxe_sdram_pm_data>  */
         
      } > MY_SDRAM_DATA1_MEM
      
      dxe_sdram_pm_data_bw BW
      {
         // pm data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_ext_pmda seg_pmda) )
      } > MY_SDRAM_DATA1_MEM
      
      #if defined(MY_SDRAM_DATA2_MEM)
      dxe_sdram_data2 DM
      {
         // general data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram seg_ext_data seg_dmda_nw seg_dmda seg_vtbl .rtti .cht .edt) )
      } > MY_SDRAM_DATA2_MEM
      
      dxe_sdram_bsz2 ZERO_INIT DM
      {
         // zero init data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram_bsz_data seg_bsz_data .bss32 .bss) )
      } > MY_SDRAM_DATA2_MEM
      
      dxe_sdram_noinit2 NO_INIT DM
      {
         // no init data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram_noinit_data seg_noinit_data) )
      } > MY_SDRAM_DATA2_MEM
      
      dxe_sdram_pm_data2 PM 32
      {
         // pm data.
         INPUT_SECTIONS( $OBJS_LIBS(seg_ext_pmda seg_pmda_nw seg_pmda) )
      } > MY_SDRAM_DATA2_MEM
      
      dxe_sdram_data2_bw BW
      {
         // general data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram seg_ext_data seg_dmda_bw seg_dmda seg_vtbl .rtti .cht .edt) )
      } > MY_SDRAM_DATA2_MEM
      
      dxe_sdram_bsz2_bw ZERO_INIT BW
      {
         // zero init data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram_bsz_data seg_bsz_data .bss8 .bss) )
      } > MY_SDRAM_DATA2_MEM
      
      dxe_sdram_noinit2_bw NO_INIT BW
      {
         // no init data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram_noinit_data seg_noinit_data) )
      } > MY_SDRAM_DATA2_MEM
      
      dxe_sdram_pm_data2_bw BW
      {
         // pm data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_ext_pmda seg_pmda) )
      } > MY_SDRAM_DATA2_MEM
      
      #endif // defined MY_SDRAM_DATA2_MEM
 
      #if defined(MY_SDRAM_BWONLY_MEM)
      dxe_sdram_data3_bw BW
      {
         // general data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram seg_ext_data seg_dmda_bw seg_dmda seg_vtbl .rtti .cht .edt) )
      } > MY_SDRAM_BWONLY_MEM
      
      dxe_sdram_bsz3_bw ZERO_INIT BW
      {
         // zero init data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram_bsz_data seg_bsz_data .bss8 .bss) )
      } > MY_SDRAM_BWONLY_MEM
      
      dxe_sdram_noinit3_bw NO_INIT BW
      {
         // no init data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_sdram_noinit_data seg_noinit_data) )
      } > MY_SDRAM_BWONLY_MEM
      
      dxe_sdram_pm_data3_bw BW
      {
         // pm data.
         INPUT_SECTION_ALIGN(4)
         INPUT_SECTIONS( $OBJS_LIBS(seg_ext_pmda seg_pmda) )
      } > MY_SDRAM_BWONLY_MEM
      
      #endif // defined MY_SDRAM_BWONLY_MEM
 
    // ------------------------------------------------------------------
    // Complete the stack and heap definitions.
 
      
      /*$VDSG<before-completing-the-stack-and-heap-definitions>  */
      /* Text inserted between these $VDSG comments will be preserved */
      /*$VDSG<before-completing-the-stack-and-heap-definitions>  */
      
      dxe_block0_stack_and_heap_expand NO_INIT BW
      {
         INPUT_SECTION_ALIGN(4)
         RESERVE_EXPAND(heaps_and_system_stack_in_L1, heaps_and_system_stack_in_L1_length, 0, 8)
         ldf_stack_space = heaps_and_system_stack_in_L1;
         ldf_stack_end = (ldf_stack_space + (((heaps_and_system_stack_in_L1_length * 57344) / 189440) - 8));
         ldf_stack_length = ldf_stack_end - ldf_stack_space;
         L1Mem_space = ldf_stack_end + 8;
         L1Mem_end = (L1Mem_space + (((heaps_and_system_stack_in_L1_length * 132096) / 189440) - 8));
         L1Mem_length = L1Mem_end - L1Mem_space;
      } > mem_block0_bw
      
      dxe_l2_stack_and_heap_expand NO_INIT BW
      {
         INPUT_SECTION_ALIGN(4)
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_L2_stack_and_heap>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_L2_stack_and_heap>  */
         
         RESERVE_EXPAND(heaps_and_system_stack_in_L2, heaps_and_system_stack_in_L2_length, 0, 8)
         ldf_heap_space = heaps_and_system_stack_in_L2;
         ldf_heap_end = (ldf_heap_space + (heaps_and_system_stack_in_L2_length - 8));
         ldf_heap_length = ldf_heap_end - ldf_heap_space;
      } > MY_L2_CACHED_MEM
      
      dxe_sdram_stack_and_heap_expand NO_INIT BW
      {
         
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_stack_and_heap>  */
         /* Text inserted between these $VDSG comments will be preserved */
         /*$VDSG<insert-input-sections-at-the-start-of-dxe_sdram_stack_and_heap>  */
         
         RESERVE_EXPAND(heaps_and_system_stack_in_L3, heaps_and_system_stack_in_L3_length, 0, 8)
         DDRHeap_space = heaps_and_system_stack_in_L3 + 8;
         DDRHeap_end = (DDRHeap_space + (heaps_and_system_stack_in_L3_length - 8));
         DDRHeap_length = DDRHeap_end - DDRHeap_space;
      } > SDRAM_STACK_HEAP_BLOCK
      
 
    // ------------------------------------------------------------------
 
      
      /*$VDSG<insert-new-sections-at-the-end>                   */
      /* Text inserted between these $VDSG comments will be preserved */
      /*$VDSG<insert-new-sections-at-the-end>                   */
      
   } /* SECTIONS */
} /* 21569_CORE0_SHARC0 */